From 6e701454fd33dd7b8691bff33cd1d2dda5de0595 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Sun, 19 May 2024 21:14:19 +0800 Subject: [PATCH 01/66] fix osx font issue --- cmake/modules/MacOSXBundleInfo.plist.in | 2 ++ src/platform/osx/Info.plist.in | 2 ++ 2 files changed, 4 insertions(+) diff --git a/cmake/modules/MacOSXBundleInfo.plist.in b/cmake/modules/MacOSXBundleInfo.plist.in index f453a8a844..1f435674cf 100644 --- a/cmake/modules/MacOSXBundleInfo.plist.in +++ b/cmake/modules/MacOSXBundleInfo.plist.in @@ -26,6 +26,8 @@ ???? CFBundleVersion ${MACOSX_BUNDLE_BUNDLE_VERSION} + ATSApplicationFontsPath + fonts/ CFBundleURLTypes diff --git a/src/platform/osx/Info.plist.in b/src/platform/osx/Info.plist.in index e58a3d0681..f5846c023a 100644 --- a/src/platform/osx/Info.plist.in +++ b/src/platform/osx/Info.plist.in @@ -23,6 +23,8 @@ CFBundleVersion @SLIC3R_BUILD_ID@ CFBundleURLTypes + ATSApplicationFontsPath + fonts/ CFBundleURLName From ad341ec9e62e46195e04eb5e8375a4953a3fbd1d Mon Sep 17 00:00:00 2001 From: SoftFever Date: Sun, 19 May 2024 21:22:14 +0800 Subject: [PATCH 02/66] Feature/merge bs1.91 (#5394) * fixed logic error in PLA jamming gcode for P1S * Fix use after free bug in LinesBucketQueue::emplace_back_bucket I found a use after free bug in LinesBucketQueue::emplace_back_bucket. This was found by enabling address sanitizer. The LinesBucketQueue class has two related members: std::vector line_buckets; std::priority_queue, LinesBucketPtrComp> line_bucket_ptr_queue; line_bucket_ptr_queue holds pointers into line_buckets. However, since items are inserted into line_buckets one at a time, existing pointers that were stored inside line_bucket_ptr_queue become invalid. Specifically: void LinesBucketQueue::emplace_back_bucket(ExtrusionLayers &&els, const void *objPtr, Point offset) { auto oldSize = line_buckets.capacity(); line_buckets.emplace_back(std::move(els), objPtr, offset); <--- Causes a reallocation, making previous pointers invalid line_bucket_ptr_queue.push(&line_buckets.back()); <-- priority queue compares against old, now invalid pointers ... The proposed fix is to calculate the required number of entries in ConflictChecker::find_inter_of_lines_in_diff_objs, and then calling line_buckets.reserve(count). This ensures that sufficient buffer is allocated up front and the pointers are stable as items are added. * Updated to fix the handling of the capacity change, and removed the code I previously added to reserve upfront since it is not really needed * Remove accidentally added whitespace * Removed unused method * ENH:add mz_zip_reader_extract_to_file_w api to solove plugin install failed problem by special wide char jira: none Change-Id: Ic7d3efe3fdf852387650abf9df65803da9e46a60 (cherry picked from commit b68ad03717a63675fef2f3ef73d4058bf311adea) * FIX: PrinterFileSystem report real connect error Change-Id: I99d6ff7f6dcb1f53ccf59854f5f19d0bd39fa9fc Jira: none * rename preference name * FIX:Relax restrictions on importing obj files jira: none Change-Id: I61a0156a8424a5f59922956918d37d38e2c3306a * FIX: [6469] popup dialog too mach when reload object Jira: 6469 Change-Id: I4097e3a3b018c7a676fea93bf63f8f778bb3148b * FIX:fixed incorrect display of printer options page on Linux jira:[STUDIO-6220] Change-Id: Id1f084658b0b340b7f17ab97ba82c0fd3ae83fae * FIX: handle exception of dividing by zero in arranging jira: none Change-Id: I0d20464dbe81a80293539100f06d72dee456a27b (cherry picked from commit 94746ae9bf7f467243849570450567b4fdc78e3a) * ENH:delete no use code jira: none Change-Id: I40e7ffa7ea47bb3cd4039eef9f6c28c604eb3abc * FIX: PrinterFileSystem::FileRemoved Change-Id: I891aaa8d58ff379dc1ebd8581064865a33388f74 * FIX: resend ttcode to printer on -90 error Change-Id: I96dc45102a2759a9f1a0002f42c3a91b2c6b2d75 Jira: STUDIO-5947 (cherry picked from commit 97d687b7c88f8cd51b8eddd39120349d8eac42b1) * FIX: fix some issue in multi machine JIRA: STUDIO-6934 STUDIO-6888 1. Fix the issue of incomplete display caused by excessively long file names 2. Fix the issue of icon display being too large 3. Fix the issue of garbled Chinese characters in the task list Change-Id: I36bc10bf2067f44aaa7e3651b58e526ea323c8ad * FIX: Incorrect multiplier, when the multiplier is set to below 1 github: #3987 #3805 1. In some languages that use commas as decimal points, setting multiplier below 1 will resolve to 0 2. Unable to save multiplier correctly Change-Id: I62bc55e270929ebb5e910eb79c6f97106e842b93 * Arrange * FIX: wrong wipe tower when open 3mf file 1.wipe tower pos in 3mf was overwritten by default pos when opening 3mf with a different printer profile.This patch fix it jira: STUDIO-5890 Signed-off-by: xun.zhang Change-Id: I12e5d4b80a0ad86194db0682c1763ba4a9492521 * ENH: update A1 machine gcode 1.Adjust the y position of the A1 extrusion compensation line jira:NEW Signed-off-by: xun.zhang Change-Id: Iea690a0184ae10a47f53e1532272c31fc0a04cfa * FIX: minor spelling mistake in gcode github:#3477 Signed-off-by: xun.zhang Change-Id: Id3201bf8b8125ce060e2cac102ab2525877e27c1 * FIX: slice crash with height_range github: 3917 Change-Id: Icdf83013213b47935b7a795ed75cc3d49057665d * FIX: ERROR_RES_BUSY text Change-Id: Ifde1a7b0c6ab915eb226c2072c46edd40f60cf9a Jira: STUDIO-6436 * ENH:Unable to send printing without selecting a device jira:[STUDIO-6850] Change-Id: Ic537579727fd1618af364db93fce8fbbe4cd635a * FIX:add exit_gizmo before slice model jira: STUDIO-5531 Change-Id: Icddc9d73b3d91bb68e9768d13e48cbae0680e58e * FIX: PrinterFileSystem report real connect error Change-Id: Id6750cfa2a98fe8325ba677dabb606a0a701b495 * FIX: add can slice judgement in slice all plates processing jira: STUDIO-6325 Change-Id: Ic7fb8cef000c03210bb77289a570ee6b60b6083e * FIX:Fixed error in displaying the name of Bambu filaments Change-Id: Ib42194c07b6eefe793eec81a588debc9d622d951 * FIX: text hidden in calibration tab jira: STUDIO-6264 Change-Id: I24fbc590638a3213d948a973422e010486113923 * FIX: logic error in PLA fan control github PR: #3948 Signed-off-by: xun.zhang Change-Id: I28e4a673e590e83d151e92cc82caab45012aeabe * FIX:upgrade cluster algorithm to remove duplicate labels jira: none Change-Id: I4d68d8cd8e080932c7c308bc8f69e27546ffe309 * FIX: can not parse json float in ES on macOS jira: STUDIO-5889 Change-Id: I622f4b474c378d77b0e43d67a320f023be2d5811 * ENH:Clear the value of the previous nozzle type jira:[for nozzle check] Change-Id: I9a932b833fb07de6cb0a91abe6372b0e91f273f1 * ENH: update A1 gcode 1.Modify the width of extrusion compensation line jira:NEW Signed-off-by: xun.zhang Change-Id: I90543758c866d74f2154e3135d7569109def84b8 * FIX: the height range is not valid in assemble object github: 3876 Change-Id: Id38672bbf0c01bc9b9f0a3e2bf1052d945b45131 * FIX: calibration page text hidden in linux jira: STUDIO-6264 Change-Id: If210abf64057eb2e9c2c5b11d41fa33f18684c72 * ENH:clear nozzle information jira:[STUDIO-7050] Change-Id: I15ca4973d09132ddb5cb5a56bedd795ba6976b27 * update plugin version --------- Signed-off-by: xun.zhang Co-authored-by: afriede Co-authored-by: Momin Al-Ghosien Co-authored-by: zhou.xu Co-authored-by: chunmao.guo Co-authored-by: maosheng.wei Co-authored-by: tao wang Co-authored-by: Arthur Co-authored-by: Kunlong Ma Co-authored-by: xun.zhang Co-authored-by: zhimin.zeng Co-authored-by: liz.li --- resources/profiles/BBL.json | 2 +- .../BBL/machine/Bambu Lab A1 0.4 nozzle.json | 2 +- .../BBL/machine/Bambu Lab P1P 0.2 nozzle.json | 2 +- .../BBL/machine/Bambu Lab P1P 0.4 nozzle.json | 2 +- .../BBL/machine/Bambu Lab P1P 0.6 nozzle.json | 2 +- .../BBL/machine/Bambu Lab P1P 0.8 nozzle.json | 2 +- .../BBL/machine/Bambu Lab P1S 0.2 nozzle.json | 2 +- .../BBL/machine/Bambu Lab P1S 0.4 nozzle.json | 2 +- .../BBL/machine/Bambu Lab P1S 0.6 nozzle.json | 2 +- .../BBL/machine/Bambu Lab P1S 0.8 nozzle.json | 2 +- .../BBL/machine/Bambu Lab X1 0.2 nozzle.json | 2 +- .../BBL/machine/Bambu Lab X1 0.4 nozzle.json | 2 +- .../BBL/machine/Bambu Lab X1 0.6 nozzle.json | 2 +- .../BBL/machine/Bambu Lab X1 0.8 nozzle.json | 2 +- .../Bambu Lab X1 Carbon 0.2 nozzle.json | 2 +- .../Bambu Lab X1 Carbon 0.4 nozzle.json | 2 +- .../Bambu Lab X1 Carbon 0.6 nozzle.json | 2 +- .../Bambu Lab X1 Carbon 0.8 nozzle.json | 2 +- .../BBL/machine/Bambu Lab X1E 0.2 nozzle.json | 2 +- .../BBL/machine/Bambu Lab X1E 0.4 nozzle.json | 2 +- .../BBL/machine/Bambu Lab X1E 0.6 nozzle.json | 2 +- .../BBL/machine/Bambu Lab X1E 0.8 nozzle.json | 2 +- .../include/libnest2d/selections/firstfit.hpp | 6 +- src/libslic3r/Arrange.cpp | 38 +++--- src/libslic3r/Format/OBJ.cpp | 26 +++-- src/libslic3r/Format/objparser.cpp | 8 +- src/libslic3r/GCode/ConflictChecker.cpp | 10 +- src/libslic3r/Model.cpp | 10 -- src/libslic3r/ObjColorUtils.hpp | 109 +++++++++++++++--- src/libslic3r/PresetBundle.cpp | 1 + src/libslic3r/PrintObject.cpp | 6 +- src/libslic3r/PrintObjectSlice.cpp | 6 +- src/miniz/miniz.c | 48 +++++++- src/miniz/miniz.h | 3 + src/slic3r/GUI/AMSMaterialsSetting.cpp | 12 +- src/slic3r/GUI/CalibrationWizardStartPage.cpp | 21 +++- src/slic3r/GUI/CreatePresetsDialog.cpp | 2 +- src/slic3r/GUI/DeviceManager.cpp | 6 +- src/slic3r/GUI/GLCanvas3D.cpp | 34 ++++-- src/slic3r/GUI/GLCanvas3D.hpp | 1 + src/slic3r/GUI/GUI_App.cpp | 16 ++- src/slic3r/GUI/GUI_Preview.cpp | 6 + src/slic3r/GUI/GUI_Preview.hpp | 1 + src/slic3r/GUI/MainFrame.cpp | 5 +- src/slic3r/GUI/MediaPlayCtrl.cpp | 2 +- src/slic3r/GUI/MultiMachineManagerPage.cpp | 42 +++++++ src/slic3r/GUI/MultiMachineManagerPage.hpp | 2 + src/slic3r/GUI/MultiMachinePage.cpp | 11 ++ src/slic3r/GUI/MultiTaskManagerPage.cpp | 86 +++++++++++++- src/slic3r/GUI/MultiTaskManagerPage.hpp | 3 + src/slic3r/GUI/Plater.cpp | 33 +++++- src/slic3r/GUI/Plater.hpp | 1 + src/slic3r/GUI/PrintOptionsDialog.cpp | 23 ++-- src/slic3r/GUI/PrintOptionsDialog.hpp | 20 ++-- src/slic3r/GUI/Printer/PrinterFileSystem.cpp | 16 +-- src/slic3r/GUI/SendMultiMachinePage.cpp | 54 ++++++++- src/slic3r/GUI/SendMultiMachinePage.hpp | 2 - src/slic3r/GUI/WipeTowerDialog.cpp | 42 +++---- src/slic3r/GUI/WipeTowerDialog.hpp | 7 +- src/slic3r/GUI/wxMediaCtrl2.cpp | 1 + src/slic3r/Utils/bambu_networking.hpp | 2 +- version.inc | 2 +- 62 files changed, 579 insertions(+), 189 deletions(-) diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index 034f24f992..2e2dc75a62 100644 --- a/resources/profiles/BBL.json +++ b/resources/profiles/BBL.json @@ -1,7 +1,7 @@ { "name": "Bambulab", "url": "http://www.bambulab.com/Parameters/vendor/BBL.json", - "version": "01.09.00.07", + "version": "01.09.00.10", "force_update": "0", "description": "the initial version of BBL configurations", "machine_model_list": [ diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle.json index 27e716bc73..a32bf88764 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle.json @@ -61,7 +61,7 @@ "255" ], "scan_first_layer": "0", - "machine_start_gcode": ";===== machine: A1 =========================\n;===== date: 20240104 =====================\nG392 S0\nM9833.2\n;M400\n;M73 P1.717\n\n;===== start to heat heatbead&hotend==========\nM1002 gcode_claim_action : 2\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\n\n;=====start printer sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A43 B10 L100 C46 D10 M70 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C43 D10 M60 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C41 D10 M80 E41 F10 N80\nM1006 A0 B10 L100 C44 D10 M80 E44 F10 N80\nM1006 A0 B10 L100 C49 D10 M80 E49 F10 N80\nM1006 A0 B10 L100 C0 D10 M80 E0 F10 N80\nM1006 A44 B10 L100 C48 D10 M60 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C44 D10 M80 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A43 B10 L100 C46 D10 M60 E39 F10 N80\nM1006 W\nM18 \n;=====start printer sound ===================\n\n;=====avoid end stop =================\nG91\nG380 S2 Z40 F1200\nG380 S3 Z-15 F1200\nG90\n\n;===== reset machine status =================\n;M290 X39 Y39 Z8\nM204 S6000\n\nM630 S0 P0\nG91\nM17 Z0.3 ; lower the z-motor current\n\nG90\nM17 X0.65 Y1.2 Z0.6 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\n;M211 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\nM1002 gcode_claim_action : 13\n\nG28 X\nG91\nG1 Z5 F1200\nG90\nG0 X128 F30000\nG0 Y254 F3000\nG91\nG1 Z-5 F1200\n\nM109 S10 H140\n\nM17 E0.3\nM83\nG1 E10 F1200\nG1 E-0.5 F30\nM17 D\n\nG28 Z P0 T140; home z with low precision,permit 300deg temperature\nM104 S{nozzle_temperature_initial_layer[initial_extruder]}\n\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n G39.4\n G90\n G1 Z5 F1200\nM623\n\n;M400\n;M73 P1.717\n\n;===== prepare print temperature and material ==========\nM1002 gcode_claim_action : 24\n\nM400\n;G392 S1\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on\n\nG90\nG1 X-28.5 F30000\nG1 X-48.2 F3000\n\nM620 M ;enable remap\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M400\n M1002 set_filament_type:UNKNOWN\n M109 S[nozzle_temperature_initial_layer]\n M104 S250\n M400\n T[initial_no_support_extruder]\n G1 X-48.2 F3000\n M400\n\n M620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n M109 S250 ;set nozzle to common flush temp\n M106 P1 S0\n G92 E0\n G1 E50 F200\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM621 S[initial_no_support_extruder]A\n\nM109 S{nozzle_temperature_range_high[initial_no_support_extruder]} H300\nG92 E0\nG1 E50 F200 ; lower extrusion speed to avoid clog\nM400\nM106 P1 S178\nG92 E0\nG1 E5 F200\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG92 E0\nG1 E-0.5 F300\n\nG1 X-28.5 F30000\nG1 X-48.2 F3000\nG1 X-28.5 F30000 ;wipe and shake\nG1 X-48.2 F3000\nG1 X-28.5 F30000 ;wipe and shake\nG1 X-48.2 F3000\n\n;G392 S0\n\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n;M400\n;M73 P1.717\n\n;===== auto extrude cali start =========================\nM975 S1\n;G392 S1\n\nG90\nM83\nT1000\nG1 X-48.2 Y0 Z10 F10000\nM400\nM1002 set_filament_type:UNKNOWN\n\nM412 S1 ; ===turn on filament runout detection===\nM400 P10\nM620.3 W1; === turn on filament tangle detection===\nM400 S2\n\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n\n;M1002 set_flag extrude_cali_flag=1\nM1002 judge_flag extrude_cali_flag\n\nM622 J1\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_extruder]}\n G1 E10 F{outer_wall_volumetric_speed/2.4*60}\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n\n M106 P1 S255\n M400 S5\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0\n\n M1002 judge_last_extrude_cali_success\n M622 J0\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n M106 P1 S255\n M400 S5\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n M400\n M106 P1 S0\n M623\n \n G1 X-48.2 F3000\n M400\n M984 A0.1 E1 S1 F{outer_wall_volumetric_speed/2.4}\n M106 P1 S178\n M400 S7\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0\nM623 ; end of \"draw extrinsic para cali paint\"\n\n;G392 S0\n;===== auto extrude cali end ========================\n\n;M400\n;M73 P1.717\n\nM104 S170 ; prepare to wipe nozzle\nM106 S255 ; turn on fan\n\n;===== mech mode fast check start =====================\nM1002 gcode_claim_action : 3\n\nG1 X128 Y128 F20000\nG1 Z5 F1200\nM400 P200\nM970.3 Q1 A5 K0 O3\nM974 Q1 S2 P0\n\nM970.2 Q1 K1 W58 Z0.11\nM974 S2\n\nG1 X128 Y128 F20000\nG1 Z5 F1200\nM400 P200\nM970.3 Q0 A10 K0 O1\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X0 Y5\nG28 X ; re-home XY\n\nG1 Z4 F1200\n\n;===== mech mode fast check end =======================\n\n;M400\n;M73 P1.717\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\n\nM975 S1\nM106 S255 ; turn on fan (G28 has turn off fan)\nM211 S; push soft endstop status\nM211 X0 Y0 Z0 ;turn off Z axis endstop\n\n;===== remove waste by touching start =====\n\nM104 S170 ; set temp down to heatbed acceptable\n\nM83\nG1 E-1 F500\nG90\nM83\n\nM109 S170\nG0 X108 Y-0.5 F30000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X110 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X112 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X114 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X116 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X118 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X120 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X122 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X124 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X126 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X128 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X130 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X132 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X134 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X136 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X138 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X140 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X142 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X144 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X146 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X148 F10000\nG380 S3 Z-5 F1200\n\nG1 Z5 F30000\n;===== remove waste by touching end =====\n\nG1 Z10 F1200\nG0 X118 Y261 F30000\nG1 Z5 F1200\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-50}\n\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nM104 S140 ; prepare to abl\nG0 Z5 F20000\n\nG0 X128 Y261 F20000 ; move to exposed steel surface\nG0 Z-1.01 F1200 ; stop the nozzle\n\nG91\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nG90\nG1 Z10 F1200\n\n;===== brush material wipe nozzle =====\n\nG90\nG1 Y250 F30000\nG1 X55\nG1 Z1.300 F1200\nG1 Y262.5 F6000\nG91\nG1 X-35 F30000\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Z5.000 F1200\n\nG90\nG1 X30 Y250.000 F30000\nG1 Z1.300 F1200\nG1 Y262.5 F6000\nG91\nG1 X35 F30000\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Z10.000 F1200\n\n;===== brush material wipe nozzle end =====\n\nG90\n;G0 X128 Y261 F20000 ; move to exposed steel surface\nG1 Y250 F30000\nG1 X138\nG1 Y261\nG0 Z-1.01 F1200 ; stop the nozzle\n\nG91\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nM109 S140\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM211 R; pop softend status\n\n;===== wipe nozzle end ================================\n\n;M400\n;M73 P1.717\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\n\nG90\nG1 Z5 F1200\nG1 X0 Y0 F30000\nG29.2 S1 ; turn on ABL\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140\nM106 S0 ; turn off fan , too noisy\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n\n;===== home after wipe mouth end =======================\n\n;M400\n;M73 P1.717\n\nG1 X108.000 Y-0.500 F30000\nG1 Z0.300 F1200\nM400\nG2814 Z0.32\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; prepare to print\n\n;===== nozzle load line ===============================\n;G90\n;M83\n;G1 Z5 F1200\n;G1 X88 Y-0.5 F20000\n;G1 Z0.3 F1200\n\n;M109 S{nozzle_temperature_initial_layer[initial_extruder]}\n\n;G1 E2 F300\n;G1 X168 E4.989 F6000\n;G1 Z1 F1200\n;===== nozzle load line end ===========================\n\n;===== extrude cali test ===============================\n\nM400\n M900 S\n\n M900 C\n G90\n M83\n M109 S{nozzle_temperature_initial_layer[initial_extruder]}\n G0 X128 E10 F{outer_wall_volumetric_speed/(24/20) * 60}\n G0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G91\n G1 X1 Z-0.300\n G1 X4\n G1 Z1 F1200\n G90\n M400\n\n M900 R\n G90\n G1 X108.000 Y4.500 F30000\n G91\n G1 Z-0.700 F1200\n G90\n M83\n G0 X128 E10 F{outer_wall_volumetric_speed/(24/20) * 60}\n G0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G91\n G1 X1 Z-0.300\n G1 X4\n G1 Z1 F1200\n G90\n M400\n\nG1 Z0.2\n\n;M400\n;M73 P1.717\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.02} ; for Textured PEI Plate\n{endif}\n\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n\nM211 X0 Y0 Z0 ;turn off soft endstop\n;G392 S1 ; turn on clog detection\nM1007 S1 ; turn on mass estimation\nG29.4\n", + "machine_start_gcode": ";===== machine: A1 =========================\n;===== date: 20240509 =====================\nG392 S0\nM9833.2\n;M400\n;M73 P1.717\n\n;===== start to heat heatbead&hotend==========\nM1002 gcode_claim_action : 2\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\n\n;=====start printer sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A43 B10 L100 C46 D10 M70 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C43 D10 M60 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C41 D10 M80 E41 F10 N80\nM1006 A0 B10 L100 C44 D10 M80 E44 F10 N80\nM1006 A0 B10 L100 C49 D10 M80 E49 F10 N80\nM1006 A0 B10 L100 C0 D10 M80 E0 F10 N80\nM1006 A44 B10 L100 C48 D10 M60 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C44 D10 M80 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A43 B10 L100 C46 D10 M60 E39 F10 N80\nM1006 W\nM18 \n;=====start printer sound ===================\n\n;=====avoid end stop =================\nG91\nG380 S2 Z40 F1200\nG380 S3 Z-15 F1200\nG90\n\n;===== reset machine status =================\n;M290 X39 Y39 Z8\nM204 S6000\n\nM630 S0 P0\nG91\nM17 Z0.3 ; lower the z-motor current\n\nG90\nM17 X0.65 Y1.2 Z0.6 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\n;M211 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\nM1002 gcode_claim_action : 13\n\nG28 X\nG91\nG1 Z5 F1200\nG90\nG0 X128 F30000\nG0 Y254 F3000\nG91\nG1 Z-5 F1200\n\nM109 S25 H140\n\nM17 E0.3\nM83\nG1 E10 F1200\nG1 E-0.5 F30\nM17 D\n\nG28 Z P0 T140; home z with low precision,permit 300deg temperature\nM104 S{nozzle_temperature_initial_layer[initial_extruder]}\n\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n G39.4\n G90\n G1 Z5 F1200\nM623\n\n;M400\n;M73 P1.717\n\n;===== prepare print temperature and material ==========\nM1002 gcode_claim_action : 24\n\nM400\n;G392 S1\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on\n\nG90\nG1 X-28.5 F30000\nG1 X-48.2 F3000\n\nM620 M ;enable remap\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M400\n M1002 set_filament_type:UNKNOWN\n M109 S[nozzle_temperature_initial_layer]\n M104 S250\n M400\n T[initial_no_support_extruder]\n G1 X-48.2 F3000\n M400\n\n M620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n M109 S250 ;set nozzle to common flush temp\n M106 P1 S0\n G92 E0\n G1 E50 F200\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM621 S[initial_no_support_extruder]A\n\nM109 S{nozzle_temperature_range_high[initial_no_support_extruder]} H300\nG92 E0\nG1 E50 F200 ; lower extrusion speed to avoid clog\nM400\nM106 P1 S178\nG92 E0\nG1 E5 F200\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG92 E0\nG1 E-0.5 F300\n\nG1 X-28.5 F30000\nG1 X-48.2 F3000\nG1 X-28.5 F30000 ;wipe and shake\nG1 X-48.2 F3000\nG1 X-28.5 F30000 ;wipe and shake\nG1 X-48.2 F3000\n\n;G392 S0\n\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n;M400\n;M73 P1.717\n\n;===== auto extrude cali start =========================\nM975 S1\n;G392 S1\n\nG90\nM83\nT1000\nG1 X-48.2 Y0 Z10 F10000\nM400\nM1002 set_filament_type:UNKNOWN\n\nM412 S1 ; ===turn on filament runout detection===\nM400 P10\nM620.3 W1; === turn on filament tangle detection===\nM400 S2\n\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n\n;M1002 set_flag extrude_cali_flag=1\nM1002 judge_flag extrude_cali_flag\n\nM622 J1\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_extruder]}\n G1 E10 F{outer_wall_volumetric_speed/2.4*60}\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n\n M106 P1 S255\n M400 S5\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0\n\n M1002 judge_last_extrude_cali_success\n M622 J0\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n M106 P1 S255\n M400 S5\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n M400\n M106 P1 S0\n M623\n \n G1 X-48.2 F3000\n M400\n M984 A0.1 E1 S1 F{outer_wall_volumetric_speed/2.4}\n M106 P1 S178\n M400 S7\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0\nM623 ; end of \"draw extrinsic para cali paint\"\n\n;G392 S0\n;===== auto extrude cali end ========================\n\n;M400\n;M73 P1.717\n\nM104 S170 ; prepare to wipe nozzle\nM106 S255 ; turn on fan\n\n;===== mech mode fast check start =====================\nM1002 gcode_claim_action : 3\n\nG1 X128 Y128 F20000\nG1 Z5 F1200\nM400 P200\nM970.3 Q1 A5 K0 O3\nM974 Q1 S2 P0\n\nM970.2 Q1 K1 W58 Z0.11\nM974 S2\n\nG1 X128 Y128 F20000\nG1 Z5 F1200\nM400 P200\nM970.3 Q0 A10 K0 O1\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X0 Y5\nG28 X ; re-home XY\n\nG1 Z4 F1200\n\n;===== mech mode fast check end =======================\n\n;M400\n;M73 P1.717\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\n\nM975 S1\nM106 S255 ; turn on fan (G28 has turn off fan)\nM211 S; push soft endstop status\nM211 X0 Y0 Z0 ;turn off Z axis endstop\n\n;===== remove waste by touching start =====\n\nM104 S170 ; set temp down to heatbed acceptable\n\nM83\nG1 E-1 F500\nG90\nM83\n\nM109 S170\nG0 X108 Y-0.5 F30000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X110 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X112 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X114 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X116 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X118 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X120 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X122 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X124 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X126 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X128 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X130 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X132 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X134 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X136 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X138 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X140 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X142 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X144 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X146 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X148 F10000\nG380 S3 Z-5 F1200\n\nG1 Z5 F30000\n;===== remove waste by touching end =====\n\nG1 Z10 F1200\nG0 X118 Y261 F30000\nG1 Z5 F1200\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-50}\n\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nM104 S140 ; prepare to abl\nG0 Z5 F20000\n\nG0 X128 Y261 F20000 ; move to exposed steel surface\nG0 Z-1.01 F1200 ; stop the nozzle\n\nG91\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nG90\nG1 Z10 F1200\n\n;===== brush material wipe nozzle =====\n\nG90\nG1 Y250 F30000\nG1 X55\nG1 Z1.300 F1200\nG1 Y262.5 F6000\nG91\nG1 X-35 F30000\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Z5.000 F1200\n\nG90\nG1 X30 Y250.000 F30000\nG1 Z1.300 F1200\nG1 Y262.5 F6000\nG91\nG1 X35 F30000\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Z10.000 F1200\n\n;===== brush material wipe nozzle end =====\n\nG90\n;G0 X128 Y261 F20000 ; move to exposed steel surface\nG1 Y250 F30000\nG1 X138\nG1 Y261\nG0 Z-1.01 F1200 ; stop the nozzle\n\nG91\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nM109 S140\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM211 R; pop softend status\n\n;===== wipe nozzle end ================================\n\n;M400\n;M73 P1.717\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\n\nG90\nG1 Z5 F1200\nG1 X0 Y0 F30000\nG29.2 S1 ; turn on ABL\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140\nM106 S0 ; turn off fan , too noisy\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n\n;===== home after wipe mouth end =======================\n\n;M400\n;M73 P1.717\n\nG1 X108.000 Y-0.5 F30000\nG1 Z0.300 F1200\nM400\nG2814 Z0.32\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; prepare to print\n\n;===== nozzle load line ===============================\n;G90\n;M83\n;G1 Z5 F1200\n;G1 X88 Y1.0 F20000\n;G1 Z0.3 F1200\n\n;M109 S{nozzle_temperature_initial_layer[initial_extruder]}\n\n;G1 E2 F300\n;G1 X168 E4.989 F6000\n;G1 Z1 F1200\n;===== nozzle load line end ===========================\n\n;===== extrude cali test ===============================\n\nM400\n M900 S\n G90\n M83\n\n M109 S{nozzle_temperature_initial_layer[initial_extruder]}\n G0 X128 E4 F{outer_wall_volumetric_speed/(24/20) * 60}\n G0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G91\n G1 X1 Z-0.300\n G1 X4\n G1 Z1 F1200\n G90\n M83\n M400\n\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M900 C\n G90\n G1 X108.000 Y1.0 F30000\n G91\n G1 Z-0.700 F1200\n G90\n M83\n G0 X128 E4 F{outer_wall_volumetric_speed/(24/20) * 60}\n G0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G91\n G1 X1 Z-0.300\n G1 X4\n G1 Z1 F1200\n G90\n M400\n M900 R\nM623\n\nG1 Z0.2\n\n;M400\n;M73 P1.717\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.02} ; for Textured PEI Plate\n{endif}\n\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n\nM211 X0 Y0 Z0 ;turn off soft endstop\n;G392 S1 ; turn on clog detection\nM1007 S1 ; turn on mass estimation\nG29.4\n", "machine_end_gcode": ";===== date: 20231229 =====================\nG392 S0 ;turn off nozzle clog detect\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X0 Y{first_layer_center_no_wipe_tower[1]} F18000 ; move to safe pos\nG1 X-13.0 F3000 ; move to safe pos\n{if !spiral_mode && print_sequence != \"by object\"}\nM1002 judge_flag timelapse_record_flag\nM622 J1\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM991 S0 P-1 ;end timelapse at safe pos\nM623\n{endif}\n\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\n;G1 X27 F15000 ; wipe\n\n; pull back filament to AMS\nM620 S255\nG1 X267 F15000\nT255\nG1 X-28.5 F18000\nG1 X-48.2 F3000\nG1 X-28.5 F18000\nG1 X-48.2 F3000\nM621 S255\n\nM104 S0 ; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 256}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z256 F600\n G1 Z256\n{endif}\nM400 P100\nM17 R ; restore z current\n\nG90\nG1 X-48 Y180 F3600\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M40 E42 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C46 D10 M80 E46 F10 N80\nM1006 A44 B20 L100 C39 D20 M60 E48 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C48 D10 M60 E44 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A44 B20 L100 C49 D20 M80 E41 F20 N80\nM1006 A0 B20 L100 C0 D20 M60 E0 F20 N80\nM1006 A0 B20 L100 C37 D20 M30 E37 F20 N60\nM1006 W\n;=====printer finish sound=========\n\n;M17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM400\nM18 X Y Z\n\n", "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change", "time_lapse_gcode": ";===================== date: 20231215 =====================\n{if !spiral_mode && print_sequence != \"by object\"}\n; don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\nG92 E0\nG17\nG2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nG1 Z{max_layer_z + 0.4}\nG1 X0 Y{first_layer_center_no_wipe_tower[1]} F18000 ; move to safe pos\nG1 X-48.2 F3000 ; move to safe pos\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 X0 F18000\nM623\n\nM622.1 S1\nM1002 judge_flag g39_detection_flag\nM622 J1 \n ; enable nozzle clog detect at 3rd layer\n {if layer_num == 2}\n M400\n G90\n M83\n M204 S5000\n G0 Z2 F4000\n G0 X261 Y250 F20000\n M400 P200\n G39 S1\n G0 Z2 F4000\n {endif}\n\n {if !in_head_wrap_detect_zone}\n M622.1 S0\n M1002 judge_flag g39_mass_exceed_flag\n M622 J1\n {if layer_num > 2}\n G392 S0\n M400\n G90\n M83\n M204 S5000\n G0 Z{max_layer_z + 0.4} F4000\n G39.3 S1\n G0 Z{max_layer_z + 0.4} F4000\n G392 S0\n {endif}\n M623\n {endif}\nM623\n{endif}\n", diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json index b1219b59df..4da8c72134 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json @@ -30,5 +30,5 @@ "Bambu Lab X1E 0.2 nozzle", "Bambu Lab A1 0.2 nozzle" ], - "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression" + "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json index c9046ad060..b3fa83d3de 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json @@ -37,7 +37,7 @@ "Bambu Lab X1E 0.4 nozzle", "Bambu Lab A1 0.4 nozzle" ], - "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression", + "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n\t{elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression", "machine_end_gcode": ";===== date: 20230428 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\n", "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 E-[retraction_length] F1800\nG17\nG2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 E[retraction_length] F300\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change", "change_filament_gcode": "M620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F[old_filament_e_feedrate] T{nozzle_temperature_range_high[previous_extruder]}\nT[next_extruder]\nM620.1 E F[new_filament_e_feedrate] T{nozzle_temperature_range_high[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F[old_filament_e_feedrate]\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S[nozzle_temperature_range_high]\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{old_filament_e_feedrate} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{old_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\n{else}\nG1 E{flush_length_1} F{old_filament_e_feedrate}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{new_filament_e_feedrate} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json index e3952a891e..36bede9f0a 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.6 nozzle", "Bambu Lab A1 0.6 nozzle" ], - "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression" + "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json index 3364e0744f..504d3123e3 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.8 nozzle", "Bambu Lab A1 0.8 nozzle" ], - "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression" + "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json index 45ce15c990..ff1c26441a 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json @@ -30,5 +30,5 @@ "Bambu Lab X1E 0.2 nozzle", "Bambu Lab A1 0.2 nozzle" ], - "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json index 3dc5e2b6d9..f76ee65d84 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json @@ -36,7 +36,7 @@ "Bambu Lab X1E 0.4 nozzle", "Bambu Lab A1 0.4 nozzle" ], - "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n", + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n", "machine_end_gcode": ";===== date: 20230428 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\n", "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 E-[retraction_length] F1800\nG17\nG2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 E[retraction_length] F300\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change", "change_filament_gcode": "M620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F[old_filament_e_feedrate] T{nozzle_temperature_range_high[previous_extruder]}\nT[next_extruder]\nM620.1 E F[new_filament_e_feedrate] T{nozzle_temperature_range_high[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F[old_filament_e_feedrate]\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S[nozzle_temperature_range_high]\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{old_filament_e_feedrate} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{old_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\n{else}\nG1 E{flush_length_1} F{old_filament_e_feedrate}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{new_filament_e_feedrate} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json index 195857d3ee..8284615176 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.6 nozzle", "Bambu Lab A1 0.6 nozzle" ], - "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json index 0db7e015bb..29cfca14f2 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.8 nozzle", "Bambu Lab A1 0.8 nozzle" ], - "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ; turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ; turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json index a5196e5c75..ad0f3cd438 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json @@ -30,5 +30,5 @@ "Bambu Lab X1E 0.2 nozzle", "Bambu Lab A1 0.2 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json index 4b96419d2f..9f2087a532 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json @@ -37,7 +37,7 @@ "Bambu Lab X1E 0.4 nozzle", "Bambu Lab A1 0.4 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4", + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4", "machine_end_gcode": ";===== date: 20240402 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n\n", "change_filament_gcode": "M620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F[old_filament_e_feedrate] T{nozzle_temperature_range_high[previous_extruder]}\nT[next_extruder]\nM620.1 E F[new_filament_e_feedrate] T{nozzle_temperature_range_high[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F[old_filament_e_feedrate]\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S[nozzle_temperature_range_high]\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{old_filament_e_feedrate} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{old_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\n{else}\nG1 E{flush_length_1} F{old_filament_e_feedrate}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{new_filament_e_feedrate} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json index 74f5b0e3b9..2a4e8d888b 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.6 nozzle", "Bambu Lab A1 0.6 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.333\n G0 F1200.0 X226 Y15 Z0.2 E0.495\n G0 F1200.0 X226 Y8 Z0.2 E0.691\n G0 F1200.0 X216 Y8 Z0.2 E0.988\n G0 F1200.0 X216 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E20.56 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.56 F1200.0\n G0 X35.0 Y6.0 E1.75 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.333\n G0 F1200.0 X226 Y15 Z0.2 E0.495\n G0 F1200.0 X226 Y8 Z0.2 E0.691\n G0 F1200.0 X216 Y8 Z0.2 E0.988\n G0 F1200.0 X216 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E20.56 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.56 F1200.0\n G0 X35.0 Y6.0 E1.75 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json index 9741939bda..9728fde873 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.8 nozzle", "Bambu Lab A1 0.8 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json index 795cbb741f..d752a45687 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json @@ -31,5 +31,5 @@ "Bambu Lab X1E 0.2 nozzle", "Bambu Lab A1 0.2 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json index b56c45b13e..4594156001 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json @@ -35,7 +35,7 @@ "Bambu Lab X1E 0.4 nozzle", "Bambu Lab A1 0.4 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4", + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4", "machine_end_gcode": ";===== date: 20240402 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n\n", "change_filament_gcode": "M620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F[old_filament_e_feedrate] T{nozzle_temperature_range_high[previous_extruder]}\nT[next_extruder]\nM620.1 E F[new_filament_e_feedrate] T{nozzle_temperature_range_high[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F[old_filament_e_feedrate]\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S[nozzle_temperature_range_high]\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{old_filament_e_feedrate} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{old_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\n{else}\nG1 E{flush_length_1} F{old_filament_e_feedrate}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{new_filament_e_feedrate} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json index b93fbd1013..73f67a2c9e 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json @@ -33,5 +33,5 @@ "Bambu Lab X1E 0.6 nozzle", "Bambu Lab A1 0.6 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.333\n G0 F1200.0 X226 Y15 Z0.2 E0.495\n G0 F1200.0 X226 Y8 Z0.2 E0.691\n G0 F1200.0 X216 Y8 Z0.2 E0.988\n G0 F1200.0 X216 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E20.56 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.56 F1200.0\n G0 X35.0 Y6.0 E1.75 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.333\n G0 F1200.0 X226 Y15 Z0.2 E0.495\n G0 F1200.0 X226 Y8 Z0.2 E0.691\n G0 F1200.0 X216 Y8 Z0.2 E0.988\n G0 F1200.0 X216 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E20.56 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.56 F1200.0\n G0 X35.0 Y6.0 E1.75 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json index 468a7fcbb2..e7865c1d5e 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json @@ -33,5 +33,5 @@ "Bambu Lab X1E 0.8 nozzle", "Bambu Lab A1 0.8 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle.json index fcb0cb21cf..91a482c17c 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle.json @@ -31,5 +31,5 @@ "Bambu Lab X1 Carbon 0.2 nozzle", "Bambu Lab A1 0.2 nozzle" ], - "machine_start_gcode": ";===== machine: X1E =========================\n;===== date: 20230815 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1E =========================\n;===== date: 20230815 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle.json index 83fd375a6e..3050ab385a 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle.json @@ -37,7 +37,7 @@ "Bambu Lab X1 Carbon 0.4 nozzle", "Bambu Lab A1 0.4 nozzle" ], - "machine_start_gcode": ";===== machine: X1E =========================\n;===== date: 20230815 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4\n\n", + "machine_start_gcode": ";===== machine: X1E =========================\n;===== date: 20230815 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4\n\n", "machine_end_gcode": ";===== date: 20240402 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM141 S0 ; turn off chamber \nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n\n", "change_filament_gcode": "M620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\n{if long_retraction_when_cut && retraction_distance_when_cut > 2}\nG1 E-[retraction_distance_when_cut] F200\nM400\n{endif}\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F[old_filament_e_feedrate] T{nozzle_temperature_range_high[previous_extruder]}\nT[next_extruder]\nM620.1 E F[new_filament_e_feedrate] T{nozzle_temperature_range_high[next_extruder]}\n\n{if next_extruder < 255}\nM400\n{if long_retraction_when_cut && retraction_distance_when_cut > 2}\nG1 E{retraction_distance_when_cut - 2} F200\nG1 E2 F20\nM400\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S[nozzle_temperature_range_high]\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{old_filament_e_feedrate} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{old_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\n{else}\nG1 E{flush_length_1} F{old_filament_e_feedrate}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{new_filament_e_feedrate} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle.json index 920dad2ed4..4db6be64be 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle.json @@ -33,5 +33,5 @@ "Bambu Lab X1 Carbon 0.6 nozzle", "Bambu Lab A1 0.6 nozzle" ], - "machine_start_gcode": ";===== machine: X1E =========================\n;===== date: 20230815 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.333\n G0 F1200.0 X226 Y15 Z0.2 E0.495\n G0 F1200.0 X226 Y8 Z0.2 E0.691\n G0 F1200.0 X216 Y8 Z0.2 E0.988\n G0 F1200.0 X216 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E20.56 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.56 F1200.0\n G0 X35.0 Y6.0 E1.75 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1E =========================\n;===== date: 20230815 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.333\n G0 F1200.0 X226 Y15 Z0.2 E0.495\n G0 F1200.0 X226 Y8 Z0.2 E0.691\n G0 F1200.0 X216 Y8 Z0.2 E0.988\n G0 F1200.0 X216 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E20.56 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.56 F1200.0\n G0 X35.0 Y6.0 E1.75 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle.json index a3e4c8089d..5b435c4ab4 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle.json @@ -33,5 +33,5 @@ "Bambu Lab X1 Carbon 0.8 nozzle", "Bambu Lab A1 0.8 nozzle" ], - "machine_start_gcode": ";===== machine: X1E =========================\n;===== date: 20230815 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1E =========================\n;===== date: 20230815 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/src/libnest2d/include/libnest2d/selections/firstfit.hpp b/src/libnest2d/include/libnest2d/selections/firstfit.hpp index bb7f4b45c0..c3af682d22 100644 --- a/src/libnest2d/include/libnest2d/selections/firstfit.hpp +++ b/src/libnest2d/include/libnest2d/selections/firstfit.hpp @@ -119,9 +119,9 @@ public: for(; j < placers.size() && !was_packed && !cancelled(); j++) { result = placers[j].pack(*it, rem(it, store_)); score = result.score(); - score_all_plates = std::accumulate(placers.begin(), placers.begin() + j, score, - [](double sum, const Placer& elem) { return sum + elem.score(); }); - if (this->unfitindicator_) this->unfitindicator_(it->get().name + " bed_id="+std::to_string(j) + ",score=" + std::to_string(score)); + score_all_plates = score; + for (int i = 0; i < placers.size(); i++) { score_all_plates += placers[i].score();} + if (this->unfitindicator_) this->unfitindicator_(it->get().name + " bed_id="+std::to_string(j) + ",score=" + std::to_string(score)+", score_all_plates="+std::to_string(score_all_plates)); if(score >= 0 && score < LARGE_COST_TO_REJECT) { if (bed_id_firstfit == -1) { diff --git a/src/libslic3r/Arrange.cpp b/src/libslic3r/Arrange.cpp index 6aeea356a3..d82997aaa9 100644 --- a/src/libslic3r/Arrange.cpp +++ b/src/libslic3r/Arrange.cpp @@ -640,27 +640,24 @@ protected: score += lambda4 * hasRowHeightConflict + lambda4 * hasLidHeightConflict; } else { + int valid_items_cnt = 0; + double height_score = 0; for (int i = 0; i < m_items.size(); i++) { Item& p = m_items[i]; - if (p.is_virt_object) { - // Better not put items above wipe tower - if (p.is_wipe_tower) { - if (ibb.maxCorner().y() > p.boundingBox().maxCorner().y()) - score += 1; - else if(m_pilebb.defined) - score += norm(pl::distance(ibb.center(), m_pilebb.center())); - } - else - continue; - } else { + if (!p.is_virt_object) { + valid_items_cnt++; // 高度接近的件尽量摆到一起 - score += (1- std::abs(item.height - p.height) / params.printable_height) + height_score += (1- std::abs(item.height - p.height) / params.printable_height) * norm(pl::distance(ibb.center(), p.boundingBox().center())); //score += LARGE_COST_TO_REJECT * (item.bed_temp - p.bed_temp != 0); - if (!Print::is_filaments_compatible({ item.filament_temp_type,p.filament_temp_type })) + if (!Print::is_filaments_compatible({ item.filament_temp_type,p.filament_temp_type })) { score += LARGE_COST_TO_REJECT; + break; + } } } + if (valid_items_cnt > 0) + score += height_score / valid_items_cnt; } std::set extruder_ids; @@ -682,9 +679,11 @@ protected: } // for layered printing, we want extruder change as few as possible // this has very weak effect, CAN NOT use a large weight + int last_extruder_cnt = extruder_ids.size(); extruder_ids.insert(item.extrude_ids.begin(), item.extrude_ids.end()); + int new_extruder_cnt= extruder_ids.size(); if (!params.is_seq_print) { - score += 1 * std::max(0, ((int) extruder_ids.size() - 1)); + score += 1 * (new_extruder_cnt-last_extruder_cnt); } return std::make_tuple(score, fullbb); @@ -943,8 +942,15 @@ template void remove_large_items(std::vector &items, Bin &&bin) template Radians min_area_boundingbox_rotation(const S &sh) { - return minAreaBoundingBox, boost::rational>(sh) - .angleToX(); + try { + return minAreaBoundingBox, boost::rational>(sh) + .angleToX(); + } + catch (const std::exception& e) { + // min_area_boundingbox_rotation may throw exception of dividing 0 if the object is already perfectly aligned to X + BOOST_LOG_TRIVIAL(error) << "arranging min_area_boundingbox_rotation fails, msg=" << e.what(); + return 0.0; + } } template diff --git a/src/libslic3r/Format/OBJ.cpp b/src/libslic3r/Format/OBJ.cpp index 0433e917c6..abaae3692b 100644 --- a/src/libslic3r/Format/OBJ.cpp +++ b/src/libslic3r/Format/OBJ.cpp @@ -36,12 +36,25 @@ bool load_obj(const char *path, TriangleMesh *meshptr, ObjInfo& obj_info, std::s bool exist_mtl = false; if (data.mtllibs.size() > 0) { // read mtl for (auto mtl_name : data.mtllibs) { - boost::filesystem::path full_path(path); - std::string dir = full_path.parent_path().string(); - auto mtl_file = dir + "/" + mtl_name; - boost::filesystem::path mtl_path(mtl_file); - auto _mtl_path = mtl_path.string().c_str(); - if (boost::filesystem::exists(mtl_path)) { + if (mtl_name.size() == 0){ + continue; + } + exist_mtl = true; + bool mtl_name_is_path = false; + boost::filesystem::path mtl_abs_path(mtl_name); + if (boost::filesystem::exists(mtl_abs_path)) { + mtl_name_is_path = true; + } + boost::filesystem::path mtl_path; + if (!mtl_name_is_path) { + boost::filesystem::path full_path(path); + std::string dir = full_path.parent_path().string(); + auto mtl_file = dir + "/" + mtl_name; + boost::filesystem::path temp_mtl_path(mtl_file); + mtl_path = temp_mtl_path; + } + auto _mtl_path = mtl_name_is_path ? mtl_abs_path.string().c_str() : mtl_path.string().c_str(); + if (boost::filesystem::exists(mtl_name_is_path ? mtl_abs_path : mtl_path)) { if (!ObjParser::mtlparse(_mtl_path, mtl_data)) { BOOST_LOG_TRIVIAL(error) << "load_obj:load_mtl: failed to parse " << _mtl_path; message = _L("load mtl in obj: failed to parse"); @@ -52,7 +65,6 @@ bool load_obj(const char *path, TriangleMesh *meshptr, ObjInfo& obj_info, std::s BOOST_LOG_TRIVIAL(error) << "load_obj: failed to load mtl_path:" << _mtl_path; } } - exist_mtl = true; } // Count the faces and verify, that all faces are triangular. size_t num_faces = 0; diff --git a/src/libslic3r/Format/objparser.cpp b/src/libslic3r/Format/objparser.cpp index c56d6930ce..82bf2b4963 100644 --- a/src/libslic3r/Format/objparser.cpp +++ b/src/libslic3r/Format/objparser.cpp @@ -237,7 +237,7 @@ static bool obj_parseline(const char *line, ObjData &data) } } if (vertex.coordIdx < 0) - vertex.coordIdx += (int)data.coordinates.size() / 4; + vertex.coordIdx += (int) data.coordinates.size() / OBJ_VERTEX_LENGTH; else -- vertex.coordIdx; if (vertex.normalIdx < 0) @@ -604,9 +604,6 @@ bool objparse(const char *path, ObjData &data) BOOST_LOG_TRIVIAL(error) << "ObjParser: Out of memory"; } ::fclose(pFile); - - // printf("vertices: %d\r\n", data.vertices.size() / 4); - // printf("coords: %d\r\n", data.coordinates.size()); return true; } @@ -646,9 +643,6 @@ bool mtlparse(const char *path, MtlData &data) BOOST_LOG_TRIVIAL(error) << "MtlParser: Out of memory"; } ::fclose(pFile); - - // printf("vertices: %d\r\n", data.vertices.size() / 4); - // printf("coords: %d\r\n", data.coordinates.size()); return true; } diff --git a/src/libslic3r/GCode/ConflictChecker.cpp b/src/libslic3r/GCode/ConflictChecker.cpp index 012eed7459..fb69372a9a 100644 --- a/src/libslic3r/GCode/ConflictChecker.cpp +++ b/src/libslic3r/GCode/ConflictChecker.cpp @@ -90,9 +90,14 @@ void LinesBucketQueue::emplace_back_bucket(ExtrusionLayers &&els, const void *ob { auto oldSize = line_buckets.capacity(); line_buckets.emplace_back(std::move(els), objPtr, offset); - line_bucket_ptr_queue.push(&line_buckets.back()); auto newSize = line_buckets.capacity(); - if (oldSize != newSize) { // pointers change + // Since line_bucket_ptr_queue is storing pointers into line_buckets, + // we need to handle the case where the capacity changes since that makes + // the existing pointers invalid + if (oldSize == newSize) { + line_bucket_ptr_queue.push(&line_buckets.back()); + } + else { // pointers change, create a new queue from scratch decltype(line_bucket_ptr_queue) newQueue; for (LinesBucket &bucket : line_buckets) { newQueue.push(&bucket); } std::swap(line_bucket_ptr_queue, newQueue); @@ -215,6 +220,7 @@ ConflictResultOpt ConflictChecker::find_inter_of_lines_in_diff_objs(PrintObjectP { if (objs.size() <= 1 && !wtdptr) { return {}; } LinesBucketQueue conflictQueue; + if (wtdptr.has_value()) { // wipe tower at 0 by default auto wtpaths = wtdptr.value()->getFakeExtrusionPathsFromWipeTower(); ExtrusionLayers wtels; diff --git a/src/libslic3r/Model.cpp b/src/libslic3r/Model.cpp index 96677495c6..9074fa49f2 100644 --- a/src/libslic3r/Model.cpp +++ b/src/libslic3r/Model.cpp @@ -238,16 +238,6 @@ Model Model::read_from_file(const std::string& input_file, DynamicPrintConfig* c if (vertex_filament_ids.size() > 0) { result = obj_import_vertex_color_deal(vertex_filament_ids, first_extruder_id, & model); } - } else { // test //todo delete - vertex_filament_ids.push_back(2); - vertex_filament_ids.push_back(3); - vertex_filament_ids.push_back(4); - vertex_filament_ids.push_back(1); // 4 - vertex_filament_ids.push_back(1); - vertex_filament_ids.push_back(1); - vertex_filament_ids.push_back(1); - vertex_filament_ids.push_back(1); // 8 - result = obj_import_vertex_color_deal(vertex_filament_ids, first_extruder_id, &model); } } else if (obj_info.face_colors.size() > 0 && obj_info.has_uv_png == false) { // mtl file std::vector face_filament_ids; diff --git a/src/libslic3r/ObjColorUtils.hpp b/src/libslic3r/ObjColorUtils.hpp index 4fe924fab2..ea4418adfd 100644 --- a/src/libslic3r/ObjColorUtils.hpp +++ b/src/libslic3r/ObjColorUtils.hpp @@ -27,7 +27,8 @@ public: cv::Mat image8UC3; convert_color_space(flatten_image8UC3, image8UC3, color_space); cv::Mat image32FC3(image8UC3.rows, 1, CV_32FC3); - for (int i = 0; i < image8UC3.rows; i++) image32FC3.at(i, 0) = image8UC3.at(i, 0); + for (int i = 0; i < image8UC3.rows; i++) + image32FC3.at(i, 0) = image8UC3.at(i, 0); apply(image32FC3, num_cluster, color_space); repalce_centers_aplha(ori_image, new_image); @@ -43,16 +44,25 @@ public: convert_color_space(this->m_centers8UC3, this->m_centers8UC3, color_space, true); } - void apply(const std::vector> &ori_colors, std::vector> & cluster_results, std::vector & labels, int num_cluster = -1, + int max_cluster = 15, int color_space = 2) { // 0~255 cv::Mat flatten_image8UC3 = flatten_vector(ori_colors); + this->apply(flatten_image8UC3, cluster_results, labels, num_cluster, max_cluster, color_space); + } + void apply(const cv::Mat & flatten_image8UC3, + std::vector> &cluster_results, + std::vector & labels, + int num_cluster = -1, + int max_cluster = 15, + int color_space = 2) + { cv::Mat image8UC3; convert_color_space(flatten_image8UC3, image8UC3, color_space); @@ -60,36 +70,44 @@ public: for (int i = 0; i < image8UC3.rows; i++) image32FC3.at(i, 0) = image8UC3.at(i, 0); - int best_cluster = 1; - double cur_score, best_score = 100; - int max_cluster = ori_colors.size(); - num_cluster = fmin(num_cluster, max_cluster); + int best_cluster = 1; + double cur_score = 0, best_score = 100; + num_cluster = fmin(num_cluster, max_cluster); if (num_cluster < 1) { - cur_score = kmeans(image32FC3, 1, this->m_flatten_labels, cv::TermCriteria(cv::TermCriteria::EPS + cv::TermCriteria::COUNT, 300, 0.5), 3, cv::KMEANS_PP_CENTERS); + if (!this->more_than_request(image8UC3, max_cluster)) max_cluster = compute_num_colors(image8UC3); + num_cluster = fmin(num_cluster, max_cluster); + cur_score = cv::kmeans(image32FC3, 1, this->m_flatten_labels, cv::TermCriteria(cv::TermCriteria::EPS + cv::TermCriteria::COUNT, 300, 0.5), 3, cv::KMEANS_PP_CENTERS); best_score = cur_score; - for (int cur_cluster = 2; cur_cluster < 16; cur_cluster++) { - if (cur_cluster > max_cluster) + + for (int cur_cluster = 2; cur_cluster < max_cluster + 1; cur_cluster++) { + cv::Mat centers32FC3; + cur_score = cv::kmeans(image32FC3, cur_cluster, this->m_flatten_labels, cv::TermCriteria(cv::TermCriteria::EPS + cv::TermCriteria::COUNT, 300, 0.5), 3, + cv::KMEANS_PP_CENTERS, centers32FC3); + if (this->repeat_center(cur_cluster, centers32FC3, color_space)) break; - cur_score = kmeans(image32FC3, cur_cluster, this->m_flatten_labels, cv::TermCriteria(cv::TermCriteria::EPS + cv::TermCriteria::COUNT, 300, 0.5), 3, - cv::KMEANS_PP_CENTERS); best_cluster = cur_score < best_score ? cur_cluster : best_cluster; best_score = cur_score < best_score ? cur_score : best_score; } - } else + } else if (this->more_than_request(image8UC3, num_cluster)) best_cluster = num_cluster; + else { + best_cluster = compute_num_colors(image8UC3); + std::cout << "num of image color is " << best_cluster << ", less than custom number " << num_cluster << std::endl; + } cv::Mat centers32FC3; - kmeans(image32FC3, best_cluster, this->m_flatten_labels, cv::TermCriteria(cv::TermCriteria::EPS + cv::TermCriteria::COUNT, 300, 0.5), 3, cv::KMEANS_PP_CENTERS, - centers32FC3); + cv::kmeans(image32FC3, best_cluster, this->m_flatten_labels, cv::TermCriteria(cv::TermCriteria::EPS + cv::TermCriteria::COUNT, 300, 0.5), 3, cv::KMEANS_PP_CENTERS, + centers32FC3); this->m_centers8UC3 = cv::Mat(best_cluster, 1, CV_8UC3); - for (int i = 0; i < best_cluster; i++) - this->m_centers8UC3.at(i) = centers32FC3.at(i); - + for (int i = 0; i < best_cluster; i++) { + auto center = centers32FC3.row(i); + this->m_centers8UC3.at(i) = {uchar(center.at(0)), uchar(center.at(1)), uchar(center.at(2))}; + } convert_color_space(this->m_centers8UC3, this->m_centers8UC3, color_space, true); cluster_results.clear(); labels.clear(); - for (int i = 0; i < ori_colors.size(); i++) + for (int i = 0; i < flatten_image8UC3.rows; i++) labels.emplace_back(this->m_flatten_labels.at(i, 0)); for (int i = 0; i < best_cluster; i++) { cv::Vec3f center = this->m_centers8UC3.at(i, 0); @@ -97,6 +115,59 @@ public: } } + bool more_than_request(const cv::Mat &image8UC3, int target_num) + { + std::vector uniqueImage; + cv::Vec3b cur_color; + for (int i = 0; i < image8UC3.rows; i++) { + cur_color = image8UC3.at(i, 0); + if (!is_in(cur_color, uniqueImage)) { + uniqueImage.emplace_back(cur_color); + if (uniqueImage.size() >= target_num) return true; + } + } + return false; + } + + int compute_num_colors(const cv::Mat &image8UC3) + { + std::vector uniqueImage; + cv::Vec3b cur_color; + for (int i = 0; i < image8UC3.rows; i++) { + cur_color = image8UC3.at(i, 0); + if (!is_in(cur_color, uniqueImage)) uniqueImage.emplace_back(cur_color); + } + + return uniqueImage.size(); + } + + bool is_in(const cv::Vec3b &cur_color, const std::vector &uniqueImage) + { + for (auto &color : uniqueImage) + if (cur_color[0] == color[0] && cur_color[1] == color[1] && cur_color[2] == color[2]) return true; + return false; + } + + bool repeat_center(int cur_cluster, const cv::Mat ¢ers32FC3, int color_space) + { + cv::Mat centers8UC3 = cv::Mat(cur_cluster, 1, CV_8UC3); + for (int i = 0; i < cur_cluster; i++) { + auto center = centers32FC3.row(i); + centers8UC3.at(i) = {uchar(center.at(0)), uchar(center.at(1)), uchar(center.at(2))}; + } + convert_color_space(centers8UC3, centers8UC3, color_space, true); + std::vector unique_centers; + cv::Vec3b cur_center; + for (int i = 0; i < cur_cluster; i++) { + cur_center = centers8UC3.at(i, 0); + if (!is_in(cur_center, unique_centers)) + unique_centers.emplace_back(cur_center); + else + return true; + } + return false; + } + void replace_centers(cv::Mat &ori_image, cv::Mat &new_image) { for (int i = 0; i < ori_image.rows; i++) { @@ -126,7 +197,7 @@ public: } } - void convert_color_space(cv::Mat &ori_image, cv::Mat &image, int color_space, bool reverse = false) + void convert_color_space(const cv::Mat &ori_image, cv::Mat &image, int color_space, bool reverse = false) { switch (color_space) { case 0: image = ori_image; break; diff --git a/src/libslic3r/PresetBundle.cpp b/src/libslic3r/PresetBundle.cpp index fa887acb47..ee5feb66d8 100644 --- a/src/libslic3r/PresetBundle.cpp +++ b/src/libslic3r/PresetBundle.cpp @@ -1684,6 +1684,7 @@ void PresetBundle::load_selections(AppConfig &config, const PresetPreferences& p // If executed due to a Config Wizard update, preferred_printer contains the first newly installed printer, otherwise nullptr. const Preset *preferred_printer = printers.find_system_preset_by_model_and_variant(preferred_selection.printer_model_id, preferred_selection.printer_variant); printers.select_preset_by_name(preferred_printer ? preferred_printer->name : initial_printer_profile_name, true); + CNumericLocalesSetter locales_setter; // Orca: load from orca_presets // const auto os_presets = config.get_machine_settings(initial_printer_profile_name); diff --git a/src/libslic3r/PrintObject.cpp b/src/libslic3r/PrintObject.cpp index 8cd6fc2b35..e20cead2ce 100644 --- a/src/libslic3r/PrintObject.cpp +++ b/src/libslic3r/PrintObject.cpp @@ -2920,14 +2920,14 @@ PrintRegionConfig region_config_from_model_volume(const PrintRegionConfig &defau } else { // default_or_parent_region_config contains parent PrintRegion config, which already contains ModelVolume's config. } + apply_to_print_region_config(config, volume.config.get()); + if (! volume.material_id().empty()) + apply_to_print_region_config(config, volume.material()->config.get()); if (layer_range_config != nullptr) { // Not applicable to modifiers. assert(volume.is_model_part()); apply_to_print_region_config(config, *layer_range_config); } - apply_to_print_region_config(config, volume.config.get()); - if (! volume.material_id().empty()) - apply_to_print_region_config(config, volume.material()->config.get()); // Clamp invalid extruders to the default extruder (with index 1). clamp_exturder_to_default(config.sparse_infill_filament, num_extruders); clamp_exturder_to_default(config.wall_filament, num_extruders); diff --git a/src/libslic3r/PrintObjectSlice.cpp b/src/libslic3r/PrintObjectSlice.cpp index 53c875555b..31fc6e544f 100644 --- a/src/libslic3r/PrintObjectSlice.cpp +++ b/src/libslic3r/PrintObjectSlice.cpp @@ -215,7 +215,9 @@ static inline bool overlap_in_xy(const PrintObjectRegions::BoundingBox &l, const static std::vector::const_iterator layer_range_first(const std::vector &layer_ranges, double z) { auto it = lower_bound_by_predicate(layer_ranges.begin(), layer_ranges.end(), - [z](const PrintObjectRegions::LayerRangeRegions &lr) { return lr.layer_height_range.second < z; }); + [z](const PrintObjectRegions::LayerRangeRegions &lr) { + return lr.layer_height_range.second < z && abs(lr.layer_height_range.second - z) > EPSILON; + }); assert(it != layer_ranges.end() && it->layer_height_range.first <= z && z <= it->layer_height_range.second); if (z == it->layer_height_range.second) if (auto it_next = it; ++ it_next != layer_ranges.end() && it_next->layer_height_range.first == z) @@ -229,7 +231,7 @@ static std::vector::const_iterator layer_ std::vector::const_iterator it, double z) { - for (; it->layer_height_range.second <= z; ++ it) + for (; it->layer_height_range.second <= z + EPSILON; ++ it) assert(it != layer_ranges.end()); assert(it != layer_ranges.end() && it->layer_height_range.first <= z && z < it->layer_height_range.second); return it; diff --git a/src/miniz/miniz.c b/src/miniz/miniz.c index e75a797ee3..d649adb1bc 100644 --- a/src/miniz/miniz.c +++ b/src/miniz/miniz.c @@ -2987,6 +2987,14 @@ extern "C" { #include #if defined(_MSC_VER) || defined(__MINGW64__) +#ifdef WIN32 +static FILE *mz_wfopen(const wchar_t *pFilename, const char *pMode) +{ + FILE *pFile = NULL; + _wfopen_s(&pFile, pFilename, pMode); + return pFile; +} +#endif static FILE *mz_fopen(const char *pFilename, const char *pMode) { FILE *pFile = NULL; @@ -3004,6 +3012,9 @@ static FILE *mz_freopen(const char *pPath, const char *pMode, FILE *pStream) #include #endif #define MZ_FOPEN mz_fopen +#ifdef WIN32 +#define MZ_WFOPEN mz_wfopen +#endif #define MZ_FCLOSE fclose #define MZ_FREAD fread #define MZ_FWRITE fwrite @@ -5117,9 +5128,9 @@ mz_bool mz_zip_reader_extract_to_file(mz_zip_archive *pZip, mz_uint file_index, return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_FEATURE); pFile = MZ_FOPEN(pDst_filename, "wb"); - if (!pFile) + if (!pFile) { return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); - + } status = mz_zip_reader_extract_to_callback(pZip, file_index, mz_zip_file_write_callback, pFile, flags); if (MZ_FCLOSE(pFile) == EOF) @@ -5137,6 +5148,39 @@ mz_bool mz_zip_reader_extract_to_file(mz_zip_archive *pZip, mz_uint file_index, return status; } +#ifdef WIN32 +mz_bool mz_zip_reader_extract_to_file_w(mz_zip_archive *pZip, mz_uint file_index, const wchar_t *pDst_filename, mz_uint flags) +{ + mz_bool status; + mz_zip_archive_file_stat file_stat; + MZ_FILE * pFile; + + if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) + return MZ_FALSE; + + if ((file_stat.m_is_directory) || (!file_stat.m_is_supported)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_FEATURE); + + pFile = MZ_WFOPEN(pDst_filename, "w"); + if (!pFile) { + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + } + status = mz_zip_reader_extract_to_callback(pZip, file_index, mz_zip_file_write_callback, pFile, flags); + + if (MZ_FCLOSE(pFile) == EOF) { + if (status) + mz_zip_set_error(pZip, MZ_ZIP_FILE_CLOSE_FAILED); + status = MZ_FALSE; + } + +#if !defined(MINIZ_NO_TIME) && !defined(MINIZ_NO_STDIO) + if (status) + mz_zip_set_file_times(pDst_filename, file_stat.m_time, file_stat.m_time); +#endif + + return status; +} +#endif mz_bool mz_zip_reader_extract_file_to_file(mz_zip_archive *pZip, const char *pArchive_filename, const char *pDst_filename, mz_uint flags) { diff --git a/src/miniz/miniz.h b/src/miniz/miniz.h index fdf54092dc..4ed3320a1c 100644 --- a/src/miniz/miniz.h +++ b/src/miniz/miniz.h @@ -1211,6 +1211,9 @@ mz_bool mz_zip_reader_extract_iter_free(mz_zip_reader_extract_iter_state* pState /* Extracts a archive file to a disk file and sets its last accessed and modified times. */ /* This function only extracts files, not archive directory records. */ mz_bool mz_zip_reader_extract_to_file(mz_zip_archive *pZip, mz_uint file_index, const char *pDst_filename, mz_uint flags); +#ifdef WIN32 +mz_bool mz_zip_reader_extract_to_file_w(mz_zip_archive *pZip, mz_uint file_index, const wchar_t *pDst_filename, mz_uint flags); +#endif mz_bool mz_zip_reader_extract_file_to_file(mz_zip_archive *pZip, const char *pArchive_filename, const char *pDst_filename, mz_uint flags); /* Extracts a archive file starting at the current position in the destination FILE stream. */ diff --git a/src/slic3r/GUI/AMSMaterialsSetting.cpp b/src/slic3r/GUI/AMSMaterialsSetting.cpp index b09ec7d6cc..08e142755d 100644 --- a/src/slic3r/GUI/AMSMaterialsSetting.cpp +++ b/src/slic3r/GUI/AMSMaterialsSetting.cpp @@ -800,7 +800,7 @@ void AMSMaterialsSetting::Popup(wxString filament, wxString sn, wxString temp_mi int selection_idx = -1, idx = 0; wxArrayString filament_items; - + wxString bambu_filament_name; std::set filament_id_set; PresetBundle * preset_bundle = wxGetApp().preset_bundle; @@ -854,6 +854,8 @@ void AMSMaterialsSetting::Popup(wxString filament, wxString sn, wxString temp_mi if (filament_it->filament_id == ams_filament_id) { selection_idx = idx; + bambu_filament_name = filament_it->alias; + // update if nozzle_temperature_range is found ConfigOption *opt_min = filament_it->config.option("nozzle_temperature_range_low"); @@ -893,7 +895,13 @@ void AMSMaterialsSetting::Popup(wxString filament, wxString sn, wxString temp_mi if (!m_is_third) { m_comboBox_filament->Hide(); m_readonly_filament->Show(); - m_readonly_filament->SetLabel("Bambu " + filament); + if (bambu_filament_name.empty()) { + m_readonly_filament->SetLabel("Bambu " + filament); + } + else { + m_readonly_filament->SetLabel(bambu_filament_name); + } + m_input_nozzle_min->GetTextCtrl()->SetValue(temp_min); m_input_nozzle_max->GetTextCtrl()->SetValue(temp_max); } diff --git a/src/slic3r/GUI/CalibrationWizardStartPage.cpp b/src/slic3r/GUI/CalibrationWizardStartPage.cpp index c65ddb72ac..946cd871f2 100644 --- a/src/slic3r/GUI/CalibrationWizardStartPage.cpp +++ b/src/slic3r/GUI/CalibrationWizardStartPage.cpp @@ -16,10 +16,12 @@ void CalibrationStartPage::create_when(wxWindow* parent, wxString title, wxStrin m_when_title = new Label(this, title); m_when_title->SetFont(Label::Head_14); m_when_title->Wrap(CALIBRATION_START_PAGE_TEXT_MAX_LENGTH); + m_when_title->SetMinSize({CALIBRATION_START_PAGE_TEXT_MAX_LENGTH, -1}); m_when_content = new Label(this, content);; m_when_content->SetFont(Label::Body_14); m_when_content->Wrap(CALIBRATION_START_PAGE_TEXT_MAX_LENGTH); + m_when_content->SetMinSize({CALIBRATION_START_PAGE_TEXT_MAX_LENGTH, -1}); } void CalibrationStartPage::create_about(wxWindow* parent, wxString title, wxString content) @@ -27,10 +29,12 @@ void CalibrationStartPage::create_about(wxWindow* parent, wxString title, wxStri m_about_title = new Label(this, title); m_about_title->SetFont(Label::Head_14); m_about_title->Wrap(CALIBRATION_START_PAGE_TEXT_MAX_LENGTH); + m_about_title->SetMinSize({CALIBRATION_START_PAGE_TEXT_MAX_LENGTH, -1}); m_about_content = new Label(this, content); m_about_content->SetFont(Label::Body_14); m_about_content->Wrap(CALIBRATION_START_PAGE_TEXT_MAX_LENGTH); + m_about_content->SetMinSize({CALIBRATION_START_PAGE_TEXT_MAX_LENGTH, -1}); } void CalibrationStartPage::create_bitmap(wxWindow* parent, const wxBitmap& before_img, const wxBitmap& after_img) @@ -77,6 +81,7 @@ CalibrationPAStartPage::CalibrationPAStartPage(wxWindow* parent, wxWindowID id, create_page(this); this->SetSizer(m_top_sizer); + Layout(); m_top_sizer->Fit(this); } @@ -124,8 +129,8 @@ void CalibrationPAStartPage::create_page(wxWindow* parent) #ifdef __linux__ wxGetApp().CallAfter([this]() { - m_when_content->SetMinSize(m_when_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() / 2 }); - m_about_content->SetMinSize(m_about_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() / 2 }); + m_when_content->SetMinSize(m_when_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() }); + m_about_content->SetMinSize(m_about_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() }); Layout(); Fit(); }); @@ -200,6 +205,7 @@ CalibrationFlowRateStartPage::CalibrationFlowRateStartPage(wxWindow* parent, wxW create_page(this); this->SetSizer(m_top_sizer); + Layout(); m_top_sizer->Fit(this); } @@ -231,6 +237,7 @@ void CalibrationFlowRateStartPage::create_page(wxWindow* parent) auto extra_text = new Label(parent, _L("In addition, Flow Rate Calibration is crucial for foaming materials like LW-PLA used in RC planes. These materials expand greatly when heated, and calibration provides a useful reference flow rate.")); extra_text->SetFont(Label::Body_14); extra_text->Wrap(CALIBRATION_START_PAGE_TEXT_MAX_LENGTH); + extra_text->SetMinSize({CALIBRATION_START_PAGE_TEXT_MAX_LENGTH, -1}); m_top_sizer->Add(extra_text); m_top_sizer->AddSpacer(PRESET_GAP); @@ -245,6 +252,7 @@ void CalibrationFlowRateStartPage::create_page(wxWindow* parent) auto auto_cali_title = new Label(parent, _L("Auto-Calibration")); auto_cali_title->SetFont(Label::Head_14); auto_cali_title->Wrap(CALIBRATION_START_PAGE_TEXT_MAX_LENGTH); + auto_cali_title->SetMinSize({CALIBRATION_START_PAGE_TEXT_MAX_LENGTH, -1}); auto auto_cali_content = new Label(this, _L("Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, directly measuring the calibration patterns. However, please be advised that the efficacy and accuracy of this method may be compromised with specific types of materials. Particularly, filaments that are transparent or semi-transparent, sparkling-particled, or have a high-reflective finish may not be suitable for this calibration and can produce less-than-desirable results.\ @@ -252,6 +260,7 @@ void CalibrationFlowRateStartPage::create_page(wxWindow* parent) \n\nCaution: Flow Rate Calibration is an advanced process, to be attempted only by those who fully understand its purpose and implications. Incorrect usage can lead to sub-par prints or printer damage. Please make sure to carefully read and understand the process before doing it.")); auto_cali_content->SetFont(Label::Body_14); auto_cali_content->Wrap(CALIBRATION_START_PAGE_TEXT_MAX_LENGTH); + auto_cali_content->SetMinSize({CALIBRATION_START_PAGE_TEXT_MAX_LENGTH, -1}); m_top_sizer->Add(auto_cali_title); m_top_sizer->Add(auto_cali_content); @@ -262,9 +271,10 @@ void CalibrationFlowRateStartPage::create_page(wxWindow* parent) m_top_sizer->Add(m_action_panel, 0, wxEXPAND, 0); #ifdef __linux__ - wxGetApp().CallAfter([this, auto_cali_content]() { - m_when_content->SetMinSize(m_when_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() / 2 }); - auto_cali_content->SetMinSize(auto_cali_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() / 2 }); + wxGetApp().CallAfter([this, auto_cali_content, extra_text]() { + m_when_content->SetMinSize(m_when_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() }); + auto_cali_content->SetMinSize(auto_cali_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() }); + extra_text->SetMinSize(extra_text->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() }); Layout(); Fit(); }); @@ -332,6 +342,7 @@ CalibrationMaxVolumetricSpeedStartPage::CalibrationMaxVolumetricSpeedStartPage(w create_page(this); this->SetSizer(m_top_sizer); + Layout(); m_top_sizer->Fit(this); } diff --git a/src/slic3r/GUI/CreatePresetsDialog.cpp b/src/slic3r/GUI/CreatePresetsDialog.cpp index 85bee59d5f..be34c5f203 100644 --- a/src/slic3r/GUI/CreatePresetsDialog.cpp +++ b/src/slic3r/GUI/CreatePresetsDialog.cpp @@ -3300,7 +3300,7 @@ void CreatePresetSuccessfulDialog::on_dpi_changed(const wxRect &suggested_rect) } ExportConfigsDialog::ExportConfigsDialog(wxWindow *parent) - : DPIDialog(parent ? parent : nullptr, wxID_ANY, _L("Export Configs"), wxDefaultPosition, wxDefaultSize, wxCAPTION | wxCLOSE_BOX) + : DPIDialog(parent ? parent : nullptr, wxID_ANY, _L("Export Preset Bundle"), wxDefaultPosition, wxDefaultSize, wxCAPTION | wxCLOSE_BOX) { m_exprot_type.preset_bundle = _L("Printer config bundle(.orca_printer)"); m_exprot_type.filament_bundle = _L("Filament bundle(.orca_filament)"); diff --git a/src/slic3r/GUI/DeviceManager.cpp b/src/slic3r/GUI/DeviceManager.cpp index 8b2ce3a50e..a1d4d5b5d8 100644 --- a/src/slic3r/GUI/DeviceManager.cpp +++ b/src/slic3r/GUI/DeviceManager.cpp @@ -2660,8 +2660,6 @@ static ENUM enum_index_of(char const *key, char const **enum_names, int enum_cou int MachineObject::parse_json(std::string payload, bool key_field_only) { - CNumericLocalesSetter locales_setter; - parse_msg_count++; std::chrono::system_clock::time_point clock_start = std::chrono::system_clock::now(); this->set_online_state(true); @@ -2676,6 +2674,7 @@ int MachineObject::parse_json(std::string payload, bool key_field_only) bool restored_json = false; json j; json j_pre = json::parse(payload); + CNumericLocalesSetter locales_setter; if (j_pre.empty()) { return 0; } @@ -3511,6 +3510,9 @@ int MachineObject::parse_json(std::string payload, bool key_field_only) } } } + else { + nozzle_type = ""; + } } catch (...) { ; diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 327c3572eb..56fd990c3a 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -2137,6 +2137,13 @@ void GLCanvas3D::deselect_all() post_event(SimpleEvent(EVT_GLCANVAS_OBJECT_SELECT)); } +void GLCanvas3D::exit_gizmo() { + if (m_gizmos.get_current_type() != GLGizmosManager::Undefined) { + m_gizmos.reset_all_states(); + m_gizmos.update_data(); + } +} + void GLCanvas3D::set_selected_visible(bool visible) { for (unsigned int i : m_selection.get_volume_idxs()) { @@ -7726,24 +7733,26 @@ void GLCanvas3D::_render_imgui_select_plate_toolbar() m_sel_plate_toolbar.m_items[i]->slice_state = IMToolbarItem::SliceState::SLICED; else m_sel_plate_toolbar.m_items[i]->slice_state = IMToolbarItem::SliceState::SLICE_FAILED; - continue; } - if (plate_list.get_plate(i)->get_slicing_percent() < 0.0f) - m_sel_plate_toolbar.m_items[i]->slice_state = IMToolbarItem::SliceState::UNSLICED; - else - m_sel_plate_toolbar.m_items[i]->slice_state = IMToolbarItem::SliceState::SLICING; + else { + if (!plate_list.get_plate(i)->can_slice()) + m_sel_plate_toolbar.m_items[i]->slice_state = IMToolbarItem::SliceState::SLICE_FAILED; + else { + if (plate_list.get_plate(i)->get_slicing_percent() < 0.0f) + m_sel_plate_toolbar.m_items[i]->slice_state = IMToolbarItem::SliceState::UNSLICED; + else + m_sel_plate_toolbar.m_items[i]->slice_state = IMToolbarItem::SliceState::SLICING; + } + } } } if (m_sel_plate_toolbar.show_stats_item) { all_plates_stats_item->percent = 0.0f; size_t sliced_plates_cnt = 0; - bool slice_failed = false; for (auto plate : plate_list.get_nonempty_plate_list()) { if (plate->is_slice_result_valid() && plate->is_slice_result_ready_for_print()) sliced_plates_cnt++; - if (plate->is_slice_result_valid() && !plate->is_slice_result_ready_for_print()) - slice_failed = true; } all_plates_stats_item->percent = (float)(sliced_plates_cnt) / (float)(plate_list.get_nonempty_plate_list().size()) * 100.0f; @@ -7754,8 +7763,13 @@ void GLCanvas3D::_render_imgui_select_plate_toolbar() else if (all_plates_stats_item->percent < 100.0f) all_plates_stats_item->slice_state = IMToolbarItem::SliceState::SLICING; - if (slice_failed) - all_plates_stats_item->slice_state = IMToolbarItem::SliceState::SLICE_FAILED; + for (auto toolbar_item : m_sel_plate_toolbar.m_items) { + if(toolbar_item->slice_state == IMToolbarItem::SliceState::SLICE_FAILED) { + all_plates_stats_item->slice_state = IMToolbarItem::SliceState::SLICE_FAILED; + all_plates_stats_item->selected = false; + break; + } + } // Changing parameters does not invalid all plates, need extra logic to validate bool gcode_result_valid = true; diff --git a/src/slic3r/GUI/GLCanvas3D.hpp b/src/slic3r/GUI/GLCanvas3D.hpp index 7a748ad009..a87b11460c 100644 --- a/src/slic3r/GUI/GLCanvas3D.hpp +++ b/src/slic3r/GUI/GLCanvas3D.hpp @@ -905,6 +905,7 @@ public: void select_all(); void deselect_all(); + void exit_gizmo(); void set_selected_visible(bool visible); void delete_selected(); void ensure_on_bed(unsigned int object_idx, bool allow_negative_z); diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index e5931178e7..9c28d9acfd 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -1421,13 +1421,17 @@ int GUI_App::install_plugin(std::string name, std::string package_name, InstallP mz_bool res = mz_zip_reader_extract_to_file(&archive, stat.m_file_index, dest_zip_file.c_str(), 0); BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << boost::format(", extract %1% from plugin zip %2%\n") % dest_file % stat.m_filename; if (res == 0) { - mz_zip_error zip_error = mz_zip_get_last_error(&archive); - BOOST_LOG_TRIVIAL(error) << "[install_plugin]Archive read error:" << mz_zip_get_error_string(zip_error) << std::endl; - close_zip_reader(&archive); - if (pro_fn) { - pro_fn(InstallStatusUnzipFailed, 0, cancel); +#ifdef WIN32 + std::wstring new_dest_zip_file = boost::locale::conv::utf_to_utf(dest_path.generic_string()); + res = mz_zip_reader_extract_to_file_w(&archive, stat.m_file_index, new_dest_zip_file.c_str(), 0); +#endif + if (res == 0) { + mz_zip_error zip_error = mz_zip_get_last_error(&archive); + BOOST_LOG_TRIVIAL(error) << "[install_plugin]Archive read error:" << mz_zip_get_error_string(zip_error) << std::endl; + close_zip_reader(&archive); + if (pro_fn) { pro_fn(InstallStatusUnzipFailed, 0, cancel); } + return InstallStatusUnzipFailed; } - return InstallStatusUnzipFailed; } else { if (pro_fn) { diff --git a/src/slic3r/GUI/GUI_Preview.cpp b/src/slic3r/GUI/GUI_Preview.cpp index 74d1f959da..7b11a9aa8e 100644 --- a/src/slic3r/GUI/GUI_Preview.cpp +++ b/src/slic3r/GUI/GUI_Preview.cpp @@ -154,6 +154,12 @@ void View3D::deselect_all() m_canvas->deselect_all(); } +void View3D::exit_gizmo() +{ + if (m_canvas != nullptr) + m_canvas->exit_gizmo(); +} + void View3D::delete_selected() { if (m_canvas != nullptr) diff --git a/src/slic3r/GUI/GUI_Preview.hpp b/src/slic3r/GUI/GUI_Preview.hpp index 9cb20f6573..7d6a332bc0 100644 --- a/src/slic3r/GUI/GUI_Preview.hpp +++ b/src/slic3r/GUI/GUI_Preview.hpp @@ -63,6 +63,7 @@ public: void select_all(); void deselect_all(); + void exit_gizmo(); void delete_selected(); void center_selected(); void center_selected_plate(const int plate_idx); diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 4d455038cd..f18c2d7be6 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -1550,7 +1550,8 @@ wxBoxSizer* MainFrame::create_side_tools() m_slice_btn->Bind(wxEVT_BUTTON, [this](wxCommandEvent& event) { //this->m_plater->select_view_3D("Preview"); - m_plater->update(false, true); + m_plater->exit_gizmo(); + m_plater->update(true, true); if (m_slice_select == eSliceAll) wxPostEvent(m_plater, SimpleEvent(EVT_GLTOOLBAR_SLICE_ALL)); else @@ -2344,7 +2345,7 @@ void MainFrame::init_menubar_as_editor() [this](wxCommandEvent&) { if (m_plater) m_plater->export_gcode(false); }, "menu_export_gcode", nullptr, [this]() {return can_export_gcode(); }, this); append_menu_item( - export_menu, wxID_ANY, _L("Export &Configs") + dots /* + "\tCtrl+E"*/, _L("Export current configuration to files"), + export_menu, wxID_ANY, _L("Export Preset Bundle") + dots /* + "\tCtrl+E"*/, _L("Export current configuration to files"), [this](wxCommandEvent &) { export_config(); }, "menu_export_config", nullptr, []() { return true; }, this); diff --git a/src/slic3r/GUI/MediaPlayCtrl.cpp b/src/slic3r/GUI/MediaPlayCtrl.cpp index b69ea2b8b2..36500f69fa 100644 --- a/src/slic3r/GUI/MediaPlayCtrl.cpp +++ b/src/slic3r/GUI/MediaPlayCtrl.cpp @@ -578,11 +578,11 @@ void MediaPlayCtrl::onStateChanged(wxMediaEvent &event) m_failed_code = m_media_ctrl->GetLastError(); if (size.GetWidth() >= 320) { m_last_state = state; + m_failed_code = 0; SetStatus(_L("Playing..."), false); m_failed_retry = 0; - m_failed_code = 0; m_disable_lan = false; boost::unique_lock lock(m_mutex); m_tasks.push_back(""); diff --git a/src/slic3r/GUI/MultiMachineManagerPage.cpp b/src/slic3r/GUI/MultiMachineManagerPage.cpp index 27898b78fa..b37810f07f 100644 --- a/src/slic3r/GUI/MultiMachineManagerPage.cpp +++ b/src/slic3r/GUI/MultiMachineManagerPage.cpp @@ -721,5 +721,47 @@ void MultiMachineManagerPage::page_num_enter_evt() update_page_number(); } +void MultiMachineManagerPage::msw_rescale() +{ + m_printer_name->Rescale(); + m_printer_name->SetMinSize(wxSize(FromDIP(DEVICE_LEFT_DEV_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_printer_name->SetMaxSize(wxSize(FromDIP(DEVICE_LEFT_DEV_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_task_name->Rescale(); + m_task_name->SetMinSize(wxSize(FromDIP(DEVICE_LEFT_DEV_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_task_name->SetMaxSize(wxSize(FromDIP(DEVICE_LEFT_DEV_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_status->Rescale(); + m_status->SetMinSize(wxSize(FromDIP(DEVICE_LEFT_PRO_INFO), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_status->SetMaxSize(wxSize(FromDIP(DEVICE_LEFT_PRO_INFO), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_action->Rescale(); + m_action->SetMinSize(wxSize(FromDIP(DEVICE_LEFT_PRO_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_action->SetMaxSize(wxSize(FromDIP(DEVICE_LEFT_PRO_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_button_add->Rescale(); + m_button_add->SetMinSize(wxSize(FromDIP(90), FromDIP(36))); + m_button_add->SetMaxSize(wxSize(FromDIP(90), FromDIP(36))); + + btn_last_page->Rescale(); + btn_last_page->SetMinSize(wxSize(FromDIP(20), FromDIP(20))); + btn_last_page->SetMaxSize(wxSize(FromDIP(20), FromDIP(20))); + btn_next_page->Rescale(); + btn_next_page->SetMinSize(wxSize(FromDIP(20), FromDIP(20))); + btn_next_page->SetMaxSize(wxSize(FromDIP(20), FromDIP(20))); + m_page_num_enter->Rescale(); + m_page_num_enter->SetMinSize(wxSize(FromDIP(25), FromDIP(25))); + m_page_num_enter->SetMaxSize(wxSize(FromDIP(25), FromDIP(25))); + + m_button_edit->Rescale(); + m_button_edit->SetMinSize(wxSize(FromDIP(90), FromDIP(36))); + m_button_edit->SetMaxSize(wxSize(FromDIP(90), FromDIP(36))); + + + for (const auto& item : m_device_items) { + item->Refresh(); + } + + Fit(); + Layout(); + Refresh(); +} + } // namespace GUI } // namespace Slic3r diff --git a/src/slic3r/GUI/MultiMachineManagerPage.hpp b/src/slic3r/GUI/MultiMachineManagerPage.hpp index 87d8d9866e..c1086b4721 100644 --- a/src/slic3r/GUI/MultiMachineManagerPage.hpp +++ b/src/slic3r/GUI/MultiMachineManagerPage.hpp @@ -60,6 +60,8 @@ public: void page_num_enter_evt(); + void msw_rescale(); + private: std::vector m_state_objs; std::vector m_device_items; diff --git a/src/slic3r/GUI/MultiMachinePage.cpp b/src/slic3r/GUI/MultiMachinePage.cpp index 4ed797c0fd..ae13c30840 100644 --- a/src/slic3r/GUI/MultiMachinePage.cpp +++ b/src/slic3r/GUI/MultiMachinePage.cpp @@ -40,6 +40,17 @@ void MultiMachinePage::on_sys_color_changed() void MultiMachinePage::msw_rescale() { + m_tabpanel->Rescale(); + if (m_local_task_manager) + m_local_task_manager->msw_rescale(); + if (m_cloud_task_manager) + m_cloud_task_manager->msw_rescale(); + if (m_machine_manager) + m_machine_manager->msw_rescale(); + + this->Fit(); + this->Layout(); + this->Refresh(); } bool MultiMachinePage::Show(bool show) diff --git a/src/slic3r/GUI/MultiTaskManagerPage.cpp b/src/slic3r/GUI/MultiTaskManagerPage.cpp index 778350e825..f2d159a7de 100644 --- a/src/slic3r/GUI/MultiTaskManagerPage.cpp +++ b/src/slic3r/GUI/MultiTaskManagerPage.cpp @@ -776,7 +776,7 @@ void LocalTaskManagerPage::refresh_user_device(bool clear) MultiTaskItem* mtitem = new MultiTaskItem(m_task_list, nullptr, 0); mtitem->task_obj = task_state_info; mtitem->m_project_name = wxString::FromUTF8(task_state_info->get_task_name()); - mtitem->m_dev_name = task_state_info->get_device_name(); + mtitem->m_dev_name = wxString::FromUTF8(task_state_info->get_device_name()); mtitem->m_dev_id = task_state_info->params().dev_id; mtitem->m_send_time = task_state_info->get_sent_time(); mtitem->state_local_task = task_state_info->state(); @@ -855,6 +855,41 @@ void LocalTaskManagerPage::cancel_all(wxCommandEvent& evt) } } +void LocalTaskManagerPage::msw_rescale() +{ + m_select_checkbox->Rescale(); + m_select_checkbox->SetMinSize(wxSize(FromDIP(TASK_LEFT_PRINTABLE), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_select_checkbox->SetMaxSize(wxSize(FromDIP(TASK_LEFT_PRINTABLE), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_task_name->Rescale(); + m_task_name->SetMinSize(wxSize(FromDIP(TASK_LEFT_PRO_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_task_name->SetMaxSize(wxSize(FromDIP(TASK_LEFT_PRO_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_printer_name->Rescale(); + m_printer_name->SetMinSize(wxSize(FromDIP(TASK_LEFT_DEV_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_printer_name->SetMaxSize(wxSize(FromDIP(TASK_LEFT_DEV_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_status->Rescale(); + m_status->SetMinSize(wxSize(FromDIP(TASK_LEFT_PRO_STATE), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_status->SetMaxSize(wxSize(FromDIP(TASK_LEFT_PRO_STATE), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_info->Rescale(); + m_info->SetMinSize(wxSize(FromDIP(TASK_LEFT_PRO_INFO), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_info->SetMaxSize(wxSize(FromDIP(TASK_LEFT_PRO_INFO), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_send_time->Rescale(); + m_send_time->SetMinSize(wxSize(FromDIP(TASK_LEFT_SEND_TIME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_send_time->SetMaxSize(wxSize(FromDIP(TASK_LEFT_SEND_TIME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_action->Rescale(); + m_action->SetMinSize(wxSize(FromDIP(TASK_LEFT_PRO_INFO), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_action->SetMaxSize(wxSize(FromDIP(TASK_LEFT_PRO_INFO), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + + btn_stop_all->Rescale(); + + for (auto it = m_task_items.begin(); it != m_task_items.end(); ++it) { + it->second->Refresh(); + } + + Fit(); + Layout(); + Refresh(); +} + CloudTaskManagerPage::CloudTaskManagerPage(wxWindow* parent) : wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL) { @@ -1214,7 +1249,7 @@ void CloudTaskManagerPage::refresh_user_device(bool clear) //mtitem->task_obj = task_state_info; mtitem->m_job_id = task_state_info.get_job_id(); mtitem->m_project_name = wxString::FromUTF8(task_state_info.get_task_name()); - mtitem->m_dev_name = task_state_info.get_device_name(); + mtitem->m_dev_name = wxString::FromUTF8(task_state_info.get_device_name()); mtitem->m_dev_id = task_state_info.params().dev_id; mtitem->m_send_time = utc_time_to_date(task_state_info.start_time); @@ -1432,5 +1467,52 @@ void CloudTaskManagerPage::page_num_enter_evt() Layout();*/ } +void CloudTaskManagerPage::msw_rescale() +{ + btn_last_page->Rescale(); + btn_last_page->SetMinSize(wxSize(FromDIP(20), FromDIP(20))); + btn_last_page->SetMaxSize(wxSize(FromDIP(20), FromDIP(20))); + btn_next_page->Rescale(); + btn_next_page->SetMinSize(wxSize(FromDIP(20), FromDIP(20))); + btn_next_page->SetMaxSize(wxSize(FromDIP(20), FromDIP(20))); + m_page_num_enter->Rescale(); + m_page_num_enter->SetMinSize(wxSize(FromDIP(25), FromDIP(25))); + m_page_num_enter->SetMaxSize(wxSize(FromDIP(25), FromDIP(25))); + + m_select_checkbox->Rescale(); + m_select_checkbox->SetMinSize(wxSize(FromDIP(TASK_LEFT_PRINTABLE), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_select_checkbox->SetMaxSize(wxSize(FromDIP(TASK_LEFT_PRINTABLE), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_task_name->Rescale(); + m_task_name->SetMinSize(wxSize(FromDIP(TASK_LEFT_PRO_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_task_name->SetMaxSize(wxSize(FromDIP(TASK_LEFT_PRO_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_printer_name->Rescale(); + m_printer_name->SetMinSize(wxSize(FromDIP(TASK_LEFT_DEV_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_printer_name->SetMaxSize(wxSize(FromDIP(TASK_LEFT_DEV_NAME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_status->Rescale(); + m_status->SetMinSize(wxSize(FromDIP(TASK_LEFT_PRO_STATE), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_status->SetMaxSize(wxSize(FromDIP(TASK_LEFT_PRO_STATE), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_info->Rescale(); + m_info->SetMinSize(wxSize(FromDIP(TASK_LEFT_PRO_INFO), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_info->SetMaxSize(wxSize(FromDIP(TASK_LEFT_PRO_INFO), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_send_time->Rescale(); + m_send_time->SetMinSize(wxSize(FromDIP(TASK_LEFT_SEND_TIME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_send_time->SetMaxSize(wxSize(FromDIP(TASK_LEFT_SEND_TIME), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_action->Rescale(); + m_action->SetMinSize(wxSize(FromDIP(TASK_LEFT_PRO_INFO), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + m_action->SetMaxSize(wxSize(FromDIP(TASK_LEFT_PRO_INFO), FromDIP(DEVICE_ITEM_MAX_HEIGHT))); + + btn_pause_all->Rescale(); + btn_continue_all->Rescale(); + btn_stop_all->Rescale(); + + for (auto it = m_task_items.begin(); it != m_task_items.end(); ++it) { + it->second->Refresh(); + } + + Fit(); + Layout(); + Refresh(); +} + } // namespace GUI } // namespace Slic3r diff --git a/src/slic3r/GUI/MultiTaskManagerPage.hpp b/src/slic3r/GUI/MultiTaskManagerPage.hpp index 40341560ed..0f676d06b3 100644 --- a/src/slic3r/GUI/MultiTaskManagerPage.hpp +++ b/src/slic3r/GUI/MultiTaskManagerPage.hpp @@ -85,6 +85,7 @@ public: void refresh_user_device(bool clear = false); bool Show(bool show); void cancel_all(wxCommandEvent& evt); + void msw_rescale(); private: SortItem m_sort; @@ -143,6 +144,8 @@ public: void enable_buttons(bool enable); void page_num_enter_evt(); + void msw_rescale(); + private: SortItem m_sort; bool device_name_big{ true }; diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index a067bfefd2..24b8f8f37f 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -2372,6 +2372,7 @@ struct Plater::priv void select_all(); void deselect_all(); + void exit_gizmo(); void remove(size_t obj_idx); bool delete_object_from_model(size_t obj_idx, bool refresh_immediately = true); //BBS void delete_all_objects_from_model(); @@ -3926,6 +3927,16 @@ std::vector Plater::priv::load_files(const std::vector& input_ //always load config { + // BBS: save the wipe tower pos in file here, will be used later + ConfigOptionFloats* wipe_tower_x_opt = config.opt("wipe_tower_x"); + ConfigOptionFloats* wipe_tower_y_opt = config.opt("wipe_tower_y"); + std::optionalfile_wipe_tower_x; + std::optionalfile_wipe_tower_y; + if (wipe_tower_x_opt) + file_wipe_tower_x = *wipe_tower_x_opt; + if (wipe_tower_y_opt) + file_wipe_tower_y = *wipe_tower_y_opt; + preset_bundle->load_config_model(filename.string(), std::move(config), file_version); ConfigOption* bed_type_opt = preset_bundle->project_config.option("curr_bed_type"); @@ -4001,6 +4012,17 @@ std::vector Plater::priv::load_files(const std::vector& input_ // when for extruder colors are used filament colors q->on_filaments_change(preset_bundle->filament_presets.size()); is_project_file = true; + + //BBS: rewrite wipe tower pos stored in 3mf file , the code above should be seriously reconsidered + { + DynamicConfig& proj_cfg = wxGetApp().preset_bundle->project_config; + ConfigOptionFloats* wipe_tower_x = proj_cfg.opt("wipe_tower_x"); + ConfigOptionFloats* wipe_tower_y = proj_cfg.opt("wipe_tower_y"); + if (file_wipe_tower_x) + *wipe_tower_x = *file_wipe_tower_x; + if (file_wipe_tower_y) + *wipe_tower_y = *file_wipe_tower_y; + } } } if (!silence) wxGetApp().app_config->update_config_dir(path.parent_path().string()); @@ -4771,6 +4793,11 @@ void Plater::priv::deselect_all() view3D->deselect_all(); } +void Plater::priv::exit_gizmo() +{ + view3D->exit_gizmo(); +} + void Plater::priv::remove(size_t obj_idx) { if (view3D->is_layers_editing_enabled()) @@ -5970,7 +5997,8 @@ void Plater::priv::reload_from_disk() for (auto [src, dest] : replace_paths) { for (auto [obj_idx, vol_idx] : selected_volumes) { if (boost::algorithm::iequals(model.objects[obj_idx]->volumes[vol_idx]->source.input_file, src.string())) - replace_volume_with_stl(obj_idx, vol_idx, dest, ""); + // When an error occurs, either the dest parsing error occurs, or the number of objects in the dest is greater than 1 and cannot be replaced, and cannot be replaced in this loop. + if (!replace_volume_with_stl(obj_idx, vol_idx, dest, "")) break; } } #else @@ -10659,6 +10687,7 @@ void Plater::remove_curr_plate_all() { p->remove_curr_plate_all(); } void Plater::select_all() { p->select_all(); } void Plater::deselect_all() { p->deselect_all(); } +void Plater::exit_gizmo() { p->exit_gizmo(); } void Plater::remove(size_t obj_idx) { p->remove(obj_idx); } void Plater::reset(bool apply_presets_change) { p->reset(apply_presets_change); } @@ -12003,7 +12032,7 @@ int Plater::start_next_slice() this->p->view3D->reload_scene(false); BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << boost::format(": update_background_process returns %1%")%state; - if (p->partplate_list.get_curr_plate()->is_apply_result_invalid()) { + if (!p->partplate_list.get_curr_plate()->can_slice()) { p->process_completed_with_error = p->partplate_list.get_curr_plate_index(); BOOST_LOG_TRIVIAL(warning) << __FUNCTION__ << boost::format(": found invalidated apply in update_background_process."); return -1; diff --git a/src/slic3r/GUI/Plater.hpp b/src/slic3r/GUI/Plater.hpp index a2fa773129..e03fd3d60c 100644 --- a/src/slic3r/GUI/Plater.hpp +++ b/src/slic3r/GUI/Plater.hpp @@ -378,6 +378,7 @@ public: void select_all(); void deselect_all(); + void exit_gizmo(); void remove(size_t obj_idx); void reset(bool apply_presets_change = false); void reset_with_confirm(); diff --git a/src/slic3r/GUI/PrintOptionsDialog.cpp b/src/slic3r/GUI/PrintOptionsDialog.cpp index 168da3886e..c22b62727a 100644 --- a/src/slic3r/GUI/PrintOptionsDialog.cpp +++ b/src/slic3r/GUI/PrintOptionsDialog.cpp @@ -217,7 +217,7 @@ wxBoxSizer* PrintOptionsDialog::create_settings_group(wxWindow* parent) // ai monitoring with levels line_sizer = new wxBoxSizer(wxHORIZONTAL); m_cb_ai_monitoring = new CheckBox(parent); - text_ai_monitoring = new wxStaticText(parent, wxID_ANY, _L("Enable AI monitoring of printing")); + text_ai_monitoring = new Label(parent, _L("Enable AI monitoring of printing")); text_ai_monitoring->SetFont(Label::Body_14); line_sizer->Add(FromDIP(5), 0, 0, 0); line_sizer->Add(m_cb_ai_monitoring, 0, wxALL | wxALIGN_CENTER_VERTICAL, FromDIP(5)); @@ -227,7 +227,7 @@ wxBoxSizer* PrintOptionsDialog::create_settings_group(wxWindow* parent) line_sizer->Add(FromDIP(5), 0, 0, 0); line_sizer = new wxBoxSizer(wxHORIZONTAL); - text_ai_monitoring_caption = new wxStaticText(parent, wxID_ANY, _L("Sensitivity of pausing is")); + text_ai_monitoring_caption = new Label(parent, _L("Sensitivity of pausing is")); text_ai_monitoring_caption->SetFont(Label::Body_14); text_ai_monitoring_caption->SetForegroundColour(STATIC_TEXT_CAPTION_COL); text_ai_monitoring_caption->Wrap(-1); @@ -255,7 +255,7 @@ wxBoxSizer* PrintOptionsDialog::create_settings_group(wxWindow* parent) // detection of build plate position line_sizer = new wxBoxSizer(wxHORIZONTAL); m_cb_plate_mark = new CheckBox(parent); - text_plate_mark = new wxStaticText(parent, wxID_ANY, _L("Enable detection of build plate position")); + text_plate_mark = new Label(parent, _L("Enable detection of build plate position")); text_plate_mark->SetFont(Label::Body_14); line_sizer->Add(FromDIP(5), 0, 0, 0); line_sizer->Add(m_cb_plate_mark, 0, wxALL | wxALIGN_CENTER_VERTICAL, FromDIP(5)); @@ -282,7 +282,7 @@ wxBoxSizer* PrintOptionsDialog::create_settings_group(wxWindow* parent) // detection of first layer line_sizer = new wxBoxSizer(wxHORIZONTAL); m_cb_first_layer = new CheckBox(parent); - text_first_layer = new wxStaticText(parent, wxID_ANY, _L("First Layer Inspection")); + text_first_layer = new Label(parent, _L("First Layer Inspection")); text_first_layer->SetFont(Label::Body_14); line_sizer->Add(FromDIP(5), 0, 0, 0); line_sizer->Add(m_cb_first_layer, 0, wxALL | wxALIGN_CENTER_VERTICAL, FromDIP(5)); @@ -298,7 +298,7 @@ wxBoxSizer* PrintOptionsDialog::create_settings_group(wxWindow* parent) // auto-recovery from step loss line_sizer = new wxBoxSizer(wxHORIZONTAL); m_cb_auto_recovery = new CheckBox(parent); - text_auto_recovery = new wxStaticText(parent, wxID_ANY, _L("Auto-recovery from step loss")); + text_auto_recovery = new Label(parent, _L("Auto-recovery from step loss")); text_auto_recovery->SetFont(Label::Body_14); line_sizer->Add(FromDIP(5), 0, 0, 0); line_sizer->Add(m_cb_auto_recovery, 0, wxALL | wxALIGN_CENTER_VERTICAL, FromDIP(5)); @@ -315,7 +315,7 @@ wxBoxSizer* PrintOptionsDialog::create_settings_group(wxWindow* parent) //Allow prompt sound line_sizer = new wxBoxSizer(wxHORIZONTAL); m_cb_sup_sound = new CheckBox(parent); - text_sup_sound = new wxStaticText(parent, wxID_ANY, _L("Allow Prompt Sound")); + text_sup_sound = new Label(parent, _L("Allow Prompt Sound")); text_sup_sound->SetFont(Label::Body_14); line_sizer->Add(FromDIP(5), 0, 0, 0); line_sizer->Add(m_cb_sup_sound, 0, wxALL | wxALIGN_CENTER_VERTICAL, FromDIP(5)); @@ -332,7 +332,7 @@ wxBoxSizer* PrintOptionsDialog::create_settings_group(wxWindow* parent) //filament tangle detect line_sizer = new wxBoxSizer(wxHORIZONTAL); m_cb_filament_tangle = new CheckBox(parent); - text_filament_tangle = new wxStaticText(parent, wxID_ANY, _L("Filament Tangle Detect")); + text_filament_tangle = new Label(parent, _L("Filament Tangle Detect")); text_filament_tangle->SetFont(Label::Body_14); line_sizer->Add(FromDIP(5), 0, 0, 0); line_sizer->Add(m_cb_filament_tangle, 0, wxALL | wxALIGN_CENTER_VERTICAL, FromDIP(5)); @@ -349,7 +349,7 @@ wxBoxSizer* PrintOptionsDialog::create_settings_group(wxWindow* parent) //nozzle blob detect line_sizer = new wxBoxSizer(wxHORIZONTAL); m_cb_nozzle_blob = new CheckBox(parent); - text_nozzle_blob = new wxStaticText(parent, wxID_ANY, _L("Nozzle Clumping Detection")); + text_nozzle_blob = new Label(parent, _L("Nozzle Clumping Detection")); text_nozzle_blob->SetFont(Label::Body_14); line_sizer->Add(FromDIP(5), 0, 0, 0); line_sizer->Add(m_cb_nozzle_blob, 0, wxALL | wxALIGN_CENTER_VERTICAL, FromDIP(5)); @@ -589,10 +589,17 @@ bool PrinterPartsDialog::Show(bool show) nozzle_diameter_checkbox->Clear(); if (type.empty()) { + nozzle_type_checkbox->SetValue(wxEmptyString); + nozzle_diameter_checkbox->SetValue(wxEmptyString); + nozzle_type_checkbox->Disable(); nozzle_diameter_checkbox->Disable(); return DPIDialog::Show(show); } + else { + nozzle_type_checkbox->Enable(); + nozzle_diameter_checkbox->Enable(); + } last_nozzle_type = type; diff --git a/src/slic3r/GUI/PrintOptionsDialog.hpp b/src/slic3r/GUI/PrintOptionsDialog.hpp index 63fe24af63..db55d12dcc 100644 --- a/src/slic3r/GUI/PrintOptionsDialog.hpp +++ b/src/slic3r/GUI/PrintOptionsDialog.hpp @@ -50,17 +50,17 @@ protected: CheckBox* m_cb_sup_sound; CheckBox* m_cb_filament_tangle; CheckBox* m_cb_nozzle_blob; - wxStaticText* text_first_layer; - wxStaticText* text_ai_monitoring; - wxStaticText* text_ai_monitoring_caption; + Label* text_first_layer; + Label* text_ai_monitoring; + Label* text_ai_monitoring_caption; ComboBox* ai_monitoring_level_list; - wxStaticText* text_plate_mark; - wxStaticText* text_plate_mark_caption; - wxStaticText* text_auto_recovery; - wxStaticText* text_sup_sound; - wxStaticText* text_filament_tangle; - wxStaticText* text_nozzle_blob; - wxStaticText* text_nozzle_blob_caption; + Label* text_plate_mark; + Label* text_plate_mark_caption; + Label* text_auto_recovery; + Label* text_sup_sound; + Label* text_filament_tangle; + Label* text_nozzle_blob; + Label* text_nozzle_blob_caption; StaticLine* line1; StaticLine* line2; StaticLine* line3; diff --git a/src/slic3r/GUI/Printer/PrinterFileSystem.cpp b/src/slic3r/GUI/Printer/PrinterFileSystem.cpp index 46debf2123..8d272057f8 100644 --- a/src/slic3r/GUI/Printer/PrinterFileSystem.cpp +++ b/src/slic3r/GUI/Printer/PrinterFileSystem.cpp @@ -46,7 +46,7 @@ static wxBitmap default_thumbnail; static std::map error_messages = { {PrinterFileSystem::ERROR_PIPE, L("Reconnecting the printer, the operation cannot be completed immediately, please try again later.")}, - {PrinterFileSystem::ERROR_RES_BUSY, L("Over 4 systems/handy are using remote access, you can close some and try again.")}, + {PrinterFileSystem::ERROR_RES_BUSY, L("The device cannot handle more conversations. Please retry later.")}, {PrinterFileSystem::FILE_NO_EXIST, L("File does not exist.")}, {PrinterFileSystem::FILE_CHECK_ERR, L("File checksum error. Please retry.")}, {PrinterFileSystem::FILE_TYPE_ERR, L("Not supported on the current printer version.")}, @@ -73,7 +73,7 @@ PrinterFileSystem::PrinterFileSystem() wxString path = "D:\\work\\pic\\"; for (int i = 0; i < 10; ++i) { auto name = wxString::Format(L"gcode-%02d.3mf", i + 1); - m_file_list.push_back({name.ToUTF8().data(), "", time.GetTicks(), 26937, i < 5 ? FF_DOWNLOAD : 0, default_thumbnail, i * 34 - 35}); + m_file_list.push_back({name.ToUTF8().data(), "", time.GetTicks(), 26937, i < 5 ? FF_DOWNLOAD : 0, default_thumbnail}); std::ifstream ifs((path + name).ToUTF8().data(), std::ios::binary); if (ifs) ParseThumbnail(m_file_list.back(), ifs); @@ -84,7 +84,7 @@ PrinterFileSystem::PrinterFileSystem() for (int i = 0; i < 100; ++i) { auto name = wxString::Format(L"img-%03d.jpg", i + 1); wxImage im(path + name); - m_file_list.push_back({name.ToUTF8().data(), "", time.GetTicks(), 26937, i < 20 ? FF_DOWNLOAD : 0, i > 3 ? im : default_thumbnail, i * 10 - 40 - 1}); + m_file_list.push_back({name.ToUTF8().data(), "", time.GetTicks(), 26937, i < 20 ? FF_DOWNLOAD : 0, i > 3 ? im : default_thumbnail}); time.Add(wxDateSpan::Days(-1)); } m_file_list[0].thumbnail = default_thumbnail; @@ -958,13 +958,13 @@ void PrinterFileSystem::FileRemoved(std::pair type, size_ if (file_index.second == size_t(-1)) return; if (&file_index.first == &m_file_list) { - auto removeFromGroup = [](std::vector &group, size_t index, int total) { + auto removeFromGroup = [](std::vector &group, size_t index, size_t total) { for (auto iter = group.begin(); iter != group.end(); ++iter) { size_t index2 = -1; if (*iter < index) continue; if (*iter == index) { auto iter2 = iter + 1; - if (iter2 == group.end() ? index == total - 1 : *iter2 == index + 1) { + if (index + 1 == (iter2 == group.end() ? total : *iter2)) { index2 = std::distance(group.begin(), iter); } ++iter; @@ -978,11 +978,11 @@ void PrinterFileSystem::FileRemoved(std::pair type, size_ }; size_t index2 = removeFromGroup(m_group_month, index, m_file_list.size()); if (index2 < m_group_month.size()) { - int index3 = removeFromGroup(m_group_year, index, m_group_month.size()); + int index3 = removeFromGroup(m_group_year, index2, m_group_month.size()); if (index3 < m_group_year.size()) { m_group_year.erase(m_group_year.begin() + index3); if (m_group_mode == G_YEAR) - m_group_flags.erase(m_group_flags.begin() + index2); + m_group_flags.erase(m_group_flags.begin() + index3); } m_group_month.erase(m_group_month.begin() + index2); if (m_group_mode == G_MONTH) @@ -1295,7 +1295,7 @@ void PrinterFileSystem::Reconnect(boost::unique_lock &l, int resul } wxLogMessage("PrinterFileSystem::Reconnect Failed"); m_status = Status::Failed; - SendChangedEvent(EVT_STATUS_CHANGED, m_status, "", url.size() < 2 ? 1 : 0); + SendChangedEvent(EVT_STATUS_CHANGED, m_status, "", url.size() < 2 ? 1 : m_last_error); m_cond.timed_wait(l, boost::posix_time::seconds(10)); } m_status = Status::ListSyncing; diff --git a/src/slic3r/GUI/SendMultiMachinePage.cpp b/src/slic3r/GUI/SendMultiMachinePage.cpp index 368bfa9161..0831377c53 100644 --- a/src/slic3r/GUI/SendMultiMachinePage.cpp +++ b/src/slic3r/GUI/SendMultiMachinePage.cpp @@ -322,7 +322,38 @@ void SendMultiMachinePage::prepare(int plate_idx) void SendMultiMachinePage::on_dpi_changed(const wxRect& suggested_rect) { + m_select_checkbox->Rescale(); + m_printer_name->Rescale(); + m_printer_name->SetMinSize(wxSize(FromDIP(SEND_LEFT_DEV_NAME), FromDIP(SEND_ITEM_MAX_HEIGHT))); + m_printer_name->SetMaxSize(wxSize(FromDIP(SEND_LEFT_DEV_NAME), FromDIP(SEND_ITEM_MAX_HEIGHT))); + m_device_status->Rescale(); + m_device_status->SetMinSize(wxSize(FromDIP(SEND_LEFT_DEV_STATUS), FromDIP(SEND_ITEM_MAX_HEIGHT))); + m_device_status->SetMaxSize(wxSize(FromDIP(SEND_LEFT_DEV_STATUS), FromDIP(SEND_ITEM_MAX_HEIGHT))); + m_ams->Rescale(); + m_ams->SetMinSize(wxSize(FromDIP(TASK_LEFT_SEND_TIME), FromDIP(SEND_ITEM_MAX_HEIGHT))); + m_ams->SetMaxSize(wxSize(FromDIP(TASK_LEFT_SEND_TIME), FromDIP(SEND_ITEM_MAX_HEIGHT))); + m_refresh_button->Rescale(); + m_refresh_button->SetMinSize(wxSize(FromDIP(50), FromDIP(SEND_ITEM_MAX_HEIGHT))); + m_refresh_button->SetMaxSize(wxSize(FromDIP(50), FromDIP(SEND_ITEM_MAX_HEIGHT))); + m_rename_button->msw_rescale(); + print_time->msw_rescale(); + print_weight->msw_rescale(); + timeimg->SetBitmap(print_time->bmp()); + weightimg->SetBitmap(print_weight->bmp()); + m_button_add->Rescale(); + m_button_add->SetMinSize(wxSize(FromDIP(90), FromDIP(36))); + m_button_add->SetMaxSize(wxSize(FromDIP(90), FromDIP(36))); + m_button_send->Rescale(); + m_button_send->SetMinSize(wxSize(FromDIP(120), FromDIP(40))); + m_button_send->SetMinSize(wxSize(FromDIP(120), FromDIP(40))); + for (auto it = m_device_items.begin(); it != m_device_items.end(); ++it) { + it->second->Refresh(); + } + + Fit(); + Layout(); + Refresh(); } void SendMultiMachinePage::on_sys_color_changed() @@ -654,6 +685,13 @@ void SendMultiMachinePage::on_send(wxCommandEvent& event) } } + + if (print_params.size() <= 0) { + MessageDialog msg_wingow(nullptr, _L("There is no device available to send printing."), "", wxICON_WARNING | wxOK); + msg_wingow.ShowModal(); + return; + } + if (wxGetApp().getTaskManager()) { TaskSettings settings; @@ -672,6 +710,15 @@ void SendMultiMachinePage::on_send(wxCommandEvent& event) settings.sending_interval = std::stoi(app_config->get("sending_interval")) * 60; settings.max_sending_at_same_time = std::stoi(app_config->get("max_send")); + + if (settings.max_sending_at_same_time <= 0) { + MessageDialog msg_wingow(nullptr, _L("The number of printers in use simultaneously cannot be equal to 0."), "", wxICON_WARNING | wxOK); + msg_wingow.ShowModal(); + return; + } + + + wxGetApp().getTaskManager()->start_print(print_params, &settings); } catch (...) @@ -943,15 +990,18 @@ wxPanel* SendMultiMachinePage::create_page() m_title_sizer = new wxBoxSizer(wxHORIZONTAL); m_rename_switch_panel = new wxSimplebook(m_title_panel); + m_rename_switch_panel->SetMinSize(wxSize(FromDIP(240), FromDIP(25))); + m_rename_switch_panel->SetMaxSize(wxSize(FromDIP(240), FromDIP(25))); m_rename_normal_panel = new wxPanel(m_rename_switch_panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL); m_rename_normal_panel->SetBackgroundColour(*wxWHITE); rename_sizer_v = new wxBoxSizer(wxVERTICAL); rename_sizer_h = new wxBoxSizer(wxHORIZONTAL); - m_task_name = new wxStaticText(m_rename_normal_panel, wxID_ANY, wxT("MyLabel"), wxDefaultPosition, wxDefaultSize, wxST_ELLIPSIZE_END); + m_task_name = new wxStaticText(m_rename_normal_panel, wxID_ANY, wxT("MyLabel"), wxDefaultPosition, wxDefaultSize, wxST_ELLIPSIZE_END | wxALIGN_CENTRE); m_task_name->SetFont(::Label::Body_13); - m_task_name->SetMaxSize(wxSize(FromDIP(390), -1)); + m_task_name->SetMinSize(wxSize(FromDIP(200), -1)); + m_task_name->SetMaxSize(wxSize(FromDIP(200), -1)); m_rename_button = new ScalableButton(m_rename_normal_panel, wxID_ANY, "ams_editable"); m_rename_button->SetBackgroundColour(*wxWHITE); rename_sizer_h->Add(m_task_name, 0, wxALIGN_CENTER, 0); diff --git a/src/slic3r/GUI/SendMultiMachinePage.hpp b/src/slic3r/GUI/SendMultiMachinePage.hpp index 418f8cfa09..58014f065c 100644 --- a/src/slic3r/GUI/SendMultiMachinePage.hpp +++ b/src/slic3r/GUI/SendMultiMachinePage.hpp @@ -144,8 +144,6 @@ private: wxPanel* m_title_panel{ nullptr }; wxBoxSizer* m_title_sizer{ nullptr }; wxBoxSizer* m_text_sizer{ nullptr }; - ScalableBitmap* m_print_time{ nullptr }; - wxStaticBitmap* m_time_img{ nullptr }; wxStaticText* m_stext_time{ nullptr }; wxStaticText* m_stext_weight{ nullptr }; wxStaticBitmap* timeimg{ nullptr }; diff --git a/src/slic3r/GUI/WipeTowerDialog.cpp b/src/slic3r/GUI/WipeTowerDialog.cpp index 058d3ece5a..78662c1f3a 100644 --- a/src/slic3r/GUI/WipeTowerDialog.cpp +++ b/src/slic3r/GUI/WipeTowerDialog.cpp @@ -581,21 +581,18 @@ WipingPanel::WipingPanel(wxWindow* parent, const std::vector& matrix, con auto on_apply_text_modify = [this](wxEvent& e) { wxString str = m_flush_multiplier_ebox->GetValue(); - str.Replace(",", "."); - double multiplier = 1.f; - if (str.ToDouble(&multiplier)) { - if (multiplier < g_min_flush_multiplier || multiplier > g_max_flush_multiplier) { - str = wxString::Format(("%.2f"), multiplier < g_min_flush_multiplier ? g_min_flush_multiplier : g_max_flush_multiplier); - m_flush_multiplier_ebox->SetValue(str); - MessageDialog dlg(nullptr, - wxString::Format(_L("The multiplier should be in range [%.2f, %.2f]."), g_min_flush_multiplier, g_max_flush_multiplier), - _L("Warning"), wxICON_WARNING | wxOK); - dlg.ShowModal(); - } - for (unsigned int i = 0; i < m_number_of_extruders; ++i) { - for (unsigned int j = 0; j < m_number_of_extruders; ++j) { - edit_boxes[i][j]->SetValue(to_string(int(m_matrix[m_number_of_extruders * j + i] * multiplier))); - } + float multiplier = wxAtof(str); + if (multiplier < g_min_flush_multiplier || multiplier > g_max_flush_multiplier) { + str = wxString::Format(("%.2f"), multiplier < g_min_flush_multiplier ? g_min_flush_multiplier : g_max_flush_multiplier); + m_flush_multiplier_ebox->SetValue(str); + MessageDialog dlg(nullptr, + wxString::Format(_L("The multiplier should be in range [%.2f, %.2f]."), g_min_flush_multiplier, g_max_flush_multiplier), + _L("Warning"), wxICON_WARNING | wxOK); + dlg.ShowModal(); + } + for (unsigned int i = 0; i < m_number_of_extruders; ++i) { + for (unsigned int j = 0; j < m_number_of_extruders; ++j) { + edit_boxes[i][j]->SetValue(to_string(int(m_matrix[m_number_of_extruders * j + i] * multiplier))); } } @@ -610,9 +607,7 @@ WipingPanel::WipingPanel(wxWindow* parent, const std::vector& matrix, con param_sizer->Add(flush_multiplier_title, 0, wxALIGN_CENTER | wxALL, 0); param_sizer->AddSpacer(FromDIP(5)); m_flush_multiplier_ebox = new wxTextCtrl(m_page_advanced, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(FromDIP(50), -1), wxTE_PROCESS_ENTER); - char flush_multi_str[32] = { 0 }; - snprintf(flush_multi_str, sizeof(flush_multi_str), "%.2f", flush_multiplier); - m_flush_multiplier_ebox->SetValue(flush_multi_str); + m_flush_multiplier_ebox->SetValue(wxString::Format(("%.2f"), flush_multiplier)); m_flush_multiplier_ebox->SetValidator(wxTextValidator(wxFILTER_NUMERIC)); param_sizer->Add(m_flush_multiplier_ebox, 0, wxALIGN_CENTER | wxALL, 0); param_sizer->AddStretchSpacer(1); @@ -622,13 +617,10 @@ WipingPanel::WipingPanel(wxWindow* parent, const std::vector& matrix, con m_flush_multiplier_ebox->Bind(wxEVT_KILL_FOCUS, on_apply_text_modify); m_flush_multiplier_ebox->Bind(wxEVT_COMMAND_TEXT_UPDATED, [this](wxCommandEvent&) { wxString str = m_flush_multiplier_ebox->GetValue(); - str.Replace(",", "."); - double multiplier = 1.f; - if (str.ToDouble(&multiplier)) { - if (multiplier < g_min_flush_multiplier || multiplier > g_max_flush_multiplier) { - str = wxString::Format(("%.2f"), multiplier < g_min_flush_multiplier ? g_min_flush_multiplier : g_max_flush_multiplier); - m_flush_multiplier_ebox->SetValue(str); - } + float multiplier = wxAtof(str); + if (multiplier < g_min_flush_multiplier || multiplier > g_max_flush_multiplier) { + str = wxString::Format(("%.2f"), multiplier < g_min_flush_multiplier ? g_min_flush_multiplier : g_max_flush_multiplier); + m_flush_multiplier_ebox->SetValue(str); } m_flush_multiplier_ebox->SetInsertionPointEnd(); }); diff --git a/src/slic3r/GUI/WipeTowerDialog.hpp b/src/slic3r/GUI/WipeTowerDialog.hpp index faa005c8b3..4a1abfaad2 100644 --- a/src/slic3r/GUI/WipeTowerDialog.hpp +++ b/src/slic3r/GUI/WipeTowerDialog.hpp @@ -61,12 +61,7 @@ public: if (m_flush_multiplier_ebox == nullptr) return 1.f; - wxString str = m_flush_multiplier_ebox->GetValue(); - str.Replace(",", "."); - double multiplier = 1.f; - str.ToDouble(&multiplier); - - return multiplier; + return wxAtof(m_flush_multiplier_ebox->GetValue()); } private: diff --git a/src/slic3r/GUI/wxMediaCtrl2.cpp b/src/slic3r/GUI/wxMediaCtrl2.cpp index 2356e6b630..e0cccc6fa7 100644 --- a/src/slic3r/GUI/wxMediaCtrl2.cpp +++ b/src/slic3r/GUI/wxMediaCtrl2.cpp @@ -58,6 +58,7 @@ wxMediaCtrl2::wxMediaCtrl2(wxWindow *parent) void wxMediaCtrl2::Load(wxURI url) { #ifdef __WIN32__ + InvalidateBestSize(); if (m_imp == nullptr) { static bool notified = false; if (!notified) CallAfter([] { diff --git a/src/slic3r/Utils/bambu_networking.hpp b/src/slic3r/Utils/bambu_networking.hpp index 6d56cdb029..8fcf374730 100644 --- a/src/slic3r/Utils/bambu_networking.hpp +++ b/src/slic3r/Utils/bambu_networking.hpp @@ -95,7 +95,7 @@ namespace BBL { #define BAMBU_NETWORK_LIBRARY "bambu_networking" #define BAMBU_NETWORK_AGENT_NAME "bambu_network_agent" -#define BAMBU_NETWORK_AGENT_VERSION "01.09.01.01" +#define BAMBU_NETWORK_AGENT_VERSION "01.09.01.06" //iot preset type strings #define IOT_PRINTER_TYPE_STRING "printer" diff --git a/version.inc b/version.inc index fbffbbac36..8a893e36db 100644 --- a/version.inc +++ b/version.inc @@ -17,4 +17,4 @@ set(ORCA_VERSION_MAJOR ${CMAKE_MATCH_1}) set(ORCA_VERSION_MINOR ${CMAKE_MATCH_2}) set(ORCA_VERSION_PATCH ${CMAKE_MATCH_3}) -set(SLIC3R_VERSION "01.09.01.58") +set(SLIC3R_VERSION "01.09.01.66") From 01213e58b0c00c295e7a32c868619b7b3a49e202 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sun, 19 May 2024 16:03:37 +0200 Subject: [PATCH 03/66] Fr translation (#5398) * Translation of new strings. * Changed "agglutination" by "encrassement" * Updated French translations * Fixed c-boost formats --- localization/i18n/fr/OrcaSlicer_fr.po | 1376 ++++++++++++++++--------- 1 file changed, 872 insertions(+), 504 deletions(-) diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index e68bc4b18c..0ed123b720 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-19 12:02+0200\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: Guislain Cyril, Thomas Lété\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==0 || n==1) ? 0 : 1;\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.4.4\n" msgid "Supports Painting" msgstr "Peindre les supports" @@ -261,7 +261,7 @@ msgid "World coordinates" msgstr "Coordonnées" msgid "Object coordinates" -msgstr "" +msgstr "Coordonnées de l’objet" msgid "°" msgstr "°" @@ -1926,6 +1926,9 @@ msgstr "Ajouter une primitive" msgid "Add Handy models" msgstr "Ajouter des modèles pratiques" +msgid "Add Models" +msgstr "Ajouter des modèles" + msgid "Show Labels" msgstr "Afficher les étiquettes" @@ -1979,10 +1982,10 @@ msgid "arrange current plate" msgstr "organiser la plaque actuelle" msgid "Reload All" -msgstr "" +msgstr "Tout recharger" msgid "reload all from disk" -msgstr "" +msgstr "tout recharger à partir du disque" msgid "Auto Rotate" msgstr "Rotation automatique" @@ -2450,7 +2453,7 @@ msgid "AMS not connected" msgstr "AMS non connecté" msgid "Load" -msgstr "" +msgstr "Charger" msgid "Unload" msgstr "Décharger" @@ -2515,6 +2518,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Choisissez un emplacement AMS puis appuyez sur le bouton «  Charger «  ou «  " +"Décharger «  pour charger ou décharger automatiquement les filaments." msgid "Edit" msgstr "Éditer" @@ -3156,12 +3161,14 @@ msgstr "" "de filament lorsque la bobine actuelle est épuisé" msgid "Air Printing Detection" -msgstr "" +msgstr "Détection de l’impression dans l’air" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"Détecte le colmatage et le grignotage du filament, interrompant " +"immédiatement l’impression pour économiser du temps et du filament." msgid "File" msgstr "Fichier" @@ -3243,7 +3250,7 @@ msgid "Successfully executed post-processing script" msgstr "Le script de post-traitement a été exécuté avec succès" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "Une erreur inconnue s’est produite lors de l’exportation du G-code." #, boost-format msgid "" @@ -3251,6 +3258,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"La copie du G-code temporaire vers le G-code de sortie a échoué. La carte SD " +"est peut-être bloquée en écriture ?\n" +"Message d’erreur : %1%" #, boost-format msgid "" @@ -3258,28 +3268,41 @@ msgid "" "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 se peut " +"qu’il y ait un problème avec le dispositif cible, veuillez essayer " +"d’exporter à nouveau ou d’utiliser un autre périphérique. Le code G de " +"sortie corrompu se trouve dans %1%.tmp." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"Le renommage du G-code après la copie dans le dossier de destination " +"sélectionné a échoué. Le chemin actuel est %1%.tmp. Veuillez réessayer " +"l’exportation." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"La copie du G-code temporaire est terminée mais le code original à %1% n’a " +"pas pu être ouvert pendant la vérification de la copie. Le G-code de sortie " +"se trouve dans %2%.tmp." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"La copie du G-code temporaire est terminée mais le code exporté n’a pas pu " +"être ouvert lors du contrôle de la copie. Le G-code de sortie se trouve dans " +"%1%.tmp." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "Fichier G-code exporté vers %1%." msgid "Unknown error when export G-code." msgstr "Erreur inconnue lors de l'exportation du G-code." @@ -3302,6 +3325,210 @@ msgstr "" "Planification du téléversement vers `%1% `. Voir Fenêtre -> File d'attente " "de téléversement de l'hôte d'impression" +msgid "Device" +msgstr "Appareil" + +msgid "Task Sending" +msgstr "Envoi de la tâche" + +msgid "Task Sent" +msgstr "Tâche envoyée" + +msgid "Edit multiple printers" +msgstr "Modifier plusieurs imprimantes" + +msgid "Select connected printetrs (0/6)" +msgstr "Sélectionner les imprimantes connectées (0/6)" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "Sélectionner les imprimantes connectées (%d/6)" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "Le nombre maximum d’imprimantes pouvant être sélectionnées est de %d" + +msgid "Offline" +msgstr "Hors ligne" + +msgid "No task" +msgstr "Aucune tâche" + +msgid "View" +msgstr "Affichage" + +msgid "N/A" +msgstr "N / A" + +msgid "Edit Printers" +msgstr "Modifier les imprimantes" + +msgid "Device Name" +msgstr "Nom de l’appareil" + +msgid "Task Name" +msgstr "Nom de la tâche" + +msgid "Device Status" +msgstr "État de l’appareil" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" +"Veuillez sélectionner ici les appareils que vous souhaitez gérer (jusqu’à 6 " +"appareils)." + +msgid "Add" +msgstr "Ajouter" + +msgid "Idle" +msgstr "Inactif" + +msgid "Printing" +msgstr "Impression" + +msgid "Upgrading" +msgstr "Mise à jour" + +msgid "Incompatible" +msgstr "Incompatible" + +msgid "syncing" +msgstr "synchronisation" + +msgid "Printing Finish" +msgstr "Impression terminée" + +msgid "Printing Failed" +msgstr "Échec de l’impression" + +msgid "PrintingPause" +msgstr "Pause de l’impression" + +msgid "Prepare" +msgstr "Préparer" + +msgid "Slicing" +msgstr "Découpe" + +msgid "Pending" +msgstr "En attente" + +msgid "Sending" +msgstr "Envoi" + +msgid "Sending Finish" +msgstr "Fin de l’envoi" + +msgid "Sending Cancel" +msgstr "Annulation de l’envoi" + +msgid "Sending Failed" +msgstr "Échec de l’envoi" + +msgid "Print Success" +msgstr "Succès de l’impression" + +msgid "Print Failed" +msgstr "Échec de l’impression" + +msgid "Removed" +msgstr "Supprimé" + +msgid "Resume" +msgstr "Résumer" + +msgid "Stop" +msgstr "Arrêt" + +msgid "Task Status" +msgstr "État de la tâche" + +msgid "Sent Time" +msgstr "Heure d’envoi" + +msgid "There are no tasks to be sent!" +msgstr "Il n’y a pas de tâches à envoyer !" + +msgid "No historical tasks!" +msgstr "Aucune tâche historique !" + +msgid "Loading..." +msgstr "Chargement…" + +msgid "No AMS" +msgstr "Pas d’AMS" + +msgid "Send to Multi-device" +msgstr "Envoyer à plusieurs appareils" + +msgid "Preparing print job" +msgstr "Préparation du travail d'impression" + +msgid "Abnormal print file data. Please slice again" +msgstr "" +"Données de fichier d'impression anormales. Veuillez redécouvre le fichier." + +msgid "Use External Spool" +msgstr "Utiliser la bobine externe" + +msgid "Use AMS" +msgstr "Utiliser l’AMS" + +msgid "Select Printers" +msgstr "Sélectionner des imprimantes" + +msgid "Ams Status" +msgstr "Statut de l’AMS" + +msgid "Printing Options" +msgstr "Options d’impression" + +msgid "Send Options" +msgstr "Options d’envoi" + +msgid "Send" +msgstr "Envoyer" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" +"imprimantes en même temps. (Cela dépend du nombre d’appareils qui peuvent " +"être chauffés en même temps)." + +msgid "Wait" +msgstr "Attendre" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" +"minute par lot. (Cela dépend du temps nécessaire pour terminer le chauffage.)" + +msgid "Name is invalid;" +msgstr "Le nom n'est pas valide ;" + +msgid "illegal characters:" +msgstr "caractères illégaux :" + +msgid "illegal suffix:" +msgstr "suffixe illégal :" + +msgid "The name is not allowed to be empty." +msgstr "Le nom ne doit pas être vide." + +msgid "The name is not allowed to start with space character." +msgstr "Le nom ne doit pas commencer par un espace." + +msgid "The name is not allowed to end with space character." +msgstr "Le nom ne doit pas se terminer par un espace." + +msgid "The name length exceeds the limit." +msgstr "La longueur du nom dépasse la limite." + msgid "Origin" msgstr "Origine" @@ -3836,9 +4063,6 @@ msgstr "Paramètres de l'imprimante" msgid "parameter name" msgstr "nom du paramètre" -msgid "N/A" -msgstr "N / A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s ne peut pas être un pourcentage" @@ -4154,9 +4378,6 @@ msgstr "Éviter la région de calibration de l'extrusion" msgid "Align to Y axis" msgstr "Aligner sur l’axe Y" -msgid "Add" -msgstr "Ajouter" - msgid "Add plate" msgstr "Ajouter une plaque" @@ -4211,7 +4432,7 @@ msgstr "Le volume:" msgid "Size:" msgstr "Taille:" -#, c-format, boost-format +#, boost-format msgid "" "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -4346,17 +4567,11 @@ msgstr "" msgid "Logging" msgstr "Enregistrement" -msgid "Prepare" -msgstr "Préparer" - msgid "Preview" msgstr "Aperçu" -msgid "Device" -msgstr "Appareil" - msgid "Multi-device" -msgstr "" +msgstr "Multi-appareils" msgid "Project" msgstr "Projet" @@ -4382,9 +4597,6 @@ msgstr "Tout découper" msgid "Export G-code file" msgstr "Exporter le fichier G-code" -msgid "Send" -msgstr "Envoyer" - msgid "Export plate sliced file" msgstr "Exporter fichier découpé du plateau" @@ -4397,9 +4609,6 @@ msgstr "Tout imprimer" msgid "Send all" msgstr "Tout envoyer" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Raccourcis Clavier" @@ -4644,9 +4853,6 @@ msgstr "Afficher la surbrillance des surplombs d'un objet dans la scène 3D" msgid "Preferences" msgstr "Préférences" -msgid "View" -msgstr "Affichage" - msgid "Help" msgstr "Aide" @@ -4919,9 +5125,6 @@ msgstr "Information" msgid "Playing..." msgstr "En cours…" -msgid "Loading..." -msgstr "Chargement…" - msgid "Year" msgstr "Année" @@ -5159,12 +5362,6 @@ msgstr "Inverser l’axe de roulis" msgid "Printing Progress" msgstr "Progression de l'impression" -msgid "Resume" -msgstr "Résumer" - -msgid "Stop" -msgstr "Arrêt" - msgid "0" msgstr "0" @@ -5452,6 +5649,8 @@ msgid "" "The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" +"La version du fichier 3mf est en bêta et est plus récente que la version " +"actuelle d’OrcaSlicer." msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "Si vous souhaitez essayer OrcaSlicer Beta, vous pouvez cliquer sur" @@ -5664,10 +5863,12 @@ msgid "Filament Tangle Detect" msgstr "Détection de filament coincé" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Détection de l’encrassement de la buse" msgid "Check if the nozzle is clumping by filament or other foreign objects." msgstr "" +"Vérifier si la buse est encrassée par du filament ou d’autres corps " +"étrangers." msgid "Nozzle Type" msgstr "Type de buse" @@ -5943,6 +6144,9 @@ msgstr "" msgid "The name may show garbage characters!" msgstr "Le nom peut afficher des caractères inutiles !" +msgid "Remember my choice." +msgstr "Mémoriser mon choix." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -6072,9 +6276,6 @@ msgstr "Impossible de recharger :" msgid "Error during reload" msgstr "Erreur lors du rechargement" -msgid "Slicing" -msgstr "Découpe" - msgid "There are warnings after slicing models:" msgstr "Il y a des avertissements après le découpage des modèles :" @@ -6138,13 +6339,13 @@ msgid "prepare 3mf file..." msgstr "préparation du fichier 3mf..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "Échec du téléchargement, format de fichier inconnu." msgid "downloading project ..." msgstr "téléchargement du projet..." msgid "Download failed, File size exception." -msgstr "" +msgstr "Le téléchargement a échoué, exception de taille de fichier." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6154,6 +6355,8 @@ msgid "" "Importing to Bambu Studio failed. Please download the file and manually " "import it." msgstr "" +"L’importation dans Bambu Studio a échoué. Veuillez télécharger le fichier et " +"l’importer manuellement." msgid "Import SLA archive" msgstr "Importer les archives SLA" @@ -6192,9 +6395,6 @@ msgstr "" msgid "Can not add models when in preview mode!" msgstr "Impossible d'ajouter des modèles en mode aperçu !" -msgid "Add Models" -msgstr "Ajouter des modèles" - msgid "All objects will be removed, continue?" msgstr "Tous les objets seront supprimés, continuer ?" @@ -6203,9 +6403,6 @@ msgstr "" "Le projet en cours comporte des modifications non enregistrées, enregistrez-" "les avant de continuer ?" -msgid "Remember my choice." -msgstr "Mémoriser mon choix." - msgid "Number of copies:" msgstr "Nombre de copies:" @@ -6424,6 +6621,15 @@ msgstr "Région d'origine" msgid "Stealth Mode" msgstr "Mode privé" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" +"Cette fonction interrompt la transmission des données vers les services en " +"ligne de Bambu. Les utilisateurs qui n’utilisent pas de machines BBL ou qui " +"utilisent uniquement le mode LAN peuvent activer cette fonction en toute " +"sécurité." + msgid "Enable network plugin" msgstr "Activer le plug-in réseau" @@ -6440,19 +6646,26 @@ msgid "Units" msgstr "Unités" msgid "Allow only one OrcaSlicer instance" -msgstr "" +msgstr "Autoriser une seule instance d’OrcaSlicer" msgid "" "On OSX there is always only one instance of app running by default. However " "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"Sous OSX, il n’y a toujours qu’une seule instance de l’application en cours " +"d’exécution par défaut. Cependant, il est possible de lancer plusieurs " +"instances de la même application à partir de la ligne de commande. Dans ce " +"cas, ces paramètres n’autorisent qu’une seule instance." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " "same OrcaSlicer is already running, that instance will be reactivated " "instead." msgstr "" +"Si cette option est activée, lorsque vous démarrez OrcaSlicer et qu’une " +"autre instance du même OrcaSlicer est déjà en cours d’exécution, cette " +"instance sera réactivée à la place." msgid "Home" msgstr "Accueil" @@ -6547,12 +6760,14 @@ msgstr "" "filament/processus pour chaque imprimante et la modifiera automatiquement." msgid "Multi-device Management(Take effect after restarting Studio)." -msgstr "" +msgstr "Gestion multi-appareils (prend effet après le redémarrage d’Orca)." msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"Si cette option est activée, vous pouvez envoyer une tâche à plusieurs " +"appareils en même temps et gérer plusieurs appareils." msgid "Network" msgstr "Réseau" @@ -6773,9 +6988,6 @@ msgstr "Sélectionner/supprimer des imprimantes (préréglages du système)" msgid "Create printer" msgstr "Créer une imprimante" -msgid "Incompatible" -msgstr "Incompatible" - msgid "The selected preset is null!" msgstr "Le préréglage sélectionné est invalide !" @@ -6873,15 +7085,6 @@ msgstr "Préréglage utilisateur" msgid "Preset Inside Project" msgstr "Projeter à l'intérieur du préréglage" -msgid "Name is invalid;" -msgstr "Le nom n'est pas valide ;" - -msgid "illegal characters:" -msgstr "caractères illégaux :" - -msgid "illegal suffix:" -msgstr "suffixe illégal :" - msgid "Name is unavailable." msgstr "Le nom n'est pas disponible." @@ -6901,15 +7104,6 @@ msgstr "" msgid "Please note that saving action will replace this preset" msgstr "Veuillez noter que l'action d'enregistrement remplacera ce préréglage" -msgid "The name is not allowed to be empty." -msgstr "Le nom ne doit pas être vide." - -msgid "The name is not allowed to start with space character." -msgstr "Le nom ne doit pas commencer par un espace." - -msgid "The name is not allowed to end with space character." -msgstr "Le nom ne doit pas se terminer par un espace." - msgid "The name cannot be the same as a preset alias name." msgstr "Le nom ne peut pas être le même qu'un nom d'alias prédéfini." @@ -6969,9 +7163,6 @@ msgstr "Vous ne trouvez pas d'appareils ?" msgid "Log out successful." msgstr "Déconnexion réussie." -msgid "Offline" -msgstr "Hors ligne" - msgid "Busy" msgstr "Occupé" @@ -7203,16 +7394,6 @@ msgstr "" "Connexion à l’imprimante. Impossible d’annuler pendant le processus de " "connexion." -msgid "Preparing print job" -msgstr "Préparation du travail d'impression" - -msgid "Abnormal print file data. Please slice again" -msgstr "" -"Données de fichier d'impression anormales. Veuillez redécouvre le fichier." - -msgid "The name length exceeds the limit." -msgstr "La longueur du nom dépasse la limite." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7227,7 +7408,7 @@ msgid "Modifying the device name" msgstr "Modification du nom de l'appareil" msgid "Bind with Pin Code" -msgstr "" +msgstr "Relier avec le code pin" msgid "Send to Printer SD card" msgstr "Envoyer sur la carte SD de l'imprimante" @@ -7290,21 +7471,24 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"Veuillez trouver le code pin dans la page Compte sur l’écran de " +"l’imprimante,\n" +" et tapez le code pin ci-dessous." msgid "Can't find Pin Code?" -msgstr "" +msgstr "Vous ne trouvez pas le code pin ?" msgid "Pin Code" -msgstr "" +msgstr "Code pin" msgid "Binding..." -msgstr "" +msgstr "Liaison…" msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Veuillez confirmer sur l’écran de l’imprimante" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "La connexion a échoué. Veuillez vérifier le code pin." msgid "Log in printer" msgstr "Connectez-vous à l'imprimante" @@ -7545,8 +7729,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add Primitive" -"\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add " +"Primitive\"->\"Timelapse Wipe Tower\"." msgstr "" "Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé " "d’ajouter une \"Tour d’essuyage timelapse\".\n" @@ -7698,9 +7882,9 @@ msgid "" "Bed temperature when cool plate is installed. Value 0 means the filament " "does not support to print on the Cool Plate" msgstr "" -"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool plate" -"\") est installé. Une valeur à 0 signifie que ce filament ne peut pas être " -"imprimé sur le plateau froid." +"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool " +"plate\") est installé. Une valeur à 0 signifie que ce filament ne peut pas " +"être imprimé sur le plateau froid." msgid "Engineering plate" msgstr "Plaque Engineering" @@ -8059,21 +8243,31 @@ msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"Vous pouvez enregistrer ou rejeter les valeurs prédéfinies que vous avez " +"modifiées." msgid "" "\n" "You can save or discard the preset values you have modified, or choose to " "transfer the values you have modified to the new preset." msgstr "" +"\n" +"Vous pouvez sauvegarder ou ignorer les valeurs de préréglage que vous avez " +"modifiées, ou choisir de transférer les valeurs que vous avez modifiées dans " +"le nouveau préréglage." msgid "You have previously modified your settings." -msgstr "" +msgstr "Vous avez déjà modifié vos réglages." msgid "" "\n" "You can discard the preset values you have modified, or choose to transfer " "the modified values to the new project" msgstr "" +"\n" +"Vous pouvez ignorer les valeurs prédéfinies que vous avez modifiées ou " +"choisir de transférer les valeurs modifiées dans le nouveau projet." msgid "Extruders count" msgstr "Nombre d'extrudeurs" @@ -8596,37 +8790,37 @@ msgid "resume" msgstr "reprendre" msgid "Resume Printing" -msgstr "" +msgstr "Reprendre l’impression" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Reprendre l’impression (des défauts sont acceptables)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Reprendre l’impression (problème résolu)" msgid "Stop Printing" -msgstr "" +msgstr "Arrêter l’impression" msgid "Check Assistant" -msgstr "" +msgstr "Assistant de contrôle" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Filament extrudé, Continuer" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Pas encore extrudé, réessayer" msgid "Finished, Continue" -msgstr "" +msgstr "Terminé, Continuer" msgid "Load Filament" msgstr "Charger" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Filament chargé, Reprendre" msgid "View Liveview" -msgstr "" +msgstr "Vue en direct" msgid "Confirm and Update Nozzle" msgstr "Confirmation et mise à jour de la buse" @@ -8689,12 +8883,6 @@ msgstr "Version :" msgid "Update firmware" msgstr "Mise à jour du firmware" -msgid "Printing" -msgstr "Impression" - -msgid "Idle" -msgstr "Inactif" - msgid "Beta version" msgstr "Version Beta" @@ -10940,8 +11128,8 @@ msgstr "Fabriquant du filament." msgid "(Undefined)" msgstr "(Indéfini)" -msgid "Infill direction" -msgstr "Sens de remplissage" +msgid "Sparse infill direction" +msgstr "Direction du remplissage" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10950,6 +11138,23 @@ msgstr "" "Angle pour le motif de remplissage qui contrôle le début ou la direction " "principale de la ligne" +msgid "Solid infill direction" +msgstr "Direction du remplissage" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" +"Angle pour le motif de remplissage, qui contrôle le début ou la direction " +"principale de la ligne" + +msgid "Rotate solid infill direction" +msgstr "Faire pivoter la direction du remplissage solide" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" +"Faire pivoter la direction du remplissage solide de 90° pour chaque couche." + msgid "Sparse infill density" msgstr "Densité de remplissage" @@ -10998,7 +11203,7 @@ msgid "Lightning" msgstr "Lightning" msgid "Cross Hatch" -msgstr "" +msgstr "Quadrillage" msgid "Sparse infill anchor length" msgstr "Longueur de l’ancrage de remplissage interne" @@ -11207,10 +11412,10 @@ msgstr "Ventilateur à pleine vitesse à la couche" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" -"\". \"full_fan_speed_layer\" will be ignored if lower than " -"\"close_fan_the_first_x_layers\", in which case the fan will be running at " -"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer " +"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " +"than \"close_fan_the_first_x_layers\", in which case the fan will be running " +"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à " "la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche " @@ -11308,11 +11513,24 @@ msgid "Arc fitting" msgstr "Tracer des arcs" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Activez cette option pour obtenir un fichier G-code contenant des mouvements " -"G2 et G3. Et la tolérance d'ajustement est la même avec la résolution" +"Activez cette option pour obtenir un fichier G-code contenant les " +"déplacements G2 et G3. La tolérance d’ajustement est la même que la " +"résolution. \n" +"\n" +"Note : Pour les machines Klipper, il est recommandé de désactiver cette " +"option. Klipper ne bénéficie pas des commandes d’arc car celles-ci sont à " +"nouveau divisées en segments de ligne par le micrologiciel. Il en résulte " +"une réduction de la qualité de la surface, car les segments de ligne sont " +"convertis en arcs par le slicer, puis à nouveau en segments par le firmware." msgid "Add line number" msgstr "Ajouter un numéro de ligne" @@ -11550,13 +11768,35 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Chevauchement de remplissage/paroi" +#, c-format, boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15%% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." msgstr "" -"La zone de remplissage est légèrement agrandie pour chevaucher la paroi afin " -"d'améliorer l'adhérence. La valeur en pourcentage est relative à la largeur " -"de ligne de remplissage." +"La zone de remplissage est légèrement élargie pour chevaucher la paroi afin " +"d’améliorer l’adhérence. La valeur du pourcentage est relative à la largeur " +"de la ligne de remplissage clairsemée. Réglez cette valeur à ~10-15%% pour " +"minimiser le risque de sur-extrusion et d’accumulation de matériau, ce qui " +"rendrait les surfaces supérieures rugueuses." + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "Chevauchement du remplissage ou de la paroi supérieur(e)/inférieur(e)" + +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30%% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" +msgstr "" +"La zone de remplissage solide supérieure est légèrement élargie pour " +"chevaucher la paroi afin d’améliorer l’adhérence et de minimiser " +"l’apparition de trous d’épingle à l’endroit où le remplissage supérieur " +"rencontre les parois. Une valeur de 25-30%% est un bon point de départ, " +"minimisant l’apparition de trous d’épingle. La valeur en pourcentage est " +"relative à la largeur de ligne d’un remplissage peu dense." msgid "Speed of internal sparse infill" msgstr "Vitesse de remplissage interne" @@ -12854,8 +13094,8 @@ msgid "" "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " "close all holes in the model." msgstr "" -"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « " -"Fermer les trous » pour fermer tous les trous du modèle." +"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez " +"« Fermer les trous » pour fermer tous les trous du modèle." msgid "Regular" msgstr "Standard" @@ -13465,6 +13705,27 @@ msgstr "Espacement des lignes de purge de la tour d’essuyage" msgid "Spacing of purge lines on the wipe tower." msgstr "Espacement des lignes de purge sur la tour d’essuyage." +msgid "Maximum print speed when purging" +msgstr "Vitesse d’impression maximale lors de la purge" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" +"Vitesse d’impression maximale lors de la purge dans la tour d’essuyage. Si " +"la vitesse de remplissage ou la vitesse calculée à partir de la vitesse " +"volumétrique maximale du filament est inférieure, c’est la vitesse la plus " +"basse qui sera utilisée.\n" +"L’augmentation de cette vitesse peut affecter la stabilité de la tour, car " +"la purge peut être effectuée sur des couches peu épaisses. Avant d’augmenter " +"ce paramètre au-delà de la valeur par défaut de 90 mm/sec, assurez-vous que " +"votre imprimante peut effectuer un pontage fiable aux vitesses accrues." + msgid "Wipe tower extruder" msgstr "Extrudeur de tour d’essuyage" @@ -13618,8 +13879,8 @@ msgid "" "Wipe tower is only compatible with relative mode. It is recommended on most " "printers. Default is checked" msgstr "" -"L’extrusion relative est recommandée lors de l’utilisation de l’option « " -"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " +"L’extrusion relative est recommandée lors de l’utilisation de l’option " +"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " "non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est " "compatible qu’avec le mode relatif. Il est recommandé sur la plupart des " "imprimantes. L’option par défaut est cochée" @@ -14246,7 +14507,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj : échec de l'analyse" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "charger mtl dans obj : échec de l’analyse" msgid "The file contains polygons with more than 4 vertices." msgstr "Le fichier contient des polygones comportant plus de 4 sommets." @@ -14383,6 +14644,11 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"Ce type de machine ne peut contenir que 16 résultats historiques par buse. " +"Vous pouvez supprimer les résultats historiques existants, puis lancer " +"l’étalonnage. Vous pouvez également poursuivre l’étalonnage, mais vous ne " +"pouvez pas créer de nouveaux résultats historiques d’étalonnage. \n" +"Souhaitez-vous toujours poursuivre le calibrage ?" msgid "Connecting to printer..." msgstr "Connexion à l’imprimante…" @@ -14410,6 +14676,8 @@ msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"Ce type de machine ne peut contenir que %d résultats historiques par buse. " +"Ce résultat ne sera pas enregistré." msgid "Internal Error" msgstr "Erreur interne" @@ -14475,9 +14743,9 @@ msgstr "" "Wiki.\n" "\n" "Habituellement, la calibration est inutile. Lorsque vous démarrez une " -"impression d'une seule couleur/matériau, avec l'option \"Calibration du débit" -"\" cochée dans le menu de démarrage de l'impression, l'imprimante suivra " -"l'ancienne méthode de calibration du filament avant l'impression.\n" +"impression d'une seule couleur/matériau, avec l'option \"Calibration du " +"débit\" cochée dans le menu de démarrage de l'impression, l'imprimante " +"suivra l'ancienne méthode de calibration du filament avant l'impression.\n" "Lorsque vous démarrez une impression multi-couleurs/matériaux, l'imprimante " "utilise le paramètre de compensation par défaut pour le filament lors de " "chaque changement de filament, ce qui donne un bon résultat dans la plupart " @@ -14817,12 +15085,13 @@ msgstr "Action" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." msgstr "" +"Ce type de machine ne peut contenir que %d résultats historiques par buse." msgid "Edit Flow Dynamics Calibration" msgstr "Editer la calibration dynamique du débit" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "Nouveau calibrage dynamique du débit" msgid "Ok" msgstr "" @@ -15255,8 +15524,8 @@ msgstr "" "Voulez-vous le réécrire ?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you selected" -"\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you " +"selected\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Nous renommerions les préréglages en « Vendor Type Serial @printer you " @@ -15909,30 +16178,47 @@ msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"Sa faible hauteur de couche permet d’obtenir des lignes de couche presque " +"négligeables et une grande qualité d’impression. Il convient à la plupart " +"des cas d’impression générale." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,2 mm, la vitesse et " +"l’accélération sont plus faibles, et le motif de remplissage épars est " +"gyroïde. Il en résulte donc une qualité d’impression nettement supérieure, " +"mais un temps d’impression beaucoup plus long." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,2 mm, il présente une " +"hauteur de couche légèrement supérieure, ce qui se traduit par des lignes de " +"couche presque négligeables et un temps d’impression légèrement plus court." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,2 mm, il présente une " +"hauteur de couche plus importante, ce qui se traduit par des lignes de " +"couche légèrement visibles, mais un temps d’impression plus court." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,2 mm, il présente une " +"hauteur de couche plus petite, ce qui permet d’obtenir des lignes de couche " +"presque invisibles et une qualité d’impression supérieure, mais aussi un " +"temps d’impression plus court." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15940,12 +16226,21 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,2 mm, il présente des " +"lignes de couche plus petites, des vitesses et des accélérations plus " +"faibles, et le motif de remplissage clairsemé est gyroïde. Il en résulte " +"donc des lignes de couche presque invisibles et une qualité d’impression " +"bien supérieure, mais un temps d’impression bien plus long." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"Par rapport au profil par défaut de la buse de 0,2 mm, il présente une " +"hauteur de couche plus petite, ce qui se traduit par des lignes de couche " +"minimales et une qualité d’impression supérieure, mais aussi par un temps " +"d’impression plus court." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15953,35 +16248,59 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,2 mm, il présente des " +"lignes de couche plus petites, des vitesses et des accélérations plus " +"faibles, et le motif de remplissage clairsemé est gyroïde. Il en résulte " +"donc des lignes de couche minimales et une qualité d’impression nettement " +"supérieure, mais un temps d’impression beaucoup plus long." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"Il présente une hauteur de couche générale, ce qui se traduit par des lignes " +"de couche et une qualité d’impression générales. Il convient à la plupart " +"des cas d’impression générale." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,4 mm, il présente plus de " +"boucles de paroi et une densité de remplissage clairsemée plus élevée. Il en " +"résulte donc une plus grande solidité des impressions, mais une plus grande " +"consommation de filament et un temps d’impression plus long." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " +"hauteur de couche plus importante, ce qui se traduit par des lignes de " +"couche plus apparentes et une qualité d’impression moindre, mais un temps " +"d’impression légèrement plus court." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " +"hauteur de couche plus importante, ce qui se traduit par des lignes de " +"couche plus apparentes et une qualité d’impression moindre, mais un temps " +"d’impression plus court." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " +"hauteur de couche plus petite, ce qui se traduit par des lignes de couche " +"moins apparentes et une meilleure qualité d’impression, mais un temps " +"d’impression plus long." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15989,12 +16308,21 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " +"hauteur de couche plus petite, des vitesses et des accélérations plus " +"faibles, et le motif de remplissage clairsemé est gyroïde. Il en résulte " +"donc des lignes de couche moins apparentes et une qualité d’impression " +"beaucoup plus élevée, mais un temps d’impression beaucoup plus long." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " +"hauteur de couche plus petite, ce qui permet d’obtenir des lignes de couche " +"presque négligeables et une meilleure qualité d’impression, mais un temps " +"d’impression plus long." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -16002,64 +16330,106 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " +"hauteur de couche plus petite, des vitesses et des accélérations plus " +"faibles, et le motif de remplissage clairsemé est gyroïde. Il en résulte " +"donc des lignes de couche presque négligeables et une qualité d’impression " +"bien supérieure, mais un temps d’impression bien plus long." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " +"hauteur de couche plus petite, ce qui se traduit par des lignes de couche " +"presque négligeables et un temps d’impression plus long." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"La hauteur de couche est importante, ce qui se traduit par des lignes de " +"couche apparentes et une qualité et un temps d’impression ordinaires." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,6 mm, il présente plus de " +"boucles de paroi et une densité de remplissage clairsemée plus élevée. Il en " +"résulte donc une plus grande solidité des impressions, mais une plus grande " +"consommation de filament et un temps d’impression plus long." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,6 mm, il présente une " +"hauteur de couche plus importante, ce qui se traduit par des lignes de " +"couche plus apparentes et une qualité d’impression moindre, mais un temps " +"d’impression plus court dans certains cas d’impression." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,6 mm, il présente une " +"hauteur de couche plus importante, ce qui se traduit par des lignes de " +"couche beaucoup plus apparentes et une qualité d’impression beaucoup plus " +"faible, mais un temps d’impression plus court dans certains cas d’impression." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,6 mm, il présente une " +"hauteur de couche plus petite, ce qui se traduit par des lignes de couche " +"moins apparentes et une qualité d’impression légèrement supérieure, mais un " +"temps d’impression plus long." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,6 mm, il présente une " +"hauteur de couche plus petite, ce qui se traduit par des lignes de couche " +"moins apparentes et une meilleure qualité d’impression, mais un temps " +"d’impression plus long." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"La hauteur des couches est très importante, ce qui se traduit par des lignes " +"de couche très apparentes, une qualité d’impression médiocre et un temps " +"d’impression général." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,8 mm, il présente une " +"hauteur de couche plus importante, ce qui se traduit par des lignes de " +"couche très apparentes et une qualité d’impression nettement inférieure, " +"mais un temps d’impression plus court dans certains cas d’impression." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,8 mm, il présente une " +"hauteur de couche beaucoup plus importante, ce qui se traduit par des lignes " +"de couche extrêmement apparentes et une qualité d’impression beaucoup plus " +"faible, mais un temps d’impression beaucoup plus court dans certains cas " +"d’impression." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -16067,12 +16437,22 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,8 mm, il présente une " +"hauteur de couche légèrement inférieure, ce qui se traduit par des lignes de " +"couche légèrement moins nombreuses mais toujours apparentes et par une " +"qualité d’impression légèrement supérieure, mais par un temps d’impression " +"plus long dans certains cas d’impression." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"Par rapport au profil par défaut d’une buse de 0,8 mm, il présente une " +"hauteur de couche plus petite, ce qui se traduit par des lignes de couche " +"moins nombreuses mais toujours apparentes et une qualité d’impression " +"légèrement supérieure, mais un temps d’impression plus long dans certains " +"cas d’impression." msgid "Connected to Obico successfully!" msgstr "Connexion à Obico réussie !" @@ -16123,401 +16503,389 @@ msgstr "" msgid "User cancelled." msgstr "L’utilisateur a annulé." -#: resources/data/hints.ini: [hint:Precise wall] -msgid "" -"Precise wall\n" -"Did you know that turning on precise wall can improve precision and layer " -"consistency?" -msgstr "" -"Paroi précise\n" -"Saviez-vous que l’activation de la paroi précise peut améliorer la précision " -"et l’homogénéité des couches ?" +#~ msgid "Infill direction" +#~ msgstr "Sens de remplissage" -#: resources/data/hints.ini: [hint:Sandwich mode] -msgid "" -"Sandwich mode\n" -"Did you know that you can use sandwich mode (inner-outer-inner) to improve " -"precision and layer consistency if your model doesn't have very steep " -"overhangs?" -msgstr "" -"Mode sandwich\n" -"Saviez-vous que vous pouvez utiliser le mode sandwich (intérieur-extérieur-" -"intérieur) pour améliorer la précision et la cohérence des couches si votre " -"modèle n’a pas de porte-à-faux très prononcés ?" +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Activez cette option pour obtenir un fichier G-code contenant des " +#~ "mouvements G2 et G3. Et la tolérance d'ajustement est la même avec la " +#~ "résolution" -#: resources/data/hints.ini: [hint:Chamber temperature] -msgid "" -"Chamber temperature\n" -"Did you know that OrcaSlicer supports chamber temperature?" -msgstr "" -"Température de la chambre\n" -"Saviez-vous qu’OrcaSlicer prend en charge la température de la chambre ?" +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "La zone de remplissage est légèrement agrandie pour chevaucher la paroi " +#~ "afin d'améliorer l'adhérence. La valeur en pourcentage est relative à la " +#~ "largeur de ligne de remplissage." -#: resources/data/hints.ini: [hint:Calibration] -msgid "" -"Calibration\n" -"Did you know that calibrating your printer can do wonders? Check out our " -"beloved calibration solution in OrcaSlicer." -msgstr "" -"Calibrage\n" -"Saviez-vous que le calibrage de votre imprimante peut faire des merveilles ? " -"Découvrez notre solution de calibrage bien-aimée dans OrcaSlicer." +#~ msgid "" +#~ "Precise wall\n" +#~ "Did you know that turning on precise wall can improve precision and layer " +#~ "consistency?" +#~ msgstr "" +#~ "Paroi précise\n" +#~ "Saviez-vous que l’activation de la paroi précise peut améliorer la " +#~ "précision et l’homogénéité des couches ?" -#: resources/data/hints.ini: [hint:Auxiliary fan] -msgid "" -"Auxiliary fan\n" -"Did you know that OrcaSlicer supports Auxiliary part cooling fan?" -msgstr "" -"Ventilateur auxiliaire\n" -"Saviez-vous qu’OrcaSlicer prend en charge le ventilateur auxiliaire de " -"refroidissement des pièces ?" +#~ msgid "" +#~ "Sandwich mode\n" +#~ "Did you know that you can use sandwich mode (inner-outer-inner) to " +#~ "improve precision and layer consistency if your model doesn't have very " +#~ "steep overhangs?" +#~ msgstr "" +#~ "Mode sandwich\n" +#~ "Saviez-vous que vous pouvez utiliser le mode sandwich (intérieur-" +#~ "extérieur-intérieur) pour améliorer la précision et la cohérence des " +#~ "couches si votre modèle n’a pas de porte-à-faux très prononcés ?" -#: resources/data/hints.ini: [hint:Air filtration] -msgid "" -"Air filtration/Exhaust Fan\n" -"Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?" -msgstr "" -"Filtration de l’air/ventilateur d’extraction\n" -"Saviez-vous qu’OrcaSlicer peut prendre en charge la filtration de l’air/le " -"ventilateur d’extraction ?" +#~ msgid "" +#~ "Chamber temperature\n" +#~ "Did you know that OrcaSlicer supports chamber temperature?" +#~ msgstr "" +#~ "Température de la chambre\n" +#~ "Saviez-vous qu’OrcaSlicer prend en charge la température de la chambre ?" -#: resources/data/hints.ini: [hint:G-code window] -msgid "" -"G-code window\n" -"You can turn on/off the G-code window by pressing the C key." -msgstr "" -"Fenêtre de G-code\n" -"Vous pouvez activer/désactiver la fenêtre G-code en appuyant sur la touche " -"C." +#~ msgid "" +#~ "Calibration\n" +#~ "Did you know that calibrating your printer can do wonders? Check out our " +#~ "beloved calibration solution in OrcaSlicer." +#~ msgstr "" +#~ "Calibrage\n" +#~ "Saviez-vous que le calibrage de votre imprimante peut faire des " +#~ "merveilles ? Découvrez notre solution de calibrage bien-aimée dans " +#~ "OrcaSlicer." -#: resources/data/hints.ini: [hint:Switch workspaces] -msgid "" -"Switch workspaces\n" -"You can switch between Prepare and Preview workspaces by " -"pressing the Tab key." -msgstr "" -"Changer les espaces de travail\n" -"Vous pouvez alterner entre l’espace de travail Préparer et Aperçu en appuyant sur la touche Tab." +#~ msgid "" +#~ "Auxiliary fan\n" +#~ "Did you know that OrcaSlicer supports Auxiliary part cooling fan?" +#~ msgstr "" +#~ "Ventilateur auxiliaire\n" +#~ "Saviez-vous qu’OrcaSlicer prend en charge le ventilateur auxiliaire de " +#~ "refroidissement des pièces ?" -#: resources/data/hints.ini: [hint:How to use keyboard shortcuts] -msgid "" -"How to use keyboard shortcuts\n" -"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." -msgstr "" -"Comment utiliser les raccourcis clavier\n" -"Saviez-vous qu’Orca Slicer offre une large gamme de raccourcis clavier et " -"d’opérations sur les scènes 3D." +#~ msgid "" +#~ "Air filtration/Exhaust Fan\n" +#~ "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?" +#~ msgstr "" +#~ "Filtration de l’air/ventilateur d’extraction\n" +#~ "Saviez-vous qu’OrcaSlicer peut prendre en charge la filtration de l’air/" +#~ "le ventilateur d’extraction ?" -#: resources/data/hints.ini: [hint:Reverse on odd] -msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" -msgstr "" -"Parois inversées sur couches impaires\n" -"Saviez-vous que la fonction Parois inversées sur couches impaires " -"peut améliorer de manière significative la qualité de la surface de vos " -"surplombs ?" +#~ msgid "" +#~ "G-code window\n" +#~ "You can turn on/off the G-code window by pressing the C key." +#~ msgstr "" +#~ "Fenêtre de G-code\n" +#~ "Vous pouvez activer/désactiver la fenêtre G-code en appuyant sur la " +#~ "touche C." -#: resources/data/hints.ini: [hint:Cut Tool] -msgid "" -"Cut Tool\n" -"Did you know that you can cut a model at any angle and position with the " -"cutting tool?" -msgstr "" -"Outil de découpe\n" -"Saviez-vous que vous pouvez découper un modèle à n'importe quel angle et " -"dans n'importe quelle position avec l'outil de découpe ?" +#~ msgid "" +#~ "Switch workspaces\n" +#~ "You can switch between Prepare and Preview workspaces by " +#~ "pressing the Tab key." +#~ msgstr "" +#~ "Changer les espaces de travail\n" +#~ "Vous pouvez alterner entre l’espace de travail Préparer et " +#~ "Aperçu en appuyant sur la touche Tab." -#: resources/data/hints.ini: [hint:Fix Model] -msgid "" -"Fix Model\n" -"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " -"problems on the Windows system?" -msgstr "" -"Réparer un modèle\n" -"Saviez-vous que vous pouvez réparer un modèle 3D corrompu pour éviter de " -"nombreux problèmes de découpage sur le système Windows ?" +#~ msgid "" +#~ "How to use keyboard shortcuts\n" +#~ "Did you know that Orca Slicer offers a wide range of keyboard shortcuts " +#~ "and 3D scene operations." +#~ msgstr "" +#~ "Comment utiliser les raccourcis clavier\n" +#~ "Saviez-vous qu’Orca Slicer offre une large gamme de raccourcis clavier et " +#~ "d’opérations sur les scènes 3D." -#: resources/data/hints.ini: [hint:Timelapse] -msgid "" -"Timelapse\n" -"Did you know that you can generate a timelapse video during each print?" -msgstr "" -"Timelapse\n" -"Saviez-vous que vous pouvez générer une vidéo en timelapse à chaque " -"impression ?" +#~ msgid "" +#~ "Reverse on odd\n" +#~ "Did you know that Reverse on odd feature can significantly improve " +#~ "the surface quality of your overhangs?" +#~ msgstr "" +#~ "Parois inversées sur couches impaires\n" +#~ "Saviez-vous que la fonction Parois inversées sur couches impaires " +#~ "peut améliorer de manière significative la qualité de la surface de vos " +#~ "surplombs ?" -#: resources/data/hints.ini: [hint:Auto-Arrange] -msgid "" -"Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" -msgstr "" -"Agencement Automatique\n" -"Saviez-vous que vous pouvez agencement automatiquement tous les objets de " -"votre projet ?" +#~ msgid "" +#~ "Cut Tool\n" +#~ "Did you know that you can cut a model at any angle and position with the " +#~ "cutting tool?" +#~ msgstr "" +#~ "Outil de découpe\n" +#~ "Saviez-vous que vous pouvez découper un modèle à n'importe quel angle et " +#~ "dans n'importe quelle position avec l'outil de découpe ?" -#: resources/data/hints.ini: [hint:Auto-Orient] -msgid "" -"Auto-Orient\n" -"Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" -msgstr "" -"Orientation Automatique\n" -"Saviez-vous que vous pouvez faire pivoter des objets dans une orientation " -"optimale pour l'impression d'un simple clic ?" +#~ msgid "" +#~ "Fix Model\n" +#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " +#~ "slicing problems on the Windows system?" +#~ msgstr "" +#~ "Réparer un modèle\n" +#~ "Saviez-vous que vous pouvez réparer un modèle 3D corrompu pour éviter de " +#~ "nombreux problèmes de découpage sur le système Windows ?" -#: resources/data/hints.ini: [hint:Lay on Face] -msgid "" -"Lay on Face\n" -"Did you know that you can quickly orient a model so that one of its faces " -"sits on the print bed? Select the \"Place on face\" function or press the " -"F key." -msgstr "" -"Poser sur une face\n" -"Saviez-vous qu'il est possible d'orienter rapidement un modèle de manière à " -"ce que l'une de ses faces repose sur le plateau d'impression ? Sélectionnez " -"la fonction « Placer sur la face » ou appuyez sur la touche F." +#~ msgid "" +#~ "Timelapse\n" +#~ "Did you know that you can generate a timelapse video during each print?" +#~ msgstr "" +#~ "Timelapse\n" +#~ "Saviez-vous que vous pouvez générer une vidéo en timelapse à chaque " +#~ "impression ?" -#: resources/data/hints.ini: [hint:Object List] -msgid "" -"Object List\n" -"Did you know that you can view all objects/parts in a list and change " -"settings for each object/part?" -msgstr "" -"Liste d'objets\n" -"Saviez-vous que vous pouvez afficher tous les objets/pièces dans une liste " -"et modifier les paramètres de chaque objet/pièce ?" +#~ msgid "" +#~ "Auto-Arrange\n" +#~ "Did you know that you can auto-arrange all objects in your project?" +#~ msgstr "" +#~ "Agencement Automatique\n" +#~ "Saviez-vous que vous pouvez agencement automatiquement tous les objets de " +#~ "votre projet ?" -#: resources/data/hints.ini: [hint:Search Functionality] -msgid "" -"Search Functionality\n" -"Did you know that you use the Search tool to quickly find a specific Orca " -"Slicer setting?" -msgstr "" -"Fonctionnalité de recherche\n" -"Saviez-vous que vous pouvez utiliser l’outil de recherche pour trouver " -"rapidement un paramètre spécifique de l’Orca Slicer ?" +#~ msgid "" +#~ "Auto-Orient\n" +#~ "Did you know that you can rotate objects to an optimal orientation for " +#~ "printing by a simple click?" +#~ msgstr "" +#~ "Orientation Automatique\n" +#~ "Saviez-vous que vous pouvez faire pivoter des objets dans une orientation " +#~ "optimale pour l'impression d'un simple clic ?" -#: resources/data/hints.ini: [hint:Simplify Model] -msgid "" -"Simplify Model\n" -"Did you know that you can reduce the number of triangles in a mesh using the " -"Simplify mesh feature? Right-click the model and select Simplify model." -msgstr "" -"Simplifier le modèle\n" -"Saviez-vous que vous pouviez réduire le nombre de triangles dans un maillage " -"à l’aide de la fonction Simplifier le maillage ? Cliquez avec le bouton " -"droit de la souris sur le modèle et sélectionnez Simplifier le modèle." +#~ msgid "" +#~ "Lay on Face\n" +#~ "Did you know that you can quickly orient a model so that one of its faces " +#~ "sits on the print bed? Select the \"Place on face\" function or press the " +#~ "F key." +#~ msgstr "" +#~ "Poser sur une face\n" +#~ "Saviez-vous qu'il est possible d'orienter rapidement un modèle de manière " +#~ "à ce que l'une de ses faces repose sur le plateau d'impression ? " +#~ "Sélectionnez la fonction « Placer sur la face » ou appuyez sur la touche " +#~ "F." -#: resources/data/hints.ini: [hint:Slicing Parameter Table] -msgid "" -"Slicing Parameter Table\n" -"Did you know that you can view all objects/parts on a table and change " -"settings for each object/part?" -msgstr "" -"Tableau des paramètres de découpe\n" -"Saviez-vous que vous pouvez afficher tous les objets/pièces sur un tableau " -"et modifier les paramètres de chaque objet/pièce ?" +#~ msgid "" +#~ "Object List\n" +#~ "Did you know that you can view all objects/parts in a list and change " +#~ "settings for each object/part?" +#~ msgstr "" +#~ "Liste d'objets\n" +#~ "Saviez-vous que vous pouvez afficher tous les objets/pièces dans une " +#~ "liste et modifier les paramètres de chaque objet/pièce ?" -#: resources/data/hints.ini: [hint:Split to Objects/Parts] -msgid "" -"Split to Objects/Parts\n" -"Did you know that you can split a big object into small ones for easy " -"colorizing or printing?" -msgstr "" -"Séparer en objets/parties\n" -"Saviez-vous que vous pouvez séparer un gros objet en petits objets pour les " -"colorier ou les imprimer facilement ?" +#~ msgid "" +#~ "Search Functionality\n" +#~ "Did you know that you use the Search tool to quickly find a specific Orca " +#~ "Slicer setting?" +#~ msgstr "" +#~ "Fonctionnalité de recherche\n" +#~ "Saviez-vous que vous pouvez utiliser l’outil de recherche pour trouver " +#~ "rapidement un paramètre spécifique de l’Orca Slicer ?" -#: resources/data/hints.ini: [hint:Subtract a Part] -msgid "" -"Subtract a Part\n" -"Did you know that you can subtract one mesh from another using the Negative " -"part modifier? That way you can, for example, create easily resizable holes " -"directly in Orca Slicer." -msgstr "" -"Soustraire une pièce\n" -"Saviez-vous que vous pouviez soustraire un maillage d’un autre à l’aide du " -"modificateur de partie négative ? De cette façon, vous pouvez, par exemple, " -"créer des trous facilement redimensionnables directement dans Orca Slicer." +#~ msgid "" +#~ "Simplify Model\n" +#~ "Did you know that you can reduce the number of triangles in a mesh using " +#~ "the Simplify mesh feature? Right-click the model and select Simplify " +#~ "model." +#~ msgstr "" +#~ "Simplifier le modèle\n" +#~ "Saviez-vous que vous pouviez réduire le nombre de triangles dans un " +#~ "maillage à l’aide de la fonction Simplifier le maillage ? Cliquez avec le " +#~ "bouton droit de la souris sur le modèle et sélectionnez Simplifier le " +#~ "modèle." -#: resources/data/hints.ini: [hint:STEP] -msgid "" -"STEP\n" -"Did you know that you can improve your print quality by slicing a STEP file " -"instead of an STL?\n" -"Orca Slicer supports slicing STEP files, providing smoother results than a " -"lower resolution STL. Give it a try!" -msgstr "" -"STEP\n" -"Saviez-vous que vous pouvez améliorer votre qualité d'impression en " -"découpant un fichier .step au lieu d'un .stl ?\n" -"Orca Slicer prend en charge le découpage des fichiers .step, offrant des " -"résultats plus fluides qu'un .stl de résolution inférieure. Essayez !" +#~ msgid "" +#~ "Slicing Parameter Table\n" +#~ "Did you know that you can view all objects/parts on a table and change " +#~ "settings for each object/part?" +#~ msgstr "" +#~ "Tableau des paramètres de découpe\n" +#~ "Saviez-vous que vous pouvez afficher tous les objets/pièces sur un " +#~ "tableau et modifier les paramètres de chaque objet/pièce ?" -#: resources/data/hints.ini: [hint:Z seam location] -msgid "" -"Z seam location\n" -"Did you know that you can customize the location of the Z seam, and even " -"paint it on your print, to have it in a less visible location? This improves " -"the overall look of your model. Check it out!" -msgstr "" -"Emplacement de la couture Z\n" -"Saviez-vous que vous pouvez personnaliser l'emplacement de la couture Z, et " -"même la peindre manuelle sur votre impression pour le placer dans un endroit " -"moins visible ? Cela améliore l'aspect général de votre modèle. Jetez-y un " -"coup d'œil !" +#~ msgid "" +#~ "Split to Objects/Parts\n" +#~ "Did you know that you can split a big object into small ones for easy " +#~ "colorizing or printing?" +#~ msgstr "" +#~ "Séparer en objets/parties\n" +#~ "Saviez-vous que vous pouvez séparer un gros objet en petits objets pour " +#~ "les colorier ou les imprimer facilement ?" -#: resources/data/hints.ini: [hint:Fine-tuning for flow rate] -msgid "" -"Fine-tuning for flow rate\n" -"Did you know that flow rate can be fine-tuned for even better-looking " -"prints? Depending on the material, you can improve the overall finish of the " -"printed model by doing some fine-tuning." -msgstr "" -"Réglage fin du débit\n" -"Saviez-vous que le débit peut être réglé avec précision pour obtenir des " -"impressions encore plus belles ? En fonction du matériau, vous pouvez " -"améliorer la finition générale du modèle imprimé en procédant à un réglage " -"fin." +#~ msgid "" +#~ "Subtract a Part\n" +#~ "Did you know that you can subtract one mesh from another using the " +#~ "Negative part modifier? That way you can, for example, create easily " +#~ "resizable holes directly in Orca Slicer." +#~ msgstr "" +#~ "Soustraire une pièce\n" +#~ "Saviez-vous que vous pouviez soustraire un maillage d’un autre à l’aide " +#~ "du modificateur de partie négative ? De cette façon, vous pouvez, par " +#~ "exemple, créer des trous facilement redimensionnables directement dans " +#~ "Orca Slicer." -#: resources/data/hints.ini: [hint:Split your prints into plates] -msgid "" -"Split your prints into plates\n" -"Did you know that you can split a model that has a lot of parts into " -"individual plates ready to print? This will simplify the process of keeping " -"track of all the parts." -msgstr "" -"Divisez vos impressions en plateaux\n" -"Saviez-vous que vous pouvez diviser un modèle comportant de nombreuses " -"pièces en plateaux individuels prêts à être imprimés ? Cela simplifie le " -"processus de suivi de toutes les pièces." +#~ msgid "" +#~ "STEP\n" +#~ "Did you know that you can improve your print quality by slicing a STEP " +#~ "file instead of an STL?\n" +#~ "Orca Slicer supports slicing STEP files, providing smoother results than " +#~ "a lower resolution STL. Give it a try!" +#~ msgstr "" +#~ "STEP\n" +#~ "Saviez-vous que vous pouvez améliorer votre qualité d'impression en " +#~ "découpant un fichier .step au lieu d'un .stl ?\n" +#~ "Orca Slicer prend en charge le découpage des fichiers .step, offrant des " +#~ "résultats plus fluides qu'un .stl de résolution inférieure. Essayez !" -#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer -#: Height] -msgid "" -"Speed up your print with Adaptive Layer Height\n" -"Did you know that you can print a model even faster, by using the Adaptive " -"Layer Height option? Check it out!" -msgstr "" -"Accélérez votre impression grâce à la Hauteur de Couche Adaptative\n" -"Saviez-vous que vous pouvez imprimer un modèle encore plus rapidement en " -"utilisant l'option Adaptive Layer Height ? Jetez-y un coup d'œil !" +#~ msgid "" +#~ "Z seam location\n" +#~ "Did you know that you can customize the location of the Z seam, and even " +#~ "paint it on your print, to have it in a less visible location? This " +#~ "improves the overall look of your model. Check it out!" +#~ msgstr "" +#~ "Emplacement de la couture Z\n" +#~ "Saviez-vous que vous pouvez personnaliser l'emplacement de la couture Z, " +#~ "et même la peindre manuelle sur votre impression pour le placer dans un " +#~ "endroit moins visible ? Cela améliore l'aspect général de votre modèle. " +#~ "Jetez-y un coup d'œil !" -#: resources/data/hints.ini: [hint:Support painting] -msgid "" -"Support painting\n" -"Did you know that you can paint the location of your supports? This feature " -"makes it easy to place the support material only on the sections of the " -"model that actually need it." -msgstr "" -"Peinture de support\n" -"Saviez-vous que vous pouvez peindre l'emplacement de vos supports ? Cette " -"caractéristique permet de placer facilement le matériau de support " -"uniquement sur les sections du modèle qui en ont réellement besoin." +#~ msgid "" +#~ "Fine-tuning for flow rate\n" +#~ "Did you know that flow rate can be fine-tuned for even better-looking " +#~ "prints? Depending on the material, you can improve the overall finish of " +#~ "the printed model by doing some fine-tuning." +#~ msgstr "" +#~ "Réglage fin du débit\n" +#~ "Saviez-vous que le débit peut être réglé avec précision pour obtenir des " +#~ "impressions encore plus belles ? En fonction du matériau, vous pouvez " +#~ "améliorer la finition générale du modèle imprimé en procédant à un " +#~ "réglage fin." -#: resources/data/hints.ini: [hint:Different types of supports] -msgid "" -"Different types of supports\n" -"Did you know that you can choose from multiple types of supports? Tree " -"supports work great for organic models, while saving filament and improving " -"print speed. Check them out!" -msgstr "" -"Différents types de supports\n" -"Saviez-vous que vous pouvez choisir parmi plusieurs types de supports ? Les " -"supports arborescents fonctionnent parfaitement pour les modèles organiques " -"tout en économisant du filament et en améliorant la vitesse d'impression. " -"Découvrez-les !" +#~ msgid "" +#~ "Split your prints into plates\n" +#~ "Did you know that you can split a model that has a lot of parts into " +#~ "individual plates ready to print? This will simplify the process of " +#~ "keeping track of all the parts." +#~ msgstr "" +#~ "Divisez vos impressions en plateaux\n" +#~ "Saviez-vous que vous pouvez diviser un modèle comportant de nombreuses " +#~ "pièces en plateaux individuels prêts à être imprimés ? Cela simplifie le " +#~ "processus de suivi de toutes les pièces." -#: resources/data/hints.ini: [hint:Printing Silk Filament] -msgid "" -"Printing Silk Filament\n" -"Did you know that Silk filament needs special consideration to print it " -"successfully? Higher temperature and lower speed are always recommended for " -"the best results." -msgstr "" -"Impression de filament Soie\n" -"Saviez-vous que le filament soie nécessite une attention particulière pour " -"une impression réussie ? Une température plus élevée et une vitesse plus " -"faible sont toujours recommandées pour obtenir les meilleurs résultats." +#~ msgid "" +#~ "Speed up your print with Adaptive Layer Height\n" +#~ "Did you know that you can print a model even faster, by using the " +#~ "Adaptive Layer Height option? Check it out!" +#~ msgstr "" +#~ "Accélérez votre impression grâce à la Hauteur de Couche Adaptative\n" +#~ "Saviez-vous que vous pouvez imprimer un modèle encore plus rapidement en " +#~ "utilisant l'option Adaptive Layer Height ? Jetez-y un coup d'œil !" -#: resources/data/hints.ini: [hint:Brim for better adhesion] -msgid "" -"Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " -"the printing surface, it's recommended to use a brim?" -msgstr "" -"Bordure pour une meilleure adhésion\n" -"Saviez-vous que lorsque les modèles imprimés ont une faible interface de " -"contact avec la surface d'impression, il est recommandé d'utiliser une " -"bordure ?" +#~ msgid "" +#~ "Support painting\n" +#~ "Did you know that you can paint the location of your supports? This " +#~ "feature makes it easy to place the support material only on the sections " +#~ "of the model that actually need it." +#~ msgstr "" +#~ "Peinture de support\n" +#~ "Saviez-vous que vous pouvez peindre l'emplacement de vos supports ? Cette " +#~ "caractéristique permet de placer facilement le matériau de support " +#~ "uniquement sur les sections du modèle qui en ont réellement besoin." -#: resources/data/hints.ini: [hint:Set parameters for multiple objects] -msgid "" -"Set parameters for multiple objects\n" -"Did you know that you can set slicing parameters for all selected objects at " -"one time?" -msgstr "" -"Définir les paramètres de plusieurs objets\n" -"Saviez-vous que vous pouvez définir des paramètres de découpe pour tous les " -"objets sélectionnés en une seule fois ?" +#~ msgid "" +#~ "Different types of supports\n" +#~ "Did you know that you can choose from multiple types of supports? Tree " +#~ "supports work great for organic models, while saving filament and " +#~ "improving print speed. Check them out!" +#~ msgstr "" +#~ "Différents types de supports\n" +#~ "Saviez-vous que vous pouvez choisir parmi plusieurs types de supports ? " +#~ "Les supports arborescents fonctionnent parfaitement pour les modèles " +#~ "organiques tout en économisant du filament et en améliorant la vitesse " +#~ "d'impression. Découvrez-les !" -#: resources/data/hints.ini: [hint:Stack objects] -msgid "" -"Stack objects\n" -"Did you know that you can stack objects as a whole one?" -msgstr "" -"Empiler des objets\n" -"Saviez-vous que vous pouvez empiler des objets pour n'en former qu'un?" +#~ msgid "" +#~ "Printing Silk Filament\n" +#~ "Did you know that Silk filament needs special consideration to print it " +#~ "successfully? Higher temperature and lower speed are always recommended " +#~ "for the best results." +#~ msgstr "" +#~ "Impression de filament Soie\n" +#~ "Saviez-vous que le filament soie nécessite une attention particulière " +#~ "pour une impression réussie ? Une température plus élevée et une vitesse " +#~ "plus faible sont toujours recommandées pour obtenir les meilleurs " +#~ "résultats." -#: resources/data/hints.ini: [hint:Flush into support/objects/infill] -msgid "" -"Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " -"support/objects/infill during filament change?" -msgstr "" -"Purger dans les supports/les objets/le remplissage\n" -"Saviez-vous que vous pouvez réduire le filament gaspillé en le purgeant dans " -"les supports/les objets/le remplissage lors des changements de filament ?" +#~ msgid "" +#~ "Brim for better adhesion\n" +#~ "Did you know that when printing models have a small contact interface " +#~ "with the printing surface, it's recommended to use a brim?" +#~ msgstr "" +#~ "Bordure pour une meilleure adhésion\n" +#~ "Saviez-vous que lorsque les modèles imprimés ont une faible interface de " +#~ "contact avec la surface d'impression, il est recommandé d'utiliser une " +#~ "bordure ?" -#: resources/data/hints.ini: [hint:Improve strength] -msgid "" -"Improve strength\n" -"Did you know that you can use more wall loops and higher sparse infill " -"density to improve the strength of the model?" -msgstr "" -"Améliorer la solidité\n" -"Saviez-vous que vous pouvez définir un plus grand nombre de périmètre et une " -"densité de remplissage plus élevée pour améliorer la résistance du modèle ?" +#~ msgid "" +#~ "Set parameters for multiple objects\n" +#~ "Did you know that you can set slicing parameters for all selected objects " +#~ "at one time?" +#~ msgstr "" +#~ "Définir les paramètres de plusieurs objets\n" +#~ "Saviez-vous que vous pouvez définir des paramètres de découpe pour tous " +#~ "les objets sélectionnés en une seule fois ?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] -msgid "" -"When need to print with the printer door opened\n" -"Did you know that opening the printer door can reduce the probability of " -"extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." -msgstr "" -"Quand il faut imprimer avec la porte de l’imprimante ouverte\n" -"Saviez-vous que l’ouverture de la porte de l’imprimante peut réduire la " -"probabilité de blocage de l’extrudeuse/du réchauffeur lors de l’impression " -"de filament à basse température avec une température de boîtier plus élevée. " -"Plus d’informations à ce sujet dans le Wiki." +#~ msgid "" +#~ "Stack objects\n" +#~ "Did you know that you can stack objects as a whole one?" +#~ msgstr "" +#~ "Empiler des objets\n" +#~ "Saviez-vous que vous pouvez empiler des objets pour n'en former qu'un?" -#: resources/data/hints.ini: [hint:Avoid warping] -msgid "" -"Avoid warping\n" -"Did you know that when printing materials that are prone to warping such as " -"ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." -msgstr "" -"Éviter la déformation\n" -"Saviez-vous que lors de l’impression de matériaux susceptibles de se " -"déformer, tels que l’ABS, une augmentation appropriée de la température du " -"plateau chauffant peut réduire la probabilité de déformation." +#~ msgid "" +#~ "Flush into support/objects/infill\n" +#~ "Did you know that you can save the wasted filament by flushing them into " +#~ "support/objects/infill during filament change?" +#~ msgstr "" +#~ "Purger dans les supports/les objets/le remplissage\n" +#~ "Saviez-vous que vous pouvez réduire le filament gaspillé en le purgeant " +#~ "dans les supports/les objets/le remplissage lors des changements de " +#~ "filament ?" + +#~ msgid "" +#~ "Improve strength\n" +#~ "Did you know that you can use more wall loops and higher sparse infill " +#~ "density to improve the strength of the model?" +#~ msgstr "" +#~ "Améliorer la solidité\n" +#~ "Saviez-vous que vous pouvez définir un plus grand nombre de périmètre et " +#~ "une densité de remplissage plus élevée pour améliorer la résistance du " +#~ "modèle ?" + +#~ msgid "" +#~ "When need to print with the printer door opened\n" +#~ "Did you know that opening the printer door can reduce the probability of " +#~ "extruder/hotend clogging when printing lower temperature filament with a " +#~ "higher enclosure temperature. More info about this in the Wiki." +#~ msgstr "" +#~ "Quand il faut imprimer avec la porte de l’imprimante ouverte\n" +#~ "Saviez-vous que l’ouverture de la porte de l’imprimante peut réduire la " +#~ "probabilité de blocage de l’extrudeuse/du réchauffeur lors de " +#~ "l’impression de filament à basse température avec une température de " +#~ "boîtier plus élevée. Plus d’informations à ce sujet dans le Wiki." + +#~ msgid "" +#~ "Avoid warping\n" +#~ "Did you know that when printing materials that are prone to warping such " +#~ "as ABS, appropriately increasing the heatbed temperature can reduce the " +#~ "probability of warping." +#~ msgstr "" +#~ "Éviter la déformation\n" +#~ "Saviez-vous que lors de l’impression de matériaux susceptibles de se " +#~ "déformer, tels que l’ABS, une augmentation appropriée de la température " +#~ "du plateau chauffant peut réduire la probabilité de déformation." #~ msgid "Actions For Unsaved Changes" #~ msgstr "Actions pour les changements non enregistrés" @@ -16848,8 +17216,8 @@ msgstr "" #~ "thickness (top+bottom solid layers)" #~ msgstr "" #~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour " -#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure" -#~ "+inférieure)." +#~ "garantir l'épaisseur verticale de la coque (couches solides " +#~ "supérieure+inférieure)." #~ msgid "Further reduce solid infill on walls (beta)" #~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)" From 7a335590e2770679876a898f1a4a0c3dc6ddeccf Mon Sep 17 00:00:00 2001 From: A Koolen-Bourke Date: Mon, 20 May 2024 02:20:08 +1200 Subject: [PATCH 04/66] =?UTF-8?q?Added=20a=20deactivate()=20function=20to?= =?UTF-8?q?=20Tab=20so=20when=20switching=20tabs=20it=20hides=20=E2=80=A6?= =?UTF-8?q?=20(#5386)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a deactivate() function to Tab so when switching tabs it hides the active contents. Also removed clearing of the pages so it's not destroyed each time. Co-authored-by: SoftFever --- src/slic3r/GUI/Tab.cpp | 13 +++++++++++-- src/slic3r/GUI/Tab.hpp | 1 + 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 2bd2f1ea55..595434a9be 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -5199,6 +5199,10 @@ bool Tab::tree_sel_change_delayed(wxCommandEvent& event) if (m_active_page == page) return false; + if (m_active_page != nullptr) { + m_active_page->deactivate(); + } + m_active_page = page; auto throw_if_canceled = std::function([this](){ @@ -5216,8 +5220,6 @@ bool Tab::tree_sel_change_delayed(wxCommandEvent& event) try { m_page_view->Freeze(); - // clear pages from the controls - clear_pages(); throw_if_canceled(); //BBS: GUI refactor @@ -5922,6 +5924,13 @@ void Page::activate(ConfigOptionMode mode, std::function throw_if_cancel #endif } +void Page::deactivate() +{ + for (auto group : m_optgroups) { + group->Hide(); + } +} + void Page::clear() { for (auto group : m_optgroups) diff --git a/src/slic3r/GUI/Tab.hpp b/src/slic3r/GUI/Tab.hpp index 707e076aaa..71f3e3ef22 100644 --- a/src/slic3r/GUI/Tab.hpp +++ b/src/slic3r/GUI/Tab.hpp @@ -104,6 +104,7 @@ public: void reload_config(); void update_visibility(ConfigOptionMode mode, bool update_contolls_visibility); void activate(ConfigOptionMode mode, std::function throw_if_canceled); + void deactivate(); void clear(); void msw_rescale(); void sys_color_changed(); From 6369772510dd626780eaeafbf82d02bf0bffb771 Mon Sep 17 00:00:00 2001 From: Dima Buzdyk <46728448+buzzhuzz@users.noreply.github.com> Date: Sun, 19 May 2024 19:27:25 +0500 Subject: [PATCH 05/66] Improve gcode preview navigation (#5326) * preview: home/end to move to start/end step of the layer Add HOME and END key action to preview tab which moves horizontal slider position to a first and last position respectively * preview: cross-layer gcode inspection Automatically advance gcode preview to the next layer when pressing right at the last step of the layer. Same for the first step of the layer: pressing 'left' will switch preview to the previous layer --- src/slic3r/GUI/GCodeViewer.cpp | 4 +- src/slic3r/GUI/GLCanvas3D.cpp | 60 +++++++++++++--------------- src/slic3r/GUI/KBShortcutsDialog.cpp | 4 +- 3 files changed, 32 insertions(+), 36 deletions(-) diff --git a/src/slic3r/GUI/GCodeViewer.cpp b/src/slic3r/GUI/GCodeViewer.cpp index 235373db1d..e2a4f00a56 100644 --- a/src/slic3r/GUI/GCodeViewer.cpp +++ b/src/slic3r/GUI/GCodeViewer.cpp @@ -1732,12 +1732,14 @@ void GCodeViewer::update_moves_slider(bool set_to_max) ++count; } + bool keep_min = m_moves_slider->GetActiveValue() == m_moves_slider->GetMinValue(); + m_moves_slider->SetSliderValues(values); m_moves_slider->SetSliderAlternateValues(alternate_values); m_moves_slider->SetMaxValue(view.endpoints.last - view.endpoints.first); m_moves_slider->SetSelectionSpan(view.current.first - view.endpoints.first, view.current.last - view.endpoints.first); if (set_to_max) - m_moves_slider->SetHigherValue(m_moves_slider->GetMaxValue()); + m_moves_slider->SetHigherValue(keep_min ? m_moves_slider->GetMinValue() : m_moves_slider->GetMaxValue()); } void GCodeViewer::update_layers_slider_mode() diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 56fd990c3a..c8e81f4452 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -2852,6 +2852,7 @@ void GLCanvas3D::load_gcode_preview(const GCodeProcessorResult& gcode_result, co m_gcode_viewer.init(wxGetApp().get_mode(), wxGetApp().preset_bundle); m_gcode_viewer.load(gcode_result, *this->fff_print(), wxGetApp().plater()->build_volume(), exclude_bounding_box, wxGetApp().get_mode(), only_gcode); + m_gcode_viewer.get_moves_slider()->SetHigherValue(m_gcode_viewer.get_moves_slider()->GetMaxValue()); if (wxGetApp().is_editor()) { //BBS: always load shell at preview, do this in load_shells @@ -3609,51 +3610,44 @@ void GLCanvas3D::on_key(wxKeyEvent& evt) if (m_canvas_type == CanvasPreview) { IMSlider *m_layers_slider = get_gcode_viewer().get_layers_slider(); IMSlider *m_moves_slider = get_gcode_viewer().get_moves_slider(); - if (evt.CmdDown() || evt.ShiftDown()) { - if (evt.GetKeyCode() == 'G') { - m_layers_slider->show_go_to_layer(true); - } - IMSlider *m_layers_slider = get_gcode_viewer().get_layers_slider(); - IMSlider *m_moves_slider = get_gcode_viewer().get_moves_slider(); - if (keyCode == WXK_UP || keyCode == WXK_DOWN) { - int new_pos; - if (m_layers_slider->GetSelection() == ssHigher) { - new_pos = keyCode == WXK_UP ? m_layers_slider->GetHigherValue() + 5 : m_layers_slider->GetHigherValue() - 5; - m_layers_slider->SetHigherValue(new_pos); - } - else if (m_layers_slider->GetSelection() == ssLower) { - new_pos = keyCode == WXK_UP ? m_layers_slider->GetLowerValue() + 5 : m_layers_slider->GetLowerValue() - 5; - m_layers_slider->SetLowerValue(new_pos); - } - if (m_layers_slider->is_one_layer()) m_layers_slider->SetLowerValue(m_layers_slider->GetHigherValue()); - // BBS set as dirty, update in render_gcode() - m_layers_slider->set_as_dirty(); - } else if (keyCode == WXK_LEFT || keyCode == WXK_RIGHT) { - const int new_pos = keyCode == WXK_RIGHT ? m_moves_slider->GetHigherValue() + 5 : m_moves_slider->GetHigherValue() - 5; - m_moves_slider->SetHigherValue(new_pos); - // BBS set as dirty, update in render_gcode() - m_moves_slider->set_as_dirty(); - } + int increment = (evt.CmdDown() || evt.ShiftDown()) ? 5 : 1; + if ((evt.CmdDown() || evt.ShiftDown()) && evt.GetKeyCode() == 'G') { + m_layers_slider->show_go_to_layer(true); } else if (keyCode == WXK_UP || keyCode == WXK_DOWN) { int new_pos; if (m_layers_slider->GetSelection() == ssHigher) { - new_pos = keyCode == WXK_UP ? m_layers_slider->GetHigherValue() + 1 : m_layers_slider->GetHigherValue() - 1; + new_pos = keyCode == WXK_UP ? m_layers_slider->GetHigherValue() + increment : m_layers_slider->GetHigherValue() - increment; m_layers_slider->SetHigherValue(new_pos); + m_moves_slider->SetHigherValue(m_moves_slider->GetMaxValue()); } else if (m_layers_slider->GetSelection() == ssLower) { - new_pos = keyCode == WXK_UP ? m_layers_slider->GetLowerValue() + 1 : m_layers_slider->GetLowerValue() - 1; + new_pos = keyCode == WXK_UP ? m_layers_slider->GetLowerValue() + increment : m_layers_slider->GetLowerValue() - increment; m_layers_slider->SetLowerValue(new_pos); } - if (m_layers_slider->is_one_layer()) m_layers_slider->SetLowerValue(m_layers_slider->GetHigherValue()); - // BBS set as dirty, update in render_gcode() - m_layers_slider->set_as_dirty(); - } else if (keyCode == WXK_LEFT || keyCode == WXK_RIGHT) { - const int new_pos = keyCode == WXK_RIGHT ? m_moves_slider->GetHigherValue() + 1 : m_moves_slider->GetHigherValue() - 1; + } else if (keyCode == WXK_LEFT) { + if (m_moves_slider->GetHigherValue() == m_moves_slider->GetMinValue() && (m_layers_slider->GetHigherValue() > m_layers_slider->GetMinValue())) { + m_layers_slider->SetHigherValue(m_layers_slider->GetHigherValue() - 1); + m_moves_slider->SetHigherValue(m_moves_slider->GetMaxValue()); + } else { + m_moves_slider->SetHigherValue(m_moves_slider->GetHigherValue() - increment); + } + } else if (keyCode == WXK_RIGHT) { + if (m_moves_slider->GetHigherValue() == m_moves_slider->GetMaxValue() && (m_layers_slider->GetHigherValue() < m_layers_slider->GetMaxValue())) { + m_layers_slider->SetHigherValue(m_layers_slider->GetHigherValue() + 1); + m_moves_slider->SetHigherValue(m_moves_slider->GetMinValue()); + } else { + m_moves_slider->SetHigherValue(m_moves_slider->GetHigherValue() + increment); + } + } else if (keyCode == WXK_HOME || keyCode == WXK_END) { + const int new_pos = keyCode == WXK_HOME ? m_moves_slider->GetMinValue() : m_moves_slider->GetMaxValue(); m_moves_slider->SetHigherValue(new_pos); - // BBS set as dirty, update in render_gcode() m_moves_slider->set_as_dirty(); } + + if (m_layers_slider->is_dirty() && m_layers_slider->is_one_layer()) + m_layers_slider->SetLowerValue(m_layers_slider->GetHigherValue()); + m_dirty = true; } } diff --git a/src/slic3r/GUI/KBShortcutsDialog.cpp b/src/slic3r/GUI/KBShortcutsDialog.cpp index 7ad3e36cac..357a628cc7 100644 --- a/src/slic3r/GUI/KBShortcutsDialog.cpp +++ b/src/slic3r/GUI/KBShortcutsDialog.cpp @@ -313,8 +313,8 @@ void KBShortcutsDialog::fill_shortcuts() {L("Ctrl+Any arrow"), L("Move slider 5x faster")}, {L("Ctrl+Mouse wheel"), L("Move slider 5x faster")}, #endif - - + { L("Home"), L("Horizontal slider - Move to start position")}, + { L("End"), L("Horizontal slider - Move to last position")}, }; m_full_shortcuts.push_back({ { _L("Preview"), "" }, preview_shortcuts }); } From ac423ce16247cc29bb13b8028e3035802eb872ac Mon Sep 17 00:00:00 2001 From: SoftFever Date: Sun, 19 May 2024 23:05:13 +0800 Subject: [PATCH 06/66] fix a regression that select default page not working fixes #5309 --- 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 24b8f8f37f..4ad01855b4 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -1268,7 +1268,7 @@ void Sidebar::update_all_preset_comboboxes() // Orca:: show device tab based on vendor type p_mainframe->show_device(use_bbl_network); - p_mainframe->select_tab(MainFrame::tp3DEditor); + p_mainframe->m_tabpanel->SetSelection(p_mainframe->m_tabpanel->GetSelection()); } void Sidebar::update_presets(Preset::Type preset_type) From 3f83d68e0ed7991cd41d17afff8794b19764a975 Mon Sep 17 00:00:00 2001 From: yw4z Date: Sun, 19 May 2024 18:52:34 +0300 Subject: [PATCH 07/66] Fix parameters not updating on non active tabs (#5400) --- src/slic3r/GUI/Tab.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 595434a9be..b9a9f139b8 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -1172,8 +1172,10 @@ void Tab::load_config(const DynamicPrintConfig& config) // Reload current $self->{config} (aka $self->{presets}->edited_preset->config) into the UI fields. void Tab::reload_config() { - if (m_active_page) - m_active_page->reload_config(); + //if (m_active_page) + // m_active_page->reload_config(); + for (auto page : m_pages) + page->reload_config(); } void Tab::update_mode() From dd36d5b1eaba4b7c35d392dadcfc686a37e20cf5 Mon Sep 17 00:00:00 2001 From: Ioannis Giannakas <59056762+igiannakas@users.noreply.github.com> Date: Mon, 20 May 2024 12:04:13 +0100 Subject: [PATCH 08/66] Implemented minimum skirt extrusion length and draft shield parameter (#5356) * Implemented minimum skirt extrusion length parameter * Enabled draft shield option * Update Tab.cpp * Updated draft shield to be visible in the Advanced mode --------- Co-authored-by: SoftFever --- src/libslic3r/GCode.cpp | 14 ++++++++------ src/libslic3r/Preset.cpp | 2 +- src/libslic3r/Print.cpp | 10 ++++++---- src/libslic3r/Print.hpp | 3 ++- src/libslic3r/PrintConfig.cpp | 26 +++++++++++++++++++------- src/libslic3r/PrintConfig.hpp | 1 + src/slic3r/GUI/Plater.cpp | 2 +- src/slic3r/GUI/Tab.cpp | 7 +++++-- 8 files changed, 43 insertions(+), 22 deletions(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index f65fabe5aa..71614cda04 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -3452,13 +3452,15 @@ namespace Skirt { size_t lines_per_extruder = (n_loops + n_tools - 1) / n_tools; // BBS. Extrude skirt with first extruder if min_skirt_length is zero - const PrintConfig &config = print.config(); - if (Print::min_skirt_length < EPSILON) { + //ORCA: Always extrude skirt with first extruder, independantly of if the minimum skirt length is zero or not. The code below + // is left as a placeholder for when a multiextruder support is implemented. Then we will need to extrude the skirt loops for each extruder. + //const PrintConfig &config = print.config(); + //if (config.min_skirt_length.value < EPSILON) { skirt_loops_per_extruder_out[layer_tools.extruders.front()] = std::pair(0, n_loops); - } else { - for (size_t i = 0; i < n_loops; i += lines_per_extruder) - skirt_loops_per_extruder_out[layer_tools.extruders[i / lines_per_extruder]] = std::pair(i, std::min(i + lines_per_extruder, n_loops)); - } + //} else { + // for (size_t i = 0; i < n_loops; i += lines_per_extruder) + // skirt_loops_per_extruder_out[layer_tools.extruders[i / lines_per_extruder]] = std::pair(i, std::min(i + lines_per_extruder, n_loops)); + //} } static std::map> make_skirt_loops_per_extruder_1st_layer( diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index 826358f0b1..b766a16021 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -781,7 +781,7 @@ static std::vector s_Preset_print_options { "inner_wall_speed", "outer_wall_speed", "sparse_infill_speed", "internal_solid_infill_speed", "top_surface_speed", "support_speed", "support_object_xy_distance", "support_interface_speed", "bridge_speed", "internal_bridge_speed", "gap_infill_speed", "travel_speed", "travel_speed_z", "initial_layer_speed", - "outer_wall_acceleration", "initial_layer_acceleration", "top_surface_acceleration", "default_acceleration", "skirt_loops", "skirt_speed", "skirt_distance", "skirt_height", "draft_shield", + "outer_wall_acceleration", "initial_layer_acceleration", "top_surface_acceleration", "default_acceleration", "skirt_loops", "skirt_speed","min_skirt_length", "skirt_distance", "skirt_height", "draft_shield", "brim_width", "brim_object_gap", "brim_type", "brim_ears_max_angle", "brim_ears_detection_length", "enable_support", "support_type", "support_threshold_angle", "enforce_support_layers", "raft_layers", "raft_first_layer_density", "raft_first_layer_expansion", "raft_contact_distance", "raft_expansion", "support_base_pattern", "support_base_pattern_spacing", "support_expansion", "support_style", diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index 2522926f1e..46918088ed 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -76,7 +76,8 @@ PrintRegion::PrintRegion(const PrintRegionConfig &config) : PrintRegion(config, PrintRegion::PrintRegion(PrintRegionConfig &&config) : PrintRegion(std::move(config), config.hash()) {} //BBS -float Print::min_skirt_length = 0; +// ORCA: Now this is a parameter +//float Print::min_skirt_length = 0; void Print::clear() { @@ -239,6 +240,7 @@ bool Print::invalidate_state_by_config_options(const ConfigOptionResolver & /* n opt_key == "skirt_loops" || opt_key == "skirt_speed" || opt_key == "skirt_height" + || opt_key == "min_skirt_length" || opt_key == "draft_shield" || opt_key == "skirt_distance" || opt_key == "ooze_prevention" @@ -2331,15 +2333,15 @@ void Print::_make_skirt() ))); eloop.paths.back().polyline = loop.split_at_first_point(); m_skirt.append(eloop); - if (Print::min_skirt_length > 0) { + if (m_config.min_skirt_length.value > 0) { // The skirt length is limited. Sum the total amount of filament length extruded, in mm. extruded_length[extruder_idx] += unscale(loop.length()) * extruders_e_per_mm[extruder_idx]; - if (extruded_length[extruder_idx] < Print::min_skirt_length) { + if (extruded_length[extruder_idx] < m_config.min_skirt_length.value) { // Not extruded enough yet with the current extruder. Add another loop. if (i == 1) ++ i; } else { - assert(extruded_length[extruder_idx] >= Print::min_skirt_length); + assert(extruded_length[extruder_idx] >= m_config.min_skirt_length.value); // Enough extruded with the current extruder. Extrude with the next one, // until the prescribed number of skirt loops is extruded. if (extruder_idx + 1 < extruders.size()) diff --git a/src/libslic3r/Print.hpp b/src/libslic3r/Print.hpp index f48466e575..23a3a00159 100644 --- a/src/libslic3r/Print.hpp +++ b/src/libslic3r/Print.hpp @@ -1027,7 +1027,8 @@ private: public: //BBS: this was a print config and now seems to be useless so we move it to here - static float min_skirt_length; + // ORCA: parameter below is now back to being a user option (min_skirt_length) + //static float min_skirt_length; }; diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 29eeba5ae6..c07553503e 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3802,12 +3802,14 @@ def = this->add("filament_loading_speed", coFloats); def->set_default_value(new ConfigOptionInt(1)); def = this->add("draft_shield", coEnum); - //def->label = L("Draft shield"); - def->label = "Draft shield"; - //def->tooltip = L("With draft shield active, the skirt will be printed skirt_distance from the object, possibly intersecting brim.\n" - // "Enabled = skirt is as tall as the highest printed object.\n" - // "Limited = skirt is as tall as specified by skirt_height.\n" - // "This is useful to protect an ABS or ASA print from warping and detaching from print bed due to wind draft."); + def->label = L("Draft shield"); + def->tooltip = L("A draft shield is useful to protect an ABS or ASA print from warping and detaching from print bed due to wind draft. " + "It is usually needed only with open frame printers, i.e. without an enclosure. \n\n" + "Options:\n" + "Enabled = skirt is as tall as the highest printed object.\n" + "Limited = skirt is as tall as specified by skirt height.\n\n" + "Note: With the draft shield active, the skirt will be printed at skirt distance from the object. Therefore, if brims " + "are active it may intersect with them. To avoid this, increase the skirt distance value.\n"); def->enum_keys_map = &ConfigOptionEnum::get_enum_values(); def->enum_values.push_back("disabled"); def->enum_values.push_back("limited"); @@ -3815,7 +3817,7 @@ def = this->add("filament_loading_speed", coFloats); def->enum_labels.push_back("Disabled"); def->enum_labels.push_back("Limited"); def->enum_labels.push_back("Enabled"); - def->mode = comDevelop; + def->mode = comAdvanced; def->set_default_value(new ConfigOptionEnum(dsDisabled)); def = this->add("skirt_loops", coInt); @@ -3835,6 +3837,16 @@ def = this->add("filament_loading_speed", coFloats); def->sidetext = L("mm/s"); def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(50.0)); + + def = this->add("min_skirt_length", coFloat); + def->label = L("Skirt minimum extrusion length"); + def->full_label = L("Skirt minimum extrusion length"); + def->tooltip = L("Minimum filament extrusion length in mm when printing the skirt. Zero means this feature is disabled.\n\n" + "Using a non zero value is useful if the printer is set up to print without a prime line."); + def->min = 0; + def->sidetext = L("mm"); + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloat(0.0)); def = this->add("slow_down_layer_time", coFloats); def->label = L("Layer time"); diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp index 9d6c88a2b8..836d326e7d 100644 --- a/src/libslic3r/PrintConfig.hpp +++ b/src/libslic3r/PrintConfig.hpp @@ -1215,6 +1215,7 @@ PRINT_CONFIG_CLASS_DERIVED_DEFINE( ((ConfigOptionInt, skirt_height)) ((ConfigOptionInt, skirt_loops)) ((ConfigOptionFloat, skirt_speed)) + ((ConfigOptionFloat, min_skirt_length)) ((ConfigOptionFloats, slow_down_layer_time)) ((ConfigOptionBool, spiral_mode)) ((ConfigOptionBool, spiral_mode_smooth)) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 4ad01855b4..9a7de192ff 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -2698,7 +2698,7 @@ Plater::priv::priv(Plater *q, MainFrame *main_frame) , config(Slic3r::DynamicPrintConfig::new_from_defaults_keys({ "printable_area", "bed_exclude_area", "bed_custom_texture", "bed_custom_model", "print_sequence", "extruder_clearance_radius", "extruder_clearance_height_to_lid", "extruder_clearance_height_to_rod", - "nozzle_height", "skirt_loops", "skirt_speed", "skirt_distance", + "nozzle_height", "skirt_loops", "skirt_speed","min_skirt_length", "skirt_distance", "brim_width", "brim_object_gap", "brim_type", "nozzle_diameter", "single_extruder_multi_material", "preferred_orientation", "enable_prime_tower", "wipe_tower_x", "wipe_tower_y", "prime_tower_width", "prime_tower_brim_width", "prime_volume", "extruder_colour", "filament_colour", "material_colour", "printable_height", "printer_model", "printer_technology", diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index b9a9f139b8..0bee4aa8a0 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2269,12 +2269,15 @@ void TabPrint::build() optgroup->append_single_option_line("tree_support_brim_width"); page = add_options_page(L("Others"), "advanced"); - optgroup = page->new_optgroup(L("Bed adhension"), L"param_adhension"); + optgroup = page->new_optgroup(L("Skirt"), L"param_adhension"); optgroup->append_single_option_line("skirt_loops"); + optgroup->append_single_option_line("min_skirt_length"); optgroup->append_single_option_line("skirt_distance"); optgroup->append_single_option_line("skirt_height"); optgroup->append_single_option_line("skirt_speed"); - //optgroup->append_single_option_line("draft_shield"); + optgroup->append_single_option_line("draft_shield"); + + optgroup = page->new_optgroup(L("Brim"), L"param_adhension"); optgroup->append_single_option_line("brim_type", "auto-brim"); optgroup->append_single_option_line("brim_width", "auto-brim#manual"); optgroup->append_single_option_line("brim_object_gap", "auto-brim#brim-object-gap"); From 79ba04515093cc7350834dd891f783123e0d2169 Mon Sep 17 00:00:00 2001 From: KrisMorr <154343071+KrisMorr@users.noreply.github.com> Date: Mon, 20 May 2024 13:06:02 +0200 Subject: [PATCH 09/66] fix_c-format->>-no-c-format (#5403) --- src/libslic3r/PrintConfig.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index c07553503e..bdc0938511 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2684,6 +2684,7 @@ def = this->add("filament_loading_speed", coFloats); def = this->add("infill_wall_overlap", coPercent); def->label = L("Infill/Wall overlap"); def->category = L("Strength"); + // xgettext:no-c-format, no-boost-format def->tooltip = L("Infill area is enlarged slightly to overlap with wall for better bonding. The percentage value is relative to line width of sparse infill. Set this value to ~10-15% to minimize potential over extrusion and accumulation of material resulting in rough top surfaces."); def->sidetext = L("%"); def->ratio_over = "inner_wall_line_width"; @@ -2693,6 +2694,7 @@ def = this->add("filament_loading_speed", coFloats); def = this->add("top_bottom_infill_wall_overlap", coPercent); def->label = L("Top/Bottom solid infill/wall overlap"); def->category = L("Strength"); + // xgettext:no-c-format, no-boost-format def->tooltip = L("Top solid infill area is enlarged slightly to overlap with wall for better bonding and to minimize the appearance of pinholes where the top infill meets the walls. A value of 25-30% is a good starting point, minimising the appearance of pinholes. The percentage value is relative to line width of sparse infill"); def->sidetext = L("%"); def->ratio_over = "inner_wall_line_width"; From 5914a3a042dc86cb45ae027cd906e8e730a38c59 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Mon, 20 May 2024 20:30:57 +0800 Subject: [PATCH 10/66] Revert "Fix parameters not updating on non active tabs (#5400)" This reverts commit 3f83d68e0ed7991cd41d17afff8794b19764a975. --- src/slic3r/GUI/Tab.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 0bee4aa8a0..fb422b595b 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -1172,10 +1172,8 @@ void Tab::load_config(const DynamicPrintConfig& config) // Reload current $self->{config} (aka $self->{presets}->edited_preset->config) into the UI fields. void Tab::reload_config() { - //if (m_active_page) - // m_active_page->reload_config(); - for (auto page : m_pages) - page->reload_config(); + if (m_active_page) + m_active_page->reload_config(); } void Tab::update_mode() From f08e75efaa9297f557df74ab4ca62df4f9b1a7a7 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Mon, 20 May 2024 20:31:09 +0800 Subject: [PATCH 11/66] =?UTF-8?q?Revert=20"Added=20a=20deactivate()=20func?= =?UTF-8?q?tion=20to=20Tab=20so=20when=20switching=20tabs=20it=20hides=20?= =?UTF-8?q?=E2=80=A6=20(#5386)"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 7a335590e2770679876a898f1a4a0c3dc6ddeccf. --- src/slic3r/GUI/Tab.cpp | 13 ++----------- src/slic3r/GUI/Tab.hpp | 1 - 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index fb422b595b..cf0df73a89 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -5202,10 +5202,6 @@ bool Tab::tree_sel_change_delayed(wxCommandEvent& event) if (m_active_page == page) return false; - if (m_active_page != nullptr) { - m_active_page->deactivate(); - } - m_active_page = page; auto throw_if_canceled = std::function([this](){ @@ -5223,6 +5219,8 @@ bool Tab::tree_sel_change_delayed(wxCommandEvent& event) try { m_page_view->Freeze(); + // clear pages from the controls + clear_pages(); throw_if_canceled(); //BBS: GUI refactor @@ -5927,13 +5925,6 @@ void Page::activate(ConfigOptionMode mode, std::function throw_if_cancel #endif } -void Page::deactivate() -{ - for (auto group : m_optgroups) { - group->Hide(); - } -} - void Page::clear() { for (auto group : m_optgroups) diff --git a/src/slic3r/GUI/Tab.hpp b/src/slic3r/GUI/Tab.hpp index 71f3e3ef22..707e076aaa 100644 --- a/src/slic3r/GUI/Tab.hpp +++ b/src/slic3r/GUI/Tab.hpp @@ -104,7 +104,6 @@ public: void reload_config(); void update_visibility(ConfigOptionMode mode, bool update_contolls_visibility); void activate(ConfigOptionMode mode, std::function throw_if_canceled); - void deactivate(); void clear(); void msw_rescale(); void sys_color_changed(); From 34d3409951e5c6dc0d1247ac5080eec5ff469f15 Mon Sep 17 00:00:00 2001 From: yw4z Date: Mon, 20 May 2024 18:18:05 +0300 Subject: [PATCH 12/66] Fixes for new icons (#5221) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Sidebar > Height range > Add / Delete range icons * Add icon for Object list > Layers (Height Range) * Add icon for Object list > Range (Hight Range item) * Add icon for Object list > Support / Color painting * File Renamed for Calibration Tab * Update Sidebar icons * Add icon for CrossHatch fill pattern * Delete leftover icons from previous commit * Update Filament Settings icons * Update Machine Settings icons * Update plaholders editor icons * Fix for Printer Setting > Extruder icons and Add support for icons for its tabs * Update undefined category icon on compare window with low res compatible one * Update toolbar > variable layer height icon * Fix warning icon on Emboss & SVG gizmo * Delete leftover icons from previous commit * Gizmos > Keyboard cheat sheet icon resolution fix * Combo box arrow resolution fix * Delete leftover icons from previous commit * Update plate & toolbar icons * Fix: ComboBox > Dropdown menu checkmark not visible on light theme * Delete leftover icons from previous commit * Restore icons for plate rename * Swap directions of notification expand / collapse icons * Mixed • Increases contrast of icons on light theme • Removes opacity from edit, delete, search... icons • Fixes different color for advanced toggle on dark mode • Fixes checkboxes not aligned with other boxes • Style fixes for checkboxes * Fix some colors not changing * Slightly changed color paint icon Spray icon is now taller and fits better with brush icon on seam / support paint * Minor changes on seam and support related icons * Fix blurry icons that vertically centered on gizmos * Update warning icon on dialogs * Fix plate icons rendering issue * Update icons for Gap fill and Fill on color paint and add icon for Skirt --------- Co-authored-by: SoftFever --- resources/images/add.svg | 2 +- resources/images/add_copies.svg | 2 +- resources/images/check_half.svg | 2 +- resources/images/check_half_disabled.svg | 2 +- resources/images/check_half_focused.svg | 2 +- resources/images/check_off.svg | 2 +- resources/images/check_off_disabled.svg | 2 +- resources/images/check_off_focused.svg | 2 +- resources/images/check_on.svg | 2 +- resources/images/check_on_disabled.svg | 2 +- resources/images/check_on_focused.svg | 2 +- resources/images/checked.svg | 2 +- resources/images/cross.svg | 2 +- resources/images/custom-gcode_support.svg | 2 +- resources/images/cut_circle.svg | 1 - resources/images/cut_circle_dark.svg | 1 - resources/images/cut_hexagon.svg | 1 - resources/images/cut_hexagon_dark.svg | 1 - resources/images/cut_square.svg | 1 - resources/images/cut_square_dark.svg | 1 - resources/images/cut_triangle.svg | 1 - resources/images/cut_triangle_dark.svg | 1 - resources/images/delete.svg | 2 +- resources/images/drop_down.svg | 2 +- resources/images/edit.svg | 2 +- resources/images/edit_button.svg | 2 +- resources/images/fill_paint.svg | 2 +- resources/images/fill_paint_dark.svg | 2 +- resources/images/gap_fill.svg | 2 +- resources/images/gap_fill_dark.svg | 2 +- resources/images/measure_edit.svg | 1 - resources/images/mesh_boolean_a.svg | 1 - resources/images/mesh_boolean_b.svg | 1 - resources/images/mesh_boolean_difference.svg | 1 - .../images/mesh_boolean_difference_dark.svg | 1 - .../images/mesh_boolean_intersection.svg | 1 - .../images/mesh_boolean_intersection_dark.svg | 1 - resources/images/mesh_boolean_keep.svg | 1 - resources/images/mesh_boolean_subtract.svg | 1 - resources/images/mesh_boolean_union.svg | 1 - resources/images/mesh_boolean_union_dark.svg | 1 - resources/images/mmu_segmentation.svg | 2 +- resources/images/mmu_segmentation_dark.svg | 2 +- resources/images/notification_collapse.svg | 2 +- resources/images/notification_expand.svg | 2 +- resources/images/objlist_seam_painting.svg | 2 +- resources/images/objlist_support_painting.svg | 2 +- resources/images/param_crosshatch.svg | 571 +----------------- resources/images/param_default-pattern.svg | 1 - resources/images/param_seam.svg | 2 +- resources/images/param_search.svg | 1 - resources/images/param_skirt.svg | 1 + resources/images/param_support.svg | 2 +- resources/images/plate_arrange.svg | 2 +- resources/images/plate_arrange_dark.svg | 2 +- resources/images/plate_arrange_hover.svg | 2 +- resources/images/plate_arrange_hover_dark.svg | 2 +- resources/images/plate_close.svg | 2 +- resources/images/plate_close_dark.svg | 2 +- resources/images/plate_close_hover.svg | 2 +- resources/images/plate_close_hover_dark.svg | 2 +- resources/images/plate_locked.svg | 2 +- resources/images/plate_locked_dark.svg | 2 +- resources/images/plate_locked_hover.svg | 2 +- resources/images/plate_locked_hover_dark.svg | 2 +- resources/images/plate_name_edit.svg | 2 +- resources/images/plate_name_edit_dark.svg | 2 +- resources/images/plate_name_edit_hover.svg | 2 +- .../images/plate_name_edit_hover_dark.svg | 2 +- resources/images/plate_orient.svg | 2 +- resources/images/plate_orient_dark.svg | 2 +- resources/images/plate_orient_hover.svg | 2 +- resources/images/plate_orient_hover_dark.svg | 2 +- resources/images/plate_settings.svg | 2 +- resources/images/plate_settings_changed.svg | 2 +- .../images/plate_settings_changed_dark.svg | 2 +- .../images/plate_settings_changed_hover.svg | 2 +- .../plate_settings_changed_hover_dark.svg | 2 +- resources/images/plate_settings_dark.svg | 2 +- resources/images/plate_settings_hover.svg | 2 +- .../images/plate_settings_hover_dark.svg | 2 +- resources/images/plate_unlocked.svg | 2 +- resources/images/plate_unlocked_dark.svg | 2 +- resources/images/plate_unlocked_hover.svg | 2 +- .../images/plate_unlocked_hover_dark.svg | 2 +- resources/images/save.svg | 2 +- resources/images/search.svg | 2 +- resources/images/tab_calibration.svg | 1 - resources/images/tab_calibration_active.svg | 5 +- resources/images/toolbar_flatten.svg | 7 +- resources/images/toolbar_flatten_dark.svg | 7 +- resources/images/toolbar_orient.svg | 11 +- resources/images/toolbar_orient_dark.svg | 11 +- resources/images/toolbar_seam.svg | 2 +- resources/images/toolbar_seam_dark.svg | 2 +- resources/images/toolbar_support.svg | 2 +- resources/images/toolbar_support_dark.svg | 2 +- .../images/toolbar_variable_layer_height.svg | 8 +- .../toolbar_variable_layer_height_dark.svg | 8 +- resources/images/topbar_blank.svg | 1 - src/slic3r/GUI/BitmapCache.cpp | 9 + src/slic3r/GUI/EditGCodeDialog.cpp | 15 +- src/slic3r/GUI/GLCanvas3D.cpp | 6 +- src/slic3r/GUI/GUI_ObjectLayers.cpp | 4 +- src/slic3r/GUI/Gizmos/GLGizmoCut.cpp | 6 +- src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp | 2 +- src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp | 6 +- src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp | 6 +- .../GUI/Gizmos/GLGizmoMmuSegmentation.cpp | 6 +- src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp | 2 +- src/slic3r/GUI/Gizmos/GLGizmoSeam.cpp | 6 +- src/slic3r/GUI/Gizmos/GLGizmosManager.cpp | 4 +- src/slic3r/GUI/IconManager.cpp | 2 +- src/slic3r/GUI/MsgDialog.cpp | 2 +- src/slic3r/GUI/ObjectDataViewModel.cpp | 8 +- src/slic3r/GUI/OptionsGroup.hpp | 4 +- src/slic3r/GUI/Tab.cpp | 96 +-- src/slic3r/GUI/UnsavedChangesDialog.cpp | 2 +- 118 files changed, 179 insertions(+), 795 deletions(-) delete mode 100644 resources/images/cut_circle.svg delete mode 100644 resources/images/cut_circle_dark.svg delete mode 100644 resources/images/cut_hexagon.svg delete mode 100644 resources/images/cut_hexagon_dark.svg delete mode 100644 resources/images/cut_square.svg delete mode 100644 resources/images/cut_square_dark.svg delete mode 100644 resources/images/cut_triangle.svg delete mode 100644 resources/images/cut_triangle_dark.svg delete mode 100644 resources/images/measure_edit.svg delete mode 100644 resources/images/mesh_boolean_a.svg delete mode 100644 resources/images/mesh_boolean_b.svg delete mode 100644 resources/images/mesh_boolean_difference.svg delete mode 100644 resources/images/mesh_boolean_difference_dark.svg delete mode 100644 resources/images/mesh_boolean_intersection.svg delete mode 100644 resources/images/mesh_boolean_intersection_dark.svg delete mode 100644 resources/images/mesh_boolean_keep.svg delete mode 100644 resources/images/mesh_boolean_subtract.svg delete mode 100644 resources/images/mesh_boolean_union.svg delete mode 100644 resources/images/mesh_boolean_union_dark.svg delete mode 100644 resources/images/param_default-pattern.svg delete mode 100644 resources/images/param_search.svg create mode 100644 resources/images/param_skirt.svg delete mode 100644 resources/images/tab_calibration.svg delete mode 100644 resources/images/topbar_blank.svg diff --git a/resources/images/add.svg b/resources/images/add.svg index 351f830b6c..cbaa7056fb 100644 --- a/resources/images/add.svg +++ b/resources/images/add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/add_copies.svg b/resources/images/add_copies.svg index a491ba51e5..a1af9f8389 100644 --- a/resources/images/add_copies.svg +++ b/resources/images/add_copies.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/check_half.svg b/resources/images/check_half.svg index 78560b1072..0e543a7773 100644 --- a/resources/images/check_half.svg +++ b/resources/images/check_half.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/check_half_disabled.svg b/resources/images/check_half_disabled.svg index a0b23696bb..97feb9dc91 100644 --- a/resources/images/check_half_disabled.svg +++ b/resources/images/check_half_disabled.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/check_half_focused.svg b/resources/images/check_half_focused.svg index 1faea57461..f0fa31276c 100644 --- a/resources/images/check_half_focused.svg +++ b/resources/images/check_half_focused.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/check_off.svg b/resources/images/check_off.svg index b56c4abc24..1bd142b66a 100644 --- a/resources/images/check_off.svg +++ b/resources/images/check_off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/check_off_disabled.svg b/resources/images/check_off_disabled.svg index d4c14ca6d0..8c4818d204 100644 --- a/resources/images/check_off_disabled.svg +++ b/resources/images/check_off_disabled.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/check_off_focused.svg b/resources/images/check_off_focused.svg index 39fdb07e63..ea1e1bdbdc 100644 --- a/resources/images/check_off_focused.svg +++ b/resources/images/check_off_focused.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/check_on.svg b/resources/images/check_on.svg index 43ef314cd3..e4d1caa369 100644 --- a/resources/images/check_on.svg +++ b/resources/images/check_on.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/check_on_disabled.svg b/resources/images/check_on_disabled.svg index 5ed3987438..35e6d0b926 100644 --- a/resources/images/check_on_disabled.svg +++ b/resources/images/check_on_disabled.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/check_on_focused.svg b/resources/images/check_on_focused.svg index 1b93469bf4..5b5f2f2591 100644 --- a/resources/images/check_on_focused.svg +++ b/resources/images/check_on_focused.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/checked.svg b/resources/images/checked.svg index 6fed74863a..1d0369da74 100644 --- a/resources/images/checked.svg +++ b/resources/images/checked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/cross.svg b/resources/images/cross.svg index 2e36702da2..a8598bdf7d 100644 --- a/resources/images/cross.svg +++ b/resources/images/cross.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/custom-gcode_support.svg b/resources/images/custom-gcode_support.svg index f53dd207fb..b34d3a7f85 100644 --- a/resources/images/custom-gcode_support.svg +++ b/resources/images/custom-gcode_support.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/cut_circle.svg b/resources/images/cut_circle.svg deleted file mode 100644 index a222aaa834..0000000000 --- a/resources/images/cut_circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/cut_circle_dark.svg b/resources/images/cut_circle_dark.svg deleted file mode 100644 index 0acbcf4c3c..0000000000 --- a/resources/images/cut_circle_dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/cut_hexagon.svg b/resources/images/cut_hexagon.svg deleted file mode 100644 index 282ce14ea3..0000000000 --- a/resources/images/cut_hexagon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/cut_hexagon_dark.svg b/resources/images/cut_hexagon_dark.svg deleted file mode 100644 index 1ee6d0bc6e..0000000000 --- a/resources/images/cut_hexagon_dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/cut_square.svg b/resources/images/cut_square.svg deleted file mode 100644 index 7eb72c74ac..0000000000 --- a/resources/images/cut_square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/cut_square_dark.svg b/resources/images/cut_square_dark.svg deleted file mode 100644 index fbf7cc9aa4..0000000000 --- a/resources/images/cut_square_dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/cut_triangle.svg b/resources/images/cut_triangle.svg deleted file mode 100644 index ac03ed05ce..0000000000 --- a/resources/images/cut_triangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/cut_triangle_dark.svg b/resources/images/cut_triangle_dark.svg deleted file mode 100644 index a29569c6a2..0000000000 --- a/resources/images/cut_triangle_dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/delete.svg b/resources/images/delete.svg index 2e36702da2..a8598bdf7d 100644 --- a/resources/images/delete.svg +++ b/resources/images/delete.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/drop_down.svg b/resources/images/drop_down.svg index bdb34d71d9..6ecf48d1d9 100644 --- a/resources/images/drop_down.svg +++ b/resources/images/drop_down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/edit.svg b/resources/images/edit.svg index 6c2de1d980..e32229d429 100644 --- a/resources/images/edit.svg +++ b/resources/images/edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/edit_button.svg b/resources/images/edit_button.svg index 6c2de1d980..e32229d429 100644 --- a/resources/images/edit_button.svg +++ b/resources/images/edit_button.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/fill_paint.svg b/resources/images/fill_paint.svg index 4c3c2cc874..09985f91b4 100644 --- a/resources/images/fill_paint.svg +++ b/resources/images/fill_paint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/fill_paint_dark.svg b/resources/images/fill_paint_dark.svg index df9333b62c..1181e7e637 100644 --- a/resources/images/fill_paint_dark.svg +++ b/resources/images/fill_paint_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/gap_fill.svg b/resources/images/gap_fill.svg index 87436c9e2b..edd0fc6659 100644 --- a/resources/images/gap_fill.svg +++ b/resources/images/gap_fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/gap_fill_dark.svg b/resources/images/gap_fill_dark.svg index d17c639d41..b533510758 100644 --- a/resources/images/gap_fill_dark.svg +++ b/resources/images/gap_fill_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/measure_edit.svg b/resources/images/measure_edit.svg deleted file mode 100644 index 7f622b2cc4..0000000000 --- a/resources/images/measure_edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mesh_boolean_a.svg b/resources/images/mesh_boolean_a.svg deleted file mode 100644 index d4f1977d27..0000000000 --- a/resources/images/mesh_boolean_a.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mesh_boolean_b.svg b/resources/images/mesh_boolean_b.svg deleted file mode 100644 index d59ea608f6..0000000000 --- a/resources/images/mesh_boolean_b.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mesh_boolean_difference.svg b/resources/images/mesh_boolean_difference.svg deleted file mode 100644 index 986af31cef..0000000000 --- a/resources/images/mesh_boolean_difference.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mesh_boolean_difference_dark.svg b/resources/images/mesh_boolean_difference_dark.svg deleted file mode 100644 index cee940c3b5..0000000000 --- a/resources/images/mesh_boolean_difference_dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mesh_boolean_intersection.svg b/resources/images/mesh_boolean_intersection.svg deleted file mode 100644 index 52ac3014ef..0000000000 --- a/resources/images/mesh_boolean_intersection.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mesh_boolean_intersection_dark.svg b/resources/images/mesh_boolean_intersection_dark.svg deleted file mode 100644 index 9d232122fa..0000000000 --- a/resources/images/mesh_boolean_intersection_dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mesh_boolean_keep.svg b/resources/images/mesh_boolean_keep.svg deleted file mode 100644 index 1315f87895..0000000000 --- a/resources/images/mesh_boolean_keep.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mesh_boolean_subtract.svg b/resources/images/mesh_boolean_subtract.svg deleted file mode 100644 index 6d068c807b..0000000000 --- a/resources/images/mesh_boolean_subtract.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mesh_boolean_union.svg b/resources/images/mesh_boolean_union.svg deleted file mode 100644 index c300d0cf92..0000000000 --- a/resources/images/mesh_boolean_union.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mesh_boolean_union_dark.svg b/resources/images/mesh_boolean_union_dark.svg deleted file mode 100644 index b05e71adb4..0000000000 --- a/resources/images/mesh_boolean_union_dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/mmu_segmentation.svg b/resources/images/mmu_segmentation.svg index f9aed32360..085ebc006c 100644 --- a/resources/images/mmu_segmentation.svg +++ b/resources/images/mmu_segmentation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/mmu_segmentation_dark.svg b/resources/images/mmu_segmentation_dark.svg index 9d36df8e68..9946079ab9 100644 --- a/resources/images/mmu_segmentation_dark.svg +++ b/resources/images/mmu_segmentation_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/notification_collapse.svg b/resources/images/notification_collapse.svg index 02b182476d..303cecab38 100644 --- a/resources/images/notification_collapse.svg +++ b/resources/images/notification_collapse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/notification_expand.svg b/resources/images/notification_expand.svg index 303cecab38..02b182476d 100644 --- a/resources/images/notification_expand.svg +++ b/resources/images/notification_expand.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/objlist_seam_painting.svg b/resources/images/objlist_seam_painting.svg index 1e360cddac..d8571e04e4 100644 --- a/resources/images/objlist_seam_painting.svg +++ b/resources/images/objlist_seam_painting.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/objlist_support_painting.svg b/resources/images/objlist_support_painting.svg index e952fc3f52..21158ffc1b 100644 --- a/resources/images/objlist_support_painting.svg +++ b/resources/images/objlist_support_painting.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/param_crosshatch.svg b/resources/images/param_crosshatch.svg index 03a1f04a71..3e5e81648c 100644 --- a/resources/images/param_crosshatch.svg +++ b/resources/images/param_crosshatch.svg @@ -1,570 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/param_default-pattern.svg b/resources/images/param_default-pattern.svg deleted file mode 100644 index 0bbbc3e7e1..0000000000 --- a/resources/images/param_default-pattern.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/param_seam.svg b/resources/images/param_seam.svg index ec011d8df4..d1dbf04c5e 100644 --- a/resources/images/param_seam.svg +++ b/resources/images/param_seam.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/param_search.svg b/resources/images/param_search.svg deleted file mode 100644 index 7bdca770f6..0000000000 --- a/resources/images/param_search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/param_skirt.svg b/resources/images/param_skirt.svg new file mode 100644 index 0000000000..1f0a1854e0 --- /dev/null +++ b/resources/images/param_skirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_support.svg b/resources/images/param_support.svg index d487ac417c..6c20d647be 100644 --- a/resources/images/param_support.svg +++ b/resources/images/param_support.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_arrange.svg b/resources/images/plate_arrange.svg index 16d2189b4c..ea6ef51a5d 100644 --- a/resources/images/plate_arrange.svg +++ b/resources/images/plate_arrange.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_arrange_dark.svg b/resources/images/plate_arrange_dark.svg index 5ac7c488ba..6b0ade63b9 100644 --- a/resources/images/plate_arrange_dark.svg +++ b/resources/images/plate_arrange_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_arrange_hover.svg b/resources/images/plate_arrange_hover.svg index f3378fce55..4170ddefb3 100644 --- a/resources/images/plate_arrange_hover.svg +++ b/resources/images/plate_arrange_hover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_arrange_hover_dark.svg b/resources/images/plate_arrange_hover_dark.svg index 65f956b28e..7b4d451103 100644 --- a/resources/images/plate_arrange_hover_dark.svg +++ b/resources/images/plate_arrange_hover_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_close.svg b/resources/images/plate_close.svg index de0c4f66a6..caa52e8d76 100644 --- a/resources/images/plate_close.svg +++ b/resources/images/plate_close.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_close_dark.svg b/resources/images/plate_close_dark.svg index a045ccd4b2..60e10f32fb 100644 --- a/resources/images/plate_close_dark.svg +++ b/resources/images/plate_close_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_close_hover.svg b/resources/images/plate_close_hover.svg index 495322afe4..78154b649e 100644 --- a/resources/images/plate_close_hover.svg +++ b/resources/images/plate_close_hover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_close_hover_dark.svg b/resources/images/plate_close_hover_dark.svg index 13199c94b8..057950934e 100644 --- a/resources/images/plate_close_hover_dark.svg +++ b/resources/images/plate_close_hover_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_locked.svg b/resources/images/plate_locked.svg index 8738cd5222..ad62e0be45 100644 --- a/resources/images/plate_locked.svg +++ b/resources/images/plate_locked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_locked_dark.svg b/resources/images/plate_locked_dark.svg index 94698a340f..954e90a96e 100644 --- a/resources/images/plate_locked_dark.svg +++ b/resources/images/plate_locked_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_locked_hover.svg b/resources/images/plate_locked_hover.svg index f56beb6c07..9898e71aa0 100644 --- a/resources/images/plate_locked_hover.svg +++ b/resources/images/plate_locked_hover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_locked_hover_dark.svg b/resources/images/plate_locked_hover_dark.svg index 8955de70dd..f12e171e47 100644 --- a/resources/images/plate_locked_hover_dark.svg +++ b/resources/images/plate_locked_hover_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_name_edit.svg b/resources/images/plate_name_edit.svg index fad12d446e..54a607d222 100644 --- a/resources/images/plate_name_edit.svg +++ b/resources/images/plate_name_edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_name_edit_dark.svg b/resources/images/plate_name_edit_dark.svg index 6ed07bbdf4..729cb18431 100644 --- a/resources/images/plate_name_edit_dark.svg +++ b/resources/images/plate_name_edit_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_name_edit_hover.svg b/resources/images/plate_name_edit_hover.svg index d6968c9bb8..66befdaebd 100644 --- a/resources/images/plate_name_edit_hover.svg +++ b/resources/images/plate_name_edit_hover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_name_edit_hover_dark.svg b/resources/images/plate_name_edit_hover_dark.svg index 5655a554ea..0382c829ff 100644 --- a/resources/images/plate_name_edit_hover_dark.svg +++ b/resources/images/plate_name_edit_hover_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_orient.svg b/resources/images/plate_orient.svg index 63dd5f2f0b..cc7d090f8d 100644 --- a/resources/images/plate_orient.svg +++ b/resources/images/plate_orient.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_orient_dark.svg b/resources/images/plate_orient_dark.svg index b0b16c87a9..2112074ca5 100644 --- a/resources/images/plate_orient_dark.svg +++ b/resources/images/plate_orient_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_orient_hover.svg b/resources/images/plate_orient_hover.svg index e88fb5d830..fcf1aabc38 100644 --- a/resources/images/plate_orient_hover.svg +++ b/resources/images/plate_orient_hover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_orient_hover_dark.svg b/resources/images/plate_orient_hover_dark.svg index e8adebcf49..a2c60a0a79 100644 --- a/resources/images/plate_orient_hover_dark.svg +++ b/resources/images/plate_orient_hover_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_settings.svg b/resources/images/plate_settings.svg index e6ee8b0b6a..7ca6f421fd 100644 --- a/resources/images/plate_settings.svg +++ b/resources/images/plate_settings.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_settings_changed.svg b/resources/images/plate_settings_changed.svg index 8a4ca4d60f..3c1cc319c0 100644 --- a/resources/images/plate_settings_changed.svg +++ b/resources/images/plate_settings_changed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_settings_changed_dark.svg b/resources/images/plate_settings_changed_dark.svg index ce5672a9d7..0858582095 100644 --- a/resources/images/plate_settings_changed_dark.svg +++ b/resources/images/plate_settings_changed_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_settings_changed_hover.svg b/resources/images/plate_settings_changed_hover.svg index 1bb9023a28..f2350ae353 100644 --- a/resources/images/plate_settings_changed_hover.svg +++ b/resources/images/plate_settings_changed_hover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_settings_changed_hover_dark.svg b/resources/images/plate_settings_changed_hover_dark.svg index 2fabb11b78..ee72de4a5e 100644 --- a/resources/images/plate_settings_changed_hover_dark.svg +++ b/resources/images/plate_settings_changed_hover_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_settings_dark.svg b/resources/images/plate_settings_dark.svg index 69b3474669..ea12254f87 100644 --- a/resources/images/plate_settings_dark.svg +++ b/resources/images/plate_settings_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_settings_hover.svg b/resources/images/plate_settings_hover.svg index a555b28f9b..63c33ff2f9 100644 --- a/resources/images/plate_settings_hover.svg +++ b/resources/images/plate_settings_hover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_settings_hover_dark.svg b/resources/images/plate_settings_hover_dark.svg index f36f6e8f03..2cd16d21a9 100644 --- a/resources/images/plate_settings_hover_dark.svg +++ b/resources/images/plate_settings_hover_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_unlocked.svg b/resources/images/plate_unlocked.svg index c04f826e24..6d93b9b69e 100644 --- a/resources/images/plate_unlocked.svg +++ b/resources/images/plate_unlocked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_unlocked_dark.svg b/resources/images/plate_unlocked_dark.svg index 191094d9d6..092f6a0dfb 100644 --- a/resources/images/plate_unlocked_dark.svg +++ b/resources/images/plate_unlocked_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_unlocked_hover.svg b/resources/images/plate_unlocked_hover.svg index f0f0d1ff03..91ac0aacb6 100644 --- a/resources/images/plate_unlocked_hover.svg +++ b/resources/images/plate_unlocked_hover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_unlocked_hover_dark.svg b/resources/images/plate_unlocked_hover_dark.svg index 8d9f568ed6..a52831047f 100644 --- a/resources/images/plate_unlocked_hover_dark.svg +++ b/resources/images/plate_unlocked_hover_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/save.svg b/resources/images/save.svg index 65db979dfa..ba542737f9 100644 --- a/resources/images/save.svg +++ b/resources/images/save.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/search.svg b/resources/images/search.svg index 71fb964182..931ce8143a 100644 --- a/resources/images/search.svg +++ b/resources/images/search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/tab_calibration.svg b/resources/images/tab_calibration.svg deleted file mode 100644 index 54ea4fe5b5..0000000000 --- a/resources/images/tab_calibration.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/tab_calibration_active.svg b/resources/images/tab_calibration_active.svg index 71bfdfc451..54ea4fe5b5 100644 --- a/resources/images/tab_calibration_active.svg +++ b/resources/images/tab_calibration_active.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_flatten.svg b/resources/images/toolbar_flatten.svg index ffcc22e4f8..7f375998f5 100644 --- a/resources/images/toolbar_flatten.svg +++ b/resources/images/toolbar_flatten.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_flatten_dark.svg b/resources/images/toolbar_flatten_dark.svg index e6c3b472e7..2ef8d50fd5 100644 --- a/resources/images/toolbar_flatten_dark.svg +++ b/resources/images/toolbar_flatten_dark.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_orient.svg b/resources/images/toolbar_orient.svg index b240ffa763..ed05131754 100644 --- a/resources/images/toolbar_orient.svg +++ b/resources/images/toolbar_orient.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_orient_dark.svg b/resources/images/toolbar_orient_dark.svg index 2e46dfa13e..dbd1e38d90 100644 --- a/resources/images/toolbar_orient_dark.svg +++ b/resources/images/toolbar_orient_dark.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_seam.svg b/resources/images/toolbar_seam.svg index 660f1fed3e..2b9afca90f 100644 --- a/resources/images/toolbar_seam.svg +++ b/resources/images/toolbar_seam.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/toolbar_seam_dark.svg b/resources/images/toolbar_seam_dark.svg index 65573c87b1..cda5ce288f 100644 --- a/resources/images/toolbar_seam_dark.svg +++ b/resources/images/toolbar_seam_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/toolbar_support.svg b/resources/images/toolbar_support.svg index 9ace7d67c7..56e44fa1ba 100644 --- a/resources/images/toolbar_support.svg +++ b/resources/images/toolbar_support.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/toolbar_support_dark.svg b/resources/images/toolbar_support_dark.svg index fac4afb675..e749ab87b5 100644 --- a/resources/images/toolbar_support_dark.svg +++ b/resources/images/toolbar_support_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/toolbar_variable_layer_height.svg b/resources/images/toolbar_variable_layer_height.svg index 9c98e40a8f..08984f1fa0 100644 --- a/resources/images/toolbar_variable_layer_height.svg +++ b/resources/images/toolbar_variable_layer_height.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/toolbar_variable_layer_height_dark.svg b/resources/images/toolbar_variable_layer_height_dark.svg index 66b5401f75..83fd28bc3e 100644 --- a/resources/images/toolbar_variable_layer_height_dark.svg +++ b/resources/images/toolbar_variable_layer_height_dark.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/resources/images/topbar_blank.svg b/resources/images/topbar_blank.svg deleted file mode 100644 index b920a2ccdc..0000000000 --- a/resources/images/topbar_blank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/slic3r/GUI/BitmapCache.cpp b/src/slic3r/GUI/BitmapCache.cpp index d382f657e3..ae0678f6b1 100644 --- a/src/slic3r/GUI/BitmapCache.cpp +++ b/src/slic3r/GUI/BitmapCache.cpp @@ -335,7 +335,16 @@ wxBitmap* BitmapCache::load_svg(const std::string &bitmap_name, unsigned target_ replaces["\"#909090\""] = "\"#FFFFFF\""; replaces["\"#00FF00\""] = "\"#FF0000\""; replaces["\"#009688\""] = "\"#00675b\""; + replaces["#DBDBDB"] = "#4A4A51"; // ORCA border color + replaces["#F0F0F1"] = "#404040"; // ORCA disabled background color + replaces["#262E30"] = "#EFEFF0"; // ORCA + } else { + replaces["#949494"] = "#7C8282"; // ORCA replace icon line color for light theme } + + if (strstr(bitmap_name.c_str(), "toggle_on") != NULL && dark_mode) // ORCA only replace color of toggle button + replaces["#009688"] = "#00675b"; + //if (!new_color.empty()) // replaces["\"#ED6B21\""] = "\"" + new_color + "\""; diff --git a/src/slic3r/GUI/EditGCodeDialog.cpp b/src/slic3r/GUI/EditGCodeDialog.cpp index 54ec6db8bc..3e8548decd 100644 --- a/src/slic3r/GUI/EditGCodeDialog.cpp +++ b/src/slic3r/GUI/EditGCodeDialog.cpp @@ -215,7 +215,7 @@ void EditGCodeDialog::init_params_list(const std::string& custom_gcode_name) // Add timestamp subgroup if (!cgp_timestamps_config_def.empty()) { - wxDataViewItem dimensions = m_params_list->AppendGroup(_L("Timestamps"), "print-time"); + wxDataViewItem dimensions = m_params_list->AppendGroup(_L("Timestamps"), "custom-gcode_time"); for (const auto& [opt_key, def] : cgp_timestamps_config_def.options) m_params_list->AppendParam(dimensions, get_type(opt_key, def), opt_key); } @@ -271,7 +271,16 @@ wxDataViewItem EditGCodeDialog::add_presets_placeholders() auto init_from_tab = [this, full_config](wxDataViewItem parent, Tab* tab, const set& preset_keys){ set extra_keys(preset_keys); for (const auto& page : tab->m_pages) { - wxDataViewItem subgroup = m_params_list->AppendSubGroup(parent, page->title(), "empty"); + // ORCA: Pull icons from tabs for subgroups, icons are hidden on tabs + std::string icon_name = "empty"; // use empty icon if not defined + for (const auto& icons_list : tab->m_icon_index) { + if (icons_list.second == page->iconID()) { + icon_name = icons_list.first; + break; + } + } + wxDataViewItem subgroup = m_params_list->AppendSubGroup(parent, page->title(), icon_name); // Use icon instead empty icon + std::set opt_keys; for (const auto& optgroup : page->m_optgroups) for (const auto& opt : optgroup->opt_map()) @@ -290,7 +299,7 @@ wxDataViewItem EditGCodeDialog::add_presets_placeholders() wxDataViewItem group = m_params_list->AppendGroup(_L("Presets"), "cog"); - wxDataViewItem print = m_params_list->AppendSubGroup(group, _L("Print settings"), "cog"); + wxDataViewItem print = m_params_list->AppendSubGroup(group, _L("Print settings"), "process"); init_from_tab(print, tab_print, print_options); wxDataViewItem material = m_params_list->AppendSubGroup(group, _(is_fff ? L("Filament settings") : L("SLA Materials settings")), is_fff ? "filament" : "resin"); diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index c8e81f4452..20a8de4a92 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -205,10 +205,10 @@ void GLCanvas3D::LayersEditing::show_tooltip_information(const GLCanvas3D& canva } caption_max += GImGui->Style.WindowPadding.x + imgui.scaled(1); - float font_size = ImGui::GetFontSize(); - ImVec2 button_size = ImVec2(font_size * 1.8, font_size * 1.3); + float scale = canvas.get_scale(); + ImVec2 button_size = ImVec2(25 * scale, 25 * scale); // ORCA: Use exact resolution will prevent blur on icon ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f); - ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, {0.0f, GImGui->Style.FramePadding.y}); + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, {0, 0}); // ORCA: Dont add padding ImGui::ImageButton3(normal_id, hover_id, button_size); if (ImGui::IsItemHovered()) { diff --git a/src/slic3r/GUI/GUI_ObjectLayers.cpp b/src/slic3r/GUI/GUI_ObjectLayers.cpp index 76dd268633..9b36885e56 100644 --- a/src/slic3r/GUI/GUI_ObjectLayers.cpp +++ b/src/slic3r/GUI/GUI_ObjectLayers.cpp @@ -31,8 +31,8 @@ ObjectLayers::ObjectLayers(wxWindow* parent) : m_og->sizer->Clear(true); m_og->sizer->Add(m_grid_sizer, 0, wxEXPAND | wxLEFT | wxRIGHT, wxOSX ? 0 : 5); - m_bmp_delete = ScalableBitmap(parent, "delete_filament"/*"cross"*/); - m_bmp_add = ScalableBitmap(parent, "add_filament"); + m_bmp_delete = ScalableBitmap(parent, "delete"); + m_bmp_add = ScalableBitmap(parent, "add"); } void ObjectLayers::select_editor(LayerRangeEditor* editor, const bool is_last_edited_range) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp index c10a99f1d7..405ba3ca3d 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp @@ -2963,10 +2963,10 @@ void GLGizmoCut3D::show_tooltip_information(float x, float y) caption_max += m_imgui->calc_text_size(std::string_view{": "}).x + 35.f; - float font_size = ImGui::GetFontSize(); - ImVec2 button_size = ImVec2(font_size * 1.8, font_size * 1.3); + float scale = m_parent.get_scale(); + ImVec2 button_size = ImVec2(25 * scale, 25 * scale); // ORCA: Use exact resolution will prevent blur on icon ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f); - ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, {0, ImGui::GetStyle().FramePadding.y}); + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, {0, 0}); // ORCA: Dont add padding ImGui::ImageButton3(normal_id, hover_id, button_size); if (ImGui::IsItemHovered()) { diff --git a/src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp b/src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp index abe2d800ba..89914639c8 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp @@ -3163,7 +3163,7 @@ void GLGizmoEmboss::init_icons() "make_unbold.svg", "search.svg", "open.svg", - "exclamation.svg", + "obj_warning.svg", // ORCA: use obj_warning instead exclamation. exclamation is not compatible with low res "lock_closed.svg", // lock, "lock_closed_f.svg",// lock_bold, "lock_open.svg", // unlock, diff --git a/src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp index ccf17a7716..0329d7c508 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp @@ -519,10 +519,10 @@ void GLGizmoFdmSupports::show_tooltip_information(float caption_max, float x, fl caption_max += m_imgui->calc_text_size(std::string_view{": "}).x + 15.f; - float font_size = ImGui::GetFontSize(); - ImVec2 button_size = ImVec2(font_size * 1.8, font_size * 1.3); + float scale = m_parent.get_scale(); + ImVec2 button_size = ImVec2(25 * scale, 25 * scale); // ORCA: Use exact resolution will prevent blur on icon ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f); - ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, { 0, ImGui::GetStyle().FramePadding.y }); + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, {0, 0}); // ORCA: Dont add padding ImGui::ImageButton3(normal_id, hover_id, button_size); if (ImGui::IsItemHovered()) { diff --git a/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp b/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp index 9293a8187d..0661168ece 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp @@ -2044,10 +2044,10 @@ void GLGizmoMeasure::show_tooltip_information(float caption_max, float x, float caption_max += m_imgui->calc_text_size(std::string_view{": "}).x + 35.f; - float font_size = ImGui::GetFontSize(); - ImVec2 button_size = ImVec2(font_size * 1.8, font_size * 1.3); + float scale = m_parent.get_scale(); + ImVec2 button_size = ImVec2(25 * scale, 25 * scale); // ORCA: Use exact resolution will prevent blur on icon ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f); - ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, { 0, ImGui::GetStyle().FramePadding.y }); + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, { 0, 0 }); // ORCA: Dont add padding ImGui::ImageButton3(normal_id, hover_id, button_size); if (ImGui::IsItemHovered()) { diff --git a/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp b/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp index 727ceebc9b..9d62f78547 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoMmuSegmentation.cpp @@ -343,10 +343,10 @@ void GLGizmoMmuSegmentation::show_tooltip_information(float caption_max, float x caption_max += m_imgui->calc_text_size(std::string_view{": "}).x + 15.f; - float font_size = ImGui::GetFontSize(); - ImVec2 button_size = ImVec2(font_size * 1.8, font_size * 1.3); + float scale = m_parent.get_scale(); + ImVec2 button_size = ImVec2(25 * scale, 25 * scale); // ORCA: Use exact resolution will prevent blur on icon ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f); - ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, { 0, ImGui::GetStyle().FramePadding.y }); + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, {0, 0}); // ORCA: Dont add padding ImGui::ImageButton3(normal_id, hover_id, button_size); if (ImGui::IsItemHovered()) { diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp index 95129dfcd9..42fb52d442 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp @@ -397,7 +397,7 @@ IconManager::VIcons init_icons(IconManager &mng, const GuiCfg &cfg) "open.svg", // changhe_file "burn.svg", // bake "save.svg", // save - "exclamation.svg", // exclamation + "obj_warning.svg", // exclamation // ORCA: use obj_warning instead exclamation. exclamation is not compatible with low res "lock_closed.svg", // lock "lock_open.svg", // unlock "reflection_x.svg", // reflection_x diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSeam.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSeam.cpp index b2692e9555..2aba01f937 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSeam.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSeam.cpp @@ -153,10 +153,10 @@ void GLGizmoSeam::show_tooltip_information(float caption_max, float x, float y) caption_max += m_imgui->calc_text_size(std::string_view{": "}).x + 35.f; - float font_size = ImGui::GetFontSize(); - ImVec2 button_size = ImVec2(font_size * 1.8, font_size * 1.3); + float scale = m_parent.get_scale(); + ImVec2 button_size = ImVec2(25 * scale, 25 * scale); // ORCA: Use exact resolution will prevent blur on icon ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f); - ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, { 0, ImGui::GetStyle().FramePadding.y }); + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, {0, 0}); // ORCA: Dont add padding ImGui::ImageButton3(normal_id, hover_id, button_size); if (ImGui::IsItemHovered()) { diff --git a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp index 7a3a65cf4b..51171e8d8f 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmosManager.cpp @@ -244,12 +244,12 @@ bool GLGizmosManager::init_icon_textures() else return false; - if (IMTexture::load_from_svg_file(Slic3r::resources_dir() + "/images/toolbar_tooltip.svg", 30, 22, texture_id)) + if (IMTexture::load_from_svg_file(Slic3r::resources_dir() + "/images/toolbar_tooltip.svg", 25, 25, texture_id)) // ORCA: Use same resolution with gizmos to prevent blur on icon icon_list.insert(std::make_pair((int)IC_TOOLBAR_TOOLTIP, texture_id)); else return false; - if (IMTexture::load_from_svg_file(Slic3r::resources_dir() + "/images/toolbar_tooltip_hover.svg", 30, 22, texture_id)) + if (IMTexture::load_from_svg_file(Slic3r::resources_dir() + "/images/toolbar_tooltip_hover.svg", 25, 25, texture_id)) // ORCA: Use same resolution with gizmos to prevent blur on icon icon_list.insert(std::make_pair((int)IC_TOOLBAR_TOOLTIP_HOVER, texture_id)); else return false; diff --git a/src/slic3r/GUI/IconManager.cpp b/src/slic3r/GUI/IconManager.cpp index f302f6ceba..872d270b27 100644 --- a/src/slic3r/GUI/IconManager.cpp +++ b/src/slic3r/GUI/IconManager.cpp @@ -373,7 +373,7 @@ void draw(const IconManager::Icon &icon, const ImVec2 &size, const ImVec4 &tint_ ImGuiContext &g = *GImGui; float cursor_y = window->DC.CursorPos.y; float line_height = ImGui::GetTextLineHeight() + g.Style.FramePadding.y * 2; - float offset_y = (line_height - s.y) / 2; + int offset_y = (line_height - s.y) / 2; // Make sure its int otherwise it will be pixelated window->DC.CursorPos.y += offset_y; ImGui::Image(id, s, icon.tl, icon.br, tint_col, border_col); diff --git a/src/slic3r/GUI/MsgDialog.cpp b/src/slic3r/GUI/MsgDialog.cpp index fa0a13f9a5..8eb1970627 100644 --- a/src/slic3r/GUI/MsgDialog.cpp +++ b/src/slic3r/GUI/MsgDialog.cpp @@ -228,7 +228,7 @@ void MsgDialog::apply_style(long style) if (style & wxCANCEL) add_button(wxID_CANCEL, false, _L("Cancel")); logo->SetBitmap( create_scaled_bitmap(style & wxAPPLY ? "completed" : - style & wxICON_WARNING ? "obj_warning" : + style & wxICON_WARNING ? "exclamation" : // ORCA "exclamation" used for dialogs "obj_warning" used for 16x16 areas style & wxICON_INFORMATION ? "info" : style & wxICON_QUESTION ? "question" : "OrcaSlicer", this, 64, style & wxICON_ERROR)); } diff --git a/src/slic3r/GUI/ObjectDataViewModel.cpp b/src/slic3r/GUI/ObjectDataViewModel.cpp index 75e1baeeaf..efa8e94b26 100644 --- a/src/slic3r/GUI/ObjectDataViewModel.cpp +++ b/src/slic3r/GUI/ObjectDataViewModel.cpp @@ -43,8 +43,8 @@ void ObjectDataViewModelNode::init_container() #endif //__WXGTK__ } -static constexpr char LayerRootIcon[] = "blank"; -static constexpr char LayerIcon[] = "blank"; +static constexpr char LayerRootIcon[] = "height_range_modifier"; +static constexpr char LayerIcon[] = "height_range_layer"; static constexpr char WarningIcon[] = "obj_warning"; static constexpr char WarningManifoldIcon[] = "obj_warning"; static constexpr char LockIcon[] = "cut_"; @@ -232,7 +232,7 @@ void ObjectDataViewModelNode::set_color_icon(bool enable) return; m_color_enable = enable; if ((m_type & itObject) && enable) - m_color_icon = create_scaled_bitmap("mmu_segmentation"); + m_color_icon = create_scaled_bitmap("objlist_color_painting"); else m_color_icon = create_scaled_bitmap("dot"); } @@ -243,7 +243,7 @@ void ObjectDataViewModelNode::set_support_icon(bool enable) return; m_support_enable = enable; if ((m_type & itObject) && enable) - m_support_icon = create_scaled_bitmap("toolbar_support"); + m_support_icon = create_scaled_bitmap("objlist_support_painting"); else m_support_icon = create_scaled_bitmap("dot"); } diff --git a/src/slic3r/GUI/OptionsGroup.hpp b/src/slic3r/GUI/OptionsGroup.hpp index 8c7585cd83..a3809a0cb7 100644 --- a/src/slic3r/GUI/OptionsGroup.hpp +++ b/src/slic3r/GUI/OptionsGroup.hpp @@ -324,9 +324,9 @@ protected: // It is designed for single extruder multiple material machine. class ExtruderOptionsGroup : public ConfigOptionsGroup { public: - ExtruderOptionsGroup(wxWindow* parent, const wxString& title, DynamicPrintConfig* config = nullptr, + ExtruderOptionsGroup(wxWindow* parent, const wxString& title, const wxString& icon, DynamicPrintConfig* config = nullptr, // ORCA: add support for icons bool is_tab_opt = false, column_t extra_clmn = nullptr) : - ConfigOptionsGroup(parent, title, wxEmptyString, config, is_tab_opt, extra_clmn) {} + ConfigOptionsGroup(parent, title, icon, config, is_tab_opt, extra_clmn) {} void on_change_OG(const t_config_option_key& opt_id, const boost::any& value) override; }; diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index cf0df73a89..619c4bc877 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -1999,7 +1999,7 @@ void TabPrint::build() m_presets = &m_preset_bundle->prints; load_initial_data(); - auto page = add_options_page(L("Quality"), "empty"); + auto page = add_options_page(L("Quality"), "custom-gcode_quality"); // ORCA: icon only visible on placeholders auto optgroup = page->new_optgroup(L("Layer height"), L"param_layer_height"); optgroup->append_single_option_line("layer_height"); optgroup->append_single_option_line("initial_layer_print_height"); @@ -2057,7 +2057,7 @@ void TabPrint::build() optgroup->append_single_option_line("ironing_spacing"); optgroup->append_single_option_line("ironing_angle"); - optgroup = page->new_optgroup(L("Wall generator"), L"param_wall"); + optgroup = page->new_optgroup(L("Wall generator"), L"param_wall_generator"); optgroup->append_single_option_line("wall_generator", "wall-generator"); optgroup->append_single_option_line("wall_transition_angle"); optgroup->append_single_option_line("wall_transition_filter_deviation"); @@ -2068,7 +2068,7 @@ void TabPrint::build() optgroup->append_single_option_line("min_feature_size"); optgroup->append_single_option_line("min_length_factor"); - optgroup = page->new_optgroup(L("Walls and surfaces"), L"param_advanced"); + optgroup = page->new_optgroup(L("Walls and surfaces"), L"param_wall_surface"); optgroup->append_single_option_line("wall_sequence"); optgroup->append_single_option_line("is_infill_first"); optgroup->append_single_option_line("wall_direction"); @@ -2088,7 +2088,7 @@ void TabPrint::build() option.opt.height = 15; optgroup->append_single_option_line(option, "small-area-infill-flow-compensation"); - optgroup = page->new_optgroup(L("Bridging"), L"param_advanced"); + optgroup = page->new_optgroup(L("Bridging"), L"param_bridge"); optgroup->append_single_option_line("bridge_flow"); optgroup->append_single_option_line("internal_bridge_flow"); optgroup->append_single_option_line("bridge_density"); @@ -2097,7 +2097,7 @@ void TabPrint::build() optgroup->append_single_option_line("dont_filter_internal_bridges"); optgroup->append_single_option_line("counterbore_hole_bridging","counterbore-hole-bridging"); - optgroup = page->new_optgroup(L("Overhangs"), L"param_advanced"); + optgroup = page->new_optgroup(L("Overhangs"), L"param_overhang"); optgroup->append_single_option_line("detect_overhang_wall"); optgroup->append_single_option_line("make_overhang_printable"); optgroup->append_single_option_line("make_overhang_printable_angle"); @@ -2107,7 +2107,7 @@ void TabPrint::build() optgroup->append_single_option_line("overhang_reverse_internal_only"); optgroup->append_single_option_line("overhang_reverse_threshold"); - page = add_options_page(L("Strength"), "empty"); + page = add_options_page(L("Strength"), "custom-gcode_strength"); // ORCA: icon only visible on placeholders optgroup = page->new_optgroup(L("Walls"), L"param_wall"); optgroup->append_single_option_line("wall_loops"); optgroup->append_single_option_line("alternate_extra_wall"); @@ -2142,7 +2142,7 @@ void TabPrint::build() optgroup->append_single_option_line("detect_narrow_internal_solid_infill"); optgroup->append_single_option_line("ensure_vertical_shell_thickness"); - page = add_options_page(L("Speed"), "empty"); + page = add_options_page(L("Speed"), "custom-gcode_speed"); // ORCA: icon only visible on placeholders optgroup = page->new_optgroup(L("Initial layer speed"), L"param_speed_first", 15); optgroup->append_single_option_line("initial_layer_speed"); optgroup->append_single_option_line("initial_layer_infill_speed"); @@ -2159,7 +2159,7 @@ void TabPrint::build() optgroup->append_single_option_line("gap_infill_speed"); optgroup->append_single_option_line("support_speed"); optgroup->append_single_option_line("support_interface_speed"); - optgroup = page->new_optgroup(L("Overhang speed"), L"param_speed", 15); + optgroup = page->new_optgroup(L("Overhang speed"), L"param_overhang_speed", 15); optgroup->append_single_option_line("enable_overhang_speed", "slow-down-for-overhang"); optgroup->append_single_option_line("overhang_speed_classic", "slow-down-for-overhang"); optgroup->append_single_option_line("slowdown_for_curled_perimeters"); @@ -2192,7 +2192,7 @@ void TabPrint::build() optgroup->append_single_option_line("accel_to_decel_enable"); optgroup->append_single_option_line("accel_to_decel_factor"); - optgroup = page->new_optgroup(L("Jerk(XY)"), L"param_speed", 15); + optgroup = page->new_optgroup(L("Jerk(XY)"), L"param_jerk", 15); optgroup->append_single_option_line("default_jerk"); optgroup->append_single_option_line("outer_wall_jerk"); optgroup->append_single_option_line("inner_wall_jerk"); @@ -2205,7 +2205,7 @@ void TabPrint::build() optgroup->append_single_option_line("max_volumetric_extrusion_rate_slope", "extrusion-rate-smoothing"); optgroup->append_single_option_line("max_volumetric_extrusion_rate_slope_segment_length", "extrusion-rate-smoothing"); - page = add_options_page(L("Support"), "support"); + page = add_options_page(L("Support"), "custom-gcode_support"); // ORCA: icon only visible on placeholders optgroup = page->new_optgroup(L("Support"), L"param_support"); optgroup->append_single_option_line("enable_support", "support"); optgroup->append_single_option_line("support_type", "support#support-types"); @@ -2249,7 +2249,7 @@ void TabPrint::build() optgroup->append_single_option_line("max_bridge_length", "support#base-pattern"); optgroup->append_single_option_line("independent_support_layer_height", "support"); - optgroup = page->new_optgroup(L("Tree supports"), L"param_advanced"); + optgroup = page->new_optgroup(L("Tree supports"), L"param_support_tree"); optgroup->append_single_option_line("tree_support_tip_diameter"); optgroup->append_single_option_line("tree_support_branch_distance", "support#tree-support-only-options"); optgroup->append_single_option_line("tree_support_branch_distance_organic", "support#tree-support-only-options"); @@ -2266,8 +2266,8 @@ void TabPrint::build() optgroup->append_single_option_line("tree_support_auto_brim"); optgroup->append_single_option_line("tree_support_brim_width"); - page = add_options_page(L("Others"), "advanced"); - optgroup = page->new_optgroup(L("Skirt"), L"param_adhension"); + page = add_options_page(L("Others"), "custom-gcode_other"); // ORCA: icon only visible on placeholders + optgroup = page->new_optgroup(L("Skirt"), L"param_skirt"); optgroup->append_single_option_line("skirt_loops"); optgroup->append_single_option_line("min_skirt_length"); optgroup->append_single_option_line("skirt_distance"); @@ -2338,7 +2338,7 @@ void TabPrint::build() option.opt.is_code = true; option.opt.height = 15; optgroup->append_single_option_line(option); - page = add_options_page(L("Notes"), "note"); + page = add_options_page(L("Notes"), "custom-gcode_note"); // ORCA: icon only visible on placeholders optgroup = page->new_optgroup(L("Notes"), "note", 0); option = optgroup->get_option("notes"); option.opt.full_width = true; @@ -3074,7 +3074,7 @@ void TabFilament::set_custom_gcode(const t_config_option_key& opt_key, const std void TabFilament::add_filament_overrides_page() { //BBS - PageShp page = add_options_page(L("Setting Overrides"), "empty"); + PageShp page = add_options_page(L("Setting Overrides"), "custom-gcode_setting_override"); // ORCA: icon only visible on placeholders ConfigOptionsGroupShp optgroup = page->new_optgroup(L("Retraction"), L"param_retraction"); auto append_single_option_line = [optgroup, this](const std::string& opt_key, int opt_index) @@ -3207,7 +3207,7 @@ void TabFilament::build() m_presets = &m_preset_bundle->filaments; load_initial_data(); - auto page = add_options_page(L("Filament"), "spool"); + auto page = add_options_page(L("Filament"), "custom-gcode_filament"); // ORCA: icon only visible on placeholders //BBS auto optgroup = page->new_optgroup(L("Basic information"), L"param_information"); // Set size as all another fields for a better alignment @@ -3255,13 +3255,13 @@ void TabFilament::build() optgroup->append_separator(); - optgroup = page->new_optgroup(L("Print temperature"), L"param_temperature"); + optgroup = page->new_optgroup(L("Print temperature"), L"param_extruder_temp"); line = { L("Nozzle"), L("Nozzle temperature when printing") }; line.append_option(optgroup->get_option("nozzle_temperature_initial_layer")); line.append_option(optgroup->get_option("nozzle_temperature")); optgroup->append_line(line); - optgroup = page->new_optgroup(L("Bed temperature"), L"param_temperature"); + optgroup = page->new_optgroup(L("Bed temperature"), L"param_bed_temp"); line = { L("Cool plate"), L("Bed temperature when cool plate is installed. Value 0 means the filament does not support to print on the Cool Plate") }; line.append_option(optgroup->get_option("cool_plate_temp_initial_layer")); line.append_option(optgroup->get_option("cool_plate_temp")); @@ -3323,7 +3323,7 @@ void TabFilament::build() //}; //optgroup->append_line(line); - page = add_options_page(L("Cooling"), "empty"); + page = add_options_page(L("Cooling"), "custom-gcode_cooling_fan"); // ORCA: icon only visible on placeholders //line = { "", "" }; //line.full_width = 1; @@ -3331,11 +3331,11 @@ void TabFilament::build() // return description_line_widget(parent, &m_cooling_description_line); //}; //optgroup->append_line(line); - optgroup = page->new_optgroup(L("Cooling for specific layer"), L"param_cooling"); + optgroup = page->new_optgroup(L("Cooling for specific layer"), L"param_cooling_specific_layer"); optgroup->append_single_option_line("close_fan_the_first_x_layers", "auto-cooling"); optgroup->append_single_option_line("full_fan_speed_layer"); - optgroup = page->new_optgroup(L("Part cooling fan"), L"param_cooling_fan"); + optgroup = page->new_optgroup(L("Part cooling fan"), L"param_cooling_part_fan"); line = { L("Min fan speed threshold"), L("Part cooling fan speed will start to run at min speed when the estimated layer time is no longer than the layer time in setting. When layer time is shorter than threshold, fan speed is interpolated between the minimum and maximum fan speed according to layer printing time") }; line.label_path = "auto-cooling"; line.append_option(optgroup->get_option("fan_min_speed")); @@ -3355,10 +3355,10 @@ void TabFilament::build() optgroup->append_single_option_line("overhang_fan_speed", "auto-cooling"); optgroup->append_single_option_line("support_material_interface_fan_speed"); - optgroup = page->new_optgroup(L("Auxiliary part cooling fan"), L"param_cooling_fan"); + optgroup = page->new_optgroup(L("Auxiliary part cooling fan"), L"param_cooling_aux_fan"); optgroup->append_single_option_line("additional_cooling_fan_speed", "auxiliary-fan"); - optgroup = page->new_optgroup(L("Exhaust fan"),L"param_cooling_fan"); + optgroup = page->new_optgroup(L("Exhaust fan"),L"param_cooling_exhaust"); optgroup->append_single_option_line("activate_air_filtration", "air-filtration"); @@ -3377,7 +3377,7 @@ void TabFilament::build() auto edit_custom_gcode_fn = [this](const t_config_option_key& opt_key) { edit_custom_gcode(opt_key); }; - page = add_options_page(L("Advanced"), "advanced"); + page = add_options_page(L("Advanced"), "custom-gcode_advanced"); // ORCA: icon only visible on placeholders optgroup = page->new_optgroup(L("Filament start G-code"), L"param_gcode", 0); optgroup->m_on_change = [this, &optgroup_title = optgroup->title](const t_config_option_key& opt_key, const boost::any& value) { validate_custom_gcode_cb(this, optgroup_title, opt_key, value); @@ -3400,11 +3400,11 @@ void TabFilament::build() option.opt.height = gcode_field_height;// 150; optgroup->append_single_option_line(option); - page = add_options_page(L("Multimaterial"), "advanced"); - optgroup = page->new_optgroup(L("Wipe tower parameters")); + page = add_options_page(L("Multimaterial"), "custom-gcode_multi_material"); // ORCA: icon only visible on placeholders + optgroup = page->new_optgroup(L("Wipe tower parameters"), "param_tower"); optgroup->append_single_option_line("filament_minimal_purge_on_wipe_tower"); - optgroup = page->new_optgroup(L("Toolchange parameters with single extruder MM printers")); + optgroup = page->new_optgroup(L("Toolchange parameters with single extruder MM printers"), "param_toolchange"); optgroup->append_single_option_line("filament_loading_speed_start", "semm"); optgroup->append_single_option_line("filament_loading_speed", "semm"); optgroup->append_single_option_line("filament_unloading_speed_start", "semm"); @@ -3442,7 +3442,7 @@ void TabFilament::build() optgroup->append_single_option_line("filament_multitool_ramming_flow"); #endif - page = add_options_page(L("Notes"), "note"); + page = add_options_page(L("Notes"), "custom-gcode_note"); // ORCA: icon only visible on placeholders optgroup = page->new_optgroup(L("Notes"),"note", 0); optgroup->label_width = 0; option = optgroup->get_option("filament_notes"); @@ -3632,8 +3632,8 @@ void TabPrinter::build_fff() m_sys_extruders_count = parent_preset == nullptr ? 0 : static_cast(parent_preset->config.option("nozzle_diameter"))->values.size(); - auto page = add_options_page(L("Basic information"), "printer"); - auto optgroup = page->new_optgroup(L("Printable space")/*, L"param_printable_space"*/); + auto page = add_options_page(L("Basic information"), "custom-gcode_object-info"); // ORCA: icon only visible on placeholders + auto optgroup = page->new_optgroup(L("Printable space"), "param_printable_space"); create_line_with_widget(optgroup.get(), "printable_area", "custom-svg-and-png-bed-textures_124612", [this](wxWindow* parent) { return create_bed_shape_widget(parent); @@ -3677,25 +3677,25 @@ void TabPrinter::build_fff() optgroup->append_single_option_line("machine_unload_filament_time"); optgroup->append_single_option_line("time_cost"); - optgroup = page->new_optgroup(L("Cooling Fan")); + optgroup = page->new_optgroup(L("Cooling Fan"), "param_cooling_fan"); Line line = Line{ L("Fan speed-up time"), optgroup->get_option("fan_speedup_time").opt.tooltip }; line.append_option(optgroup->get_option("fan_speedup_time")); line.append_option(optgroup->get_option("fan_speedup_overhangs")); optgroup->append_line(line); optgroup->append_single_option_line("fan_kickstart"); - optgroup = page->new_optgroup(L("Extruder Clearance")); + optgroup = page->new_optgroup(L("Extruder Clearance"), "param_extruder_clearence"); optgroup->append_single_option_line("extruder_clearance_radius"); optgroup->append_single_option_line("extruder_clearance_height_to_rod"); optgroup->append_single_option_line("extruder_clearance_height_to_lid"); - optgroup = page->new_optgroup(L("Adaptive bed mesh")); + optgroup = page->new_optgroup(L("Adaptive bed mesh"), "param_adaptive_mesh"); optgroup->append_single_option_line("bed_mesh_min", "adaptive-bed-mesh"); optgroup->append_single_option_line("bed_mesh_max", "adaptive-bed-mesh"); optgroup->append_single_option_line("bed_mesh_probe_distance", "adaptive-bed-mesh"); optgroup->append_single_option_line("adaptive_bed_mesh_margin", "adaptive-bed-mesh"); - optgroup = page->new_optgroup(L("Accessory") /*, L"param_accessory"*/); + optgroup = page->new_optgroup(L("Accessory"), "param_accessory"); optgroup->append_single_option_line("nozzle_type"); optgroup->append_single_option_line("nozzle_hrc"); optgroup->append_single_option_line("auxiliary_fan", "auxiliary-fan"); @@ -3706,7 +3706,7 @@ void TabPrinter::build_fff() const int gcode_field_height = 15; // 150 const int notes_field_height = 25; // 250 - page = add_options_page(L("Machine gcode"), "cog"); + page = add_options_page(L("Machine gcode"), "custom-gcode_gcode"); // ORCA: icon only visible on placeholders optgroup = page->new_optgroup(L("Machine start G-code"), L"param_gcode", 0); optgroup->m_on_change = [this, &optgroup_title = optgroup->title](const t_config_option_key& opt_key, const boost::any& value) { validate_custom_gcode_cb(this, optgroup_title, opt_key, value); @@ -3816,7 +3816,7 @@ void TabPrinter::build_fff() option.opt.height = gcode_field_height;//150; optgroup->append_single_option_line(option); - page = add_options_page(L("Notes"), "note"); + page = add_options_page(L("Notes"), "custom-gcode_note"); // ORCA: icon only visible on placeholders optgroup = page->new_optgroup(L("Notes"), "note", 0); option = optgroup->get_option("printer_notes"); option.opt.full_width = true; @@ -3932,7 +3932,7 @@ void TabPrinter::append_option_line(ConfigOptionsGroupShp optgroup, const std::s PageShp TabPrinter::build_kinematics_page() { - auto page = add_options_page(L("Motion ability"), "cog", true); + auto page = add_options_page(L("Motion ability"), "custom-gcode_motion", true); // ORCA: icon only visible on placeholders if (m_use_silent_mode) { // Legend for OptionsGroups @@ -3980,7 +3980,7 @@ PageShp TabPrinter::build_kinematics_page() append_option_line(optgroup, "machine_max_acceleration_retracting"); append_option_line(optgroup, "machine_max_acceleration_travel"); - optgroup = page->new_optgroup(L("Jerk limitation")); + optgroup = page->new_optgroup(L("Jerk limitation"), "param_jerk"); for (const std::string &axis : axes) { append_option_line(optgroup, "machine_max_jerk_" + axis); } @@ -4035,8 +4035,8 @@ if (is_marlin_flavor) if (from_initial_build) { // create a page, but pretend it's an extruder page, so we can add it to m_pages ourselves - auto page = add_options_page(L("Multimaterial"), "printer", true); - auto optgroup = page->new_optgroup(L("Single extruder multimaterial setup")); + auto page = add_options_page(L("Multimaterial"), "custom-gcode_multi_material", true); // ORCA: icon only visible on placeholders + auto optgroup = page->new_optgroup(L("Single extruder multimaterial setup"), "param_multi_material"); optgroup->append_single_option_line("single_extruder_multi_material", "semm"); // Orca: we only support Single Extruder Multi Material, so it's always enabled // optgroup->m_on_change = [this](const t_config_option_key &opt_key, const boost::any &value) { @@ -4048,12 +4048,12 @@ if (is_marlin_flavor) // }; optgroup->append_single_option_line("manual_filament_change", "semm#manual-filament-change"); - optgroup = page->new_optgroup(L("Wipe tower")); + optgroup = page->new_optgroup(L("Wipe tower"), "param_tower"); optgroup->append_single_option_line("purge_in_prime_tower", "semm"); optgroup->append_single_option_line("enable_filament_ramming", "semm"); - optgroup = page->new_optgroup(L("Single extruder multimaterial parameters")); + optgroup = page->new_optgroup(L("Single extruder multimaterial parameters"), "param_settings"); optgroup->append_single_option_line("cooling_tube_retraction", "semm"); optgroup->append_single_option_line("cooling_tube_length", "semm"); optgroup->append_single_option_line("parking_pos_retraction", "semm"); @@ -4079,10 +4079,10 @@ if (is_marlin_flavor) { //# build page //const wxString& page_name = wxString::Format("Extruder %d", int(extruder_idx + 1)); - auto page = add_options_page(page_name, "empty", true); + auto page = add_options_page(page_name, "custom-gcode_extruder", true); // ORCA: icon only visible on placeholders m_pages.insert(m_pages.begin() + n_before_extruders + extruder_idx, page); - auto optgroup = page->new_optgroup(L("Size"), L"param_diameter", -1, true); + auto optgroup = page->new_optgroup(L("Size"), L"param_extruder_size", -1, true); optgroup->append_single_option_line("nozzle_diameter", "", extruder_idx); optgroup->m_on_change = [this, extruder_idx](const t_config_option_key& opt_key, boost::any value) @@ -4125,7 +4125,7 @@ if (is_marlin_flavor) optgroup->append_single_option_line("min_layer_height", "", extruder_idx); optgroup->append_single_option_line("max_layer_height", "", extruder_idx); - optgroup = page->new_optgroup(L("Position"), L"param_retraction", -1, true); + optgroup = page->new_optgroup(L("Position"), L"param_position", -1, true); optgroup->append_single_option_line("extruder_offset", "", extruder_idx); //BBS: don't show retract related config menu in machine page @@ -4142,12 +4142,12 @@ if (is_marlin_flavor) optgroup->append_single_option_line("wipe_distance", "", extruder_idx); optgroup->append_single_option_line("retract_before_wipe", "", extruder_idx); - optgroup = page->new_optgroup(L("Lift Z Enforcement"), L"param_retraction", -1, true); + optgroup = page->new_optgroup(L("Lift Z Enforcement"), L"param_extruder_lift_enforcement", -1, true); optgroup->append_single_option_line("retract_lift_above", "", extruder_idx); optgroup->append_single_option_line("retract_lift_below", "", extruder_idx); optgroup->append_single_option_line("retract_lift_enforce", "", extruder_idx); - optgroup = page->new_optgroup(L("Retraction when switching material"), L"param_retraction", -1, true); + optgroup = page->new_optgroup(L("Retraction when switching material"), L"param_retraction_material_change", -1, true); optgroup->append_single_option_line("retract_length_toolchange", "", extruder_idx); optgroup->append_single_option_line("retract_restart_extra_toolchange", "", extruder_idx); // do not display this params now @@ -5982,7 +5982,7 @@ bool Page::set_value(const t_config_option_key &opt_key, const boost::any &value ConfigOptionsGroupShp Page::new_optgroup(const wxString &title, const wxString &icon, int noncommon_label_width /*= -1*/, bool is_extruder_og /* false */) { //! config_ have to be "right" - ConfigOptionsGroupShp optgroup = is_extruder_og ? std::make_shared(m_parent, title, m_config, true) + ConfigOptionsGroupShp optgroup = is_extruder_og ? std::make_shared(m_parent, title, icon, m_config, true) // ORCA: add support for icons : std::make_shared(m_parent, title, icon, m_config, true); optgroup->split_multi_line = this->m_split_multi_line; optgroup->option_label_at_right = this->m_option_label_at_right; diff --git a/src/slic3r/GUI/UnsavedChangesDialog.cpp b/src/slic3r/GUI/UnsavedChangesDialog.cpp index a0ca677065..cf22df0cfa 100644 --- a/src/slic3r/GUI/UnsavedChangesDialog.cpp +++ b/src/slic3r/GUI/UnsavedChangesDialog.cpp @@ -2250,7 +2250,7 @@ void DiffPresetDialog::update_tree() Search::Option option = searcher.get_option(opt_key, get_full_label(opt_key, left_config), type); if (option.opt_key() != opt_key) { // temporary solution, just for testing - m_tree->Append(opt_key, type, "Undef category", "Undef group", opt_key, left_val, right_val, "question"); + m_tree->Append(opt_key, type, "Undef category", "Undef group", opt_key, left_val, right_val, "undefined"); // ORCA: use low resolution compatible icon // When founded option isn't the correct one. // It can be for dirty_options: "default_print_profile", "printer_model", "printer_settings_id", // because of they don't exist in searcher From f33b46ed326cc51c503ec53b77de0f1ecc97fca3 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Tue, 21 May 2024 00:21:35 +0800 Subject: [PATCH 13/66] update locale --- localization/i18n/OrcaSlicer.pot | 420 +- localization/i18n/ca/OrcaSlicer_ca.po | 474 +- localization/i18n/cs/OrcaSlicer_cs.po | 468 +- localization/i18n/de/OrcaSlicer_de.po | 549 +- localization/i18n/en/OrcaSlicer_en.po | 456 +- localization/i18n/es/OrcaSlicer_es.po | 479 +- localization/i18n/fr/OrcaSlicer_fr.po | 967 +-- localization/i18n/hu/OrcaSlicer_hu.po | 452 +- localization/i18n/it/OrcaSlicer_it.po | 476 +- localization/i18n/ja/OrcaSlicer_ja.po | 448 +- localization/i18n/ko/OrcaSlicer_ko.po | 507 +- localization/i18n/nl/OrcaSlicer_nl.po | 452 +- localization/i18n/pl/OrcaSlicer_pl.po | 7419 ++++++++++++++----- localization/i18n/pt_BR/OrcaSlicer_pt_BR.po | 474 +- localization/i18n/ru/OrcaSlicer_ru.po | 474 +- localization/i18n/sv/OrcaSlicer_sv.po | 450 +- localization/i18n/tr/OrcaSlicer_tr.po | 2057 ++--- localization/i18n/uk/OrcaSlicer_uk.po | 462 +- localization/i18n/zh_CN/OrcaSlicer_zh_CN.po | 449 +- localization/i18n/zh_TW/OrcaSlicer_zh_TW.po | 476 +- src/slic3r/GUI/AboutDialog.cpp | 4 +- src/slic3r/GUI/CreatePresetsDialog.cpp | 2 +- src/slic3r/GUI/GUI_App.cpp | 2 +- src/slic3r/GUI/MainFrame.cpp | 2 +- src/slic3r/GUI/Plater.cpp | 2 +- src/slic3r/GUI/Preferences.cpp | 2 +- src/slic3r/GUI/UpgradePanel.cpp | 2 +- src/slic3r/GUI/Widgets/SideTools.cpp | 2 +- 28 files changed, 13272 insertions(+), 5155 deletions(-) diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index bed88115d4..5ffd2250e8 100644 --- a/localization/i18n/OrcaSlicer.pot +++ b/localization/i18n/OrcaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1834,6 +1834,9 @@ msgstr "" msgid "Add Handy models" msgstr "" +msgid "Add Models" +msgstr "" + msgid "Show Labels" msgstr "" @@ -2309,7 +2312,7 @@ msgstr "" msgid "Connection to printer failed" msgstr "" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "" msgid "Connecting..." @@ -2633,10 +2636,7 @@ msgstr "" msgid "GNU Affero General Public License, version 3" msgstr "" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" msgid "Libraries" @@ -3078,6 +3078,210 @@ msgstr "" msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "" +msgid "Device" +msgstr "" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, possible-c-format, possible-boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, possible-c-format, possible-boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "" + +msgid "N/A" +msgstr "" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "" + +msgid "Idle" +msgstr "" + +msgid "Printing" +msgstr "" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "" + +msgid "Slicing" +msgstr "" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "" + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "" + +msgid "Abnormal print file data. Please slice again" +msgstr "" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "" + +msgid "illegal characters:" +msgstr "" + +msgid "illegal suffix:" +msgstr "" + +msgid "The name is not allowed to be empty." +msgstr "" + +msgid "The name is not allowed to start with space character." +msgstr "" + +msgid "The name is not allowed to end with space character." +msgstr "" + +msgid "The name length exceeds the limit." +msgstr "" + msgid "Origin" msgstr "" @@ -3521,9 +3725,6 @@ msgstr "" msgid "parameter name" msgstr "" -msgid "N/A" -msgstr "" - #, possible-c-format, possible-boost-format msgid "%s can't be percentage" msgstr "" @@ -3838,9 +4039,6 @@ msgstr "" msgid "Align to Y axis" msgstr "" -msgid "Add" -msgstr "" - msgid "Add plate" msgstr "" @@ -4017,15 +4215,9 @@ msgstr "" msgid "Logging" msgstr "" -msgid "Prepare" -msgstr "" - msgid "Preview" msgstr "" -msgid "Device" -msgstr "" - msgid "Multi-device" msgstr "" @@ -4053,9 +4245,6 @@ msgstr "" msgid "Export G-code file" msgstr "" -msgid "Send" -msgstr "" - msgid "Export plate sliced file" msgstr "" @@ -4068,9 +4257,6 @@ msgstr "" msgid "Send all" msgstr "" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "" @@ -4212,7 +4398,7 @@ msgstr "" msgid "Export current plate as G-code" msgstr "" -msgid "Export &Configs" +msgid "Export Preset Bundle" msgstr "" msgid "Export current configuration to files" @@ -4314,9 +4500,6 @@ msgstr "" msgid "Preferences" msgstr "" -msgid "View" -msgstr "" - msgid "Help" msgstr "" @@ -4383,10 +4566,10 @@ msgstr "" msgid "Export toolpaths as OBJ" msgstr "" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "" -msgid "Open Studio" +msgid "Open Slicer" msgstr "" msgid "&Quit" @@ -4550,9 +4733,6 @@ msgstr "" msgid "Playing..." msgstr "" -msgid "Loading..." -msgstr "" - msgid "Year" msgstr "" @@ -4706,11 +4886,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -4769,12 +4944,6 @@ msgstr "" msgid "Printing Progress" msgstr "" -msgid "Resume" -msgstr "" - -msgid "Stop" -msgstr "" - msgid "0" msgstr "" @@ -5486,6 +5655,9 @@ msgstr "" msgid "The name may show garbage characters!" msgstr "" +msgid "Remember my choice." +msgstr "" + #, possible-boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -5600,9 +5772,6 @@ msgstr "" msgid "Error during reload" msgstr "" -msgid "Slicing" -msgstr "" - msgid "There are warnings after slicing models:" msgstr "" @@ -5669,7 +5838,7 @@ msgid "Project downloaded %d%%" msgstr "" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" @@ -5709,18 +5878,12 @@ msgstr "" msgid "Can not add models when in preview mode!" msgstr "" -msgid "Add Models" -msgstr "" - msgid "All objects will be removed, continue?" msgstr "" msgid "The current project has unsaved changes, save it before continue?" msgstr "" -msgid "Remember my choice." -msgstr "" - msgid "Number of copies:" msgstr "" @@ -5912,6 +6075,11 @@ msgstr "" msgid "Stealth Mode" msgstr "" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "" @@ -6016,7 +6184,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6232,9 +6400,6 @@ msgstr "" msgid "Create printer" msgstr "" -msgid "Incompatible" -msgstr "" - msgid "The selected preset is null!" msgstr "" @@ -6329,15 +6494,6 @@ msgstr "" msgid "Preset Inside Project" msgstr "" -msgid "Name is invalid;" -msgstr "" - -msgid "illegal characters:" -msgstr "" - -msgid "illegal suffix:" -msgstr "" - msgid "Name is unavailable." msgstr "" @@ -6355,15 +6511,6 @@ msgstr "" msgid "Please note that saving action will replace this preset" msgstr "" -msgid "The name is not allowed to be empty." -msgstr "" - -msgid "The name is not allowed to start with space character." -msgstr "" - -msgid "The name is not allowed to end with space character." -msgstr "" - msgid "The name cannot be the same as a preset alias name." msgstr "" @@ -6421,9 +6568,6 @@ msgstr "" msgid "Log out successful." msgstr "" -msgid "Offline" -msgstr "" - msgid "Busy" msgstr "" @@ -6606,15 +6750,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" -msgid "Preparing print job" -msgstr "" - -msgid "Abnormal print file data. Please slice again" -msgstr "" - -msgid "The name length exceeds the limit." -msgstr "" - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -6938,6 +7073,9 @@ msgstr "" msgid "Tree supports" msgstr "" +msgid "Skirt" +msgstr "" + msgid "Prime tower" msgstr "" @@ -7781,6 +7919,12 @@ msgstr "" msgid "Shift+Mouse wheel" msgstr "" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "" @@ -7897,12 +8041,6 @@ msgstr "" msgid "Update firmware" msgstr "" -msgid "Printing" -msgstr "" - -msgid "Idle" -msgstr "" - msgid "Beta version" msgstr "" @@ -7932,7 +8070,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" msgid "Extension Board" @@ -8062,9 +8200,6 @@ msgstr "" msgid "Gap infill" msgstr "" -msgid "Skirt" -msgstr "" - msgid "Support interface" msgstr "" @@ -9619,7 +9754,7 @@ msgstr "" msgid "(Undefined)" msgstr "" -msgid "Infill direction" +msgid "Sparse infill direction" msgstr "" msgid "" @@ -9627,6 +9762,20 @@ msgid "" "of line" msgstr "" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "" @@ -9915,8 +10064,14 @@ msgid "Arc fitting" msgstr "" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" msgid "Add line number" @@ -10106,9 +10261,24 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" msgid "Speed of internal sparse infill" @@ -10971,6 +11141,23 @@ msgstr "" msgid "How many layers of skirt. Usually only one layer" msgstr "" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "" @@ -10983,6 +11170,17 @@ msgstr "" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "" +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -11599,6 +11797,19 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "" @@ -13248,7 +13459,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -13257,9 +13468,6 @@ msgstr "" msgid "Printer Setting" msgstr "" -msgid "Export Configs" -msgstr "" - msgid "Printer config bundle(.orca_printer)" msgstr "" diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index 0275058262..7965f645b8 100644 --- a/localization/i18n/ca/OrcaSlicer_ca.po +++ b/localization/i18n/ca/OrcaSlicer_ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: 2024-03-17 22:08+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -1911,6 +1911,9 @@ msgstr "Afegir primitiva" msgid "Add Handy models" msgstr "Afegir models Handy" +msgid "Add Models" +msgstr "Afegir models" + msgid "Show Labels" msgstr "Mostrar etiquetes" @@ -2408,7 +2411,7 @@ msgstr "No s'ha pogut connectar a la impressora" msgid "Connection to printer failed" msgstr "S'ha produït un error de connexió amb la impressora" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "Comproveu la connexió de xarxa de la impressora i l'Studio." msgid "Connecting..." @@ -2764,14 +2767,8 @@ msgstr "Orca Slicer té llicència sota " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, versió 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer es basa en BambuStudio de Bambulab, que és de PrusaSlicer de " -"Prusa Research. PrusaSlicer és de Slic3r d'Alessandro Ranellucci i la " -"comunitat RepRap" msgid "Libraries" msgstr "Llibreries" @@ -3267,6 +3264,210 @@ msgstr "" "Pujada planificada a `%1%`. Mira Finestra -> Puja a la cua del gestor " "d'impressió" +msgid "Device" +msgstr "Dispositiu" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Offline" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Vista" + +msgid "N/A" +msgstr "N/D" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Afegir" + +msgid "Idle" +msgstr "Inactiu" + +msgid "Printing" +msgstr "Imprimint" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Incompatible" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Preparació" + +msgid "Slicing" +msgstr "Laminant" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Reprendre" + +msgid "Stop" +msgstr "Aturar" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Carregant…" + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Preparant el treball d'impressió" + +msgid "Abnormal print file data. Please slice again" +msgstr "Dades anormals del fitxer d'impressió. Si us plau, torneu a laminar" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Enviar" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "El nom no és vàlid;" + +msgid "illegal characters:" +msgstr "caràcters no permesos:" + +msgid "illegal suffix:" +msgstr "sufix no permès:" + +msgid "The name is not allowed to be empty." +msgstr "No es permet que el nom estigui buit." + +msgid "The name is not allowed to start with space character." +msgstr "No es permet que el nom comenci amb caràcter d'espai." + +msgid "The name is not allowed to end with space character." +msgstr "No es permet que el nom acabi amb caràcter d'espai." + +msgid "The name length exceeds the limit." +msgstr "La longitud del nom supera el límit." + msgid "Origin" msgstr "Origen" @@ -3790,9 +3991,6 @@ msgstr "Configuració de la Impressora" msgid "parameter name" msgstr "nom del paràmetre" -msgid "N/A" -msgstr "N/D" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s no pot ser un percentatge" @@ -4110,9 +4308,6 @@ msgstr "Evitar la regió de calibratge d'extrusió" msgid "Align to Y axis" msgstr "Alinear a l'eix Y" -msgid "Add" -msgstr "Afegir" - msgid "Add plate" msgstr "Afegir placa" @@ -4300,15 +4495,9 @@ msgstr "Tancant l'aplicació mentre s'han modificat alguns perfils." msgid "Logging" msgstr "Registrant" -msgid "Prepare" -msgstr "Preparació" - msgid "Preview" msgstr "Previsualització" -msgid "Device" -msgstr "Dispositiu" - msgid "Multi-device" msgstr "" @@ -4336,9 +4525,6 @@ msgstr "Laminar-ho tot" msgid "Export G-code file" msgstr "Exportar el fitxer del Codi-G" -msgid "Send" -msgstr "Enviar" - msgid "Export plate sliced file" msgstr "Exportar fitxer de la placa laminada" @@ -4351,9 +4537,6 @@ msgstr "Imprimeix-ho tot" msgid "Send all" msgstr "Envia-ho tot" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Dreceres de teclat" @@ -4495,8 +4678,8 @@ msgstr "Exportar el Codi-G" msgid "Export current plate as G-code" msgstr "Exportar placa actual com a Codi-G" -msgid "Export &Configs" -msgstr "Exportar &Configuracions" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Exportar la configuració actual a fitxers" @@ -4597,9 +4780,6 @@ msgstr "Mostra el ressaltat del voladís de l'objecte a l'escena 3D" msgid "Preferences" msgstr "Preferències" -msgid "View" -msgstr "Vista" - msgid "Help" msgstr "Ajuda" @@ -4666,10 +4846,10 @@ msgstr "Exportar &Trajectòries d'eina com OBJ" msgid "Export toolpaths as OBJ" msgstr "Exportar trajectòries d'eines com a OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Obrir &Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Obrir Studio" msgid "&Quit" @@ -4856,9 +5036,6 @@ msgstr "Informació" msgid "Playing..." msgstr "Reproduint..." -msgid "Loading..." -msgstr "Carregant…" - msgid "Year" msgstr "Any" @@ -5019,11 +5196,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -5082,12 +5254,6 @@ msgstr "Invertir eix de Balanceig" msgid "Printing Progress" msgstr "Progrés de la impressió" -msgid "Resume" -msgstr "Reprendre" - -msgid "Stop" -msgstr "Aturar" - msgid "0" msgstr "0" @@ -5861,6 +6027,9 @@ msgstr "El nom dels components dins del fitxer de passos no té format UTF8!" msgid "The name may show garbage characters!" msgstr "El nom pot mostrar caràcters no vàlids!" +msgid "Remember my choice." +msgstr "Recordar la meva elecció." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -5988,9 +6157,6 @@ msgstr "No es pot tornar a carregar:" msgid "Error during reload" msgstr "S'ha produït un error durant la recàrrega" -msgid "Slicing" -msgstr "Laminant" - msgid "There are warnings after slicing models:" msgstr "Hi ha advertències després de laminar els models:" @@ -6065,9 +6231,11 @@ msgid "Project downloaded %d%%" msgstr "Projecte descarregat %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" +"La importació a Orca Slicer ha fallat. Descarregueu el fitxer manualment i " +"importeu-lo." msgid "Import SLA archive" msgstr "Importar fitxer SLA" @@ -6105,9 +6273,6 @@ msgstr "Els fitxers de Codi-G no es poden carregar amb els models junts!" msgid "Can not add models when in preview mode!" msgstr "No es poden afegir models en mode de previsualització!" -msgid "Add Models" -msgstr "Afegir models" - msgid "All objects will be removed, continue?" msgstr "Tots els objectes seran eliminats, vols continuar?" @@ -6115,9 +6280,6 @@ msgid "The current project has unsaved changes, save it before continue?" msgstr "" "El projecte actual té canvis no guardats, guardar-los abans de continuar?" -msgid "Remember my choice." -msgstr "Recordar la meva elecció." - msgid "Number of copies:" msgstr "Nombre de còpies:" @@ -6325,6 +6487,11 @@ msgstr "Regió d'inici de sessió" msgid "Stealth Mode" msgstr "Mode Silenciós" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "" @@ -6436,7 +6603,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6662,9 +6829,6 @@ msgstr "Seleccionar/eliminar impressores ( perfils del sistema )" msgid "Create printer" msgstr "Crear impressora" -msgid "Incompatible" -msgstr "Incompatible" - msgid "The selected preset is null!" msgstr "El perfil seleccionat és nul!" @@ -6760,15 +6924,6 @@ msgstr "Perfil d'usuari" msgid "Preset Inside Project" msgstr "Perfil intern del Projecte" -msgid "Name is invalid;" -msgstr "El nom no és vàlid;" - -msgid "illegal characters:" -msgstr "caràcters no permesos:" - -msgid "illegal suffix:" -msgstr "sufix no permès:" - msgid "Name is unavailable." msgstr "El nom no està disponible." @@ -6787,15 +6942,6 @@ msgstr "" msgid "Please note that saving action will replace this preset" msgstr "Tingueu en compte que l'acció de desar substituirà aquest perfil" -msgid "The name is not allowed to be empty." -msgstr "No es permet que el nom estigui buit." - -msgid "The name is not allowed to start with space character." -msgstr "No es permet que el nom comenci amb caràcter d'espai." - -msgid "The name is not allowed to end with space character." -msgstr "No es permet que el nom acabi amb caràcter d'espai." - msgid "The name cannot be the same as a preset alias name." msgstr "El nom no pot ser el mateix que un àlies preestablert." @@ -6853,9 +6999,6 @@ msgstr "No puc trobar els meus dispositius?" msgid "Log out successful." msgstr "Tancament de sessió correcte." -msgid "Offline" -msgstr "Offline" - msgid "Busy" msgstr "Ocupat" @@ -7074,15 +7217,6 @@ msgstr "" "Connectant amb la impressora. No es pot cancel·lar durant el procés de " "connexió." -msgid "Preparing print job" -msgstr "Preparant el treball d'impressió" - -msgid "Abnormal print file data. Please slice again" -msgstr "Dades anormals del fitxer d'impressió. Si us plau, torneu a laminar" - -msgid "The name length exceeds the limit." -msgstr "La longitud del nom supera el límit." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7468,6 +7602,9 @@ msgstr "Filament de suport" msgid "Tree supports" msgstr "Suports d'arbre" +msgid "Skirt" +msgstr "Faldilla" + msgid "Prime tower" msgstr "Torre de Purga" @@ -8383,6 +8520,12 @@ msgstr "Moure la barra de desplaçament 5 vegades més ràpid" msgid "Shift+Mouse wheel" msgstr "Maj+Roda del ratolí" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Notes de la versió" @@ -8510,12 +8653,6 @@ msgstr "Versió:" msgid "Update firmware" msgstr "Actualitzar el firmware" -msgid "Printing" -msgstr "Imprimint" - -msgid "Idle" -msgstr "Inactiu" - msgid "Beta version" msgstr "Versió beta" @@ -8550,7 +8687,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "La versió del firmware és anormal. Cal reparar i actualitzar abans " "d'imprimir. Vols actualitzar ara? També pots actualitzar més endavant a la " @@ -8695,9 +8832,6 @@ msgstr "Pont Interior" msgid "Gap infill" msgstr "Ompliment de buits" -msgid "Skirt" -msgstr "Faldilla" - msgid "Support interface" msgstr "Interfície de suport" @@ -10721,8 +10855,8 @@ msgstr "Fabricant del filament. Només per a mostrar" msgid "(Undefined)" msgstr "( Indefinit )" -msgid "Infill direction" -msgstr "Angle de farciment" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10731,6 +10865,20 @@ msgstr "" "Angle per a un patró de farciment poc dens, que controla l'inici o la " "direcció principal de la línia" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Densitat de farciment poc dens" @@ -11081,11 +11229,15 @@ msgid "Arc fitting" msgstr "Ajustament en Arc( Arc fitting )" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Habiliteu-lo per obtenir un fitxer de Codi-G que tingui moviments G2 i G3. I " -"la tolerància de curvatura és la mateixa que la resolució" msgid "Add line number" msgstr "Afegir número de línia" @@ -11321,13 +11473,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Superposició de farciment/perímetre" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"L'àrea de farciment s'amplia lleugerament per superposar-se amb el perímetre " -"per a una millor unió. El valor percentual és relatiu a l'amplada de línia " -"del farciment poc dens" msgid "Speed of internal sparse infill" msgstr "Velocitat de farciment poc dens intern" @@ -12414,6 +12578,23 @@ msgstr "Alçada de la faldilla" msgid "How many layers of skirt. Usually only one layer" msgstr "Quantes capes de faldilla. Normalment només una capa" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Voltes de la faldilla" @@ -12428,6 +12609,17 @@ msgstr "" "Velocitat de la faldilla, en mm/s. Zero significa utilitzar la velocitat " "predeterminada d'extrusió de capa." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -13207,6 +13399,19 @@ msgstr "Espaiat de les línies de la Torre de Purga" msgid "Spacing of purge lines on the wipe tower." msgstr "Espaiat de les línies de purga de la Torre de Purga." +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "Extrusor de la Torre de Purga" @@ -15174,7 +15379,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -15183,9 +15388,6 @@ msgstr "" msgid "Printer Setting" msgstr "Configuració de la Impressora" -msgid "Export Configs" -msgstr "Exportar Configuracions" - msgid "Printer config bundle(.orca_printer)" msgstr "Paquet de configuració d'impressores( .orca_printer )" @@ -16182,6 +16384,39 @@ msgstr "" "augmentar adequadament la temperatura del llit pot reduir la probabilitat de " "deformació." +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer es basa en BambuStudio de Bambulab, que és de PrusaSlicer de " +#~ "Prusa Research. PrusaSlicer és de Slic3r d'Alessandro Ranellucci i la " +#~ "comunitat RepRap" + +#~ msgid "Export &Configs" +#~ msgstr "Exportar &Configuracions" + +#~ msgid "Infill direction" +#~ msgstr "Angle de farciment" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Habiliteu-lo per obtenir un fitxer de Codi-G que tingui moviments G2 i " +#~ "G3. I la tolerància de curvatura és la mateixa que la resolució" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "L'àrea de farciment s'amplia lleugerament per superposar-se amb el " +#~ "perímetre per a una millor unió. El valor percentual és relatiu a " +#~ "l'amplada de línia del farciment poc dens" + +#~ msgid "Export Configs" +#~ msgstr "Exportar Configuracions" + #~ msgid "Unload Filament" #~ msgstr "Descarregar Filament" @@ -16207,13 +16442,6 @@ msgstr "" #~ msgid "HMS" #~ msgstr "HMS" -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "" -#~ "La importació a Orca Slicer ha fallat. Descarregueu el fitxer manualment " -#~ "i importeu-lo." - #~ msgid "- ℃" #~ msgstr "- °C" diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index cb3c5ce17a..d6336904f6 100644 --- a/localization/i18n/cs/OrcaSlicer_cs.po +++ b/localization/i18n/cs/OrcaSlicer_cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: 2023-09-30 15:15+0200\n" "Last-Translator: René Mošner \n" "Language-Team: \n" @@ -1867,6 +1867,9 @@ msgstr "Přidat Primitivní" msgid "Add Handy models" msgstr "" +msgid "Add Models" +msgstr "Přidat modely" + msgid "Show Labels" msgstr "Zobrazit štítky" @@ -2362,7 +2365,7 @@ msgstr "Nepodařilo se připojit k tiskárně" msgid "Connection to printer failed" msgstr "Připojení k tiskárně selhalo" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "Prosím, zkontrolujte síťové připojení tiskárny a Studia." msgid "Connecting..." @@ -2715,14 +2718,8 @@ msgstr "Orca Slicer je licencován pod " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, verze 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer je založen na BambuStudio od Bambulab, které je od PrusaSlicer " -"od Prusa Research. PrusaSlicer je od Slic3r od Alessandra Ranellucciho a " -"komunita RepRap" msgid "Libraries" msgstr "Knihovny" @@ -3207,6 +3204,210 @@ msgstr "" "Plánování nahrávání do `%1%`. Viz Okno -> Fronta nahrávaní do tiskového " "serveru" +msgid "Device" +msgstr "Zařízení" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Offline" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Zobrazení" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Přidat" + +msgid "Idle" +msgstr "Nečinný" + +msgid "Printing" +msgstr "Tisk" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Nekompatibilní" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Připravit" + +msgid "Slicing" +msgstr "Slicování" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Pokračovat" + +msgid "Stop" +msgstr "Zastavit" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Načítání..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Příprava tiskové úlohy" + +msgid "Abnormal print file data. Please slice again" +msgstr "Abnormální data tiskového souboru. Prosím znovu slicovat" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Odeslat" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "Jméno je neplatné;" + +msgid "illegal characters:" +msgstr "nepovolené znaky:" + +msgid "illegal suffix:" +msgstr "nelegální přípona:" + +msgid "The name is not allowed to be empty." +msgstr "Název nesmí být prázdný." + +msgid "The name is not allowed to start with space character." +msgstr "Název nesmí začínat mezerou." + +msgid "The name is not allowed to end with space character." +msgstr "Název nesmí končit mezerou." + +msgid "The name length exceeds the limit." +msgstr "Délka názvu překračuje limit." + msgid "Origin" msgstr "Počátek" @@ -3717,9 +3918,6 @@ msgstr "Nastavení tiskárny" msgid "parameter name" msgstr "název parametru" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s nemůže být procento" @@ -4037,9 +4235,6 @@ msgstr "Vyhněte se oblasti kalibrace extruze" msgid "Align to Y axis" msgstr "Zarovnat podle osy Y" -msgid "Add" -msgstr "Přidat" - msgid "Add plate" msgstr "Přidat Podložku" @@ -4226,15 +4421,9 @@ msgstr "Uzavření aplikace, zatímco některé přednastavení jsou upraveny." msgid "Logging" msgstr "Protokolování" -msgid "Prepare" -msgstr "Připravit" - msgid "Preview" msgstr "Náhled" -msgid "Device" -msgstr "Zařízení" - msgid "Multi-device" msgstr "" @@ -4262,9 +4451,6 @@ msgstr "Slicuj Vše" msgid "Export G-code file" msgstr "Exportovat soubor s G-kódem" -msgid "Send" -msgstr "Odeslat" - msgid "Export plate sliced file" msgstr "Exportovat soubor slicované na podložce" @@ -4277,9 +4463,6 @@ msgstr "Vytisknout vše" msgid "Send all" msgstr "Odeslat vše" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Klávesové zkratky" @@ -4421,8 +4604,8 @@ msgstr "Exportovat G-kód" msgid "Export current plate as G-code" msgstr "Exportovat stávající plochu do G-kód" -msgid "Export &Configs" -msgstr "Exportovat &konfigurace" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Exportovat aktuální konfiguraci do souborů" @@ -4523,9 +4706,6 @@ msgstr "Zobrazit zvýraznění převisů objektu ve 3D scéně" msgid "Preferences" msgstr "Nastavení" -msgid "View" -msgstr "Zobrazení" - msgid "Help" msgstr "Nápověda" @@ -4592,10 +4772,10 @@ msgstr "Exportovat &Trasy extruderu jako OBJ" msgid "Export toolpaths as OBJ" msgstr "Exportovat trasy extruderu jako OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Otevřít &Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Otevřít Studio" msgid "&Quit" @@ -4777,9 +4957,6 @@ msgstr "Informace" msgid "Playing..." msgstr "Hraje..." -msgid "Loading..." -msgstr "Načítání..." - msgid "Year" msgstr "Rok" @@ -4938,11 +5115,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -5001,12 +5173,6 @@ msgstr "Obrátit osu Rotace" msgid "Printing Progress" msgstr "Průběh tisku" -msgid "Resume" -msgstr "Pokračovat" - -msgid "Stop" -msgstr "Zastavit" - msgid "0" msgstr "0" @@ -5770,6 +5936,9 @@ msgstr "Názvy součástí v souboru kroku nejsou ve formátu UTF8!" msgid "The name may show garbage characters!" msgstr "Kvůli nepodporovanému kódování textu se mohou objevit nesmyslné znaky!" +msgid "Remember my choice." +msgstr "Zapamatovat si mou volbu." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -5895,9 +6064,6 @@ msgstr "Nelze znovu načíst:" msgid "Error during reload" msgstr "Chyba při opětovném načtení souboru" -msgid "Slicing" -msgstr "Slicování" - msgid "There are warnings after slicing models:" msgstr "Po slicování modelů jsou varování:" @@ -5971,9 +6137,10 @@ msgid "Project downloaded %d%%" msgstr "Projekt stažen %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" +"Import do Orca Sliceru selhal. Stáhněte soubor a proveďte jeho ruční import." msgid "Import SLA archive" msgstr "" @@ -6011,18 +6178,12 @@ msgstr "Soubory G-kódu a modely nelze načíst společně!" msgid "Can not add models when in preview mode!" msgstr "Nelze přidat modely v režimu náhledu!" -msgid "Add Models" -msgstr "Přidat modely" - msgid "All objects will be removed, continue?" msgstr "Všechny objekty budou odebrány, pokračovat?" msgid "The current project has unsaved changes, save it before continue?" msgstr "Aktuální projekt má neuložené změny, uložit je před pokračováním?" -msgid "Remember my choice." -msgstr "Zapamatovat si mou volbu." - msgid "Number of copies:" msgstr "Počet kopií:" @@ -6224,6 +6385,11 @@ msgstr "Región přihlášení" msgid "Stealth Mode" msgstr "Tajný Režim" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "" @@ -6330,7 +6496,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6554,9 +6720,6 @@ msgstr "" msgid "Create printer" msgstr "" -msgid "Incompatible" -msgstr "Nekompatibilní" - msgid "The selected preset is null!" msgstr "Vybrané přednastavení je nula!" @@ -6651,15 +6814,6 @@ msgstr "Uživatelská předvolba" msgid "Preset Inside Project" msgstr "Projekt uvnitř přednastavení" -msgid "Name is invalid;" -msgstr "Jméno je neplatné;" - -msgid "illegal characters:" -msgstr "nepovolené znaky:" - -msgid "illegal suffix:" -msgstr "nelegální přípona:" - msgid "Name is unavailable." msgstr "Jméno není k dispozici." @@ -6678,15 +6832,6 @@ msgstr "" msgid "Please note that saving action will replace this preset" msgstr "Upozorňujeme, že akce uložení nahradí toto přednastavení" -msgid "The name is not allowed to be empty." -msgstr "Název nesmí být prázdný." - -msgid "The name is not allowed to start with space character." -msgstr "Název nesmí začínat mezerou." - -msgid "The name is not allowed to end with space character." -msgstr "Název nesmí končit mezerou." - msgid "The name cannot be the same as a preset alias name." msgstr "Název se nesmí shodovat s názvem aliasem přednastavení." @@ -6744,9 +6889,6 @@ msgstr "Nemohu najít moje zařízení?" msgid "Log out successful." msgstr "Odhlášení proběhlo úspěšně." -msgid "Offline" -msgstr "Offline" - msgid "Busy" msgstr "Zaneprázdněn" @@ -6952,15 +7094,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "Připojování k tiskárně. Nelze zrušit během procesu připojování." -msgid "Preparing print job" -msgstr "Příprava tiskové úlohy" - -msgid "Abnormal print file data. Please slice again" -msgstr "Abnormální data tiskového souboru. Prosím znovu slicovat" - -msgid "The name length exceeds the limit." -msgstr "Délka názvu překračuje limit." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7329,6 +7462,9 @@ msgstr "Filament na podpěry" msgid "Tree supports" msgstr "Stromové podpěry" +msgid "Skirt" +msgstr "Obrys" + msgid "Prime tower" msgstr "Čistící věž" @@ -8228,6 +8364,12 @@ msgstr "Posunout posuvník 5x rychleji" msgid "Shift+Mouse wheel" msgstr "Shift+kolečko myši" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Poznámka k vydání" @@ -8349,12 +8491,6 @@ msgstr "Verze:" msgid "Update firmware" msgstr "Aktualizovat firmware" -msgid "Printing" -msgstr "Tisk" - -msgid "Idle" -msgstr "Nečinný" - msgid "Beta version" msgstr "" @@ -8389,7 +8525,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "Verze firmwaru je abnormální. Oprava a aktualizace jsou nutné před tisk. " "Chcete provést aktualizaci nyní? Aktualizaci můžete provést také později na " @@ -8528,9 +8664,6 @@ msgstr "Vnitřní most" msgid "Gap infill" msgstr "Výplň mezery" -msgid "Skirt" -msgstr "Obrys" - msgid "Support interface" msgstr "Kontaktní vrstva podpěr" @@ -10322,8 +10455,8 @@ msgstr "Výrobce filamentu. Pouze pro zobrazení" msgid "(Undefined)" msgstr "(Nedefinováno)" -msgid "Infill direction" -msgstr "Směr výplně" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10331,6 +10464,20 @@ msgid "" msgstr "" "Úhel pro vzor vnitřní výplně, který řídí začátek nebo hlavní směr linky" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Hustota vnitřní výplně" @@ -10669,11 +10816,15 @@ msgid "Arc fitting" msgstr "Přizpůsobení oblouku" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Povolte toto, abyste získali soubor G-kódu, který má pohyby G2 a G3. A " -"tolerance montáže je stejná s rozlišením" msgid "Add line number" msgstr "Přidat číslo řádku" @@ -10903,12 +11054,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Výplň/Přesah stěny" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"Oblast výplně je mírně zvětšena, aby se překrývala se stěnou pro lepší " -"lepení. Procentuální hodnota je vztažena k šířce extruze vnitřní výplně" msgid "Speed of internal sparse infill" msgstr "Rychlost vnitřní výplně" @@ -11906,6 +12070,23 @@ msgstr "Výška obrysu" msgid "How many layers of skirt. Usually only one layer" msgstr "Kolik vrstev Obrysu. Obvykle pouze jedna vrstva" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Obrysové smyčky" @@ -11919,6 +12100,17 @@ msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "" "Rychlost obrysu, v mm/s. Nula znamená použít výchozí rychlost vrstvy extruze." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -12653,6 +12845,19 @@ msgstr "Rozteč čistících linek v čistící věži" msgid "Spacing of purge lines on the wipe tower." msgstr "Rozteč čistících linek v čistící věži." +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "Extruder čistící věže" @@ -14488,7 +14693,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -14497,9 +14702,6 @@ msgstr "" msgid "Printer Setting" msgstr "" -msgid "Export Configs" -msgstr "" - msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -15401,6 +15603,35 @@ msgid "" "probability of warping." msgstr "" +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer je založen na BambuStudio od Bambulab, které je od " +#~ "PrusaSlicer od Prusa Research. PrusaSlicer je od Slic3r od Alessandra " +#~ "Ranellucciho a komunita RepRap" + +#~ msgid "Export &Configs" +#~ msgstr "Exportovat &konfigurace" + +#~ msgid "Infill direction" +#~ msgstr "Směr výplně" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Povolte toto, abyste získali soubor G-kódu, který má pohyby G2 a G3. A " +#~ "tolerance montáže je stejná s rozlišením" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "Oblast výplně je mírně zvětšena, aby se překrývala se stěnou pro lepší " +#~ "lepení. Procentuální hodnota je vztažena k šířce extruze vnitřní výplně" + #~ msgid "Unload Filament" #~ msgstr "Vysunout Filament" @@ -15426,13 +15657,6 @@ msgstr "" #~ msgid "HMS" #~ msgstr "HMS" -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "" -#~ "Import do Orca Sliceru selhal. Stáhněte soubor a proveďte jeho ruční " -#~ "import." - #~ msgid "- ℃" #~ msgstr "- ℃" diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 6f046ab33d..75f20c83d7 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: \n" "Last-Translator: Heiko Liebscher \n" "Language-Team: \n" @@ -1911,6 +1911,9 @@ msgstr "Primitiv hinzufügen" msgid "Add Handy models" msgstr "Modelle hinzufügen" +msgid "Add Models" +msgstr "Modelle hinzufügen" + msgid "Show Labels" msgstr "Bezeichnung anzeigen" @@ -2423,7 +2426,7 @@ msgstr "Verbindung zum Drucker fehlgeschlagen" msgid "Connection to printer failed" msgstr "Verbindung zum Drucker ist fehlgeschlagen" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "Bitte überprüfen Sie die Netzwerkverbindung von Drucker und Studio." msgid "Connecting..." @@ -2787,14 +2790,8 @@ msgstr "Orca Slicer ist lizenziert unter " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, Version 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer basiert auf BambuStudio von Bambulab, welches von PrusaSlicer " -"von Prusa Research stammt. PrusaSlicer wiederum basiert auf Slic3r von " -"Alessandro Ranellucci und der RepRap-Community." msgid "Libraries" msgstr "Bibliotheken" @@ -3243,9 +3240,7 @@ msgid "Successfully executed post-processing script" msgstr "Nachbearbeitungsskript erfolgreich ausgeführt" msgid "Unknown error occured during exporting G-code." -msgstr "" -"Unbekannter Fehler beim Exportieren des G-Codes aufgetreten." - +msgstr "Unbekannter Fehler beim Exportieren des G-Codes aufgetreten." #, boost-format msgid "" @@ -3253,8 +3248,8 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" -"Das Kopieren des temporären G-Codes in den Ausgabe-G-Code ist fehlgeschlagen. " -"Ist die SD-Karte schreibgeschützt?\n" +"Das Kopieren des temporären G-Codes in den Ausgabe-G-Code ist " +"fehlgeschlagen. Ist die SD-Karte schreibgeschützt?\n" "Fehlermeldung: %1%" #, boost-format @@ -3263,37 +3258,38 @@ msgid "" "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 in den Ausgabe-G-Code ist fehlgeschlagen. " -"Es könnte ein Problem mit dem Zielgerät geben. Versuchen Sie es erneut oder " -"verwenden Sie ein anderes Gerät. Der beschädigte Ausgabe-G-Code befindet sich " -"in %1%.tmp." +"Das Kopieren des temporären G-Codes in den Ausgabe-G-Code ist " +"fehlgeschlagen. Es könnte ein Problem mit dem Zielgerät geben. Versuchen Sie " +"es erneut oder verwenden Sie ein anderes Gerät. Der beschädigte Ausgabe-G-" +"Code befindet sich in %1%.tmp." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" -"Das Umbenennen des G-Codes nach dem Kopieren in den ausgewählten " -"Zielordner ist fehlgeschlagen. Der aktuelle Pfad ist %1%.tmp. Bitte versuchen " -"Sie es erneut." +"Das Umbenennen des G-Codes nach dem Kopieren in den ausgewählten Zielordner " +"ist fehlgeschlagen. Der aktuelle Pfad ist %1%.tmp. Bitte versuchen Sie es " +"erneut." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" -"Das Kopieren des temporären G-Codes wurde abgeschlossen, aber der ursprüngliche " -"Code unter %1% konnte während der Überprüfung des Kopiervorgangs nicht geöffnet " -"werden. Der Ausgabe-G-Code befindet sich in %2%.tmp." +"Das Kopieren des temporären G-Codes wurde abgeschlossen, aber der " +"ursprüngliche Code unter %1% konnte während der Überprüfung des " +"Kopiervorgangs nicht geöffnet werden. Der Ausgabe-G-Code befindet sich in " +"%2%.tmp." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" -"Das Kopieren des temporären G-Codes wurde abgeschlossen, aber der exportierte " -"Code konnte während der Überprüfung des Kopiervorgangs nicht geöffnet werden. " -"Der Ausgabe-G-Code befindet sich in %1%.tmp." +"Das Kopieren des temporären G-Codes wurde abgeschlossen, aber der " +"exportierte Code konnte während der Überprüfung des Kopiervorgangs nicht " +"geöffnet werden. Der Ausgabe-G-Code befindet sich in %1%.tmp." #, boost-format msgid "G-code file exported to %1%" @@ -3321,6 +3317,210 @@ msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "" "Planen des Uploads auf `%1%`. Siehe Fenster -> Host-Upload-Druckwarteschlange" +msgid "Device" +msgstr "Gerät" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Offline" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Ansicht" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Hinzufügen" + +msgid "Idle" +msgstr "Inaktiv" + +msgid "Printing" +msgstr "Drucken" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Inkompatibel" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Vorbereiten" + +msgid "Slicing" +msgstr "Slicen" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Fortsetzen" + +msgid "Stop" +msgstr "Stop" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Laden..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "An Multi-Gerät senden" + +msgid "Preparing print job" +msgstr "Druckauftrag vorbereiten" + +msgid "Abnormal print file data. Please slice again" +msgstr "Fehlerhafte Daten in der Druckdatei. Bitte slicen Sie erneut" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Senden" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "Der Name ist ungültig;" + +msgid "illegal characters:" +msgstr "unzulässige Zeichen:" + +msgid "illegal suffix:" +msgstr "unzulässiger Zusatz:" + +msgid "The name is not allowed to be empty." +msgstr "Der Name darf nicht leer sein." + +msgid "The name is not allowed to start with space character." +msgstr "Der Name darf nicht mit einem Leerzeichen beginnen." + +msgid "The name is not allowed to end with space character." +msgstr "Der Name darf nicht mit einem Leerzeichen enden." + +msgid "The name length exceeds the limit." +msgstr "Die Namenslänge überschreitet das Limit." + msgid "Origin" msgstr "Nullpunkt" @@ -3864,9 +4064,6 @@ msgstr "Drucker-Einstellungen" msgid "parameter name" msgstr "Parametername" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s kann nicht Prozent sein" @@ -4186,9 +4383,6 @@ msgstr "Vermeiden Sie den Bereich der Extrusionskalibrierung" msgid "Align to Y axis" msgstr "An Y-Achse ausrichten" -msgid "Add" -msgstr "Hinzufügen" - msgid "Add plate" msgstr "Druckplatte hinzufügen" @@ -4377,15 +4571,9 @@ msgstr "" msgid "Logging" msgstr "Protokollierung" -msgid "Prepare" -msgstr "Vorbereiten" - msgid "Preview" msgstr "Vorschau" -msgid "Device" -msgstr "Gerät" - msgid "Multi-device" msgstr "Multi-Gerät" @@ -4415,9 +4603,6 @@ msgstr "Alle Platten slicen" msgid "Export G-code file" msgstr "G-Code als Datei exportieren" -msgid "Send" -msgstr "Senden" - msgid "Export plate sliced file" msgstr "Exportiere aktuelle Platte als STL Datei" @@ -4430,9 +4615,6 @@ msgstr "Alle Platten drucken" msgid "Send all" msgstr "Sende alle" -msgid "Send to Multi-device" -msgstr "An Multi-Gerät senden" - msgid "Keyboard Shortcuts" msgstr "Tastaturkürzel" @@ -4574,8 +4756,8 @@ msgstr "Exportiere G-Code" msgid "Export current plate as G-code" msgstr "Aktuelle Druckplatte als G-Code exportieren" -msgid "Export &Configs" -msgstr "Exportieren &Konfigurieren" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Aktuelle Konfiguration in Dateien exportieren" @@ -4676,9 +4858,6 @@ msgstr "Hervorhebung des Objektüberhangs in einer 3D-Szene anzeigen" msgid "Preferences" msgstr "Einstellungen" -msgid "View" -msgstr "Ansicht" - msgid "Help" msgstr "Hilfe" @@ -4745,10 +4924,10 @@ msgstr "Werkzeugwege als OBJ exportieren" msgid "Export toolpaths as OBJ" msgstr "Werkzeugweg als OBJ exportieren" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Öffne &Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Öffne Studio" msgid "&Quit" @@ -4954,9 +5133,6 @@ msgstr "Informationen" msgid "Playing..." msgstr "Laufend..." -msgid "Loading..." -msgstr "Laden..." - msgid "Year" msgstr "Jahr" @@ -5124,13 +5300,6 @@ msgstr "" "Der Drucker wird neu verbunden, die Operation kann nicht sofort " "abgeschlossen werden. Bitte versuchen Sie es später erneut." -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" -"Mehr als 4 Systeme/Handy verwenden den Remote-Zugriff. Sie können einige " -"schließen und es erneut versuchen." - msgid "File does not exist." msgstr "Datei existiert nicht." @@ -5189,12 +5358,6 @@ msgstr "Invertiere Roll-Achse" msgid "Printing Progress" msgstr "Druckprozess" -msgid "Resume" -msgstr "Fortsetzen" - -msgid "Stop" -msgstr "Stop" - msgid "0" msgstr "0" @@ -5704,7 +5867,9 @@ msgid "Nozzle Clumping Detection" msgstr "Düsenverklumpen-Erkennung" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "Überprüfen Sie, ob die Düse durch Filament oder andere Fremdkörper verklumpt ist." +msgstr "" +"Überprüfen Sie, ob die Düse durch Filament oder andere Fremdkörper verklumpt " +"ist." msgid "Nozzle Type" msgstr "Düsentyp" @@ -5980,6 +6145,9 @@ msgstr "" "Aufgrund der nicht unterstützten Textkodierung können unbrauchbare Zeichen " "erscheinen!" +msgid "Remember my choice." +msgstr "Meine Auswahl merken." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -6111,9 +6279,6 @@ msgstr "Kann nicht neu geladen werden:" msgid "Error during reload" msgstr "Fehler beim Neuladen" -msgid "Slicing" -msgstr "Slicen" - msgid "There are warnings after slicing models:" msgstr "Es gibt Warnungen nach dem slicen des Modells:" @@ -6187,14 +6352,16 @@ msgstr "Download fehlgeschlagen, Dateigröße nicht erlaubt." #, c-format, boost-format msgid "Project downloaded %d%%" -msgstr "Projekt heruntergeladen %d%%" +msgstr "" +"Projekt heruntergeladen %d%%Der Import in Orca Slicer ist fehlgeschlagen. " +"Bitte laden Sie die Datei herunter und importieren Sie sie manuell." msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" "Der Import in Orca Slicer ist fehlgeschlagen. Bitte laden Sie die Datei " -"herunter und importieren Sie sie manuell." +"manuell herunter und importieren Sie sie." msgid "Import SLA archive" msgstr "SLA-Archiv importieren" @@ -6232,9 +6399,6 @@ msgstr "G-Code-Dateien und Modelle können nicht zusammen geladen werden!" msgid "Can not add models when in preview mode!" msgstr "Modelle können im Vorschaumodus nicht hinzugefügt werden" -msgid "Add Models" -msgstr "Modelle hinzufügen" - msgid "All objects will be removed, continue?" msgstr "Alle Objekte werden entfernt, fortfahren?" @@ -6243,9 +6407,6 @@ msgstr "" "Das aktuelle Projekt enthält nicht gespeicherte Änderungen. Möchten Sie " "speichern, bevor Sie fortfahren?" -msgid "Remember my choice." -msgstr "Meine Auswahl merken." - msgid "Number of copies:" msgstr "Anzahl der Kopien:" @@ -6458,6 +6619,11 @@ msgstr "Login-Region" msgid "Stealth Mode" msgstr "Unsichtbarer Modus" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "Netzwerk-Plugin aktivieren" @@ -6575,7 +6741,7 @@ msgstr "" "Wenn aktiviert, merkt sich Orca die Filament-/Prozesskonfiguration für jeden " "Drucker und wechselt automatisch." -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "Multi-Geräte-Verwaltung (nach Neustart von Studio wirksam)." msgid "" @@ -6801,9 +6967,6 @@ msgstr "Systemdrucker auswählen/entfernen" msgid "Create printer" msgstr "Drucker erstellen" -msgid "Incompatible" -msgstr "Inkompatibel" - msgid "The selected preset is null!" msgstr "Das selektierte Profil ist leer!" @@ -6900,15 +7063,6 @@ msgstr "Benutzer-Profil" msgid "Preset Inside Project" msgstr "Projektbasiertes Profil" -msgid "Name is invalid;" -msgstr "Der Name ist ungültig;" - -msgid "illegal characters:" -msgstr "unzulässige Zeichen:" - -msgid "illegal suffix:" -msgstr "unzulässiger Zusatz:" - msgid "Name is unavailable." msgstr "Der Name ist nicht verfügbar." @@ -6928,15 +7082,6 @@ msgstr "" msgid "Please note that saving action will replace this preset" msgstr "Bitte beachten Sie, dass das Speichern dieses Profil überschreibt." -msgid "The name is not allowed to be empty." -msgstr "Der Name darf nicht leer sein." - -msgid "The name is not allowed to start with space character." -msgstr "Der Name darf nicht mit einem Leerzeichen beginnen." - -msgid "The name is not allowed to end with space character." -msgstr "Der Name darf nicht mit einem Leerzeichen enden." - msgid "The name cannot be the same as a preset alias name." msgstr "Der Name kann nicht mit einem Profil-Aliasnamen identisch sein." @@ -6995,9 +7140,6 @@ msgstr "Kann das Geräte nicht finden?" msgid "Log out successful." msgstr "Abmeldung erfolgreich." -msgid "Offline" -msgstr "Offline" - msgid "Busy" msgstr "Beschäftigt" @@ -7201,9 +7343,9 @@ msgid "" "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" -"Ihr Düsendurchmesser in der gesliceten Datei stimmt nicht mit der " -"gemerkten Düse überein. Wenn Sie Ihre Düse kürzlich gewechselt haben, gehen " -"Sie zu Gerät > Drucker-Teile, um die Einstellungen zu ändern." +"Ihr Düsendurchmesser in der gesliceten Datei stimmt nicht mit der gemerkten " +"Düse überein. Wenn Sie Ihre Düse kürzlich gewechselt haben, gehen Sie zu " +"Gerät > Drucker-Teile, um die Einstellungen zu ändern." #, c-format, boost-format msgid "" @@ -7229,15 +7371,6 @@ msgid "" msgstr "" "Verbindung zum Drucker wird hergestellt. Während des Verbindungsvorgangs " -msgid "Preparing print job" -msgstr "Druckauftrag vorbereiten" - -msgid "Abnormal print file data. Please slice again" -msgstr "Fehlerhafte Daten in der Druckdatei. Bitte slicen Sie erneut" - -msgid "The name length exceeds the limit." -msgstr "Die Namenslänge überschreitet das Limit." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7643,6 +7776,9 @@ msgstr "Supportfilament" msgid "Tree supports" msgstr "Baumstützen" +msgid "Skirt" +msgstr "Saum" + msgid "Prime tower" msgstr "Reinigungsturm" @@ -8085,10 +8221,8 @@ msgstr "" "Sie können die geänderten Profilwerte speichern oder verwerfen oder wählen, " "ob Sie die geänderten Werte in das neue Profil übertragen möchten." - msgid "You have previously modified your settings." -msgstr "" -"Sie haben Ihre Einstellungen zuvor geändert." +msgstr "Sie haben Ihre Einstellungen zuvor geändert." msgid "" "\n" @@ -8576,6 +8710,12 @@ msgstr "Schieberegler 5x schneller bewegen" msgid "Shift+Mouse wheel" msgstr "Umschalt+Mausrad" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Hinweis zur Veröffentlichung" @@ -8701,12 +8841,6 @@ msgstr "Version:" msgid "Update firmware" msgstr "Firmware aktualisieren" -msgid "Printing" -msgstr "Drucken" - -msgid "Idle" -msgstr "Inaktiv" - msgid "Beta version" msgstr "Beta-Version" @@ -8742,7 +8876,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "Die Firmware-Version ist nicht korrekt. Vor dem Drucken müssen Sie die " "Firmware reparieren und aktualisieren. Möchten Sie diese jetzt " @@ -8890,9 +9024,6 @@ msgstr "Interne Brücke" msgid "Gap infill" msgstr "Lückenfüllung" -msgid "Skirt" -msgstr "Saum" - msgid "Support interface" msgstr "Stützstruktur-Schnittstelle" @@ -10922,14 +11053,28 @@ msgstr "Hersteller des Filaments. Nur zur Anzeige." msgid "(Undefined)" msgstr "(undefiniert)" -msgid "Infill direction" -msgstr "Richtung der Füllung" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " "of line" msgstr "Winkel des Füllmusters, das die Richtung der Linien bestimmt." +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Fülldichte" @@ -11291,11 +11436,15 @@ msgid "Arc fitting" msgstr "Als Bogen drucken" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Aktivieren Sie dies, um eine G-Code-Datei zu erhalten, die G2 und G3 Befehle " -"enthält. Die Bogentoleranz ist die gleiche wie die Auflösung." msgid "Add line number" msgstr "Liniennummer hinzufügen" @@ -11530,13 +11679,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Überlappung Füllung/Wand" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"Der Bereich der Füllung wird leicht vergrößert, damit er sich mit der Wand " -"überlappt, um eine bessere Haftung zu erreichen. Der Prozentwert bezieht " -"sich auf die Linienbreite der inneren Füllung." msgid "Speed of internal sparse infill" msgstr "Geschwindigkeit der inneren Füllung" @@ -12626,6 +12787,23 @@ msgstr "Höhe der Umrandungsringe" msgid "How many layers of skirt. Usually only one layer" msgstr "Wie viele Schichten des Skirts. Normalerweise nur eine Schicht." +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Anzahl Umrandungsringe" @@ -12641,6 +12819,17 @@ msgstr "" "Geschwindigkeit der Umrandung in mm/s. Null bedeutet Verwendung der Standard-" "Schichtextrusionsgeschwindigkeit." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -13423,6 +13612,19 @@ msgstr "Wischabstand der Reinigungsturmpurges" msgid "Spacing of purge lines on the wipe tower." msgstr "Abstand der Reinigungsturmpurges." +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "Reinigungsturm-Extruder" @@ -14754,7 +14956,8 @@ msgstr "Aktivität" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "Dieser Maschinentyp kann nur %d historische Ergebnisse pro Düse speichern." +msgstr "" +"Dieser Maschinentyp kann nur %d historische Ergebnisse pro Düse speichern." msgid "Edit Flow Dynamics Calibration" msgstr "Ändern der Flussdynamik-Kalibrierung" @@ -15415,7 +15618,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -15431,9 +15634,6 @@ msgstr "" msgid "Printer Setting" msgstr "Druckereinstellung" -msgid "Export Configs" -msgstr "Konfigurationen exportieren" - msgid "Printer config bundle(.orca_printer)" msgstr "Drucker-Konfigurationsbündel (.orca_printer)" @@ -15841,7 +16041,6 @@ msgstr "" "Schichtlinien und hoher Druckqualität. Es ist für die meisten allgemeinen " "Druckfälle geeignet." - msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " @@ -15867,8 +16066,8 @@ msgid "" "time." msgstr "" "Im Vergleich zum Standardprofil einer 0,2 mm Düse hat es eine größere " -"Schichthöhe und führt zu leicht sichtbaren Schichtlinien, aber einer kürzeren " -"Druckzeit." +"Schichthöhe und führt zu leicht sichtbaren Schichtlinien, aber einer " +"kürzeren Druckzeit." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -16013,7 +16212,6 @@ msgstr "" "Festigkeit der Drucke, aber mehr Filamentverbrauch und eine längere " "Druckzeit." - msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " @@ -16055,8 +16253,8 @@ msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" -"Es hat eine sehr große Schichthöhe und führt zu sehr deutlichen Schichtlinien, " -"niedriger Druckqualität und allgemeiner Druckzeit." +"Es hat eine sehr große Schichthöhe und führt zu sehr deutlichen " +"Schichtlinien, niedriger Druckqualität und allgemeiner Druckzeit." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " @@ -16541,6 +16739,46 @@ msgstr "" "wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die " "Wahrscheinlichkeit von Verwerfungen verringert werden kann." +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer basiert auf BambuStudio von Bambulab, welches von PrusaSlicer " +#~ "von Prusa Research stammt. PrusaSlicer wiederum basiert auf Slic3r von " +#~ "Alessandro Ranellucci und der RepRap-Community." + +#~ msgid "Export &Configs" +#~ msgstr "Exportieren &Konfigurieren" + +#~ msgid "" +#~ "Over 4 systems/handy are using remote access, you can close some and try " +#~ "again." +#~ msgstr "" +#~ "Mehr als 4 Systeme/Handy verwenden den Remote-Zugriff. Sie können einige " +#~ "schließen und es erneut versuchen." + +#~ msgid "Infill direction" +#~ msgstr "Richtung der Füllung" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Aktivieren Sie dies, um eine G-Code-Datei zu erhalten, die G2 und G3 " +#~ "Befehle enthält. Die Bogentoleranz ist die gleiche wie die Auflösung." + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "Der Bereich der Füllung wird leicht vergrößert, damit er sich mit der " +#~ "Wand überlappt, um eine bessere Haftung zu erreichen. Der Prozentwert " +#~ "bezieht sich auf die Linienbreite der inneren Füllung." + +#~ msgid "Export Configs" +#~ msgstr "Konfigurationen exportieren" + #~ msgid "Actions For Unsaved Changes" #~ msgstr "Aktivitäten für nicht gespeicherte Änderungen" @@ -16623,13 +16861,6 @@ msgstr "" #~ msgid "HMS" #~ msgstr "HMS" -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "" -#~ "Der Import in Orca Slicer ist fehlgeschlagen. Bitte laden Sie die Datei " -#~ "manuell herunter und importieren Sie sie." - #~ msgid "- ℃" #~ msgstr "- ℃" diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index 0e8af19aea..5e03bfb868 100644 --- a/localization/i18n/en/OrcaSlicer_en.po +++ b/localization/i18n/en/OrcaSlicer_en.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -1842,6 +1842,9 @@ msgstr "Add Primitive" msgid "Add Handy models" msgstr "" +msgid "Add Models" +msgstr "Add Models" + msgid "Show Labels" msgstr "Show Labels" @@ -2330,8 +2333,8 @@ msgstr "Failed to connect to the printer" msgid "Connection to printer failed" msgstr "Connection to printer failed" -msgid "Please check the network connection of the printer and Studio." -msgstr "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." +msgstr "Please check the network connection of the printer and Orca." msgid "Connecting..." msgstr "Connecting..." @@ -2680,10 +2683,7 @@ msgstr "Orca Slicer is licensed under " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, version 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" msgid "Libraries" @@ -3165,6 +3165,210 @@ msgstr "Copying of the temporary G-code to the output G-code failed." msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" +msgid "Device" +msgstr "Device" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Offline" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "View" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Add" + +msgid "Idle" +msgstr "Idle" + +msgid "Printing" +msgstr "Printing" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Incompatible" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Prepare" + +msgid "Slicing" +msgstr "Slicing" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Resume" + +msgid "Stop" +msgstr "Stop" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Loading..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Preparing print job" + +msgid "Abnormal print file data. Please slice again" +msgstr "Abnormal print file data. Please slice again" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Send" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "Name is invalid;" + +msgid "illegal characters:" +msgstr "Illegal characters:" + +msgid "illegal suffix:" +msgstr "Illegal suffix:" + +msgid "The name is not allowed to be empty." +msgstr "The name field is not allowed to be empty." + +msgid "The name is not allowed to start with space character." +msgstr "The name is not allowed to start with a space." + +msgid "The name is not allowed to end with space character." +msgstr "The name is not allowed to end with a space." + +msgid "The name length exceeds the limit." +msgstr "The name length exceeds the limit." + msgid "Origin" msgstr "Origin" @@ -3658,9 +3862,6 @@ msgstr "Printer settings" msgid "parameter name" msgstr "parameter name" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s can’t be a percentage" @@ -3978,9 +4179,6 @@ msgstr "Avoid extrusion calibration region" msgid "Align to Y axis" msgstr "" -msgid "Add" -msgstr "Add" - msgid "Add plate" msgstr "Add Plate" @@ -4166,15 +4364,9 @@ msgstr "Closing Application while some presets are modified." msgid "Logging" msgstr "Logging" -msgid "Prepare" -msgstr "Prepare" - msgid "Preview" msgstr "Preview" -msgid "Device" -msgstr "Device" - msgid "Multi-device" msgstr "" @@ -4202,9 +4394,6 @@ msgstr "Slice all" msgid "Export G-code file" msgstr "Export G-code file" -msgid "Send" -msgstr "Send" - msgid "Export plate sliced file" msgstr "Export plate sliced file" @@ -4217,9 +4406,6 @@ msgstr "Print all" msgid "Send all" msgstr "Send all" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Keyboard Shortcuts" @@ -4361,8 +4547,8 @@ msgstr "Export G-code" msgid "Export current plate as G-code" msgstr "Export current plate as G-code" -msgid "Export &Configs" -msgstr "Export &Configs" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Export current configuration to files" @@ -4463,9 +4649,6 @@ msgstr "Show object overhang highlight in 3D scene" msgid "Preferences" msgstr "Preferences" -msgid "View" -msgstr "View" - msgid "Help" msgstr "Help" @@ -4532,11 +4715,11 @@ msgstr "Export &Toolpaths as OBJ" msgid "Export toolpaths as OBJ" msgstr "Export toolpaths as OBJ" -msgid "Open &Studio" -msgstr "Open &Studio" +msgid "Open &Slicer" +msgstr "Open &Slicer" -msgid "Open Studio" -msgstr "Open Studio" +msgid "Open Slicer" +msgstr "Open Slicer" msgid "&Quit" msgstr "&Quit" @@ -4709,9 +4892,6 @@ msgstr "Information" msgid "Playing..." msgstr "Playing..." -msgid "Loading..." -msgstr "Loading..." - msgid "Year" msgstr "Year" @@ -4865,11 +5045,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -4928,12 +5103,6 @@ msgstr "" msgid "Printing Progress" msgstr "Printing progress" -msgid "Resume" -msgstr "Resume" - -msgid "Stop" -msgstr "Stop" - msgid "0" msgstr "0" @@ -5668,6 +5837,9 @@ msgstr "Component name(s) inside step file not in UTF8 format!" msgid "The name may show garbage characters!" msgstr "Because of unsupported text encoding, garbage characters may appear!" +msgid "Remember my choice." +msgstr "Remember my choice." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "Failed loading file \"%1%\". An invalid configuration was found." @@ -5792,9 +5964,6 @@ msgstr "" msgid "Error during reload" msgstr "" -msgid "Slicing" -msgstr "Slicing" - msgid "There are warnings after slicing models:" msgstr "There are warnings after slicing models:" @@ -5867,7 +6036,7 @@ msgid "Project downloaded %d%%" msgstr "Project downloaded %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" @@ -5907,9 +6076,6 @@ msgstr "G-code files and models cannot be loaded together!" msgid "Can not add models when in preview mode!" msgstr "Unable to add models in preview mode" -msgid "Add Models" -msgstr "Add Models" - msgid "All objects will be removed, continue?" msgstr "All objects will be removed, continue?" @@ -5918,9 +6084,6 @@ msgstr "" "The current project has unsaved changes. Would you like to save before " "continuing?" -msgid "Remember my choice." -msgstr "Remember my choice." - msgid "Number of copies:" msgstr "Number of copies:" @@ -6119,6 +6282,11 @@ msgstr "Login Region" msgid "Stealth Mode" msgstr "" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "" @@ -6225,7 +6393,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6449,9 +6617,6 @@ msgstr "" msgid "Create printer" msgstr "" -msgid "Incompatible" -msgstr "Incompatible" - msgid "The selected preset is null!" msgstr "" @@ -6546,15 +6711,6 @@ msgstr "User Preset" msgid "Preset Inside Project" msgstr "Preset Inside Project" -msgid "Name is invalid;" -msgstr "Name is invalid;" - -msgid "illegal characters:" -msgstr "Illegal characters:" - -msgid "illegal suffix:" -msgstr "Illegal suffix:" - msgid "Name is unavailable." msgstr "Name is unavailable." @@ -6573,15 +6729,6 @@ msgstr "" msgid "Please note that saving action will replace this preset" msgstr "Please note that saving will overwrite the current preset." -msgid "The name is not allowed to be empty." -msgstr "The name field is not allowed to be empty." - -msgid "The name is not allowed to start with space character." -msgstr "The name is not allowed to start with a space." - -msgid "The name is not allowed to end with space character." -msgstr "The name is not allowed to end with a space." - msgid "The name cannot be the same as a preset alias name." msgstr "The name cannot be the same as a preset alias name." @@ -6639,9 +6786,6 @@ msgstr "Can't find devices?" msgid "Log out successful." msgstr "Log out successful." -msgid "Offline" -msgstr "Offline" - msgid "Busy" msgstr "Busy" @@ -6846,15 +6990,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" -msgid "Preparing print job" -msgstr "Preparing print job" - -msgid "Abnormal print file data. Please slice again" -msgstr "Abnormal print file data. Please slice again" - -msgid "The name length exceeds the limit." -msgstr "The name length exceeds the limit." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7220,6 +7355,9 @@ msgstr "Filament for Supports" msgid "Tree supports" msgstr "" +msgid "Skirt" +msgstr "" + msgid "Prime tower" msgstr "Prime tower" @@ -8097,6 +8235,12 @@ msgstr "Move slider 5x faster" msgid "Shift+Mouse wheel" msgstr "Shift+Mouse wheel" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Release Note" @@ -8217,12 +8361,6 @@ msgstr "Version:" msgid "Update firmware" msgstr "Update firmware" -msgid "Printing" -msgstr "Printing" - -msgid "Idle" -msgstr "Idle" - msgid "Beta version" msgstr "" @@ -8257,7 +8395,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on the " @@ -8396,9 +8534,6 @@ msgstr "" msgid "Gap infill" msgstr "Gap infill" -msgid "Skirt" -msgstr "" - msgid "Support interface" msgstr "Support interface" @@ -10102,8 +10237,8 @@ msgstr "" msgid "(Undefined)" msgstr "(Undefined)" -msgid "Infill direction" -msgstr "Infill direction" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10112,6 +10247,20 @@ msgstr "" "This is the angle for sparse infill pattern, which controls the start or " "main direction of lines." +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Sparse infill density" @@ -10417,11 +10566,15 @@ msgid "Arc fitting" msgstr "Arc fitting" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Enable this to get a G-code file with G2 and G3 moves. The fitting tolerance " -"is the same as the resolution." msgid "Add line number" msgstr "Add line number" @@ -10619,13 +10772,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Infill/wall overlap" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"This allows the infill area to be enlarged slightly to overlap with walls " -"for better bonding. The percentage value is relative to line width of sparse " -"infill." msgid "Speed of internal sparse infill" msgstr "This is the speed for internal sparse infill." @@ -11529,6 +11694,23 @@ msgstr "Skirt height" msgid "How many layers of skirt. Usually only one layer" msgstr "Number of skirt layers: usually only one" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Skirt loops" @@ -11542,6 +11724,17 @@ msgstr "" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "" +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -12229,6 +12422,19 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "" @@ -13936,7 +14142,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -13945,9 +14151,6 @@ msgstr "" msgid "Printer Setting" msgstr "" -msgid "Export Configs" -msgstr "" - msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -14833,6 +15036,27 @@ msgid "" "probability of warping." msgstr "" +#~ msgid "Export &Configs" +#~ msgstr "Export &Configs" + +#~ msgid "Infill direction" +#~ msgstr "Infill direction" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Enable this to get a G-code file with G2 and G3 moves. The fitting " +#~ "tolerance is the same as the resolution." + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "This allows the infill area to be enlarged slightly to overlap with walls " +#~ "for better bonding. The percentage value is relative to line width of " +#~ "sparse infill." + #~ msgid "Unload Filament" #~ msgstr "Unload" diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index dcfac06c88..3f554170b6 100644 --- a/localization/i18n/es/OrcaSlicer_es.po +++ b/localization/i18n/es/OrcaSlicer_es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: \n" "Last-Translator: Carlos Fco. Caruncho Serrano \n" "Language-Team: \n" @@ -1918,6 +1918,9 @@ msgstr "Añadir Primitivo" msgid "Add Handy models" msgstr "Añadir modelos prácticos" +msgid "Add Models" +msgstr "Añadir Modelos" + msgid "Show Labels" msgstr "Mostrar Etiquetas" @@ -2417,8 +2420,8 @@ msgstr "No se ha podido conectar a la impresora" msgid "Connection to printer failed" msgstr "Connection to printer failed" -msgid "Please check the network connection of the printer and Studio." -msgstr "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." +msgstr "Please check the network connection of the printer and Orca." msgid "Connecting..." msgstr "Conectando…" @@ -2773,14 +2776,8 @@ msgstr "Orca Slicer tiene licencia bajo " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, versión 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer está basado en BambuStudio por Bambulab, el cual está basado en " -"PrusaSlicer por Prusa Research. PrusaSlicer está basado en Slic3r de " -"Alessandro Ranellucci y la comunidad RepRap" msgid "Libraries" msgstr "Librerías" @@ -3280,6 +3277,210 @@ msgstr "" "Programación de la carga a %1%. Mire la Ventana -> Cola de Impresión del " "Anfitrión" +msgid "Device" +msgstr "Dispositivo" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Fuera de línea" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Vista" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Añadir" + +msgid "Idle" +msgstr "Inactivo" + +msgid "Printing" +msgstr "Imprimendo" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Incompatible" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Preparar" + +msgid "Slicing" +msgstr "Laminando" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "Enviando" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Reanudar" + +msgid "Stop" +msgstr "Detener" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Cargando..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Preparando el trabajo de impresión" + +msgid "Abnormal print file data. Please slice again" +msgstr "Datos anormales del archivo de impresión. Por favor, procese de nuevo" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Enviar" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "El nombre no es válido;" + +msgid "illegal characters:" +msgstr "caracteres no permitidos:" + +msgid "illegal suffix:" +msgstr "sufijo no permitido:" + +msgid "The name is not allowed to be empty." +msgstr "No se permite que el nombre esté vacío." + +msgid "The name is not allowed to start with space character." +msgstr "No se permite que el nombre comience con un carácter de espacio." + +msgid "The name is not allowed to end with space character." +msgstr "No se permite que el nombre termine con un espacio." + +msgid "The name length exceeds the limit." +msgstr "The name length exceeds the limit." + msgid "Origin" msgstr "Origen" @@ -3815,9 +4016,6 @@ msgstr "Ajustes de la impresora" msgid "parameter name" msgstr "nombre del parámetro" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s no puede ser un porcentaje" @@ -4135,9 +4333,6 @@ msgstr "Evitar la zona de calibración del extrusor" msgid "Align to Y axis" msgstr "Alinear con el eje Y" -msgid "Add" -msgstr "Añadir" - msgid "Add plate" msgstr "Añadir bandeja" @@ -4325,15 +4520,9 @@ msgstr "Cerrando la aplicación mientras se modifican algunos perfiles." msgid "Logging" msgstr "Registrando" -msgid "Prepare" -msgstr "Preparar" - msgid "Preview" msgstr "Previsualización" -msgid "Device" -msgstr "Dispositivo" - msgid "Multi-device" msgstr "" @@ -4361,9 +4550,6 @@ msgstr "Laminar todo" msgid "Export G-code file" msgstr "Exportar archivo G-Code" -msgid "Send" -msgstr "Enviar" - msgid "Export plate sliced file" msgstr "Explorar archivo de laminado de bandeja de impresión" @@ -4376,9 +4562,6 @@ msgstr "Imprimir todo" msgid "Send all" msgstr "Mandar todo" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Atajos de teclado" @@ -4520,8 +4703,8 @@ msgstr "Exportar G-Code" msgid "Export current plate as G-code" msgstr "Exportar bandeja actual cómo G-Code" -msgid "Export &Configs" -msgstr "Exportar &Configuraciones" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Exportar configuración actual a archivos" @@ -4622,9 +4805,6 @@ msgstr "Show object overhang highlight in 3D scene" msgid "Preferences" msgstr "Preferencias" -msgid "View" -msgstr "Vista" - msgid "Help" msgstr "Ayuda" @@ -4691,10 +4871,10 @@ msgstr "Exportar &Movimientos como OBJ" msgid "Export toolpaths as OBJ" msgstr "Exportar trayectorias de herramientas como OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Abrir $Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Abrir Studio" msgid "&Quit" @@ -4881,9 +5061,6 @@ msgstr "Información" msgid "Playing..." msgstr "Reproduciendo..." -msgid "Loading..." -msgstr "Cargando..." - msgid "Year" msgstr "Año" @@ -5039,11 +5216,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -5102,12 +5274,6 @@ msgstr "Invertir eje de Balanceo" msgid "Printing Progress" msgstr "Progreso de impresión" -msgid "Resume" -msgstr "Reanudar" - -msgid "Stop" -msgstr "Detener" - msgid "0" msgstr "0" @@ -5886,6 +6052,9 @@ msgstr "" msgid "The name may show garbage characters!" msgstr "¡El nombre puede mostrar caracteres no válidos!" +msgid "Remember my choice." +msgstr "Recordar my elección." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -6015,9 +6184,6 @@ msgstr "No es posible recargar:" msgid "Error during reload" msgstr "Error durante la recarga" -msgid "Slicing" -msgstr "Laminando" - msgid "There are warnings after slicing models:" msgstr "Hay alertas después de laminar los modelos:" @@ -6092,9 +6258,11 @@ msgid "Project downloaded %d%%" msgstr "Proyecto descargado %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" +"La importación a Orca Slicer ha fallado. Descargue el archivo e impórtelo " +"manualmente." msgid "Import SLA archive" msgstr "Importar archivo SLA" @@ -6132,9 +6300,6 @@ msgstr "¡Los archivos de G-Code no pueden cargarse con los modelos juntos!" msgid "Can not add models when in preview mode!" msgstr "No se pueden añadir modelos en el modo de vista previa!" -msgid "Add Models" -msgstr "Añadir Modelos" - msgid "All objects will be removed, continue?" msgstr "Todos los objetos serán eliminados, deseas continuar?" @@ -6142,9 +6307,6 @@ msgid "The current project has unsaved changes, save it before continue?" msgstr "" "El proyecto actual tiene cambios sin guardar, ¿guardarlos antes de continuar?" -msgid "Remember my choice." -msgstr "Recordar my elección." - msgid "Number of copies:" msgstr "Número de copias:" @@ -6356,6 +6518,11 @@ msgstr "Región de inicio de sesión" msgid "Stealth Mode" msgstr "Modo invisible" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "Activar el plugin de red" @@ -6464,7 +6631,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6690,9 +6857,6 @@ msgstr "Seleccionar/Borrar impresoras (perfiles del sistema)" msgid "Create printer" msgstr "Crear impresora" -msgid "Incompatible" -msgstr "Incompatible" - msgid "The selected preset is null!" msgstr "¡El ajuste seleccionado es nulo!" @@ -6790,15 +6954,6 @@ msgstr "Perfil de usuario" msgid "Preset Inside Project" msgstr "Perfil interno del proyecto" -msgid "Name is invalid;" -msgstr "El nombre no es válido;" - -msgid "illegal characters:" -msgstr "caracteres no permitidos:" - -msgid "illegal suffix:" -msgstr "sufijo no permitido:" - msgid "Name is unavailable." msgstr "El nombre no está disponible." @@ -6816,15 +6971,6 @@ msgstr "El perfil \"%1%\" ya existe y es incompatible con la impresora actual." msgid "Please note that saving action will replace this preset" msgstr "Tenga en cuenta que la acción de guardar reemplazará este perfil" -msgid "The name is not allowed to be empty." -msgstr "No se permite que el nombre esté vacío." - -msgid "The name is not allowed to start with space character." -msgstr "No se permite que el nombre comience con un carácter de espacio." - -msgid "The name is not allowed to end with space character." -msgstr "No se permite que el nombre termine con un espacio." - msgid "The name cannot be the same as a preset alias name." msgstr "El nombre no puede ser el mismo que un nombre de alias preestablecido." @@ -6883,9 +7029,6 @@ msgstr "No puedo encontrar mis dispositivos?" msgid "Log out successful." msgstr "Cierre de sesión con éxito." -msgid "Offline" -msgstr "Fuera de línea" - msgid "Busy" msgstr "Ocupado" @@ -7102,15 +7245,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "Conectando a la impresora. No es posible cancelar durante la conexión." -msgid "Preparing print job" -msgstr "Preparando el trabajo de impresión" - -msgid "Abnormal print file data. Please slice again" -msgstr "Datos anormales del archivo de impresión. Por favor, procese de nuevo" - -msgid "The name length exceeds the limit." -msgstr "The name length exceeds the limit." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7499,6 +7633,9 @@ msgstr "Filamento de soporte" msgid "Tree supports" msgstr "Soportes de árbol" +msgid "Skirt" +msgstr "Falda" + msgid "Prime tower" msgstr "Torre de Purga" @@ -8418,6 +8555,12 @@ msgstr "Mover el deslizador 5 veces más rápido" msgid "Shift+Mouse wheel" msgstr "Shit+Rueda de ratón" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Notas de lanzamiento" @@ -8545,12 +8688,6 @@ msgstr "Versión:" msgid "Update firmware" msgstr "Actualizar firmware" -msgid "Printing" -msgstr "Imprimendo" - -msgid "Idle" -msgstr "Inactivo" - msgid "Beta version" msgstr "Versión beta" @@ -8585,7 +8722,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "La versión de firmware es anormal. Es necesario reparar y actualizar antes " "de imprimir. ¿Quieres actualizar ahora? Puedes actualizar al iniciar en el " @@ -8728,9 +8865,6 @@ msgstr "Puente Interior" msgid "Gap infill" msgstr "Relleno de huecos" -msgid "Skirt" -msgstr "Falda" - msgid "Support interface" msgstr "Interfaz de soporte" @@ -10768,8 +10902,8 @@ msgstr "Fabricante del filamento. Para mostrar solamente" msgid "(Undefined)" msgstr "(No definido)" -msgid "Infill direction" -msgstr "Ángulo del relleno" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10778,6 +10912,20 @@ msgstr "" "Ángulo para el patrón de relleno de baja densidad, que controla el inicio o " "la dirección principal de la línea" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Densidad de relleno" @@ -11130,11 +11278,15 @@ msgid "Arc fitting" msgstr "Activar movimientos en arco" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Habilite esto para obtener un archivo de G-Code que tiene movimientos G2 y " -"G3. Y la tolerancia de ajuste es la misma con la resolución" msgid "Add line number" msgstr "Añadir número de línea" @@ -11369,13 +11521,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Superposición de relleno/perímetros" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"El área de relleno se amplía ligeramente para que se solape con el perímetro " -"y así mejorar la adherencia. El valor porcentual es relativo a la anchura de " -"la línea del relleno de baja densidad" msgid "Speed of internal sparse infill" msgstr "Velocidad del relleno interno disperso" @@ -12473,6 +12637,23 @@ msgstr "Altura de falda" msgid "How many layers of skirt. Usually only one layer" msgstr "C capas de falda. Normalmente sólo una capa" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Contorno de la falda" @@ -12487,6 +12668,17 @@ msgstr "" "Velocidad de la falda, en mm/s. Cero significa utilizar la velocidad de capa " "por defecto." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -13260,6 +13452,19 @@ msgstr "Espaciado de las líneas de la torre de purga" msgid "Spacing of purge lines on the wipe tower." msgstr "Espaciado de las líneas de la torre de purga." +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "Extrusor de torre de purga" @@ -15236,7 +15441,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -15245,9 +15450,6 @@ msgstr "" msgid "Printer Setting" msgstr "Ajustes de Impresora" -msgid "Export Configs" -msgstr "Configuración de Exportación" - msgid "Printer config bundle(.orca_printer)" msgstr "Paquete de configuración de impresora(.orca_printer)" @@ -16249,6 +16451,39 @@ msgstr "" "aumentar adecuadamente la temperatura del lecho térmico puede reducir la " "probabilidad de deformaciones." +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer está basado en BambuStudio por Bambulab, el cual está basado " +#~ "en PrusaSlicer por Prusa Research. PrusaSlicer está basado en Slic3r de " +#~ "Alessandro Ranellucci y la comunidad RepRap" + +#~ msgid "Export &Configs" +#~ msgstr "Exportar &Configuraciones" + +#~ msgid "Infill direction" +#~ msgstr "Ángulo del relleno" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Habilite esto para obtener un archivo de G-Code que tiene movimientos G2 " +#~ "y G3. Y la tolerancia de ajuste es la misma con la resolución" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "El área de relleno se amplía ligeramente para que se solape con el " +#~ "perímetro y así mejorar la adherencia. El valor porcentual es relativo a " +#~ "la anchura de la línea del relleno de baja densidad" + +#~ msgid "Export Configs" +#~ msgstr "Configuración de Exportación" + #~ msgid "Unload Filament" #~ msgstr "Descargar" @@ -16274,13 +16509,6 @@ msgstr "" #~ msgid "HMS" #~ msgstr "HMS" -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "" -#~ "La importación a Orca Slicer ha fallado. Descargue el archivo e impórtelo " -#~ "manualmente." - #~ msgid "- ℃" #~ msgstr "- ℃" @@ -18216,9 +18444,6 @@ msgstr "" #~ msgid "Save configuration as:" #~ msgstr "Guardar la configuración como:" -#~ msgid "Sending" -#~ msgstr "Enviando" - #~ msgid "Set pen size" #~ msgstr "Ajustar el tamaño del lápiz" diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index 0ed123b720..da6caed1fc 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 12:02+0200\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: Guislain Cyril, Thomas Lété\n" @@ -2428,7 +2428,7 @@ msgstr "Échec de la connexion à l'imprimante" msgid "Connection to printer failed" msgstr "La connexion à l'imprimante a échoué" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "Vérifiez la connexion réseau entre l'imprimante et Studio." msgid "Connecting..." @@ -2791,14 +2791,8 @@ msgstr "Orca Slicer est sous licence " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero Licence Publique Générale, version 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer est basé sur Bambu Studio de Bambulab qui a été développé sur la " -"base de PrusaSlicer de Prusa Research, qui est lui même développé sur la " -"base de Slic3r par Alessandro Ranelucci et la communauté RepRap" msgid "Libraries" msgstr "Bibliothèques" @@ -3472,6 +3466,12 @@ msgid "Abnormal print file data. Please slice again" msgstr "" "Données de fichier d'impression anormales. Veuillez redécouvre le fichier." +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + msgid "Use External Spool" msgstr "Utiliser la bobine externe" @@ -4432,7 +4432,7 @@ msgstr "Le volume:" msgid "Size:" msgstr "Taille:" -#, boost-format +#, c-format, boost-format msgid "" "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." @@ -4750,8 +4750,8 @@ msgstr "Exporter le G-code" msgid "Export current plate as G-code" msgstr "Exporter le plateau actuel en G-code" -msgid "Export &Configs" -msgstr "Exportation & Configs" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Exporter la configuration actuelle vers des fichiers" @@ -4919,10 +4919,10 @@ msgstr "Exporter &Toolpaths en OBJ" msgid "Export toolpaths as OBJ" msgstr "Exporter les parcours d'outils en OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Ouvrir &Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Ouvrir Studio" msgid "&Quit" @@ -5297,13 +5297,6 @@ msgstr "" "Reconnexion de l’imprimante, l’opération ne peut être effectuée maintenant, " "veuillez réessayer plus tard." -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" -"Plus de 4 orca/handy utilisent l’accès à distance, vous pouvez en fermer " -"certains et réessayer." - msgid "File does not exist." msgstr "Le fichier n’existe pas." @@ -6349,13 +6342,15 @@ msgstr "Le téléchargement a échoué, exception de taille de fichier." #, c-format, boost-format msgid "Project downloaded %d%%" -msgstr "Projet téléchargé à %d%%" +msgstr "" +"Projet téléchargé à %d%%L’importation dans Bambu Studio a échoué. Veuillez " +"télécharger le fichier et l’importer manuellement." msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" -"L’importation dans Bambu Studio a échoué. Veuillez télécharger le fichier et " +"L’importation vers OrcaSlicer a échoué. Veuillez télécharger le fichier et " "l’importer manuellement." msgid "Import SLA archive" @@ -6759,7 +6754,7 @@ msgstr "" "Si cette option est activée, Orca se souviendra de la configuration du " "filament/processus pour chaque imprimante et la modifiera automatiquement." -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "Gestion multi-appareils (prend effet après le redémarrage d’Orca)." msgid "" @@ -7729,8 +7724,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add " -"Primitive\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add Primitive" +"\"->\"Timelapse Wipe Tower\"." msgstr "" "Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé " "d’ajouter une \"Tour d’essuyage timelapse\".\n" @@ -7807,6 +7802,9 @@ msgstr "Filament de support" msgid "Tree supports" msgstr "Supports arborescents" +msgid "Skirt" +msgstr "Jupe" + msgid "Prime tower" msgstr "Tour de purge" @@ -7882,9 +7880,9 @@ msgid "" "Bed temperature when cool plate is installed. Value 0 means the filament " "does not support to print on the Cool Plate" msgstr "" -"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool " -"plate\") est installé. Une valeur à 0 signifie que ce filament ne peut pas " -"être imprimé sur le plateau froid." +"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool plate" +"\") est installé. Une valeur à 0 signifie que ce filament ne peut pas être " +"imprimé sur le plateau froid." msgid "Engineering plate" msgstr "Plaque Engineering" @@ -8756,6 +8754,12 @@ msgstr "Déplacez le curseur 5 fois plus vite" msgid "Shift+Mouse wheel" msgstr "Maj+Molette de la souris" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Note de version" @@ -8918,7 +8922,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "La version du firmware est erronée. La réparation et la mise à jour sont " "nécessaires avant l'impression. Voulez-vous effectuer la mise à jour " @@ -9063,9 +9067,6 @@ msgstr "Pont interne" msgid "Gap infill" msgstr "Remplissage d'espace" -msgid "Skirt" -msgstr "Jupe" - msgid "Support interface" msgstr "Interface de support" @@ -11412,10 +11413,10 @@ msgstr "Ventilateur à pleine vitesse à la couche" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer " -"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " -"than \"close_fan_the_first_x_layers\", in which case the fan will be running " -"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" +"\". \"full_fan_speed_layer\" will be ignored if lower than " +"\"close_fan_the_first_x_layers\", in which case the fan will be running at " +"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à " "la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche " @@ -11768,35 +11769,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Chevauchement de remplissage/paroi" -#, c-format, boost-format +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " "The percentage value is relative to line width of sparse infill. Set this " -"value to ~10-15%% to minimize potential over extrusion and accumulation of " +"value to ~10-15% to minimize potential over extrusion and accumulation of " "material resulting in rough top surfaces." msgstr "" -"La zone de remplissage est légèrement élargie pour chevaucher la paroi afin " -"d’améliorer l’adhérence. La valeur du pourcentage est relative à la largeur " -"de la ligne de remplissage clairsemée. Réglez cette valeur à ~10-15%% pour " -"minimiser le risque de sur-extrusion et d’accumulation de matériau, ce qui " -"rendrait les surfaces supérieures rugueuses." msgid "Top/Bottom solid infill/wall overlap" msgstr "Chevauchement du remplissage ou de la paroi supérieur(e)/inférieur(e)" +#, no-c-format, no-boost-format msgid "" "Top solid infill area is enlarged slightly to overlap with wall for better " "bonding and to minimize the appearance of pinholes where the top infill " -"meets the walls. A value of 25-30%% is a good starting point, minimising the " +"meets the walls. A value of 25-30% is a good starting point, minimising the " "appearance of pinholes. The percentage value is relative to line width of " "sparse infill" msgstr "" -"La zone de remplissage solide supérieure est légèrement élargie pour " -"chevaucher la paroi afin d’améliorer l’adhérence et de minimiser " -"l’apparition de trous d’épingle à l’endroit où le remplissage supérieur " -"rencontre les parois. Une valeur de 25-30%% est un bon point de départ, " -"minimisant l’apparition de trous d’épingle. La valeur en pourcentage est " -"relative à la largeur de ligne d’un remplissage peu dense." msgid "Speed of internal sparse infill" msgstr "Vitesse de remplissage interne" @@ -12909,6 +12900,23 @@ msgstr "Hauteur de la jupe" msgid "How many layers of skirt. Usually only one layer" msgstr "Nombre de couches de jupe, généralement une seule." +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Boucles de la jupe" @@ -12923,6 +12931,17 @@ msgstr "" "Vitesse de la jupe, en mm/s. Une valeur à 0 signifie que la vitesse " "d’extrusion par défaut est utilisée." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -13094,8 +13113,8 @@ msgid "" "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " "close all holes in the model." msgstr "" -"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez " -"« Fermer les trous » pour fermer tous les trous du modèle." +"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « " +"Fermer les trous » pour fermer tous les trous du modèle." msgid "Regular" msgstr "Standard" @@ -13879,8 +13898,8 @@ msgid "" "Wipe tower is only compatible with relative mode. It is recommended on most " "printers. Default is checked" msgstr "" -"L’extrusion relative est recommandée lors de l’utilisation de l’option " -"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " +"L’extrusion relative est recommandée lors de l’utilisation de l’option « " +"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " "non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est " "compatible qu’avec le mode relatif. Il est recommandé sur la plupart des " "imprimantes. L’option par défaut est cochée" @@ -14743,9 +14762,9 @@ msgstr "" "Wiki.\n" "\n" "Habituellement, la calibration est inutile. Lorsque vous démarrez une " -"impression d'une seule couleur/matériau, avec l'option \"Calibration du " -"débit\" cochée dans le menu de démarrage de l'impression, l'imprimante " -"suivra l'ancienne méthode de calibration du filament avant l'impression.\n" +"impression d'une seule couleur/matériau, avec l'option \"Calibration du débit" +"\" cochée dans le menu de démarrage de l'impression, l'imprimante suivra " +"l'ancienne méthode de calibration du filament avant l'impression.\n" "Lorsque vous démarrez une impression multi-couleurs/matériaux, l'imprimante " "utilise le paramètre de compensation par défaut pour le filament lors de " "chaque changement de filament, ce qui donne un bon résultat dans la plupart " @@ -15524,8 +15543,8 @@ msgstr "" "Voulez-vous le réécrire ?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you selected" +"\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Nous renommerions les préréglages en « Vendor Type Serial @printer you " @@ -15751,7 +15770,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -15767,9 +15786,6 @@ msgstr "" msgid "Printer Setting" msgstr "Réglage de l’imprimante" -msgid "Export Configs" -msgstr "Exporter les configurations" - msgid "Printer config bundle(.orca_printer)" msgstr "Paquet de configuration de l’imprimante (.orca_printer)" @@ -16503,6 +16519,451 @@ msgstr "" msgid "User cancelled." msgstr "L’utilisateur a annulé." +#: resources/data/hints.ini: [hint:Precise wall] +msgid "" +"Precise wall\n" +"Did you know that turning on precise wall can improve precision and layer " +"consistency?" +msgstr "" +"Paroi précise\n" +"Saviez-vous que l’activation de la paroi précise peut améliorer la précision " +"et l’homogénéité des couches ?" + +#: resources/data/hints.ini: [hint:Sandwich mode] +msgid "" +"Sandwich mode\n" +"Did you know that you can use sandwich mode (inner-outer-inner) to improve " +"precision and layer consistency if your model doesn't have very steep " +"overhangs?" +msgstr "" +"Mode sandwich\n" +"Saviez-vous que vous pouvez utiliser le mode sandwich (intérieur-extérieur-" +"intérieur) pour améliorer la précision et la cohérence des couches si votre " +"modèle n’a pas de porte-à-faux très prononcés ?" + +#: resources/data/hints.ini: [hint:Chamber temperature] +msgid "" +"Chamber temperature\n" +"Did you know that OrcaSlicer supports chamber temperature?" +msgstr "" +"Température de la chambre\n" +"Saviez-vous qu’OrcaSlicer prend en charge la température de la chambre ?" + +#: resources/data/hints.ini: [hint:Calibration] +msgid "" +"Calibration\n" +"Did you know that calibrating your printer can do wonders? Check out our " +"beloved calibration solution in OrcaSlicer." +msgstr "" +"Calibrage\n" +"Saviez-vous que le calibrage de votre imprimante peut faire des merveilles ? " +"Découvrez notre solution de calibrage bien-aimée dans OrcaSlicer." + +#: resources/data/hints.ini: [hint:Auxiliary fan] +msgid "" +"Auxiliary fan\n" +"Did you know that OrcaSlicer supports Auxiliary part cooling fan?" +msgstr "" +"Ventilateur auxiliaire\n" +"Saviez-vous qu’OrcaSlicer prend en charge le ventilateur auxiliaire de " +"refroidissement des pièces ?" + +#: resources/data/hints.ini: [hint:Air filtration] +msgid "" +"Air filtration/Exhaust Fan\n" +"Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?" +msgstr "" +"Filtration de l’air/ventilateur d’extraction\n" +"Saviez-vous qu’OrcaSlicer peut prendre en charge la filtration de l’air/le " +"ventilateur d’extraction ?" + +#: resources/data/hints.ini: [hint:G-code window] +msgid "" +"G-code window\n" +"You can turn on/off the G-code window by pressing the C key." +msgstr "" +"Fenêtre de G-code\n" +"Vous pouvez activer/désactiver la fenêtre G-code en appuyant sur la touche " +"C." + +#: resources/data/hints.ini: [hint:Switch workspaces] +msgid "" +"Switch workspaces\n" +"You can switch between Prepare and Preview workspaces by " +"pressing the Tab key." +msgstr "" +"Changer les espaces de travail\n" +"Vous pouvez alterner entre l’espace de travail Préparer et Aperçu en appuyant sur la touche Tab." + +#: resources/data/hints.ini: [hint:How to use keyboard shortcuts] +msgid "" +"How to use keyboard shortcuts\n" +"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " +"3D scene operations." +msgstr "" +"Comment utiliser les raccourcis clavier\n" +"Saviez-vous qu’Orca Slicer offre une large gamme de raccourcis clavier et " +"d’opérations sur les scènes 3D." + +#: resources/data/hints.ini: [hint:Reverse on odd] +msgid "" +"Reverse on odd\n" +"Did you know that Reverse on odd feature can significantly improve " +"the surface quality of your overhangs?" +msgstr "" +"Parois inversées sur couches impaires\n" +"Saviez-vous que la fonction Parois inversées sur couches impaires " +"peut améliorer de manière significative la qualité de la surface de vos " +"surplombs ?" + +#: resources/data/hints.ini: [hint:Cut Tool] +msgid "" +"Cut Tool\n" +"Did you know that you can cut a model at any angle and position with the " +"cutting tool?" +msgstr "" +"Outil de découpe\n" +"Saviez-vous que vous pouvez découper un modèle à n'importe quel angle et " +"dans n'importe quelle position avec l'outil de découpe ?" + +#: resources/data/hints.ini: [hint:Fix Model] +msgid "" +"Fix Model\n" +"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " +"problems on the Windows system?" +msgstr "" +"Réparer un modèle\n" +"Saviez-vous que vous pouvez réparer un modèle 3D corrompu pour éviter de " +"nombreux problèmes de découpage sur le système Windows ?" + +#: resources/data/hints.ini: [hint:Timelapse] +msgid "" +"Timelapse\n" +"Did you know that you can generate a timelapse video during each print?" +msgstr "" +"Timelapse\n" +"Saviez-vous que vous pouvez générer une vidéo en timelapse à chaque " +"impression ?" + +#: resources/data/hints.ini: [hint:Auto-Arrange] +msgid "" +"Auto-Arrange\n" +"Did you know that you can auto-arrange all objects in your project?" +msgstr "" +"Agencement Automatique\n" +"Saviez-vous que vous pouvez agencement automatiquement tous les objets de " +"votre projet ?" + +#: resources/data/hints.ini: [hint:Auto-Orient] +msgid "" +"Auto-Orient\n" +"Did you know that you can rotate objects to an optimal orientation for " +"printing by a simple click?" +msgstr "" +"Orientation Automatique\n" +"Saviez-vous que vous pouvez faire pivoter des objets dans une orientation " +"optimale pour l'impression d'un simple clic ?" + +#: resources/data/hints.ini: [hint:Lay on Face] +msgid "" +"Lay on Face\n" +"Did you know that you can quickly orient a model so that one of its faces " +"sits on the print bed? Select the \"Place on face\" function or press the " +"F key." +msgstr "" +"Poser sur une face\n" +"Saviez-vous qu'il est possible d'orienter rapidement un modèle de manière à " +"ce que l'une de ses faces repose sur le plateau d'impression ? Sélectionnez " +"la fonction « Placer sur la face » ou appuyez sur la touche F." + +#: resources/data/hints.ini: [hint:Object List] +msgid "" +"Object List\n" +"Did you know that you can view all objects/parts in a list and change " +"settings for each object/part?" +msgstr "" +"Liste d'objets\n" +"Saviez-vous que vous pouvez afficher tous les objets/pièces dans une liste " +"et modifier les paramètres de chaque objet/pièce ?" + +#: resources/data/hints.ini: [hint:Search Functionality] +msgid "" +"Search Functionality\n" +"Did you know that you use the Search tool to quickly find a specific Orca " +"Slicer setting?" +msgstr "" +"Fonctionnalité de recherche\n" +"Saviez-vous que vous pouvez utiliser l’outil de recherche pour trouver " +"rapidement un paramètre spécifique de l’Orca Slicer ?" + +#: resources/data/hints.ini: [hint:Simplify Model] +msgid "" +"Simplify Model\n" +"Did you know that you can reduce the number of triangles in a mesh using the " +"Simplify mesh feature? Right-click the model and select Simplify model." +msgstr "" +"Simplifier le modèle\n" +"Saviez-vous que vous pouviez réduire le nombre de triangles dans un maillage " +"à l’aide de la fonction Simplifier le maillage ? Cliquez avec le bouton " +"droit de la souris sur le modèle et sélectionnez Simplifier le modèle." + +#: resources/data/hints.ini: [hint:Slicing Parameter Table] +msgid "" +"Slicing Parameter Table\n" +"Did you know that you can view all objects/parts on a table and change " +"settings for each object/part?" +msgstr "" +"Tableau des paramètres de découpe\n" +"Saviez-vous que vous pouvez afficher tous les objets/pièces sur un tableau " +"et modifier les paramètres de chaque objet/pièce ?" + +#: resources/data/hints.ini: [hint:Split to Objects/Parts] +msgid "" +"Split to Objects/Parts\n" +"Did you know that you can split a big object into small ones for easy " +"colorizing or printing?" +msgstr "" +"Séparer en objets/parties\n" +"Saviez-vous que vous pouvez séparer un gros objet en petits objets pour les " +"colorier ou les imprimer facilement ?" + +#: resources/data/hints.ini: [hint:Subtract a Part] +msgid "" +"Subtract a Part\n" +"Did you know that you can subtract one mesh from another using the Negative " +"part modifier? That way you can, for example, create easily resizable holes " +"directly in Orca Slicer." +msgstr "" +"Soustraire une pièce\n" +"Saviez-vous que vous pouviez soustraire un maillage d’un autre à l’aide du " +"modificateur de partie négative ? De cette façon, vous pouvez, par exemple, " +"créer des trous facilement redimensionnables directement dans Orca Slicer." + +#: resources/data/hints.ini: [hint:STEP] +msgid "" +"STEP\n" +"Did you know that you can improve your print quality by slicing a STEP file " +"instead of an STL?\n" +"Orca Slicer supports slicing STEP files, providing smoother results than a " +"lower resolution STL. Give it a try!" +msgstr "" +"STEP\n" +"Saviez-vous que vous pouvez améliorer votre qualité d'impression en " +"découpant un fichier .step au lieu d'un .stl ?\n" +"Orca Slicer prend en charge le découpage des fichiers .step, offrant des " +"résultats plus fluides qu'un .stl de résolution inférieure. Essayez !" + +#: resources/data/hints.ini: [hint:Z seam location] +msgid "" +"Z seam location\n" +"Did you know that you can customize the location of the Z seam, and even " +"paint it on your print, to have it in a less visible location? This improves " +"the overall look of your model. Check it out!" +msgstr "" +"Emplacement de la couture Z\n" +"Saviez-vous que vous pouvez personnaliser l'emplacement de la couture Z, et " +"même la peindre manuelle sur votre impression pour le placer dans un endroit " +"moins visible ? Cela améliore l'aspect général de votre modèle. Jetez-y un " +"coup d'œil !" + +#: resources/data/hints.ini: [hint:Fine-tuning for flow rate] +msgid "" +"Fine-tuning for flow rate\n" +"Did you know that flow rate can be fine-tuned for even better-looking " +"prints? Depending on the material, you can improve the overall finish of the " +"printed model by doing some fine-tuning." +msgstr "" +"Réglage fin du débit\n" +"Saviez-vous que le débit peut être réglé avec précision pour obtenir des " +"impressions encore plus belles ? En fonction du matériau, vous pouvez " +"améliorer la finition générale du modèle imprimé en procédant à un réglage " +"fin." + +#: resources/data/hints.ini: [hint:Split your prints into plates] +msgid "" +"Split your prints into plates\n" +"Did you know that you can split a model that has a lot of parts into " +"individual plates ready to print? This will simplify the process of keeping " +"track of all the parts." +msgstr "" +"Divisez vos impressions en plateaux\n" +"Saviez-vous que vous pouvez diviser un modèle comportant de nombreuses " +"pièces en plateaux individuels prêts à être imprimés ? Cela simplifie le " +"processus de suivi de toutes les pièces." + +#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer +#: Height] +msgid "" +"Speed up your print with Adaptive Layer Height\n" +"Did you know that you can print a model even faster, by using the Adaptive " +"Layer Height option? Check it out!" +msgstr "" +"Accélérez votre impression grâce à la Hauteur de Couche Adaptative\n" +"Saviez-vous que vous pouvez imprimer un modèle encore plus rapidement en " +"utilisant l'option Adaptive Layer Height ? Jetez-y un coup d'œil !" + +#: resources/data/hints.ini: [hint:Support painting] +msgid "" +"Support painting\n" +"Did you know that you can paint the location of your supports? This feature " +"makes it easy to place the support material only on the sections of the " +"model that actually need it." +msgstr "" +"Peinture de support\n" +"Saviez-vous que vous pouvez peindre l'emplacement de vos supports ? Cette " +"caractéristique permet de placer facilement le matériau de support " +"uniquement sur les sections du modèle qui en ont réellement besoin." + +#: resources/data/hints.ini: [hint:Different types of supports] +msgid "" +"Different types of supports\n" +"Did you know that you can choose from multiple types of supports? Tree " +"supports work great for organic models, while saving filament and improving " +"print speed. Check them out!" +msgstr "" +"Différents types de supports\n" +"Saviez-vous que vous pouvez choisir parmi plusieurs types de supports ? Les " +"supports arborescents fonctionnent parfaitement pour les modèles organiques " +"tout en économisant du filament et en améliorant la vitesse d'impression. " +"Découvrez-les !" + +#: resources/data/hints.ini: [hint:Printing Silk Filament] +msgid "" +"Printing Silk Filament\n" +"Did you know that Silk filament needs special consideration to print it " +"successfully? Higher temperature and lower speed are always recommended for " +"the best results." +msgstr "" +"Impression de filament Soie\n" +"Saviez-vous que le filament soie nécessite une attention particulière pour " +"une impression réussie ? Une température plus élevée et une vitesse plus " +"faible sont toujours recommandées pour obtenir les meilleurs résultats." + +#: resources/data/hints.ini: [hint:Brim for better adhesion] +msgid "" +"Brim for better adhesion\n" +"Did you know that when printing models have a small contact interface with " +"the printing surface, it's recommended to use a brim?" +msgstr "" +"Bordure pour une meilleure adhésion\n" +"Saviez-vous que lorsque les modèles imprimés ont une faible interface de " +"contact avec la surface d'impression, il est recommandé d'utiliser une " +"bordure ?" + +#: resources/data/hints.ini: [hint:Set parameters for multiple objects] +msgid "" +"Set parameters for multiple objects\n" +"Did you know that you can set slicing parameters for all selected objects at " +"one time?" +msgstr "" +"Définir les paramètres de plusieurs objets\n" +"Saviez-vous que vous pouvez définir des paramètres de découpe pour tous les " +"objets sélectionnés en une seule fois ?" + +#: resources/data/hints.ini: [hint:Stack objects] +msgid "" +"Stack objects\n" +"Did you know that you can stack objects as a whole one?" +msgstr "" +"Empiler des objets\n" +"Saviez-vous que vous pouvez empiler des objets pour n'en former qu'un?" + +#: resources/data/hints.ini: [hint:Flush into support/objects/infill] +msgid "" +"Flush into support/objects/infill\n" +"Did you know that you can save the wasted filament by flushing them into " +"support/objects/infill during filament change?" +msgstr "" +"Purger dans les supports/les objets/le remplissage\n" +"Saviez-vous que vous pouvez réduire le filament gaspillé en le purgeant dans " +"les supports/les objets/le remplissage lors des changements de filament ?" + +#: resources/data/hints.ini: [hint:Improve strength] +msgid "" +"Improve strength\n" +"Did you know that you can use more wall loops and higher sparse infill " +"density to improve the strength of the model?" +msgstr "" +"Améliorer la solidité\n" +"Saviez-vous que vous pouvez définir un plus grand nombre de périmètre et une " +"densité de remplissage plus élevée pour améliorer la résistance du modèle ?" + +#: resources/data/hints.ini: [hint:When need to print with the printer door +#: opened] +msgid "" +"When need to print with the printer door opened\n" +"Did you know that opening the printer door can reduce the probability of " +"extruder/hotend clogging when printing lower temperature filament with a " +"higher enclosure temperature. More info about this in the Wiki." +msgstr "" +"Quand il faut imprimer avec la porte de l’imprimante ouverte\n" +"Saviez-vous que l’ouverture de la porte de l’imprimante peut réduire la " +"probabilité de blocage de l’extrudeuse/du réchauffeur lors de l’impression " +"de filament à basse température avec une température de boîtier plus élevée. " +"Plus d’informations à ce sujet dans le Wiki." + +#: resources/data/hints.ini: [hint:Avoid warping] +msgid "" +"Avoid warping\n" +"Did you know that when printing materials that are prone to warping such as " +"ABS, appropriately increasing the heatbed temperature can reduce the " +"probability of warping." +msgstr "" +"Éviter la déformation\n" +"Saviez-vous que lors de l’impression de matériaux susceptibles de se " +"déformer, tels que l’ABS, une augmentation appropriée de la température du " +"plateau chauffant peut réduire la probabilité de déformation." + +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer est basé sur Bambu Studio de Bambulab qui a été développé sur " +#~ "la base de PrusaSlicer de Prusa Research, qui est lui même développé sur " +#~ "la base de Slic3r par Alessandro Ranelucci et la communauté RepRap" + +#~ msgid "Export &Configs" +#~ msgstr "Exportation & Configs" + +#~ msgid "" +#~ "Over 4 systems/handy are using remote access, you can close some and try " +#~ "again." +#~ msgstr "" +#~ "Plus de 4 orca/handy utilisent l’accès à distance, vous pouvez en fermer " +#~ "certains et réessayer." + +#, c-format, boost-format +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill. Set this " +#~ "value to ~10-15%% to minimize potential over extrusion and accumulation " +#~ "of material resulting in rough top surfaces." +#~ msgstr "" +#~ "La zone de remplissage est légèrement élargie pour chevaucher la paroi " +#~ "afin d’améliorer l’adhérence. La valeur du pourcentage est relative à la " +#~ "largeur de la ligne de remplissage clairsemée. Réglez cette valeur à " +#~ "~10-15%% pour minimiser le risque de sur-extrusion et d’accumulation de " +#~ "matériau, ce qui rendrait les surfaces supérieures rugueuses." + +#~ msgid "" +#~ "Top solid infill area is enlarged slightly to overlap with wall for " +#~ "better bonding and to minimize the appearance of pinholes where the top " +#~ "infill meets the walls. A value of 25-30%% is a good starting point, " +#~ "minimising the appearance of pinholes. The percentage value is relative " +#~ "to line width of sparse infill" +#~ msgstr "" +#~ "La zone de remplissage solide supérieure est légèrement élargie pour " +#~ "chevaucher la paroi afin d’améliorer l’adhérence et de minimiser " +#~ "l’apparition de trous d’épingle à l’endroit où le remplissage supérieur " +#~ "rencontre les parois. Une valeur de 25-30%% est un bon point de départ, " +#~ "minimisant l’apparition de trous d’épingle. La valeur en pourcentage est " +#~ "relative à la largeur de ligne d’un remplissage peu dense." + +#~ msgid "Export Configs" +#~ msgstr "Exporter les configurations" + #~ msgid "Infill direction" #~ msgstr "Sens de remplissage" @@ -16522,371 +16983,6 @@ msgstr "L’utilisateur a annulé." #~ "afin d'améliorer l'adhérence. La valeur en pourcentage est relative à la " #~ "largeur de ligne de remplissage." -#~ msgid "" -#~ "Precise wall\n" -#~ "Did you know that turning on precise wall can improve precision and layer " -#~ "consistency?" -#~ msgstr "" -#~ "Paroi précise\n" -#~ "Saviez-vous que l’activation de la paroi précise peut améliorer la " -#~ "précision et l’homogénéité des couches ?" - -#~ msgid "" -#~ "Sandwich mode\n" -#~ "Did you know that you can use sandwich mode (inner-outer-inner) to " -#~ "improve precision and layer consistency if your model doesn't have very " -#~ "steep overhangs?" -#~ msgstr "" -#~ "Mode sandwich\n" -#~ "Saviez-vous que vous pouvez utiliser le mode sandwich (intérieur-" -#~ "extérieur-intérieur) pour améliorer la précision et la cohérence des " -#~ "couches si votre modèle n’a pas de porte-à-faux très prononcés ?" - -#~ msgid "" -#~ "Chamber temperature\n" -#~ "Did you know that OrcaSlicer supports chamber temperature?" -#~ msgstr "" -#~ "Température de la chambre\n" -#~ "Saviez-vous qu’OrcaSlicer prend en charge la température de la chambre ?" - -#~ msgid "" -#~ "Calibration\n" -#~ "Did you know that calibrating your printer can do wonders? Check out our " -#~ "beloved calibration solution in OrcaSlicer." -#~ msgstr "" -#~ "Calibrage\n" -#~ "Saviez-vous que le calibrage de votre imprimante peut faire des " -#~ "merveilles ? Découvrez notre solution de calibrage bien-aimée dans " -#~ "OrcaSlicer." - -#~ msgid "" -#~ "Auxiliary fan\n" -#~ "Did you know that OrcaSlicer supports Auxiliary part cooling fan?" -#~ msgstr "" -#~ "Ventilateur auxiliaire\n" -#~ "Saviez-vous qu’OrcaSlicer prend en charge le ventilateur auxiliaire de " -#~ "refroidissement des pièces ?" - -#~ msgid "" -#~ "Air filtration/Exhaust Fan\n" -#~ "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?" -#~ msgstr "" -#~ "Filtration de l’air/ventilateur d’extraction\n" -#~ "Saviez-vous qu’OrcaSlicer peut prendre en charge la filtration de l’air/" -#~ "le ventilateur d’extraction ?" - -#~ msgid "" -#~ "G-code window\n" -#~ "You can turn on/off the G-code window by pressing the C key." -#~ msgstr "" -#~ "Fenêtre de G-code\n" -#~ "Vous pouvez activer/désactiver la fenêtre G-code en appuyant sur la " -#~ "touche C." - -#~ msgid "" -#~ "Switch workspaces\n" -#~ "You can switch between Prepare and Preview workspaces by " -#~ "pressing the Tab key." -#~ msgstr "" -#~ "Changer les espaces de travail\n" -#~ "Vous pouvez alterner entre l’espace de travail Préparer et " -#~ "Aperçu en appuyant sur la touche Tab." - -#~ msgid "" -#~ "How to use keyboard shortcuts\n" -#~ "Did you know that Orca Slicer offers a wide range of keyboard shortcuts " -#~ "and 3D scene operations." -#~ msgstr "" -#~ "Comment utiliser les raccourcis clavier\n" -#~ "Saviez-vous qu’Orca Slicer offre une large gamme de raccourcis clavier et " -#~ "d’opérations sur les scènes 3D." - -#~ msgid "" -#~ "Reverse on odd\n" -#~ "Did you know that Reverse on odd feature can significantly improve " -#~ "the surface quality of your overhangs?" -#~ msgstr "" -#~ "Parois inversées sur couches impaires\n" -#~ "Saviez-vous que la fonction Parois inversées sur couches impaires " -#~ "peut améliorer de manière significative la qualité de la surface de vos " -#~ "surplombs ?" - -#~ msgid "" -#~ "Cut Tool\n" -#~ "Did you know that you can cut a model at any angle and position with the " -#~ "cutting tool?" -#~ msgstr "" -#~ "Outil de découpe\n" -#~ "Saviez-vous que vous pouvez découper un modèle à n'importe quel angle et " -#~ "dans n'importe quelle position avec l'outil de découpe ?" - -#~ msgid "" -#~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " -#~ "slicing problems on the Windows system?" -#~ msgstr "" -#~ "Réparer un modèle\n" -#~ "Saviez-vous que vous pouvez réparer un modèle 3D corrompu pour éviter de " -#~ "nombreux problèmes de découpage sur le système Windows ?" - -#~ msgid "" -#~ "Timelapse\n" -#~ "Did you know that you can generate a timelapse video during each print?" -#~ msgstr "" -#~ "Timelapse\n" -#~ "Saviez-vous que vous pouvez générer une vidéo en timelapse à chaque " -#~ "impression ?" - -#~ msgid "" -#~ "Auto-Arrange\n" -#~ "Did you know that you can auto-arrange all objects in your project?" -#~ msgstr "" -#~ "Agencement Automatique\n" -#~ "Saviez-vous que vous pouvez agencement automatiquement tous les objets de " -#~ "votre projet ?" - -#~ msgid "" -#~ "Auto-Orient\n" -#~ "Did you know that you can rotate objects to an optimal orientation for " -#~ "printing by a simple click?" -#~ msgstr "" -#~ "Orientation Automatique\n" -#~ "Saviez-vous que vous pouvez faire pivoter des objets dans une orientation " -#~ "optimale pour l'impression d'un simple clic ?" - -#~ msgid "" -#~ "Lay on Face\n" -#~ "Did you know that you can quickly orient a model so that one of its faces " -#~ "sits on the print bed? Select the \"Place on face\" function or press the " -#~ "F key." -#~ msgstr "" -#~ "Poser sur une face\n" -#~ "Saviez-vous qu'il est possible d'orienter rapidement un modèle de manière " -#~ "à ce que l'une de ses faces repose sur le plateau d'impression ? " -#~ "Sélectionnez la fonction « Placer sur la face » ou appuyez sur la touche " -#~ "F." - -#~ msgid "" -#~ "Object List\n" -#~ "Did you know that you can view all objects/parts in a list and change " -#~ "settings for each object/part?" -#~ msgstr "" -#~ "Liste d'objets\n" -#~ "Saviez-vous que vous pouvez afficher tous les objets/pièces dans une " -#~ "liste et modifier les paramètres de chaque objet/pièce ?" - -#~ msgid "" -#~ "Search Functionality\n" -#~ "Did you know that you use the Search tool to quickly find a specific Orca " -#~ "Slicer setting?" -#~ msgstr "" -#~ "Fonctionnalité de recherche\n" -#~ "Saviez-vous que vous pouvez utiliser l’outil de recherche pour trouver " -#~ "rapidement un paramètre spécifique de l’Orca Slicer ?" - -#~ msgid "" -#~ "Simplify Model\n" -#~ "Did you know that you can reduce the number of triangles in a mesh using " -#~ "the Simplify mesh feature? Right-click the model and select Simplify " -#~ "model." -#~ msgstr "" -#~ "Simplifier le modèle\n" -#~ "Saviez-vous que vous pouviez réduire le nombre de triangles dans un " -#~ "maillage à l’aide de la fonction Simplifier le maillage ? Cliquez avec le " -#~ "bouton droit de la souris sur le modèle et sélectionnez Simplifier le " -#~ "modèle." - -#~ msgid "" -#~ "Slicing Parameter Table\n" -#~ "Did you know that you can view all objects/parts on a table and change " -#~ "settings for each object/part?" -#~ msgstr "" -#~ "Tableau des paramètres de découpe\n" -#~ "Saviez-vous que vous pouvez afficher tous les objets/pièces sur un " -#~ "tableau et modifier les paramètres de chaque objet/pièce ?" - -#~ msgid "" -#~ "Split to Objects/Parts\n" -#~ "Did you know that you can split a big object into small ones for easy " -#~ "colorizing or printing?" -#~ msgstr "" -#~ "Séparer en objets/parties\n" -#~ "Saviez-vous que vous pouvez séparer un gros objet en petits objets pour " -#~ "les colorier ou les imprimer facilement ?" - -#~ msgid "" -#~ "Subtract a Part\n" -#~ "Did you know that you can subtract one mesh from another using the " -#~ "Negative part modifier? That way you can, for example, create easily " -#~ "resizable holes directly in Orca Slicer." -#~ msgstr "" -#~ "Soustraire une pièce\n" -#~ "Saviez-vous que vous pouviez soustraire un maillage d’un autre à l’aide " -#~ "du modificateur de partie négative ? De cette façon, vous pouvez, par " -#~ "exemple, créer des trous facilement redimensionnables directement dans " -#~ "Orca Slicer." - -#~ msgid "" -#~ "STEP\n" -#~ "Did you know that you can improve your print quality by slicing a STEP " -#~ "file instead of an STL?\n" -#~ "Orca Slicer supports slicing STEP files, providing smoother results than " -#~ "a lower resolution STL. Give it a try!" -#~ msgstr "" -#~ "STEP\n" -#~ "Saviez-vous que vous pouvez améliorer votre qualité d'impression en " -#~ "découpant un fichier .step au lieu d'un .stl ?\n" -#~ "Orca Slicer prend en charge le découpage des fichiers .step, offrant des " -#~ "résultats plus fluides qu'un .stl de résolution inférieure. Essayez !" - -#~ msgid "" -#~ "Z seam location\n" -#~ "Did you know that you can customize the location of the Z seam, and even " -#~ "paint it on your print, to have it in a less visible location? This " -#~ "improves the overall look of your model. Check it out!" -#~ msgstr "" -#~ "Emplacement de la couture Z\n" -#~ "Saviez-vous que vous pouvez personnaliser l'emplacement de la couture Z, " -#~ "et même la peindre manuelle sur votre impression pour le placer dans un " -#~ "endroit moins visible ? Cela améliore l'aspect général de votre modèle. " -#~ "Jetez-y un coup d'œil !" - -#~ msgid "" -#~ "Fine-tuning for flow rate\n" -#~ "Did you know that flow rate can be fine-tuned for even better-looking " -#~ "prints? Depending on the material, you can improve the overall finish of " -#~ "the printed model by doing some fine-tuning." -#~ msgstr "" -#~ "Réglage fin du débit\n" -#~ "Saviez-vous que le débit peut être réglé avec précision pour obtenir des " -#~ "impressions encore plus belles ? En fonction du matériau, vous pouvez " -#~ "améliorer la finition générale du modèle imprimé en procédant à un " -#~ "réglage fin." - -#~ msgid "" -#~ "Split your prints into plates\n" -#~ "Did you know that you can split a model that has a lot of parts into " -#~ "individual plates ready to print? This will simplify the process of " -#~ "keeping track of all the parts." -#~ msgstr "" -#~ "Divisez vos impressions en plateaux\n" -#~ "Saviez-vous que vous pouvez diviser un modèle comportant de nombreuses " -#~ "pièces en plateaux individuels prêts à être imprimés ? Cela simplifie le " -#~ "processus de suivi de toutes les pièces." - -#~ msgid "" -#~ "Speed up your print with Adaptive Layer Height\n" -#~ "Did you know that you can print a model even faster, by using the " -#~ "Adaptive Layer Height option? Check it out!" -#~ msgstr "" -#~ "Accélérez votre impression grâce à la Hauteur de Couche Adaptative\n" -#~ "Saviez-vous que vous pouvez imprimer un modèle encore plus rapidement en " -#~ "utilisant l'option Adaptive Layer Height ? Jetez-y un coup d'œil !" - -#~ msgid "" -#~ "Support painting\n" -#~ "Did you know that you can paint the location of your supports? This " -#~ "feature makes it easy to place the support material only on the sections " -#~ "of the model that actually need it." -#~ msgstr "" -#~ "Peinture de support\n" -#~ "Saviez-vous que vous pouvez peindre l'emplacement de vos supports ? Cette " -#~ "caractéristique permet de placer facilement le matériau de support " -#~ "uniquement sur les sections du modèle qui en ont réellement besoin." - -#~ msgid "" -#~ "Different types of supports\n" -#~ "Did you know that you can choose from multiple types of supports? Tree " -#~ "supports work great for organic models, while saving filament and " -#~ "improving print speed. Check them out!" -#~ msgstr "" -#~ "Différents types de supports\n" -#~ "Saviez-vous que vous pouvez choisir parmi plusieurs types de supports ? " -#~ "Les supports arborescents fonctionnent parfaitement pour les modèles " -#~ "organiques tout en économisant du filament et en améliorant la vitesse " -#~ "d'impression. Découvrez-les !" - -#~ msgid "" -#~ "Printing Silk Filament\n" -#~ "Did you know that Silk filament needs special consideration to print it " -#~ "successfully? Higher temperature and lower speed are always recommended " -#~ "for the best results." -#~ msgstr "" -#~ "Impression de filament Soie\n" -#~ "Saviez-vous que le filament soie nécessite une attention particulière " -#~ "pour une impression réussie ? Une température plus élevée et une vitesse " -#~ "plus faible sont toujours recommandées pour obtenir les meilleurs " -#~ "résultats." - -#~ msgid "" -#~ "Brim for better adhesion\n" -#~ "Did you know that when printing models have a small contact interface " -#~ "with the printing surface, it's recommended to use a brim?" -#~ msgstr "" -#~ "Bordure pour une meilleure adhésion\n" -#~ "Saviez-vous que lorsque les modèles imprimés ont une faible interface de " -#~ "contact avec la surface d'impression, il est recommandé d'utiliser une " -#~ "bordure ?" - -#~ msgid "" -#~ "Set parameters for multiple objects\n" -#~ "Did you know that you can set slicing parameters for all selected objects " -#~ "at one time?" -#~ msgstr "" -#~ "Définir les paramètres de plusieurs objets\n" -#~ "Saviez-vous que vous pouvez définir des paramètres de découpe pour tous " -#~ "les objets sélectionnés en une seule fois ?" - -#~ msgid "" -#~ "Stack objects\n" -#~ "Did you know that you can stack objects as a whole one?" -#~ msgstr "" -#~ "Empiler des objets\n" -#~ "Saviez-vous que vous pouvez empiler des objets pour n'en former qu'un?" - -#~ msgid "" -#~ "Flush into support/objects/infill\n" -#~ "Did you know that you can save the wasted filament by flushing them into " -#~ "support/objects/infill during filament change?" -#~ msgstr "" -#~ "Purger dans les supports/les objets/le remplissage\n" -#~ "Saviez-vous que vous pouvez réduire le filament gaspillé en le purgeant " -#~ "dans les supports/les objets/le remplissage lors des changements de " -#~ "filament ?" - -#~ msgid "" -#~ "Improve strength\n" -#~ "Did you know that you can use more wall loops and higher sparse infill " -#~ "density to improve the strength of the model?" -#~ msgstr "" -#~ "Améliorer la solidité\n" -#~ "Saviez-vous que vous pouvez définir un plus grand nombre de périmètre et " -#~ "une densité de remplissage plus élevée pour améliorer la résistance du " -#~ "modèle ?" - -#~ msgid "" -#~ "When need to print with the printer door opened\n" -#~ "Did you know that opening the printer door can reduce the probability of " -#~ "extruder/hotend clogging when printing lower temperature filament with a " -#~ "higher enclosure temperature. More info about this in the Wiki." -#~ msgstr "" -#~ "Quand il faut imprimer avec la porte de l’imprimante ouverte\n" -#~ "Saviez-vous que l’ouverture de la porte de l’imprimante peut réduire la " -#~ "probabilité de blocage de l’extrudeuse/du réchauffeur lors de " -#~ "l’impression de filament à basse température avec une température de " -#~ "boîtier plus élevée. Plus d’informations à ce sujet dans le Wiki." - -#~ msgid "" -#~ "Avoid warping\n" -#~ "Did you know that when printing materials that are prone to warping such " -#~ "as ABS, appropriately increasing the heatbed temperature can reduce the " -#~ "probability of warping." -#~ msgstr "" -#~ "Éviter la déformation\n" -#~ "Saviez-vous que lors de l’impression de matériaux susceptibles de se " -#~ "déformer, tels que l’ABS, une augmentation appropriée de la température " -#~ "du plateau chauffant peut réduire la probabilité de déformation." - #~ msgid "Actions For Unsaved Changes" #~ msgstr "Actions pour les changements non enregistrés" @@ -16969,13 +17065,6 @@ msgstr "L’utilisateur a annulé." #~ msgid "HMS" #~ msgstr "HMS" -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "" -#~ "L’importation vers OrcaSlicer a échoué. Veuillez télécharger le fichier " -#~ "et l’importer manuellement." - #~ msgid "- ℃" #~ msgstr "- ℃" @@ -17216,8 +17305,8 @@ msgstr "L’utilisateur a annulé." #~ "thickness (top+bottom solid layers)" #~ msgstr "" #~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour " -#~ "garantir l'épaisseur verticale de la coque (couches solides " -#~ "supérieure+inférieure)." +#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure" +#~ "+inférieure)." #~ msgid "Further reduce solid infill on walls (beta)" #~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)" diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index 2d4d4cd89b..4ccbb727cb 100644 --- a/localization/i18n/hu/OrcaSlicer_hu.po +++ b/localization/i18n/hu/OrcaSlicer_hu.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1845,6 +1845,9 @@ msgstr "Primitív hozzáadása" msgid "Add Handy models" msgstr "" +msgid "Add Models" +msgstr "Modellek hozzáadása" + msgid "Show Labels" msgstr "Címkék megjelenítése" @@ -2343,8 +2346,8 @@ msgstr "Nem sikerült csatlakozni a nyomtatóhoz" msgid "Connection to printer failed" msgstr "Connection to printer failed" -msgid "Please check the network connection of the printer and Studio." -msgstr "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." +msgstr "Please check the network connection of the printer and Orca." msgid "Connecting..." msgstr "Csatlakozás..." @@ -2698,10 +2701,7 @@ msgstr "A Orca Slicer a következő licencet használja " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, version 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" msgid "Libraries" @@ -3188,6 +3188,210 @@ msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "" "Feltöltés ütemezése ide: „%1%“. Lásd: Ablak -> Nyomtató feltöltési várólista" +msgid "Device" +msgstr "Nyomtató" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Offline" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Nézet" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Hozzáadás" + +msgid "Idle" +msgstr "Tétlen" + +msgid "Printing" +msgstr "Nyomtatás" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Incompatible" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Előkészítés" + +msgid "Slicing" +msgstr "Szeletelés" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Folytatás" + +msgid "Stop" +msgstr "Állj" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Betöltés…" + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Nyomtatási feladat előkészítése" + +msgid "Abnormal print file data. Please slice again" +msgstr "Rendellenes nyomtatási fájladatok. Kérjük, szeleteld újra" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Küldés" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "A név érvénytelen;" + +msgid "illegal characters:" +msgstr "tiltott karakterek:" + +msgid "illegal suffix:" +msgstr "tiltott utótag:" + +msgid "The name is not allowed to be empty." +msgstr "A név mező nem lehet üres." + +msgid "The name is not allowed to start with space character." +msgstr "A név nem kezdődhet szóközzel." + +msgid "The name is not allowed to end with space character." +msgstr "A név nem végződhet szóközzel." + +msgid "The name length exceeds the limit." +msgstr "The name length exceeds the limit." + msgid "Origin" msgstr "Origó" @@ -3681,9 +3885,6 @@ msgstr "Nyomtató beállítások" msgid "parameter name" msgstr "paraméter neve" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s nem lehet százalék" @@ -4001,9 +4202,6 @@ msgstr "Extrudáláskalibráció környékének elkerülése" msgid "Align to Y axis" msgstr "" -msgid "Add" -msgstr "Hozzáadás" - msgid "Add plate" msgstr "Tálca hozzáadása" @@ -4189,15 +4387,9 @@ msgstr "Alkalmazás bezárása egyes beállítások módosítása közben." msgid "Logging" msgstr "Naplózás" -msgid "Prepare" -msgstr "Előkészítés" - msgid "Preview" msgstr "Előnézet" -msgid "Device" -msgstr "Nyomtató" - msgid "Multi-device" msgstr "" @@ -4225,9 +4417,6 @@ msgstr "Összes szeletelése" msgid "Export G-code file" msgstr "G-kód fájl exportálása" -msgid "Send" -msgstr "Küldés" - msgid "Export plate sliced file" msgstr "Szeletelt tálca exportálása" @@ -4240,9 +4429,6 @@ msgstr "Összes nyomtatása" msgid "Send all" msgstr "Összes elküldése" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Gyorsbillentyűk" @@ -4384,8 +4570,8 @@ msgstr "G-kód exportálása" msgid "Export current plate as G-code" msgstr "Jelenlegi tálca exportálása G-kódként" -msgid "Export &Configs" -msgstr "Export &Configs" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Aktuális konfiguráció exportálása fájlokba" @@ -4486,9 +4672,6 @@ msgstr "Show object overhang highlight in 3D scene" msgid "Preferences" msgstr "Beállítások" -msgid "View" -msgstr "Nézet" - msgid "Help" msgstr "Segítség" @@ -4555,10 +4738,10 @@ msgstr "Szerszámút exportálása OBJ-ként" msgid "Export toolpaths as OBJ" msgstr "Szerszámút exportálása OBJ-ként" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Studio megnyitása" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Studio megnyitása" msgid "&Quit" @@ -4732,9 +4915,6 @@ msgstr "Információ" msgid "Playing..." msgstr "Lejátszás..." -msgid "Loading..." -msgstr "Betöltés…" - msgid "Year" msgstr "Year" @@ -4888,11 +5068,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -4951,12 +5126,6 @@ msgstr "" msgid "Printing Progress" msgstr "Nyomtatás folyamata" -msgid "Resume" -msgstr "Folytatás" - -msgid "Stop" -msgstr "Állj" - msgid "0" msgstr "0" @@ -5693,6 +5862,9 @@ msgid "The name may show garbage characters!" msgstr "" "A nem támogatott szövegkódolás miatt helytelen karakterek jelenhetnek meg!" +msgid "Remember my choice." +msgstr "Remember my choice." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "Nem sikerült betölteni \"%1%\" fájlt. Érvénytelen konfiguráció." @@ -5816,9 +5988,6 @@ msgstr "" msgid "Error during reload" msgstr "" -msgid "Slicing" -msgstr "Szeletelés" - msgid "There are warnings after slicing models:" msgstr "A modellek szeletelése a következő figyelmeztetéseket generálta:" @@ -5894,7 +6063,7 @@ msgid "Project downloaded %d%%" msgstr "Projekt letöltve %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" @@ -5934,9 +6103,6 @@ msgstr "A G-code fájlokat nem lehet a modellekkel együtt betölteni!" msgid "Can not add models when in preview mode!" msgstr "Előnézeti módban nem lehet modelleket hozzáadni!" -msgid "Add Models" -msgstr "Modellek hozzáadása" - msgid "All objects will be removed, continue?" msgstr "Minden tárgyat eltávolítunk, folytatod?" @@ -5945,9 +6111,6 @@ msgstr "" "Az aktuális projektben el nem mentett módosítások vannak, mentsük el a " "folytatás előtt?" -msgid "Remember my choice." -msgstr "Remember my choice." - msgid "Number of copies:" msgstr "Másolatok száma:" @@ -6147,6 +6310,11 @@ msgstr "Régió" msgid "Stealth Mode" msgstr "" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "" @@ -6253,7 +6421,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6479,9 +6647,6 @@ msgstr "" msgid "Create printer" msgstr "" -msgid "Incompatible" -msgstr "Incompatible" - msgid "The selected preset is null!" msgstr "" @@ -6576,15 +6741,6 @@ msgstr "Felhasználói beállítás" msgid "Preset Inside Project" msgstr "Projekt a beállításon belül" -msgid "Name is invalid;" -msgstr "A név érvénytelen;" - -msgid "illegal characters:" -msgstr "tiltott karakterek:" - -msgid "illegal suffix:" -msgstr "tiltott utótag:" - msgid "Name is unavailable." msgstr "A név nem elérhető." @@ -6602,15 +6758,6 @@ msgstr "A(z) \"%1%\" már létezik és nem kompatibilis a jelenlegi nyomtatóval msgid "Please note that saving action will replace this preset" msgstr "Figyelem, a mentési művelet lecseréli ezt a beállítást" -msgid "The name is not allowed to be empty." -msgstr "A név mező nem lehet üres." - -msgid "The name is not allowed to start with space character." -msgstr "A név nem kezdődhet szóközzel." - -msgid "The name is not allowed to end with space character." -msgstr "A név nem végződhet szóközzel." - msgid "The name cannot be the same as a preset alias name." msgstr "A név nem lehet azonos egy beállítás alias névvel." @@ -6668,9 +6815,6 @@ msgstr "Nem találod az eszközöket?" msgid "Log out successful." msgstr "Sikeres kijelentkezés." -msgid "Offline" -msgstr "Offline" - msgid "Busy" msgstr "Elfoglalt" @@ -6881,15 +7025,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" -msgid "Preparing print job" -msgstr "Nyomtatási feladat előkészítése" - -msgid "Abnormal print file data. Please slice again" -msgstr "Rendellenes nyomtatási fájladatok. Kérjük, szeleteld újra" - -msgid "The name length exceeds the limit." -msgstr "The name length exceeds the limit." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7259,6 +7394,9 @@ msgstr "Filament a támaszhoz" msgid "Tree supports" msgstr "" +msgid "Skirt" +msgstr "" + msgid "Prime tower" msgstr "Törlő torony" @@ -8146,6 +8284,12 @@ msgstr "Csúszka 5x gyorsabb mozgatása" msgid "Shift+Mouse wheel" msgstr "Shift+Egérgörgő" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Verzióinformáció" @@ -8268,12 +8412,6 @@ msgstr "Verzió:" msgid "Update firmware" msgstr "Firmware frissítése" -msgid "Printing" -msgstr "Nyomtatás" - -msgid "Idle" -msgstr "Tétlen" - msgid "Beta version" msgstr "" @@ -8308,7 +8446,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "A firmware verziója rendellenes. A nyomtatás előtt javításra és frissítésre " "van szükség. Szeretnél frissíteni most? A frissítés később is elvégezhető a " @@ -8452,9 +8590,6 @@ msgstr "" msgid "Gap infill" msgstr "Réskitöltés" -msgid "Skirt" -msgstr "" - msgid "Support interface" msgstr "Támasz érintkező felület" @@ -10173,8 +10308,8 @@ msgstr "" msgid "(Undefined)" msgstr "(Undefined)" -msgid "Infill direction" -msgstr "Kitöltés iránya" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10183,6 +10318,20 @@ msgstr "" "A ritkás kitöltési minta szöge, amely a vonal kezdő- vagy fő irányát " "szabályozza" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Kitöltés sűrűsége" @@ -10486,11 +10635,15 @@ msgid "Arc fitting" msgstr "Íves illesztés" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Engedélyezd ezt az opciót, hogy olyan G-kódot kapj, amiben G2 és G3 mozgások " -"vannak" msgid "Add line number" msgstr "Vonalszám hozzáadása" @@ -10690,13 +10843,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Kitöltés/fal átfedés" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"Ez lehetővé teszi, hogy a kitöltési terület kissé nagyobb legyen, nagyobb " -"átfedést biztosítva a falakkal a jobb kapcsolódás érdekében. A százalékos " -"érték a ritkás kitöltés vonalszélességéhez viszonyított érték." msgid "Speed of internal sparse infill" msgstr "A belső ritkás kitöltés sebessége" @@ -11606,6 +11771,23 @@ msgstr "Skirt height" msgid "How many layers of skirt. Usually only one layer" msgstr "Number of skirt layers: usually only one" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Szoknya hurkok száma" @@ -11624,6 +11806,17 @@ msgstr "" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "" +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -12317,6 +12510,19 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "" @@ -14027,7 +14233,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -14036,9 +14242,6 @@ msgstr "" msgid "Printer Setting" msgstr "" -msgid "Export Configs" -msgstr "" - msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -14923,6 +15126,27 @@ msgid "" "probability of warping." msgstr "" +#~ msgid "Export &Configs" +#~ msgstr "Export &Configs" + +#~ msgid "Infill direction" +#~ msgstr "Kitöltés iránya" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Engedélyezd ezt az opciót, hogy olyan G-kódot kapj, amiben G2 és G3 " +#~ "mozgások vannak" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "Ez lehetővé teszi, hogy a kitöltési terület kissé nagyobb legyen, nagyobb " +#~ "átfedést biztosítva a falakkal a jobb kapcsolódás érdekében. A százalékos " +#~ "érték a ritkás kitöltés vonalszélességéhez viszonyított érték." + #~ msgid "Unload Filament" #~ msgstr "Filament kitöltése" diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index 55c5d23e32..65e688c29d 100644 --- a/localization/i18n/it/OrcaSlicer_it.po +++ b/localization/i18n/it/OrcaSlicer_it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -1911,6 +1911,9 @@ msgstr "Aggiungi primitiva" msgid "Add Handy models" msgstr "Aggiungi modelli Handy" +msgid "Add Models" +msgstr "Aggiungi modelli" + msgid "Show Labels" msgstr "Mostra Etichette" @@ -2413,7 +2416,7 @@ msgstr "Impossibile connettersi alla stampante" msgid "Connection to printer failed" msgstr "Connessione stampante fallita" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "Controlla la connessione di rete della stampante e di Studio." msgid "Connecting..." @@ -2772,14 +2775,8 @@ msgstr "Orca Slicer è concesso in licenza con " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, versione 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer è basato su BambuStudio di Bambulab, che è di PrusaSlicer di " -"Prusa Research. PrusaSlicer è di Slic3r di Alessandro Ranellucci e della " -"comunità RepRap" msgid "Libraries" msgstr "Librerie" @@ -3279,6 +3276,210 @@ msgstr "" "Programmazione del caricamento su `%1%`. Vedere finestra -> Coda di " "caricamento Host di Stampa" +msgid "Device" +msgstr "Dispositivo" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Offline" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Vista" + +msgid "N/A" +msgstr "N/D" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Aggiungi" + +msgid "Idle" +msgstr "Inattivo" + +msgid "Printing" +msgstr "Stampa" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Non compatibile" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Prepara" + +msgid "Slicing" +msgstr "Slicing" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Continua" + +msgid "Stop" +msgstr "Ferma" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Caricamento…" + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Preparazione lavoro di stampa" + +msgid "Abnormal print file data. Please slice again" +msgstr "Dati file di stampa anormali. Eseguire nuovamente l'elaborazione" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Invia" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "Nome non valido;" + +msgid "illegal characters:" +msgstr "Caratteri illegali:" + +msgid "illegal suffix:" +msgstr "Suffisso illegale:" + +msgid "The name is not allowed to be empty." +msgstr "Il campo nome non può essere vuoto." + +msgid "The name is not allowed to start with space character." +msgstr "Il nome non può iniziare con uno spazio." + +msgid "The name is not allowed to end with space character." +msgstr "Il nome non può terminare con uno spazio." + +msgid "The name length exceeds the limit." +msgstr "La lunghezza del nome supera il limite." + msgid "Origin" msgstr "Origine" @@ -3803,9 +4004,6 @@ msgstr "Impostazioni stampante" msgid "parameter name" msgstr "nome parametro" -msgid "N/A" -msgstr "N/D" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s non può essere una percentuale" @@ -4123,9 +4321,6 @@ msgstr "Evitare la regione di calibrazione dell'estrusione" msgid "Align to Y axis" msgstr "Allinea all'asse Y" -msgid "Add" -msgstr "Aggiungi" - msgid "Add plate" msgstr "Aggiungi piatto" @@ -4313,15 +4508,9 @@ msgstr "Chiusura dell'applicazione durante la modifica di alcuni preset." msgid "Logging" msgstr "Accesso" -msgid "Prepare" -msgstr "Prepara" - msgid "Preview" msgstr "Anteprima" -msgid "Device" -msgstr "Dispositivo" - msgid "Multi-device" msgstr "" @@ -4349,9 +4538,6 @@ msgstr "Slice tutto" msgid "Export G-code file" msgstr "Esporta file G-code" -msgid "Send" -msgstr "Invia" - msgid "Export plate sliced file" msgstr "Esporta il file del piatto elaborato" @@ -4364,9 +4550,6 @@ msgstr "Stampa tutto" msgid "Send all" msgstr "Invia tutto" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Scorciatoie Tastiera" @@ -4508,8 +4691,8 @@ msgstr "Esporta G-code" msgid "Export current plate as G-code" msgstr "Esporta piatto corrente come G-code" -msgid "Export &Configs" -msgstr "Esporta &Configurazioni" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Esporta la configurazione corrente in file" @@ -4610,9 +4793,6 @@ msgstr "Mostra la sporgenza dell'oggetto evidenziata nella scena 3D" msgid "Preferences" msgstr "Preferenze" -msgid "View" -msgstr "Vista" - msgid "Help" msgstr "Aiuto" @@ -4679,10 +4859,10 @@ msgstr "Esporta percorso strumen&to come OBJ" msgid "Export toolpaths as OBJ" msgstr "Esporta percorso strumento come OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Aprire &Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Apri Studio" msgid "&Quit" @@ -4867,9 +5047,6 @@ msgstr "Informazione" msgid "Playing..." msgstr "Riproduzione..." -msgid "Loading..." -msgstr "Caricamento…" - msgid "Year" msgstr "Anno" @@ -5028,11 +5205,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -5091,12 +5263,6 @@ msgstr "Inverti asse di rollio" msgid "Printing Progress" msgstr "Avanzamento della stampa" -msgid "Resume" -msgstr "Continua" - -msgid "Stop" -msgstr "Ferma" - msgid "0" msgstr "0" @@ -5876,6 +6042,9 @@ msgstr "" "A causa di una codifica del testo non supportata, potrebbero apparire " "caratteri inutili!" +msgid "Remember my choice." +msgstr "Ricorda la mia scelta." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -6003,9 +6172,6 @@ msgstr "Impossibile ricaricare:" msgid "Error during reload" msgstr "Errore durante il ri-caricamento" -msgid "Slicing" -msgstr "Slicing" - msgid "There are warnings after slicing models:" msgstr "Ci sono avvisi dopo aver elaborato i modelli:" @@ -6080,9 +6246,11 @@ msgid "Project downloaded %d%%" msgstr "Progetto scaricato %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" +"L'importazione di Orca Slicer non è riuscita. Si prega di scaricare il file " +"e importarlo manualmente." msgid "Import SLA archive" msgstr "Importa archivio SLA" @@ -6120,9 +6288,6 @@ msgstr "I file e i modelli G-code non possono essere caricati insieme!" msgid "Can not add models when in preview mode!" msgstr "Impossibile aggiungere modelli in modalità anteprima!" -msgid "Add Models" -msgstr "Aggiungi modelli" - msgid "All objects will be removed, continue?" msgstr "Saranno rimossi tutti gli oggetti, continuare?" @@ -6131,9 +6296,6 @@ msgstr "" "Il progetto corrente ha modifiche non salvate. Desideri salvarle prima di " "continuare?" -msgid "Remember my choice." -msgstr "Ricorda la mia scelta." - msgid "Number of copies:" msgstr "Numero di copie:" @@ -6341,6 +6503,11 @@ msgstr "Regione di accesso" msgid "Stealth Mode" msgstr "Modalità invisibile" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "Abilita plugin di rete" @@ -6449,7 +6616,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6677,9 +6844,6 @@ msgstr "Seleziona/Rimuovi stampanti (preimpostazioni di sistema)" msgid "Create printer" msgstr "Creare una stampante" -msgid "Incompatible" -msgstr "Non compatibile" - msgid "The selected preset is null!" msgstr "Il preset selezionato è nullo!" @@ -6776,15 +6940,6 @@ msgstr "Preset utente" msgid "Preset Inside Project" msgstr "Preset interno al Progetto" -msgid "Name is invalid;" -msgstr "Nome non valido;" - -msgid "illegal characters:" -msgstr "Caratteri illegali:" - -msgid "illegal suffix:" -msgstr "Suffisso illegale:" - msgid "Name is unavailable." msgstr "Nome non disponibile." @@ -6803,15 +6958,6 @@ msgstr "" msgid "Please note that saving action will replace this preset" msgstr "Tieni presente che il salvataggio sovrascriverà il preset corrente" -msgid "The name is not allowed to be empty." -msgstr "Il campo nome non può essere vuoto." - -msgid "The name is not allowed to start with space character." -msgstr "Il nome non può iniziare con uno spazio." - -msgid "The name is not allowed to end with space character." -msgstr "Il nome non può terminare con uno spazio." - msgid "The name cannot be the same as a preset alias name." msgstr "Il nome non può essere uguale a quello di un preset." @@ -6869,9 +7015,6 @@ msgstr "Non riesci a trovare i dispositivi?" msgid "Log out successful." msgstr "Log out riuscito." -msgid "Offline" -msgstr "Offline" - msgid "Busy" msgstr "Occupato" @@ -7087,15 +7230,6 @@ msgstr "" "Collegamento alla stampante. Impossibile annullare durante il processo di " "connessione." -msgid "Preparing print job" -msgstr "Preparazione lavoro di stampa" - -msgid "Abnormal print file data. Please slice again" -msgstr "Dati file di stampa anormali. Eseguire nuovamente l'elaborazione" - -msgid "The name length exceeds the limit." -msgstr "La lunghezza del nome supera il limite." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7483,6 +7617,9 @@ msgstr "Filamento per supporti" msgid "Tree supports" msgstr "Supporti ad albero" +msgid "Skirt" +msgstr "Skirt" + msgid "Prime tower" msgstr "Prime tower" @@ -8412,6 +8549,12 @@ msgstr "Sposta il cursore 5 volte più velocemente" msgid "Shift+Mouse wheel" msgstr "Shift+Rotella mouse" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Note di aggiornamento" @@ -8537,12 +8680,6 @@ msgstr "Versione:" msgid "Update firmware" msgstr "Aggiorna firmware" -msgid "Printing" -msgstr "Stampa" - -msgid "Idle" -msgstr "Inattivo" - msgid "Beta version" msgstr "Versione beta" @@ -8578,7 +8715,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "La versione firmware è anomala. Prima di stampare, è necessario eseguire la " "riparazione e l'aggiornamento. Si desidera aggiornare ora? È possibile " @@ -8723,9 +8860,6 @@ msgstr "Ponte interno" msgid "Gap infill" msgstr "Riempimento gap" -msgid "Skirt" -msgstr "Skirt" - msgid "Support interface" msgstr "Interfaccia supporto" @@ -10770,8 +10904,8 @@ msgstr "Venditore di filamenti. Solo per lo spettacolo" msgid "(Undefined)" msgstr "(Indefinito)" -msgid "Infill direction" -msgstr "Direzione riempimento" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10780,6 +10914,20 @@ msgstr "" "Questo è l'angolo della trama di riempimento che controlla l'inizio o la " "direzione principale delle linee." +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Densità riempimento" @@ -11135,12 +11283,15 @@ msgid "Arc fitting" msgstr "Arc fitting" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Abilita questa funzione per ottenere un file G-code con gli spostamenti " -"circolari in G2 e G3. La tolleranza di adattamento è la stessa della " -"risoluzione" msgid "Add line number" msgstr "Aggiungi numero di riga" @@ -11374,13 +11525,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Sovrapposizione riempimento/parete" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"Ciò consente di allargare leggermente l'area di riempimento per sovrapporla " -"alle pareti per una migliore adesione. Il valore percentuale è relativo alla " -"larghezza della linea del riempimento." msgid "Speed of internal sparse infill" msgstr "Indica la velocità del riempimento interno." @@ -12477,6 +12640,23 @@ msgstr "Altezza skirt" msgid "How many layers of skirt. Usually only one layer" msgstr "Numero di layer skirt: solitamente uno" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Anelli skirt" @@ -12492,6 +12672,17 @@ msgstr "" "Velocità del gonna, in mm/s. Zero significa utilizzare la velocità di " "estrusione dello strato predefinita." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -13272,6 +13463,19 @@ msgstr "Spaziatura delle linee di spurgo della torre di pulitura" msgid "Spacing of purge lines on the wipe tower." msgstr "Spaziatura delle linee di spurgo sulla torre di pulitura." +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "Estrusore torre di pulitura" @@ -15256,7 +15460,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -15265,9 +15469,6 @@ msgstr "" msgid "Printer Setting" msgstr "Impostazione della stampante" -msgid "Export Configs" -msgstr "Esporta &Configurazioni" - msgid "Printer config bundle(.orca_printer)" msgstr "Bundle di configurazione della stampante (.orca_printer)" @@ -16265,6 +16466,40 @@ msgstr "" "aumentare in modo appropriato la temperatura del piano riscaldato può " "ridurre la probabilità di deformazione." +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer è basato su BambuStudio di Bambulab, che è di PrusaSlicer di " +#~ "Prusa Research. PrusaSlicer è di Slic3r di Alessandro Ranellucci e della " +#~ "comunità RepRap" + +#~ msgid "Export &Configs" +#~ msgstr "Esporta &Configurazioni" + +#~ msgid "Infill direction" +#~ msgstr "Direzione riempimento" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Abilita questa funzione per ottenere un file G-code con gli spostamenti " +#~ "circolari in G2 e G3. La tolleranza di adattamento è la stessa della " +#~ "risoluzione" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "Ciò consente di allargare leggermente l'area di riempimento per " +#~ "sovrapporla alle pareti per una migliore adesione. Il valore percentuale " +#~ "è relativo alla larghezza della linea del riempimento." + +#~ msgid "Export Configs" +#~ msgstr "Esporta &Configurazioni" + #~ msgid "Unload Filament" #~ msgstr "Scarica Filamento" @@ -16290,13 +16525,6 @@ msgstr "" #~ msgid "HMS" #~ msgstr "HMS" -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "" -#~ "L'importazione di Orca Slicer non è riuscita. Si prega di scaricare il " -#~ "file e importarlo manualmente." - #~ msgid "- ℃" #~ msgstr "- °C" diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index eeb821b872..676f6d0681 100644 --- a/localization/i18n/ja/OrcaSlicer_ja.po +++ b/localization/i18n/ja/OrcaSlicer_ja.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -1834,6 +1834,9 @@ msgstr "プリミティブを追加" msgid "Add Handy models" msgstr "" +msgid "Add Models" +msgstr "モデルを追加" + msgid "Show Labels" msgstr "ラベルを表示" @@ -2315,8 +2318,8 @@ msgstr "プリンターへ接続できませんでした" msgid "Connection to printer failed" msgstr "Connection to printer failed" -msgid "Please check the network connection of the printer and Studio." -msgstr "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." +msgstr "Please check the network connection of the printer and Orca." msgid "Connecting..." msgstr "接続中…" @@ -2663,10 +2666,7 @@ msgstr "Orca Slicerのライセンス" msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, version 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" msgid "Libraries" @@ -3130,6 +3130,210 @@ msgstr "" "%1%にタスクをスケジューリングしました、詳細は「ウインドウ→タスクキュー」にて" "ご確認ください。" +msgid "Device" +msgstr "デバイス" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "オフライン" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "表示" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "追加" + +msgid "Idle" +msgstr "待機中" + +msgid "Printing" +msgstr "造形中" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Incompatible" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "準備" + +msgid "Slicing" +msgstr "スライス中" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "再開" + +msgid "Stop" +msgstr "中止" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "読込み中" + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "造形タスクを準備" + +msgid "Abnormal print file data. Please slice again" +msgstr "ファイルに異常があります、もう一度スライスしてください" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "送信" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "名称が無効です" + +msgid "illegal characters:" +msgstr "無効な文字:" + +msgid "illegal suffix:" +msgstr "無効なサフィックス" + +msgid "The name is not allowed to be empty." +msgstr "「名前」が空です" + +msgid "The name is not allowed to start with space character." +msgstr "名前の先頭にスペースを入れないでください" + +msgid "The name is not allowed to end with space character." +msgstr "名前の最後にスペースを入れないでください" + +msgid "The name length exceeds the limit." +msgstr "The name length exceeds the limit." + msgid "Origin" msgstr "原点" @@ -3604,9 +3808,6 @@ msgstr "プリンター設定" msgid "parameter name" msgstr "パラメータ名" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s をパーセンテージにすることはできません" @@ -3923,9 +4124,6 @@ msgstr "押出しキャリブレーション領域を避ける" msgid "Align to Y axis" msgstr "" -msgid "Add" -msgstr "追加" - msgid "Add plate" msgstr "プレートを追加" @@ -4107,15 +4305,9 @@ msgstr "プリセットが変更されたが終了します" msgid "Logging" msgstr "ログ" -msgid "Prepare" -msgstr "準備" - msgid "Preview" msgstr "プレビュー" -msgid "Device" -msgstr "デバイス" - msgid "Multi-device" msgstr "" @@ -4143,9 +4335,6 @@ msgstr "スライス (全プレート)" msgid "Export G-code file" msgstr "G-codeをエクスポート" -msgid "Send" -msgstr "送信" - msgid "Export plate sliced file" msgstr "エクスポート" @@ -4158,9 +4347,6 @@ msgstr "造形開始 (全プレート)" msgid "Send all" msgstr "送信 (全プレート)" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "ショートカット" @@ -4302,8 +4488,8 @@ msgstr "G-codeをエクスポート" msgid "Export current plate as G-code" msgstr "現在のプレートをG-codeでエクスポート" -msgid "Export &Configs" -msgstr "構成データ" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "現在の構成をエクスポート" @@ -4404,9 +4590,6 @@ msgstr "Show object overhang highlight in 3D scene" msgid "Preferences" msgstr "設定" -msgid "View" -msgstr "表示" - msgid "Help" msgstr "ヘルプ" @@ -4473,10 +4656,10 @@ msgstr "Export &Toolpaths as OBJ" msgid "Export toolpaths as OBJ" msgstr "Export toolpaths as OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Studioを開く" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Studioを開く" msgid "&Quit" @@ -4644,9 +4827,6 @@ msgstr "情報" msgid "Playing..." msgstr "再生中..." -msgid "Loading..." -msgstr "読込み中" - msgid "Year" msgstr "年" @@ -4799,11 +4979,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -4862,12 +5037,6 @@ msgstr "" msgid "Printing Progress" msgstr "進捗" -msgid "Resume" -msgstr "再開" - -msgid "Stop" -msgstr "中止" - msgid "0" msgstr "0" @@ -5592,6 +5761,9 @@ msgstr "ファイルのエンコーディング方式はUTF8形式ではあり msgid "The name may show garbage characters!" msgstr "文字化けがあるようです、ご確認ください" +msgid "Remember my choice." +msgstr "Remember my choice." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "ファイル %1% を読み込めませんでした。" @@ -5714,9 +5886,6 @@ msgstr "" msgid "Error during reload" msgstr "" -msgid "Slicing" -msgstr "スライス中" - msgid "There are warnings after slicing models:" msgstr "スライスの警告:" @@ -5789,7 +5958,7 @@ msgid "Project downloaded %d%%" msgstr "プロジェクトをダウンロード %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" @@ -5829,9 +5998,6 @@ msgstr "G-codeファイルとモデルを一緒にロードできません" msgid "Can not add models when in preview mode!" msgstr "プレビューモードではモデルを追加できません" -msgid "Add Models" -msgstr "モデルを追加" - msgid "All objects will be removed, continue?" msgstr "すべてのオブジェクトが削除されます。続行しますか?" @@ -5839,9 +6005,6 @@ msgid "The current project has unsaved changes, save it before continue?" msgstr "" "現在のプロジェクトには未保存の変更があります。続行する前に保存しますか?" -msgid "Remember my choice." -msgstr "Remember my choice." - msgid "Number of copies:" msgstr "複製数" @@ -6041,6 +6204,11 @@ msgstr "地域" msgid "Stealth Mode" msgstr "" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "" @@ -6147,7 +6315,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6365,9 +6533,6 @@ msgstr "" msgid "Create printer" msgstr "" -msgid "Incompatible" -msgstr "Incompatible" - msgid "The selected preset is null!" msgstr "" @@ -6462,15 +6627,6 @@ msgstr "ユーザープリセット" msgid "Preset Inside Project" msgstr "プロジェクト プリセット" -msgid "Name is invalid;" -msgstr "名称が無効です" - -msgid "illegal characters:" -msgstr "無効な文字:" - -msgid "illegal suffix:" -msgstr "無効なサフィックス" - msgid "Name is unavailable." msgstr "名称は使用できません" @@ -6488,15 +6644,6 @@ msgstr "プリセット\"%1%\"は既に存在し、また互換性がありま msgid "Please note that saving action will replace this preset" msgstr "注意:現在のプリセットを上書きされます。" -msgid "The name is not allowed to be empty." -msgstr "「名前」が空です" - -msgid "The name is not allowed to start with space character." -msgstr "名前の先頭にスペースを入れないでください" - -msgid "The name is not allowed to end with space character." -msgstr "名前の最後にスペースを入れないでください" - msgid "The name cannot be the same as a preset alias name." msgstr "プリセット名と同じの為、設定できません。" @@ -6554,9 +6701,6 @@ msgstr "デバイスが見つからない?" msgid "Log out successful." msgstr "サインアウトしました" -msgid "Offline" -msgstr "オフライン" - msgid "Busy" msgstr "ビジー状態" @@ -6746,15 +6890,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" -msgid "Preparing print job" -msgstr "造形タスクを準備" - -msgid "Abnormal print file data. Please slice again" -msgstr "ファイルに異常があります、もう一度スライスしてください" - -msgid "The name length exceeds the limit." -msgstr "The name length exceeds the limit." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7114,6 +7249,9 @@ msgstr "サポート用フィラメント" msgid "Tree supports" msgstr "" +msgid "Skirt" +msgstr "" + msgid "Prime tower" msgstr "プライムタワー" @@ -7972,6 +8110,12 @@ msgstr "5x" msgid "Shift+Mouse wheel" msgstr "Shift + マウスホイール" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "リリースノート" @@ -8090,12 +8234,6 @@ msgstr "バージョン" msgid "Update firmware" msgstr "ファームウェアを更新" -msgid "Printing" -msgstr "造形中" - -msgid "Idle" -msgstr "待機中" - msgid "Beta version" msgstr "" @@ -8129,7 +8267,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "ファームウェアのバージョンに異常があります。印刷する前に修復と更新が必要で" "す。今すぐ更新しますか?" @@ -8264,9 +8402,6 @@ msgstr "" msgid "Gap infill" msgstr "隙間インフィル" -msgid "Skirt" -msgstr "" - msgid "Support interface" msgstr "サポート接触面" @@ -9911,14 +10046,28 @@ msgstr "" msgid "(Undefined)" msgstr "(未定義)" -msgid "Infill direction" -msgstr "インフィル方向" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " "of line" msgstr "スパース インフィル パターンの角度です" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "充填密度" @@ -10214,9 +10363,15 @@ msgid "Arc fitting" msgstr "曲線フィッティング" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" -msgstr "この設定で出力のG-codeファイルにG2/G3コードを有効します。" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." +msgstr "" msgid "Add line number" msgstr "行番号を追加" @@ -10409,12 +10564,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "インフィル/壁面 オーバーラップ" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"インフィルの領域を少し壁面を重ねるために拡大します。これにより壁面との接着性" -"が向上させます。値はスパース インフィルの線幅の割合です。" msgid "Speed of internal sparse infill" msgstr "スパース インフィルの造形速度です。" @@ -11302,6 +11470,23 @@ msgstr "Skirt height" msgid "How many layers of skirt. Usually only one layer" msgstr "Number of skirt layers: usually only one" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "スカートのループ数" @@ -11314,6 +11499,17 @@ msgstr "" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "" +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -11970,6 +12166,19 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "" @@ -13664,7 +13873,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -13673,9 +13882,6 @@ msgstr "" msgid "Printer Setting" msgstr "" -msgid "Export Configs" -msgstr "" - msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -14538,6 +14744,24 @@ msgid "" "probability of warping." msgstr "" +#~ msgid "Export &Configs" +#~ msgstr "構成データ" + +#~ msgid "Infill direction" +#~ msgstr "インフィル方向" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "この設定で出力のG-codeファイルにG2/G3コードを有効します。" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "インフィルの領域を少し壁面を重ねるために拡大します。これにより壁面との接着" +#~ "性が向上させます。値はスパース インフィルの線幅の割合です。" + #~ msgid "Unload Filament" #~ msgstr "アンロード" diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index dfa4ce9e98..382216deb4 100644 --- a/localization/i18n/ko/OrcaSlicer_ko.po +++ b/localization/i18n/ko/OrcaSlicer_ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: 2024-05-01 04:51+0900\n" "Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply." "github.com>, crwusiz \n" @@ -1882,6 +1882,9 @@ msgstr "기본 모델 추가" msgid "Add Handy models" msgstr "핸디 모델 추가" +msgid "Add Models" +msgstr "모델 추가" + msgid "Show Labels" msgstr "이름표 보기" @@ -2361,7 +2364,7 @@ msgstr "프린터 연결 실패" msgid "Connection to printer failed" msgstr "프린터 연결 실패" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "프린터와 Orca Slicer의 네트워크 연결을 확인하세요." msgid "Connecting..." @@ -2708,14 +2711,8 @@ msgstr "Orca Slicer is licensed under " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, version 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer는 Prusa Research의 PrusaSlicer에서 나온 뱀부랩의 BambuStudio를 기" -"반으로 합니다. PrusaSlicer는 Alessandro Ranellucci와 RepRap 커뮤니티의 " -"Slic3r에서 제작되었습니다" msgid "Libraries" msgstr "라이브러리" @@ -3210,6 +3207,210 @@ msgstr "출력 G코드에 임시 G코드를 복사하지 못했습니다" msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "%1%로 업로드 예약 중. 윈도우 -> 호스트 업로드 출력 대기열 참조" +msgid "Device" +msgstr "장치" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "오프라인" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "시점" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "추가" + +msgid "Idle" +msgstr "대기 중" + +msgid "Printing" +msgstr "출력 중" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "호환되지 않음" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "준비 하기" + +msgid "Slicing" +msgstr "슬라이싱" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "계속" + +msgid "Stop" +msgstr "정지" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "로딩 중..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "여러 장치로 보내기" + +msgid "Preparing print job" +msgstr "출력 작업 준비 중" + +msgid "Abnormal print file data. Please slice again" +msgstr "비정상적인 출력 파일 데이터입니다. 다시 슬라이스하세요" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "전송" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "이름이 잘못되었습니다;" + +msgid "illegal characters:" +msgstr "잘못된 문자:" + +msgid "illegal suffix:" +msgstr "잘못된 접미사:" + +msgid "The name is not allowed to be empty." +msgstr "이름은 비워 둘 수 없습니다." + +msgid "The name is not allowed to start with space character." +msgstr "이름은 공백으로 시작할 수 없습니다." + +msgid "The name is not allowed to end with space character." +msgstr "이름은 공백으로 끝날 수 없습니다." + +msgid "The name length exceeds the limit." +msgstr "이름 길이가 제한을 초과합니다." + msgid "Origin" msgstr "원점" @@ -3713,9 +3914,6 @@ msgstr "프린터 설정" msgid "parameter name" msgstr "매개변수 이름" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s 는 백분율일 수 없습니다" @@ -4033,9 +4231,6 @@ msgstr "압출 교정 영역을 피하세요" msgid "Align to Y axis" msgstr "Y축에 정렬" -msgid "Add" -msgstr "추가" - msgid "Add plate" msgstr "플레이트 추가" @@ -4221,15 +4416,9 @@ msgstr "일부 사전 설정을 수정하는 동안 응용 프로그램을 닫 msgid "Logging" msgstr "로깅" -msgid "Prepare" -msgstr "준비 하기" - msgid "Preview" msgstr "미리 보기" -msgid "Device" -msgstr "장치" - msgid "Multi-device" msgstr "멀티 디바이스" @@ -4257,9 +4446,6 @@ msgstr "모두 슬라이스" msgid "Export G-code file" msgstr "G코드 파일 내보내기" -msgid "Send" -msgstr "전송" - msgid "Export plate sliced file" msgstr "플레이트 슬라이스 파일 내보내기" @@ -4272,9 +4458,6 @@ msgstr "모두 출력" msgid "Send all" msgstr "모두 전송" -msgid "Send to Multi-device" -msgstr "여러 장치로 보내기" - msgid "Keyboard Shortcuts" msgstr "키보드 단축키" @@ -4416,8 +4599,8 @@ msgstr "G코드 내보내기" msgid "Export current plate as G-code" msgstr "현재 플레이트를 G코드로 내보내기" -msgid "Export &Configs" -msgstr "설정 내보내기 (&C)" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "현재 설정을 파일로 내보내기" @@ -4518,9 +4701,6 @@ msgstr "3D 장면에서 개체 오버행 하이라이트 표시" msgid "Preferences" msgstr "기본 설정" -msgid "View" -msgstr "시점" - msgid "Help" msgstr "도움말" @@ -4587,10 +4767,10 @@ msgstr "툴 경로를 OBJ로 내보내기 (&T)" msgid "Export toolpaths as OBJ" msgstr "툴 경로를 OBJ로 내보내기" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Studio 열기 (&O)" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Studio 열기" msgid "&Quit" @@ -4768,9 +4948,6 @@ msgstr "정보" msgid "Playing..." msgstr "재생중...." -msgid "Loading..." -msgstr "로딩 중..." - msgid "Year" msgstr "년" @@ -4932,13 +5109,6 @@ msgstr "" "프린터를 다시 연결하는 중입니다. 작업을 즉시 완료할 수 없습니다. 나중에 다시 " "시도해 주세요." -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" -"4개 이상의 시스템/핸디가 원격 액세스를 사용하고 있습니다. 일부 시스템을 닫고 " -"다시 시도할 수 있습니다." - msgid "File does not exist." msgstr "파일이 없습니다." @@ -4997,12 +5167,6 @@ msgstr "종축을 중심으로 반전" msgid "Printing Progress" msgstr "출력 진행률" -msgid "Resume" -msgstr "계속" - -msgid "Stop" -msgstr "정지" - msgid "0" msgstr "0" @@ -5762,6 +5926,9 @@ msgstr "단계 파일 내의 구성 요소 이름이 UTF8 형식이 아닙니다 msgid "The name may show garbage characters!" msgstr "이름에 알 수 없는 문자가 표시될 수 있습니다!" +msgid "Remember my choice." +msgstr "선택 기억하기." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "파일 \"%1%\"을(를) 로드하지 못했습니다. 잘못된 구성이 발견되었습니다." @@ -5886,9 +6053,6 @@ msgstr "새로고침할 수 없음:" msgid "Error during reload" msgstr "새로고침 중 오류가 발생했습니다" -msgid "Slicing" -msgstr "슬라이싱" - msgid "There are warnings after slicing models:" msgstr "모델을 슬라이싱한 후 경고 발생:" @@ -5959,14 +6123,16 @@ msgstr "다운로드에 실패했습니다. 파일 크기 예외입니다." #, c-format, boost-format msgid "Project downloaded %d%%" -msgstr "프로젝트 다운로드 %d%%" +msgstr "" +"프로젝트 다운로드 %d%%Bambu Studio로 가져오는 데 실패했습니다. 파일을 다운로" +"드하여 수동으로 가져오세요." msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" -"Bambu Studio로 가져오는 데 실패했습니다. 파일을 다운로드하여 수동으로 가져오" -"세요." +"Orca Slicer로 가져오는 데 실패했습니다. 파일을 다운로드하여 수동으로 가져오세" +"요." msgid "Import SLA archive" msgstr "SLA 압축파일 가져오기" @@ -6004,9 +6170,6 @@ msgstr "G코드 파일은 모델과 함께 로드할 수 없습니다!" msgid "Can not add models when in preview mode!" msgstr "미리보기 모드에서는 모델을 추가할 수 없습니다!" -msgid "Add Models" -msgstr "모델 추가" - msgid "All objects will be removed, continue?" msgstr "모든 개체가 제거됩니다. 계속하시겠습니까?" @@ -6015,9 +6178,6 @@ msgstr "" "현재 프로젝트에 저장되지 않은 변경 사항이 있습니다. 계속하기 전에 저장하시겠" "습니까?" -msgid "Remember my choice." -msgstr "선택 기억하기." - msgid "Number of copies:" msgstr "복제 수:" @@ -6220,6 +6380,11 @@ msgstr "로그인 지역" msgid "Stealth Mode" msgstr "스텔스 모드" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "네트워크 플러그인 사용" @@ -6336,7 +6501,7 @@ msgstr "" "활성화된 경우 Orca는 각 프린터의 필라멘트/프로세스 구성을 자동으로 기억하고 " "전환합니다." -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "다중 장치 관리(Studio를 다시 시작한 후 적용)." msgid "" @@ -6558,9 +6723,6 @@ msgstr "프린터 선택/제거(시스템 사전 설정)" msgid "Create printer" msgstr "프린터 생성" -msgid "Incompatible" -msgstr "호환되지 않음" - msgid "The selected preset is null!" msgstr "선택한 사전 설정의 값이 존재하지 않습니다!(null)" @@ -6655,15 +6817,6 @@ msgstr "사용자 사전 설정" msgid "Preset Inside Project" msgstr "프로젝트 내부 사전 설정" -msgid "Name is invalid;" -msgstr "이름이 잘못되었습니다;" - -msgid "illegal characters:" -msgstr "잘못된 문자:" - -msgid "illegal suffix:" -msgstr "잘못된 접미사:" - msgid "Name is unavailable." msgstr "이름을 사용할 수 없습니다." @@ -6681,15 +6834,6 @@ msgstr "%1% 사전 설정이 이미 있으며 현재 프린터와 호환되지 msgid "Please note that saving action will replace this preset" msgstr "저장 작업이 이 사전 설정을 대체합니다" -msgid "The name is not allowed to be empty." -msgstr "이름은 비워 둘 수 없습니다." - -msgid "The name is not allowed to start with space character." -msgstr "이름은 공백으로 시작할 수 없습니다." - -msgid "The name is not allowed to end with space character." -msgstr "이름은 공백으로 끝날 수 없습니다." - msgid "The name cannot be the same as a preset alias name." msgstr "이름은 사전 설정의 별칭 이름과 같을 수 없습니다." @@ -6747,9 +6891,6 @@ msgstr "내 장치를 찾을 수 없습니까?" msgid "Log out successful." msgstr "로그아웃에 성공했습니다." -msgid "Offline" -msgstr "오프라인" - msgid "Busy" msgstr "사용중" @@ -6955,15 +7096,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "프린터에 연결 중입니다. 연결 진행 중에는 취소할 수 없습니다." -msgid "Preparing print job" -msgstr "출력 작업 준비 중" - -msgid "Abnormal print file data. Please slice again" -msgstr "비정상적인 출력 파일 데이터입니다. 다시 슬라이스하세요" - -msgid "The name length exceeds the limit." -msgstr "이름 길이가 제한을 초과합니다." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7264,8 +7396,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add " -"Primitive\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add Primitive" +"\"->\"Timelapse Wipe Tower\"." msgstr "" "툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 닦기 타워\"를 추가하는 것이 좋" "습니다\n" @@ -7340,6 +7472,9 @@ msgstr "지지대 필라멘트" msgid "Tree supports" msgstr "나무 지지대" +msgid "Skirt" +msgstr "스커트" + msgid "Prime tower" msgstr "프라임 타워" @@ -8239,6 +8374,12 @@ msgstr "슬라이더를 5배 빠르게 이동" msgid "Shift+Mouse wheel" msgstr "Shift+마우스 휠" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "릴리스 노트" @@ -8361,12 +8502,6 @@ msgstr "버전:" msgid "Update firmware" msgstr "펌웨어 업데이트" -msgid "Printing" -msgstr "출력 중" - -msgid "Idle" -msgstr "대기 중" - msgid "Beta version" msgstr "베타 버전" @@ -8401,7 +8536,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "펌웨어 버전이 비정상입니다. 출력하기 전에 수리 및 업데이트가 필요합니다. 지" "금 업데이트하시겠습니까? 나중에 프린터에서 업데이트하거나 다음에 스튜디오를 " @@ -8540,9 +8675,6 @@ msgstr "내부 브릿지" msgid "Gap infill" msgstr "간격 채우기" -msgid "Skirt" -msgstr "스커트" - msgid "Support interface" msgstr "지지대 접점" @@ -10425,14 +10557,28 @@ msgstr "필라멘트 제조사" msgid "(Undefined)" msgstr "(정의되지 않음)" -msgid "Infill direction" -msgstr "채우기 방향" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " "of line" msgstr "선의 시작 또는 주 방향을 제어하는 드문 채우기 패턴에 대한 각도" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "드문 채우기 밀도" @@ -10674,10 +10820,10 @@ msgstr "팬 최대 속도 레이어" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer " -"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " -"than \"close_fan_the_first_x_layers\", in which case the fan will be running " -"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" +"\". \"full_fan_speed_layer\" will be ignored if lower than " +"\"close_fan_the_first_x_layers\", in which case the fan will be running at " +"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_speed_layer\" " "의 최고 속도까지 선형적으로 증가합니다. \"full_fan_speed_layer\"가 " @@ -10768,11 +10914,15 @@ msgid "Arc fitting" msgstr "원호 맞춤" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"G2 및 G3 이동(원호 기반 G코드)이 있는 G코드 파일을 가져오려면 이 기능을 활성" -"화합니다. 피팅 공차는 해상도와 동일합니다" msgid "Add line number" msgstr "라인 번호 추가" @@ -10996,12 +11146,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "채우기/벽 겹치기" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"채우기 영역이 벽과 겹치도록 약간 확장되어 접착력이 향상됩니다. 드문 채우기 " -"선 너비의 백분율 값입니다" msgid "Speed of internal sparse infill" msgstr "내부 드문 채우기 속도" @@ -12032,6 +12195,23 @@ msgstr "" "얼마나 많은 스커트 레이어를 생성할지 결정합니다. 일반적으로 한개의 레이어를 " "사용합니다" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "스커트 루프" @@ -12044,6 +12224,17 @@ msgstr "스커트 속도" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "스커트의 속도(mm/s), 0은 기본 레이어 압출 속도를 사용함을 의미합니다." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -12763,6 +12954,19 @@ msgstr "닦기 타워 청소 선 간격" msgid "Spacing of purge lines on the wipe tower." msgstr "닦기 타워의 청소 선 간격입니다." +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "닦기 타워 압출기" @@ -14435,8 +14639,8 @@ msgstr "" "다시 작성하시겠습니까?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you selected" +"\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n" @@ -14645,7 +14849,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -14659,9 +14863,6 @@ msgstr "" msgid "Printer Setting" msgstr "프린터 설정" -msgid "Export Configs" -msgstr "구성 내보내기" - msgid "Printer config bundle(.orca_printer)" msgstr "프린터 구성 번들(.orca_printer)" @@ -15703,6 +15904,45 @@ msgstr "" "ABS 등 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이" "면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?" +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer는 Prusa Research의 PrusaSlicer에서 나온 뱀부랩의 BambuStudio" +#~ "를 기반으로 합니다. PrusaSlicer는 Alessandro Ranellucci와 RepRap 커뮤니티" +#~ "의 Slic3r에서 제작되었습니다" + +#~ msgid "Export &Configs" +#~ msgstr "설정 내보내기 (&C)" + +#~ msgid "" +#~ "Over 4 systems/handy are using remote access, you can close some and try " +#~ "again." +#~ msgstr "" +#~ "4개 이상의 시스템/핸디가 원격 액세스를 사용하고 있습니다. 일부 시스템을 닫" +#~ "고 다시 시도할 수 있습니다." + +#~ msgid "Infill direction" +#~ msgstr "채우기 방향" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "G2 및 G3 이동(원호 기반 G코드)이 있는 G코드 파일을 가져오려면 이 기능을 활" +#~ "성화합니다. 피팅 공차는 해상도와 동일합니다" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "채우기 영역이 벽과 겹치도록 약간 확장되어 접착력이 향상됩니다. 드문 채우" +#~ "기 선 너비의 백분율 값입니다" + +#~ msgid "Export Configs" +#~ msgstr "구성 내보내기" + #~ msgid "Unload Filament" #~ msgstr "필라멘트 언로드" @@ -15728,13 +15968,6 @@ msgstr "" #~ msgid "HMS" #~ msgstr "HMS" -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "" -#~ "Orca Slicer로 가져오는 데 실패했습니다. 파일을 다운로드하여 수동으로 가져" -#~ "오세요." - #~ msgid "- ℃" #~ msgstr "- ℃" @@ -15987,8 +16220,8 @@ msgstr "" #~ msgstr "드문 레이어 없음(실험적)" #~ msgid "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" +#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" +#~ "\". \n" #~ "To add preset for more prinetrs, Please go to printer selection" #~ msgstr "" #~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n" diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index a483824300..e97d061cc0 100644 --- a/localization/i18n/nl/OrcaSlicer_nl.po +++ b/localization/i18n/nl/OrcaSlicer_nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1854,6 +1854,9 @@ msgstr "Primitief toevoegen" msgid "Add Handy models" msgstr "" +msgid "Add Models" +msgstr "Modellen toevoegen" + msgid "Show Labels" msgstr "Toon labels" @@ -2360,8 +2363,8 @@ msgstr "Verbinding maken met de printer is mislukt" msgid "Connection to printer failed" msgstr "Connection to printer failed" -msgid "Please check the network connection of the printer and Studio." -msgstr "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." +msgstr "Please check the network connection of the printer and Orca." msgid "Connecting..." msgstr "Verbinden..." @@ -2717,10 +2720,7 @@ msgstr "Orca Slicer is gelicentieerd onder " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero Algemene Openbare Licentie, versie 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" msgid "Libraries" @@ -3210,6 +3210,210 @@ msgstr "" msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "Upload inplannen in `%1%`. Zie Venster -> Print Host Upload Queue" +msgid "Device" +msgstr "Apparaat" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Offline" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Weergave" + +msgid "N/A" +msgstr "N/B" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Toevoegen" + +msgid "Idle" +msgstr "Inactief" + +msgid "Printing" +msgstr "Printen" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Incompatible" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Voorbereiden" + +msgid "Slicing" +msgstr "Slicen" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Hervatten" + +msgid "Stop" +msgstr "Stop" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Laden..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Print opdracht voorbereiden" + +msgid "Abnormal print file data. Please slice again" +msgstr "Abnormale printbestand. Slice opnieuw" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Versturen" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "Naam is ongeldig;" + +msgid "illegal characters:" +msgstr "Niet toegestande karakters:" + +msgid "illegal suffix:" +msgstr "Ongeldig achtervoegsel:" + +msgid "The name is not allowed to be empty." +msgstr "Het is niet toegestaand om de naam leeg te laten." + +msgid "The name is not allowed to start with space character." +msgstr "Het is niet toegestaan om een naam met een spatie te laten beginnen." + +msgid "The name is not allowed to end with space character." +msgstr "Het is niet toegestaan om een naam met een spatie te laten eindigen." + +msgid "The name length exceeds the limit." +msgstr "The name length exceeds the limit." + msgid "Origin" msgstr "Begin" @@ -3710,9 +3914,6 @@ msgstr "Printer instellingen" msgid "parameter name" msgstr "parameternaam" -msgid "N/A" -msgstr "N/B" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s kan geen percentage zijn" @@ -4030,9 +4231,6 @@ msgstr "Vermijd het extrusie kalibratie gebied" msgid "Align to Y axis" msgstr "" -msgid "Add" -msgstr "Toevoegen" - msgid "Add plate" msgstr "Printbed toevoegen" @@ -4218,15 +4416,9 @@ msgstr "Applicatie sluiten terwijl sommige voorinstellingen zijn gewijzigd." msgid "Logging" msgstr "Vastleggen" -msgid "Prepare" -msgstr "Voorbereiden" - msgid "Preview" msgstr "Voorvertoning" -msgid "Device" -msgstr "Apparaat" - msgid "Multi-device" msgstr "" @@ -4254,9 +4446,6 @@ msgstr "Alles slicen" msgid "Export G-code file" msgstr "G-codebestand exporteren" -msgid "Send" -msgstr "Versturen" - msgid "Export plate sliced file" msgstr "Exporteer plate sliced bestand" @@ -4269,9 +4458,6 @@ msgstr "Print alles" msgid "Send all" msgstr "Alles verzenden" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Sneltoesten" @@ -4413,8 +4599,8 @@ msgstr "Exporteer G-code" msgid "Export current plate as G-code" msgstr "Exporteer de huidige plaat als G-code" -msgid "Export &Configs" -msgstr "Export &Configs" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Huidige configuratie exporteren naar bestanden" @@ -4515,9 +4701,6 @@ msgstr "Show object overhang highlight in 3D scene" msgid "Preferences" msgstr "Voorkeuren" -msgid "View" -msgstr "Weergave" - msgid "Help" msgstr "Help" @@ -4584,10 +4767,10 @@ msgstr "Exporteer &Toolpaths als OBJ" msgid "Export toolpaths as OBJ" msgstr "Toolpaths exporteren als OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Open & Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Studio openen" msgid "&Quit" @@ -4761,9 +4944,6 @@ msgstr "Informatie" msgid "Playing..." msgstr "Afspelen..." -msgid "Loading..." -msgstr "Laden..." - msgid "Year" msgstr "Jaar" @@ -4917,11 +5097,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -4980,12 +5155,6 @@ msgstr "" msgid "Printing Progress" msgstr "Print voortgang" -msgid "Resume" -msgstr "Hervatten" - -msgid "Stop" -msgstr "Stop" - msgid "0" msgstr "0" @@ -5735,6 +5904,9 @@ msgstr "" "Vanwege niet-ondersteunde tekstcodering kunnen er onjuiste tekens " "verschijnen!" +msgid "Remember my choice." +msgstr "Remember my choice." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -5863,9 +6035,6 @@ msgstr "" msgid "Error during reload" msgstr "" -msgid "Slicing" -msgstr "Slicen" - msgid "There are warnings after slicing models:" msgstr "Er zijn waarschuwingen na het slicen van modellen:" @@ -5942,7 +6111,7 @@ msgid "Project downloaded %d%%" msgstr "Project %d%% gedownload" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" @@ -5982,9 +6151,6 @@ msgstr "G-Code bestanden en modellen kunnen niet tegelijk geladen worden!" msgid "Can not add models when in preview mode!" msgstr "Modellen kunnen niet worden toegevoegd in voorbeeldmodus" -msgid "Add Models" -msgstr "Modellen toevoegen" - msgid "All objects will be removed, continue?" msgstr "Alle objecten zullen verwijderd worden, doorgaan?" @@ -5993,9 +6159,6 @@ msgstr "" "Het huidige project heeft niet-opgeslagen wijzigingen. Wilt u eerst opslaan " "voordat u verder gaat?" -msgid "Remember my choice." -msgstr "Remember my choice." - msgid "Number of copies:" msgstr "Aantal kopieën:" @@ -6199,6 +6362,11 @@ msgstr "Inlogregio" msgid "Stealth Mode" msgstr "" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "" @@ -6306,7 +6474,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6532,9 +6700,6 @@ msgstr "" msgid "Create printer" msgstr "" -msgid "Incompatible" -msgstr "Incompatible" - msgid "The selected preset is null!" msgstr "" @@ -6632,15 +6797,6 @@ msgstr "Gebruikersvoorinstelling" msgid "Preset Inside Project" msgstr "Voorinstelling Project Inside" -msgid "Name is invalid;" -msgstr "Naam is ongeldig;" - -msgid "illegal characters:" -msgstr "Niet toegestande karakters:" - -msgid "illegal suffix:" -msgstr "Ongeldig achtervoegsel:" - msgid "Name is unavailable." msgstr "Naam is niet beschikbaar." @@ -6660,15 +6816,6 @@ msgstr "" msgid "Please note that saving action will replace this preset" msgstr "Let er aub op dat opslaan de voorinstelling zal overschrijven" -msgid "The name is not allowed to be empty." -msgstr "Het is niet toegestaand om de naam leeg te laten." - -msgid "The name is not allowed to start with space character." -msgstr "Het is niet toegestaan om een naam met een spatie te laten beginnen." - -msgid "The name is not allowed to end with space character." -msgstr "Het is niet toegestaan om een naam met een spatie te laten eindigen." - msgid "The name cannot be the same as a preset alias name." msgstr "" "Er kan niet voor een naam gekozen worden die hetzelfde is als de naam van " @@ -6729,9 +6876,6 @@ msgstr "Kun je geen apparaten vinden?" msgid "Log out successful." msgstr "Uitloggen gelukt." -msgid "Offline" -msgstr "Offline" - msgid "Busy" msgstr "Bezet" @@ -6943,15 +7087,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" -msgid "Preparing print job" -msgstr "Print opdracht voorbereiden" - -msgid "Abnormal print file data. Please slice again" -msgstr "Abnormale printbestand. Slice opnieuw" - -msgid "The name length exceeds the limit." -msgstr "The name length exceeds the limit." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7326,6 +7461,9 @@ msgstr "Support filament" msgid "Tree supports" msgstr "" +msgid "Skirt" +msgstr "" + msgid "Prime tower" msgstr "Prime toren" @@ -8222,6 +8360,12 @@ msgstr "Schuifregelaar 5x sneller verplaatsen" msgid "Shift+Mouse wheel" msgstr "Shift+Muiswiel" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Release-opmerkingen" @@ -8345,12 +8489,6 @@ msgstr "Versie" msgid "Update firmware" msgstr "Firmware bijwerken" -msgid "Printing" -msgstr "Printen" - -msgid "Idle" -msgstr "Inactief" - msgid "Beta version" msgstr "" @@ -8385,7 +8523,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "De firmwareversie is abnormaal. Repareren en bijwerken is vereist voor het " "afdrukken. Wil je nu updaten? Je kunt ook later op de printer updaten of " @@ -8528,9 +8666,6 @@ msgstr "" msgid "Gap infill" msgstr "Gat opvulling" -msgid "Skirt" -msgstr "" - msgid "Support interface" msgstr "Support interface" @@ -10263,8 +10398,8 @@ msgstr "" msgid "(Undefined)" msgstr "(niet gedefinieerd)" -msgid "Infill direction" -msgstr "Vulling (infill) richting" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10273,6 +10408,20 @@ msgstr "" "Dit is de hoek voor een dun opvulpatroon, dat het begin of de hoofdrichting " "van de lijnen bepaalt." +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Vulling percentage" @@ -10581,11 +10730,15 @@ msgid "Arc fitting" msgstr "Boog montage" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Schakel dit in om een G-codebestand te krijgen met G2- en G3-bewegingen. De " -"pastolerantie is gelijk aan de resolutie." msgid "Add line number" msgstr "Lijn hoogte toevoegen" @@ -10785,13 +10938,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Vulling (infill)/wand overlap" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"Hierdoor kan het opvulgebied (infill) iets worden vergroot om de wanden te " -"overlappen voor een betere hechting. De procentuele waarde is relatief ten " -"opzichte van de lijndikte van de opvulling." msgid "Speed of internal sparse infill" msgstr "Dit is de snelheid voor de dunne vulling (infill)" @@ -11711,6 +11876,23 @@ msgstr "Skirt height" msgid "How many layers of skirt. Usually only one layer" msgstr "Number of skirt layers: usually only one" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Rand (skirt) lussen" @@ -11725,6 +11907,17 @@ msgstr "" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "" +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -12427,6 +12620,19 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "" @@ -14141,7 +14347,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -14150,9 +14356,6 @@ msgstr "" msgid "Printer Setting" msgstr "" -msgid "Export Configs" -msgstr "" - msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -15037,6 +15240,27 @@ msgid "" "probability of warping." msgstr "" +#~ msgid "Export &Configs" +#~ msgstr "Export &Configs" + +#~ msgid "Infill direction" +#~ msgstr "Vulling (infill) richting" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Schakel dit in om een G-codebestand te krijgen met G2- en G3-bewegingen. " +#~ "De pastolerantie is gelijk aan de resolutie." + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "Hierdoor kan het opvulgebied (infill) iets worden vergroot om de wanden " +#~ "te overlappen voor een betere hechting. De procentuele waarde is relatief " +#~ "ten opzichte van de lijndikte van de opvulling." + #~ msgid "Unload Filament" #~ msgstr "Lossen" diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index bbd2bdff2a..6dff8f9f35 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer 2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-16 21:56+0200\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: \n" "Last-Translator: Krzysztof Morga \n" "Language-Team: \n" @@ -10,7 +10,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 " +"|| n%100>14) ? 1 : 2);\n" "X-Generator: Poedit 3.4.4\n" msgid "Supports Painting" @@ -108,8 +109,12 @@ msgid "Lay on face" msgstr "Połóż na powierzchni" #, boost-format -msgid "Filament count exceeds the maximum number that painting tool supports. only the first %1% filaments will be available in painting tool." -msgstr "Liczba filamentów przekracza maksymalną ilość obsługiwaną przez narzędzie malowania. Tylko pierwsze %1% filamenty będą dostępne w tym narzędziu." +msgid "" +"Filament count exceeds the maximum number that painting tool supports. only " +"the first %1% filaments will be available in painting tool." +msgstr "" +"Liczba filamentów przekracza maksymalną ilość obsługiwaną przez narzędzie " +"malowania. Tylko pierwsze %1% filamenty będą dostępne w tym narzędziu." msgid "Color Painting" msgstr "Malowanie kolorem" @@ -359,7 +364,8 @@ msgid "" msgstr "" "Kliknij, aby obrócić płaszczyznę przekroju.\n" "Przeciągnij, aby przesunąć płaszczyznę przekroju.\n" -"Kliknij prawym przyciskiem myszy na część modelu, aby przypisać ją do drugiej strony" +"Kliknij prawym przyciskiem myszy na część modelu, aby przypisać ją do " +"drugiej strony" msgid "Move cut plane" msgstr "Przesuń przekrój" @@ -524,7 +530,9 @@ msgid "Cut by Plane" msgstr "Cięcie płaszczyzną" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" -msgstr "niezamknięte krawędzie mogą być spowodowane narzędziem do przecinania, czy chcesz to teraz naprawić?" +msgstr "" +"niezamknięte krawędzie mogą być spowodowane narzędziem do przecinania, czy " +"chcesz to teraz naprawić?" msgid "Repairing model object" msgstr "Naprawianie obiektu modelu" @@ -545,8 +553,12 @@ msgid "Decimate ratio" msgstr "Współczynnik dziesiątkowania" #, boost-format -msgid "Processing model '%1%' with more than 1M triangles could be slow. It is highly recommended to simplify the model." -msgstr "Przetwarzanie modelu '%1%' z więcej niż 1 mln trójkątów może być wolne. Zaleca się zastosowanie uproszczenia modelu." +msgid "" +"Processing model '%1%' with more than 1M triangles could be slow. It is " +"highly recommended to simplify the model." +msgstr "" +"Przetwarzanie modelu '%1%' z więcej niż 1 mln trójkątów może być wolne. " +"Zaleca się zastosowanie uproszczenia modelu." msgid "Simplify model" msgstr "Uprość model" @@ -555,7 +567,8 @@ msgid "Simplify" msgstr "Uprość" msgid "Simplification is currently only allowed when a single part is selected" -msgstr "Obecnie upraszczanie jest dozwolone tylko przy wybranej pojedynczej części" +msgstr "" +"Obecnie upraszczanie jest dozwolone tylko przy wybranej pojedynczej części" msgid "Error" msgstr "Błąd" @@ -714,14 +727,19 @@ msgstr "Domyślna czcionka" msgid "Advanced" msgstr "Zaawansowane" -msgid "The text cannot be written using the selected font. Please try choosing a different font." -msgstr "Nie można napisać tekstu przy użyciu wybranej czcionki. Spróbuj wybrać inną czcionkę." +msgid "" +"The text cannot be written using the selected font. Please try choosing a " +"different font." +msgstr "" +"Nie można napisać tekstu przy użyciu wybranej czcionki. Spróbuj wybrać inną " +"czcionkę." msgid "Embossed text cannot contain only white spaces." msgstr "Pole do wprowadzania tekstu nie może być puste." msgid "Text contains character glyph (represented by '?') unknown by font." -msgstr "Tekst zawiera znak znaków (reprezentowany przez '?') nieznany dla czcionki." +msgstr "" +"Tekst zawiera znak znaków (reprezentowany przez '?') nieznany dla czcionki." msgid "Text input doesn't show font skew." msgstr "Wprowadzanie tekstu nie pokazuje nachylenia czcionki." @@ -733,10 +751,12 @@ msgid "Text input doesn't show gap between lines." msgstr "Wprowadzanie tekstu nie pokazuje odstępu między wierszami." msgid "Too tall, diminished font height inside text input." -msgstr "Zmniejsz rozmiar czcionki, tekst jest za duży wewnątrz pola tekstowego." +msgstr "" +"Zmniejsz rozmiar czcionki, tekst jest za duży wewnątrz pola tekstowego." msgid "Too small, enlarged font height inside text input." -msgstr "Powiększ rozmiar czcionki, tekst jest za mały wewnątrz pola tekstowego." +msgstr "" +"Powiększ rozmiar czcionki, tekst jest za mały wewnątrz pola tekstowego." msgid "Text doesn't show current horizontal alignment." msgstr "Tekst nie pokazuje aktualnego wyrównania poziomego." @@ -975,10 +995,12 @@ msgid "Rotate text Clock-wise." msgstr "Obróć tekst zgodnie z ruchem wskazówek zegara." msgid "Unlock the text's rotation when moving text along the object's surface." -msgstr "Odblokuj obrót tekstu podczas przemieszczania go po powierzchni obiektu." +msgstr "" +"Odblokuj obrót tekstu podczas przemieszczania go po powierzchni obiektu." msgid "Lock the text's rotation when moving text along the object's surface." -msgstr "Zablokuj obrót tekstu podczas przemieszczania go po powierzchni obiektu." +msgstr "" +"Zablokuj obrót tekstu podczas przemieszczania go po powierzchni obiektu." msgid "Select from True Type Collection." msgstr "Wybierz z kolekcji True Type." @@ -990,8 +1012,13 @@ msgid "Orient the text towards the camera." msgstr "Orientuj tekst w moim kierunku." #, boost-format -msgid "Can't load exactly same font(\"%1%\"). Aplication selected a similar one(\"%2%\"). You have to specify font for enable edit text." -msgstr "Nie można załadować dokładnie tej samej czcionki (\"%1%\"). Aplikacja wybrała podobną (\"%2%\"). Musisz określić czcionkę, aby umożliwić edycję tekstu." +msgid "" +"Can't load exactly same font(\"%1%\"). Aplication selected a similar " +"one(\"%2%\"). You have to specify font for enable edit text." +msgstr "" +"Nie można załadować dokładnie tej samej czcionki (\"%1%\"). Aplikacja " +"wybrała podobną (\"%2%\"). Musisz określić czcionkę, aby umożliwić edycję " +"tekstu." msgid "No symbol" msgstr "Brak symbolu" @@ -1106,8 +1133,12 @@ msgstr "Nie zdefiniowano rodzaju obrysu" msgid "Path can't be healed from selfintersection and multiple points." msgstr "Ścieżki nie można uleczyć z samoprzecięć i wielu punktów." -msgid "Final shape constains selfintersection or multiple points with same coordinate." -msgstr "Ostateczny kształt zawiera samoprzecięcia lub wielokrotne punkty o tej samej współrzędnej." +msgid "" +"Final shape constains selfintersection or multiple points with same " +"coordinate." +msgstr "" +"Ostateczny kształt zawiera samoprzecięcia lub wielokrotne punkty o tej samej " +"współrzędnej." #, boost-format msgid "Shape is marked as invisible (%1%)." @@ -1349,23 +1380,36 @@ msgid "Machine" msgstr "Drukarka" msgid "Configuration package was loaded, but some values were not recognized." -msgstr "Załadowano pakiet konfiguracyjny, ale niektóre wartości nie zostały rozpoznane." +msgstr "" +"Załadowano pakiet konfiguracyjny, ale niektóre wartości nie zostały " +"rozpoznane." #, boost-format -msgid "Configuration file \"%1%\" was loaded, but some values were not recognized." -msgstr "Plik konfiguracyjny \"%1%\" został załadowany, ale niektóre wartości nie zostały rozpoznane." +msgid "" +"Configuration file \"%1%\" was loaded, but some values were not recognized." +msgstr "" +"Plik konfiguracyjny \"%1%\" został załadowany, ale niektóre wartości nie " +"zostały rozpoznane." msgid "V" msgstr "V" -msgid "OrcaSlicer will terminate because of running out of memory.It may be a bug. It will be appreciated if you report the issue to our team." -msgstr "OrcaSlicer zakończy działanie z powodu braku pamięci. To może być błąd. Będziemy wdzięczni za zgłoszenie problemu naszemu zespołowi." +msgid "" +"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"It will be appreciated if you report the issue to our team." +msgstr "" +"OrcaSlicer zakończy działanie z powodu braku pamięci. To może być błąd. " +"Będziemy wdzięczni za zgłoszenie problemu naszemu zespołowi." msgid "Fatal error" msgstr "Błąd krytyczny" -msgid "OrcaSlicer will terminate because of a localization error. It will be appreciated if you report the specific scenario this issue happened." -msgstr "OrcaSlicer zakończy działanie z powodu błędu lokalizacji. Będziemy wdzięczni za zgłoszenie konkretnej sytuacji, w której wystąpił ten problem." +msgid "" +"OrcaSlicer will terminate because of a localization error. It will be " +"appreciated if you report the specific scenario this issue happened." +msgstr "" +"OrcaSlicer zakończy działanie z powodu błędu lokalizacji. Będziemy wdzięczni " +"za zgłoszenie konkretnej sytuacji, w której wystąpił ten problem." msgid "Critical error" msgstr "Błąd krytyczny" @@ -1391,10 +1435,12 @@ msgid "Connect %s failed! [SN:%s, code=%s]" msgstr "Połączenie z %s nie powiodło się! [SN:%s, kod=%s]" msgid "" -"Orca Slicer requires the Microsoft WebView2 Runtime to operate certain features.\n" +"Orca Slicer requires the Microsoft WebView2 Runtime to operate certain " +"features.\n" "Click Yes to install it now." msgstr "" -"Orca Slicer wymaga Microsoft WebView2 Runtime do działania niektórych funkcji.\n" +"Orca Slicer wymaga Microsoft WebView2 Runtime do działania niektórych " +"funkcji.\n" "Kliknij Tak, aby zainstalować go teraz." msgid "WebView2 Runtime" @@ -1430,11 +1476,14 @@ msgstr "Informacja" msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" -"Please note, application settings will be lost, but printer profiles will not be affected." +"Please note, application settings will be lost, but printer profiles will " +"not be affected." msgstr "" -"Plik konfiguracyjny OrcaSlicer może być uszkodzony i nie może być sparsowany.\n" +"Plik konfiguracyjny OrcaSlicer może być uszkodzony i nie może być " +"sparsowany.\n" "OrcaSlicer próbował odtworzyć plik konfiguracyjny.\n" -"Należy pamiętać, że ustawienia aplikacji zostaną utracone, ale profile drukarek nie będą dotknięte." +"Należy pamiętać, że ustawienia aplikacji zostaną utracone, ale profile " +"drukarek nie będą dotknięte." msgid "Rebuild" msgstr "Przebudowywuje" @@ -1449,7 +1498,8 @@ msgid "Choose one file (3mf):" msgstr "Wybierz jeden plik (3mf):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" -msgstr "Wybierz jeden lub więcej plików (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" +msgstr "" +"Wybierz jeden lub więcej plików (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Wybierz jeden lub więcej plików (3mf/step/stl/svg/obj/amf):" @@ -1460,26 +1510,39 @@ msgstr "Wybierz jeden plik (gcode/3mf):" msgid "Some presets are modified." msgstr "Niektóre ustawienia zostały zmodyfikowane." -msgid "You can keep the modifield presets to the new project, discard or save changes as new presets." -msgstr "Możesz zachować zmodyfikowane ustawienia w nowym projekcie, odrzucić je lub zapisać jako nowe ustawienia." +msgid "" +"You can keep the modifield presets to the new project, discard or save " +"changes as new presets." +msgstr "" +"Możesz zachować zmodyfikowane ustawienia w nowym projekcie, odrzucić je lub " +"zapisać jako nowe ustawienia." msgid "User logged out" msgstr "Użytkownik wylogowany" msgid "new or open project file is not allowed during the slicing process!" -msgstr "nowy lub otwarty plik projektu nie jest dozwolony podczas procesu cięcia!" +msgstr "" +"nowy lub otwarty plik projektu nie jest dozwolony podczas procesu cięcia!" msgid "Open Project" msgstr "Otwórz projekt" -msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally" -msgstr "Wersja Bambu Studio jest przestarzała i musi zostać zaktualizowana do najnowszej wersji, aby działać normalnie" +msgid "" +"The version of Orca Slicer is too low and needs to be updated to the latest " +"version before it can be used normally" +msgstr "" +"Wersja Bambu Studio jest przestarzała i musi zostać zaktualizowana do " +"najnowszej wersji, aby działać normalnie" msgid "Privacy Policy Update" msgstr "Aktualizacja polityki prywatności" -msgid "The number of user presets cached in the cloud has exceeded the upper limit, newly created user presets can only be used locally." -msgstr "Liczba zapisanych w chmurze ustawień użytkownika przekroczyła maksymalny limit, każdy nowo utworzony profil użytkownika można używać tylko lokalnie." +msgid "" +"The number of user presets cached in the cloud has exceeded the upper limit, " +"newly created user presets can only be used locally." +msgstr "" +"Liczba zapisanych w chmurze ustawień użytkownika przekroczyła maksymalny " +"limit, każdy nowo utworzony profil użytkownika można używać tylko lokalnie." msgid "Sync user presets" msgstr "Synchronizuj ustawienia użytkownika" @@ -1669,11 +1732,16 @@ msgid "Orca String Hell" msgstr "Orca String Hell" msgid "" -"This model features text embossment on the top surface. For optimal results, it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 for the 'Only One Wall on Top Surfaces' to work best.\n" +"This model features text embossment on the top surface. For optimal results, " +"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Ten model posiada wytłoczenia tekstu na górnej powierzchni. Dla optymalnych wyników zaleca się ustawienie 'Próg jednej ściany (min_width_top_surface)' na 0, aby opcja 'Tylko jedna ściana na górnych powierzchniach' działała najlepiej.\n" +"Ten model posiada wytłoczenia tekstu na górnej powierzchni. Dla optymalnych " +"wyników zaleca się ustawienie 'Próg jednej ściany (min_width_top_surface)' " +"na 0, aby opcja 'Tylko jedna ściana na górnych powierzchniach' działała " +"najlepiej.\n" "Tak - Zmień te ustawienia automatycznie\n" "Nie - Nie zmieniaj tych ustawień" @@ -1831,6 +1899,9 @@ msgstr "Dodaj prymityw" msgid "Add Handy models" msgstr "Dodaj modele podręczne" +msgid "Add Models" +msgstr "Dodaj modele" + msgid "Show Labels" msgstr "Pokaż etykiety" @@ -1970,7 +2041,9 @@ msgid "Click the icon to reset all settings of the object" msgstr "Kliknij ikonę, aby zresetować wszystkie ustawienia obiektu" msgid "Right button click the icon to drop the object printable property" -msgstr "Kliknij prawym przyciskiem myszy ikonę, aby włączyć/wyłączyć możliwość druku obiektu" +msgstr "" +"Kliknij prawym przyciskiem myszy ikonę, aby włączyć/wyłączyć możliwość druku " +"obiektu" msgid "Click the icon to toggle printable property of the object" msgstr "Kliknij ikonę, aby włączyć/wyłączyć możliwość druku obiektu" @@ -2000,10 +2073,16 @@ msgid "Add Modifier" msgstr "Dodaj modyfikator" msgid "Switch to per-object setting mode to edit modifier settings." -msgstr "Przełącz się w tryb edycji ustawień druku dla każdego obiektu, aby edytować ustawienia modyfikatora." +msgstr "" +"Przełącz się w tryb edycji ustawień druku dla każdego obiektu, aby edytować " +"ustawienia modyfikatora." -msgid "Switch to per-object setting mode to edit process settings of selected objects." -msgstr "Przełącz się w tryb edycji ustawień druku dla każdego obiektu, aby edytować ustawienia procesu dla wybranych obiektów." +msgid "" +"Switch to per-object setting mode to edit process settings of selected " +"objects." +msgstr "" +"Przełącz się w tryb edycji ustawień druku dla każdego obiektu, aby edytować " +"ustawienia procesu dla wybranych obiektów." msgid "Delete connector from object which is a part of cut" msgstr "Usuń łącznik z obiektu będącego częścią przecięcia" @@ -2014,19 +2093,25 @@ msgstr "Usuń bryłę z obiektu, który jest częścią przecięcia" msgid "Delete negative volume from object which is a part of cut" msgstr "Usuń odejmowanie objętości z obiektu będącego częścią przecięcia." -msgid "To save cut correspondence you can delete all connectors from all related objects." -msgstr "Aby zachować korespondencję cięcia, możesz usunąć wszystkie łączniki ze wszystkich powiązanych obiektów." +msgid "" +"To save cut correspondence you can delete all connectors from all related " +"objects." +msgstr "" +"Aby zachować korespondencję cięcia, możesz usunąć wszystkie łączniki ze " +"wszystkich powiązanych obiektów." msgid "" "This action will break a cut correspondence.\n" "After that model consistency can't be guaranteed .\n" "\n" -"To manipulate with solid parts or negative volumes you have to invalidate cut infornation first." +"To manipulate with solid parts or negative volumes you have to invalidate " +"cut infornation first." msgstr "" "To działanie przerwie korespondencję cięcia.\n" "Po tym nie można zagwarantować spójności modelu.\n" "\n" -"Aby manipulować bryłami lub modyfikatorami z odejmowaniem objętości musisz najpierw unieważnić informację o przecinaniu." +"Aby manipulować bryłami lub modyfikatorami z odejmowaniem objętości musisz " +"najpierw unieważnić informację o przecinaniu." msgid "Delete all connectors" msgstr "Usuń wszystkie łączniki" @@ -2035,7 +2120,8 @@ msgid "Deleting the last solid part is not allowed." msgstr "Usunięcie ostatniej części bryły jest niedozwolone." msgid "The target object contains only one part and can not be splited." -msgstr "Obiekt docelowy zawiera tylko jedną część i nie może zostać podzielony." +msgstr "" +"Obiekt docelowy zawiera tylko jedną część i nie może zostać podzielony." msgid "Assembly" msgstr "Zestawienie" @@ -2076,11 +2162,18 @@ msgstr "Warstwa" msgid "Selection conflicts" msgstr "Konflikty wyboru" -msgid "If first selected item is an object, the second one should also be object." -msgstr "Jeśli pierwszy zaznaczony element to obiekt, to drugi powinien również być obiektem." +msgid "" +"If first selected item is an object, the second one should also be object." +msgstr "" +"Jeśli pierwszy zaznaczony element to obiekt, to drugi powinien również być " +"obiektem." -msgid "If first selected item is a part, the second one should be part in the same object." -msgstr "Jeśli pierwszy zaznaczony element to część, to drugi powinien być częścią tego samego obiektu." +msgid "" +"If first selected item is a part, the second one should be part in the same " +"object." +msgstr "" +"Jeśli pierwszy zaznaczony element to część, to drugi powinien być częścią " +"tego samego obiektu." msgid "The type of the last solid object part is not to be changed." msgstr "Nie można zmienić typu ostatniej pełnej części obiektu." @@ -2140,7 +2233,9 @@ msgid "Invalid numeric." msgstr "Nieprawidłowa wartość numeryczna." msgid "one cell can only be copied to one or multiple cells in the same column" -msgstr "jedna komórka może być skopiowana do jednej lub wielu komórek w tej samej kolumnie" +msgstr "" +"jedna komórka może być skopiowana do jednej lub wielu komórek w tej samej " +"kolumnie" msgid "multiple cells copy is not supported" msgstr "kopiowanie wielu komórek nie jest obsługiwane" @@ -2299,7 +2394,8 @@ msgid "Failed to connect to cloud service" msgstr "Nie udało się połączyć z usługą w chmurze" msgid "Please click on the hyperlink above to view the cloud service status" -msgstr "Proszę kliknąć na powyższy hiperłącze, aby zobaczyć status usługi w chmurze" +msgstr "" +"Proszę kliknąć na powyższy hiperłącze, aby zobaczyć status usługi w chmurze" msgid "Failed to connect to the printer" msgstr "Nie udało się połączyć z drukarką" @@ -2307,7 +2403,7 @@ msgstr "Nie udało się połączyć z drukarką" msgid "Connection to printer failed" msgstr "Nie udało się połączyć z drukarką" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "Proszę sprawdzić połączenie sieciowe drukarki i Studio." msgid "Connecting..." @@ -2353,7 +2449,8 @@ msgid "Calibrating AMS..." msgstr "Kalibracja AMS..." msgid "A problem occurred during calibration. Click to view the solution." -msgstr "Wystąpił problem podczas kalibracji. Kliknij, aby zobaczyć rozwiązanie." +msgstr "" +"Wystąpił problem podczas kalibracji. Kliknij, aby zobaczyć rozwiązanie." msgid "Calibrate again" msgstr "Kalibruj ponownie" @@ -2395,8 +2492,12 @@ msgstr "" "Załaduj nowy\n" "filament" -msgid "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically load or unload filaments." -msgstr "Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub \"Wyładuj\" ,aby automatycznie załadować lub wyładować filamenty." +msgid "" +"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " +"load or unload filaments." +msgstr "" +"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub \"Wyładuj" +"\" ,aby automatycznie załadować lub wyładować filamenty." msgid "Edit" msgstr "Edytuj" @@ -2427,21 +2528,29 @@ msgstr "Układanie" msgid "Arranging canceled." msgstr "Układanie anulowane." -msgid "Arranging is done but there are unpacked items. Reduce spacing and try again." -msgstr "Ustawianie zostało zakończone, ale niektóre elementy nie mogły zostać ustawione. Zmniejsz odstępy i spróbuj ponownie." +msgid "" +"Arranging is done but there are unpacked items. Reduce spacing and try again." +msgstr "" +"Ustawianie zostało zakończone, ale niektóre elementy nie mogły zostać " +"ustawione. Zmniejsz odstępy i spróbuj ponownie." msgid "Arranging done." msgstr "Układanie zakończone." -msgid "Arrange failed. Found some exceptions when processing object geometries." -msgstr "Ułożenie nie powiodło się. Wykryto niektóre wyjątki podczas przetwarzania geometrii obiektów." +msgid "" +"Arrange failed. Found some exceptions when processing object geometries." +msgstr "" +"Ułożenie nie powiodło się. Wykryto niektóre wyjątki podczas przetwarzania " +"geometrii obiektów." #, c-format, boost-format msgid "" -"Arrangement ignored the following objects which can't fit into a single bed:\n" +"Arrangement ignored the following objects which can't fit into a single " +"bed:\n" "%s" msgstr "" -"Ustawienie zignorowało następujące obiekty, które nie mieszczą się na pojedynczej płycie:\n" +"Ustawienie zignorowało następujące obiekty, które nie mieszczą się na " +"pojedynczej płycie:\n" "%s" msgid "" @@ -2501,7 +2610,8 @@ msgid "Task canceled." msgstr "Zadanie anulowane." msgid "Upload task timed out. Please check the network status and try again." -msgstr "Przekroczono limit czasu przesyłania. Sprawdź stan sieci i spróbuj ponownie." +msgstr "" +"Przekroczono limit czasu przesyłania. Sprawdź stan sieci i spróbuj ponownie." msgid "Cloud service connection failed. Please try again." msgstr "Nie udało się połączyć z usługą w chmurze. Spróbuj ponownie." @@ -2509,26 +2619,42 @@ msgstr "Nie udało się połączyć z usługą w chmurze. Spróbuj ponownie." msgid "Print file not found. please slice again." msgstr "Plik druku nie znaleziony. Proszę powtórzyć cięcie." -msgid "The print file exceeds the maximum allowable size (1GB). Please simplify the model and slice again." -msgstr "Plik druku przekracza maksymalny dopuszczalny rozmiar (1GB). Proszę uprościć model i pociąć go ponownie." +msgid "" +"The print file exceeds the maximum allowable size (1GB). Please simplify the " +"model and slice again." +msgstr "" +"Plik druku przekracza maksymalny dopuszczalny rozmiar (1GB). Proszę uprościć " +"model i pociąć go ponownie." msgid "Failed to send the print job. Please try again." -msgstr "Wysłanie zadania drukowania nie powiodło się. Proszę spróbować ponownie." +msgstr "" +"Wysłanie zadania drukowania nie powiodło się. Proszę spróbować ponownie." msgid "Failed to upload file to ftp. Please try again." -msgstr "Przesłanie pliku na serwer FTP nie powiodło się. Proszę spróbować ponownie." +msgstr "" +"Przesłanie pliku na serwer FTP nie powiodło się. Proszę spróbować ponownie." -msgid "Check the current status of the bambu server by clicking on the link above." +msgid "" +"Check the current status of the bambu server by clicking on the link above." msgstr "Sprawdź aktualny stan serwera Bambu, klikając na powyższy link." -msgid "The size of the print file is too large. Please adjust the file size and try again." -msgstr "Rozmiar pliku drukowania jest zbyt duży. Proszę dostosować rozmiar pliku i spróbować ponownie." +msgid "" +"The size of the print file is too large. Please adjust the file size and try " +"again." +msgstr "" +"Rozmiar pliku drukowania jest zbyt duży. Proszę dostosować rozmiar pliku i " +"spróbować ponownie." msgid "Print file not found, Please slice it again and send it for printing." -msgstr "Nie znaleziono pliku drukowania; proszę ponownie pociąć i wysłać do druku." +msgstr "" +"Nie znaleziono pliku drukowania; proszę ponownie pociąć i wysłać do druku." -msgid "Failed to upload print file to FTP. Please check the network status and try again." -msgstr "Przesłanie pliku drukowania na serwer FTP nie powiodło się. Sprawdź stan sieci i spróbuj ponownie." +msgid "" +"Failed to upload print file to FTP. Please check the network status and try " +"again." +msgstr "" +"Przesłanie pliku drukowania na serwer FTP nie powiodło się. Sprawdź stan " +"sieci i spróbuj ponownie." msgid "Sending print job over LAN" msgstr "Wysyłanie zadania drukowania przez LAN" @@ -2575,8 +2701,12 @@ msgstr "Przed wysłaniem do drukarki należy włożyć kartę SD." msgid "Importing SLA archive" msgstr "Importowanie archiwum SLA" -msgid "The SLA archive doesn't contain any presets. Please activate some SLA printer preset first before importing that SLA archive." -msgstr "Archiwum SLA nie zawiera żadnych ustawień. Przed zaimportowaniem tego archiwum SLA należy najpierw aktywować profil drukarki SLA." +msgid "" +"The SLA archive doesn't contain any presets. Please activate some SLA " +"printer preset first before importing that SLA archive." +msgstr "" +"Archiwum SLA nie zawiera żadnych ustawień. Przed zaimportowaniem tego " +"archiwum SLA należy najpierw aktywować profil drukarki SLA." msgid "Importing canceled." msgstr "Importowanie anulowane." @@ -2584,8 +2714,12 @@ msgstr "Importowanie anulowane." msgid "Importing done." msgstr "Importowanie zakończone." -msgid "The imported SLA archive did not contain any presets. The current SLA presets were used as fallback." -msgstr "Zaimportowane archiwum SLA nie zawierało żadnych ustawień wstępnych. Aktualne ustawienia SLA zostały użyte jako alternatywa." +msgid "" +"The imported SLA archive did not contain any presets. The current SLA " +"presets were used as fallback." +msgstr "" +"Zaimportowane archiwum SLA nie zawierało żadnych ustawień wstępnych. " +"Aktualne ustawienia SLA zostały użyte jako alternatywa." 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" @@ -2629,14 +2763,18 @@ msgstr "Orca Slicer jest licencjonowany na zasadach " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, wersja 3" -msgid "Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and the RepRap community" -msgstr "Orca Slicer opiera się na BambuStudio od Bambulab, które wywodzi się z PrusaSlicer od Prusa Research. PrusaSlicer z kolei bazuje na Slic3r od Alessandro Ranellucci i społeczności RepRap" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" +msgstr "" msgid "Libraries" msgstr "Biblioteki" -msgid "This software uses open source components whose copyright and other proprietary rights belong to their respective owners" -msgstr "To oprogramowanie używa komponentów o otwartym kodzie źródłowym, których prawa autorskie i inne prawa własności należą do ich właścicieli" +msgid "" +"This software uses open source components whose copyright and other " +"proprietary rights belong to their respective owners" +msgstr "" +"To oprogramowanie używa komponentów o otwartym kodzie źródłowym, których " +"prawa autorskie i inne prawa własności należą do ich właścicieli" #, c-format, boost-format msgid "About %s" @@ -2646,7 +2784,8 @@ msgid "Orca Slicer " msgstr "Orca Slicer " msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer." -msgstr "OrcaSlicer opiera się na projektach BambuStudio, PrusaSlicer i SuperSlicer." +msgstr "" +"OrcaSlicer opiera się na projektach BambuStudio, PrusaSlicer i SuperSlicer." msgid "BambuStudio is originally based on PrusaSlicer by PrusaResearch." msgstr "BambuStudio bazuje na PrusaSlicer od PrusaResearch." @@ -2654,9 +2793,12 @@ msgstr "BambuStudio bazuje na PrusaSlicer od PrusaResearch." msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci." msgstr "PrusaSlicer początkowo opiera się na Slic3r od Alessandro Ranellucci." -msgid "Slic3r was created by Alessandro Ranellucci with the help of many other contributors." +msgid "" +"Slic3r was created by Alessandro Ranellucci with the help of many other " +"contributors." msgstr "" -"Slic3r został stworzony przez Alessandro Ranellucci przy współpracy wielu innych współtwórców.\n" +"Slic3r został stworzony przez Alessandro Ranellucci przy współpracy wielu " +"innych współtwórców.\n" "\n" "Tłumaczenie na język polski: KrisMorr " @@ -2711,7 +2853,8 @@ msgid "Factor N" msgstr "Współczynnik N" msgid "Setting Virtual slot information while printing is not supported" -msgstr "Ustawianie informacji o wirtualnym slocie podczas druku nie jest obsługiwane" +msgstr "" +"Ustawianie informacji o wirtualnym slocie podczas druku nie jest obsługiwane" msgid "Are you sure you want to clear the filament information?" msgstr "Czy na pewno chcesz usunąć informacje o filamentach?" @@ -2723,7 +2866,9 @@ msgid "Please input a valid value (K in 0~0.3)" msgstr "Proszę podać prawidłową wartość (K w zakresie od 0 do 0.3)" msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" -msgstr "Proszę podać prawidłową wartość (K w zakresie od 0 do 0.3, N w zakresie od 0.6 do 2.0)" +msgstr "" +"Proszę podać prawidłową wartość (K w zakresie od 0 do 0.3, N w zakresie od " +"0.6 do 2.0)" msgid "Other Color" msgstr "Inny kolor" @@ -2734,8 +2879,14 @@ msgstr "Własny kolor" msgid "Dynamic flow calibration" msgstr "Kalibracja dynamiki przepływu" -msgid "The nozzle temp and max volumetric speed will affect the calibration results. Please fill in the same values as the actual printing. They can be auto-filled by selecting a filament preset." -msgstr "Temperatura dyszy i maksymalna prędkość przepływu mogą wpływać na wyniki kalibracji. Proszę podać takie same wartości jak w rzeczywistym druku. Mogą być automatycznie wypełnione poprzez wybranie ustawień filamentu." +msgid "" +"The nozzle temp and max volumetric speed will affect the calibration " +"results. Please fill in the same values as the actual printing. They can be " +"auto-filled by selecting a filament preset." +msgstr "" +"Temperatura dyszy i maksymalna prędkość przepływu mogą wpływać na wyniki " +"kalibracji. Proszę podać takie same wartości jak w rzeczywistym druku. Mogą " +"być automatycznie wypełnione poprzez wybranie ustawień filamentu." msgid "Nozzle Diameter" msgstr "Średnica dyszy" @@ -2767,8 +2918,14 @@ msgstr "Rozpocznij kalibrację" msgid "Next" msgstr "Dalej" -msgid "Calibration completed. Please find the most uniform extrusion line on your hot bed like the picture below, and fill the value on its left side into the factor K input box." -msgstr "Kalibracja zakończona. Proszę znaleźć na płycie roboczej, linie ekstruzji o najbardziej jednolitym wyglądzie, podobne do przedstawionego poniżej obrazu, i wprowadź tę wartość w pole wprowadzania współczynnika K." +msgid "" +"Calibration completed. Please find the most uniform extrusion line on your " +"hot bed like the picture below, and fill the value on its left side into the " +"factor K input box." +msgstr "" +"Kalibracja zakończona. Proszę znaleźć na płycie roboczej, linie ekstruzji o " +"najbardziej jednolitym wyglądzie, podobne do przedstawionego poniżej obrazu, " +"i wprowadź tę wartość w pole wprowadzania współczynnika K." msgid "Save" msgstr "Zapisz" @@ -2799,8 +2956,11 @@ msgstr "Krok" msgid "AMS Slots" msgstr "Sloty AMS" -msgid "Note: Only the AMS slots loaded with the same material type can be selected." -msgstr "Uwaga: można wybierać tylko sloty AMS załadowane tym samym rodzajem filamentu." +msgid "" +"Note: Only the AMS slots loaded with the same material type can be selected." +msgstr "" +"Uwaga: można wybierać tylko sloty AMS załadowane tym samym rodzajem " +"filamentu." msgid "Enable AMS" msgstr "Włącz AMS" @@ -2817,11 +2977,23 @@ msgstr "Drukuj z filamentem zamontowanym na tylnej części obudowy" msgid "Current Cabin humidity" msgstr "Aktualna wilgotność w komorze" -msgid "Please change the desiccant when it is too wet. The indicator may not represent accurately in following cases : when the lid is open or the desiccant pack is changed. it take hours to absorb the moisture, low temperatures also slow down the process." -msgstr "Pamiętaj o wymianie pakietu pochłaniacza wilgoci gdy stanie się on zbyt mokry. Wskaźnik może nie dokładnie odzwierciedlać stan wilgotności gdy: otwarta jest pokrywa lub pakiet pochłaniacza został nie dawno wymieniony. Proces absorpcji wilgoci może zająć kilka godzin, a niskie temperatury również spowolnią ten proces." +msgid "" +"Please change the desiccant when it is too wet. The indicator may not " +"represent accurately in following cases : when the lid is open or the " +"desiccant pack is changed. it take hours to absorb the moisture, low " +"temperatures also slow down the process." +msgstr "" +"Pamiętaj o wymianie pakietu pochłaniacza wilgoci gdy stanie się on zbyt " +"mokry. Wskaźnik może nie dokładnie odzwierciedlać stan wilgotności gdy: " +"otwarta jest pokrywa lub pakiet pochłaniacza został nie dawno wymieniony. " +"Proces absorpcji wilgoci może zająć kilka godzin, a niskie temperatury " +"również spowolnią ten proces." -msgid "Config which AMS slot should be used for a filament used in the print job" -msgstr "Konfiguruj, które gniazdo AMS powinno być używane dla filamentu w trakcie zadania drukowania" +msgid "" +"Config which AMS slot should be used for a filament used in the print job" +msgstr "" +"Konfiguruj, które gniazdo AMS powinno być używane dla filamentu w trakcie " +"zadania drukowania" msgid "Filament used in this print job" msgstr "Filament używany w tym zadaniu druku" @@ -2836,16 +3008,22 @@ msgid "Do not Enable AMS" msgstr "Nie włączaj AMS" msgid "Print using materials mounted on the back of the case" -msgstr "Drukowanie przy użyciu materiałów zamontowanych na tylnej części obudowy" +msgstr "" +"Drukowanie przy użyciu materiałów zamontowanych na tylnej części obudowy" msgid "Print with filaments in ams" msgstr "Drukowanie filamentem z AMS" msgid "Print with filaments mounted on the back of the chassis" -msgstr "Drukowanie przy użyciu materiałów zamontowanych na tylnej części obudowy" +msgstr "" +"Drukowanie przy użyciu materiałów zamontowanych na tylnej części obudowy" -msgid "When the current material run out, the printer will continue to print in the following order." -msgstr "Gdy obecny filament się skończy, drukarka będzie kontynuować druk w następującej kolejności." +msgid "" +"When the current material run out, the printer will continue to print in the " +"following order." +msgstr "" +"Gdy obecny filament się skończy, drukarka będzie kontynuować druk w " +"następującej kolejności." msgid "Group" msgstr "Grupa" @@ -2853,15 +3031,22 @@ msgstr "Grupa" msgid "The printer does not currently support auto refill." msgstr "Obecnie drukarka nie obsługuje automatycznego uzupełniania." -msgid "AMS filament backup is not enabled, please enable it in the AMS settings." -msgstr "Kopia zapasowa filamentu AMS nie jest włączona, proszę włączyć ją w ustawieniach AMS." +msgid "" +"AMS filament backup is not enabled, please enable it in the AMS settings." +msgstr "" +"Kopia zapasowa filamentu AMS nie jest włączona, proszę włączyć ją w " +"ustawieniach AMS." msgid "" -"If there are two identical filaments in AMS, AMS filament backup will be enabled. \n" -"(Currently supporting automatic supply of consumables with the same brand, material type, and color)" +"If there are two identical filaments in AMS, AMS filament backup will be " +"enabled. \n" +"(Currently supporting automatic supply of consumables with the same brand, " +"material type, and color)" msgstr "" -"W przypadku, gdy podczas drukowania w systemie AMS zużyje się jeden z filamentów, system automatycznie przełączy na drugi identyczny filament.\n" -"(System obecnie wspiera automatyczne przełączanie na materiały eksploatacyjne tej samej marki, rodzaju i koloru)" +"W przypadku, gdy podczas drukowania w systemie AMS zużyje się jeden z " +"filamentów, system automatycznie przełączy na drugi identyczny filament.\n" +"(System obecnie wspiera automatyczne przełączanie na materiały " +"eksploatacyjne tej samej marki, rodzaju i koloru)" msgid "DRY" msgstr "SUCHY" @@ -2875,41 +3060,80 @@ msgstr "Ustawienia AMS" msgid "Insertion update" msgstr "Aktualizacja wymiany" -msgid "The AMS will automatically read the filament information when inserting a new Bambu Lab filament. This takes about 20 seconds." -msgstr "AMS automatycznie odczyta informacje o filamencie Bambu Lab zaraz po jego włożeniu. To zajmie około 20 sekund." +msgid "" +"The AMS will automatically read the filament information when inserting a " +"new Bambu Lab filament. This takes about 20 seconds." +msgstr "" +"AMS automatycznie odczyta informacje o filamencie Bambu Lab zaraz po jego " +"włożeniu. To zajmie około 20 sekund." -msgid "Note: if a new filament is inserted during printing, the AMS will not automatically read any information until printing is completed." -msgstr "Uwaga: jeśli podczas drukowania zostanie włożony nowy filament, system AMS nie będzie automatycznie odczytywał żadnych informacji do momentu zakończenia drukowania." +msgid "" +"Note: if a new filament is inserted during printing, the AMS will not " +"automatically read any information until printing is completed." +msgstr "" +"Uwaga: jeśli podczas drukowania zostanie włożony nowy filament, system AMS " +"nie będzie automatycznie odczytywał żadnych informacji do momentu " +"zakończenia drukowania." -msgid "When inserting a new filament, the AMS will not automatically read its information, leaving it blank for you to enter manually." -msgstr "Podczas wkładania nowego filamentu, AMS nie będzie automatycznie odczytywać jego informacji, pozostawiając je puste, abyś mógł wprowadzić je ręcznie." +msgid "" +"When inserting a new filament, the AMS will not automatically read its " +"information, leaving it blank for you to enter manually." +msgstr "" +"Podczas wkładania nowego filamentu, AMS nie będzie automatycznie odczytywać " +"jego informacji, pozostawiając je puste, abyś mógł wprowadzić je ręcznie." msgid "Power on update" msgstr "Aktualizacja po włączeniu zasilania" -msgid "The AMS will automatically read the information of inserted filament on start-up. It will take about 1 minute.The reading process will roll filament spools." -msgstr "AMS automatycznie odczyta informacje o włożonym filamencie podczas uruchamiania. To zajmie około 1 minuty. Proces odczytu sprawi, że rolki filamentów się obrócą." +msgid "" +"The AMS will automatically read the information of inserted filament on " +"start-up. It will take about 1 minute.The reading process will roll filament " +"spools." +msgstr "" +"AMS automatycznie odczyta informacje o włożonym filamencie podczas " +"uruchamiania. To zajmie około 1 minuty. Proces odczytu sprawi, że rolki " +"filamentów się obrócą." -msgid "The AMS will not automatically read information from inserted filament during startup and will continue to use the information recorded before the last shutdown." -msgstr "AMS nie będzie automatycznie odczytywać informacji z włożonego filamentu podczas uruchamiania i będzie kontynuować korzystanie z informacji zapisanych przed ostatnim wyłączeniem." +msgid "" +"The AMS will not automatically read information from inserted filament " +"during startup and will continue to use the information recorded before the " +"last shutdown." +msgstr "" +"AMS nie będzie automatycznie odczytywać informacji z włożonego filamentu " +"podczas uruchamiania i będzie kontynuować korzystanie z informacji " +"zapisanych przed ostatnim wyłączeniem." msgid "Update remaining capacity" msgstr "Aktualizuj pozostałą ilość" -msgid "The AMS will estimate Bambu filament's remaining capacity after the filament info is updated. During printing, remaining capacity will be updated automatically." -msgstr "AMS oszacuje pozostałą ilość filamentu Bambu po aktualizacji informacji o filamencie. Podczas drukowania, pozostała ilość na szpuli będzie aktualizowana automatycznie." +msgid "" +"The AMS will estimate Bambu filament's remaining capacity after the filament " +"info is updated. During printing, remaining capacity will be updated " +"automatically." +msgstr "" +"AMS oszacuje pozostałą ilość filamentu Bambu po aktualizacji informacji o " +"filamencie. Podczas drukowania, pozostała ilość na szpuli będzie " +"aktualizowana automatycznie." msgid "AMS filament backup" msgstr "Automatyczne przełączenie filamentu AMS" -msgid "AMS will continue to another spool with the same properties of filament automatically when current filament runs out" -msgstr "AMS automatycznie przełączy się na inną szpule z tym samym rodzajem filamentu, gdy obecny filament się skończy" +msgid "" +"AMS will continue to another spool with the same properties of filament " +"automatically when current filament runs out" +msgstr "" +"AMS automatycznie przełączy się na inną szpule z tym samym rodzajem " +"filamentu, gdy obecny filament się skończy" msgid "Air Printing Detection" msgstr "Wykrywanie druku w powietrzu" -msgid "Detects clogging and filament grinding, halting printing immediately to conserve time and filament." -msgstr "Wykrywa zatkanie i zacięcie się filamentu, natychmiast zatrzymując drukowanie w celu oszczędzenia czasu i filamentu." +msgid "" +"Detects clogging and filament grinding, halting printing immediately to " +"conserve time and filament." +msgstr "" +"Wykrywa zatkanie i zacięcie się filamentu, natychmiast zatrzymując " +"drukowanie w celu oszczędzenia czasu i filamentu." msgid "File" msgstr "Plik" @@ -2917,11 +3141,19 @@ msgstr "Plik" msgid "Calibration" msgstr "Kalibracja" -msgid "Failed to download the plug-in. Please check your firewall settings and vpn software, check and retry." -msgstr "Nie udało się pobrać wtyczki. Sprawdź ustawienia zapory ogniowej i oprogramowania VPN, sprawdź i spróbuj ponownie." +msgid "" +"Failed to download the plug-in. Please check your firewall settings and vpn " +"software, check and retry." +msgstr "" +"Nie udało się pobrać wtyczki. Sprawdź ustawienia zapory ogniowej i " +"oprogramowania VPN, sprawdź i spróbuj ponownie." -msgid "Failed to install the plug-in. Please check whether it is blocked or deleted by anti-virus software." -msgstr "Nie udało się zainstalować wtyczki. Sprawdź, czy nie jest zablokowana lub usunięta przez oprogramowanie antywirusowe." +msgid "" +"Failed to install the plug-in. Please check whether it is blocked or deleted " +"by anti-virus software." +msgstr "" +"Nie udało się zainstalować wtyczki. Sprawdź, czy nie jest zablokowana lub " +"usunięta przez oprogramowanie antywirusowe." msgid "click here to see more info" msgstr "cliknij tutaj, aby zobaczyć więcej informacji" @@ -2929,14 +3161,21 @@ msgstr "cliknij tutaj, aby zobaczyć więcej informacji" msgid "Please home all axes (click " msgstr "Ustaw wszystkie osie na pozycje domową (kliknij " -msgid ") to locate the toolhead's position. This prevents device moving beyond the printable boundary and causing equipment wear." -msgstr ") aby określić pozycję głowicy drukującej. To uniemożliwi narzędziu wyjście poza możliwy obszar druku, co chroni sprzęt przed zużyciem." +msgid "" +") to locate the toolhead's position. This prevents device moving beyond the " +"printable boundary and causing equipment wear." +msgstr "" +") aby określić pozycję głowicy drukującej. To uniemożliwi narzędziu wyjście " +"poza możliwy obszar druku, co chroni sprzęt przed zużyciem." msgid "Go Home" msgstr "Poz.Domowa" -msgid "A error occurred. Maybe memory of system is not enough or it's a bug of the program" -msgstr "Wystąpił błąd. Być może brakuje pamięci w systemie lub jest to błąd programu" +msgid "" +"A error occurred. Maybe memory of system is not enough or it's a bug of the " +"program" +msgstr "" +"Wystąpił błąd. Być może brakuje pamięci w systemie lub jest to błąd programu" msgid "Please save project and restart the program. " msgstr "Proszę zapisać projekt i ponownie uruchomić program. " @@ -2979,27 +3218,50 @@ msgstr "Nieznany błąd podczas eksportowania G-code." #, boost-format msgid "" -"Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?\n" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" "Error message: %1%" msgstr "" -"Kopiowanie tymczasowego G-code do wyjściowego pliku G-code nie powiodło się. Być może karta SD jest zablokowana do zapisu?\n" +"Kopiowanie tymczasowego G-code do wyjściowego pliku G-code nie powiodło się. " +"Być może karta SD jest zablokowana do zapisu?\n" "Komunikat błędu: %1%" #, boost-format -msgid "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 "Kopiowanie tymczasowego G-code do wyjściowego pliku G-code nie powiodło się. Może być problem z urządzeniem docelowym, spróbuj ponownie wyeksportować lub użyć innego urządzenia. Uszkodzony plik wyjściowego G-code znajduje się w pliku %1%.tmp." +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 "" +"Kopiowanie tymczasowego G-code do wyjściowego pliku G-code nie powiodło się. " +"Może być problem z urządzeniem docelowym, spróbuj ponownie wyeksportować lub " +"użyć innego urządzenia. Uszkodzony plik wyjściowego G-code znajduje się w " +"pliku %1%.tmp." #, boost-format -msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again." -msgstr "Zmiana nazwy G-code po skopiowaniu pliku do folderu docelowego nie powiodła się. Bieżąca ścieżka to %1%.tmp. Spróbuj ponownie go wyeksportować." +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" +"Zmiana nazwy G-code po skopiowaniu pliku do folderu docelowego nie powiodła " +"się. Bieżąca ścieżka to %1%.tmp. Spróbuj ponownie go wyeksportować." #, boost-format -msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp." -msgstr "Kopiowanie tymczasowego G-code zakończono, ale oryginalny G-code w lokalizacji %1% nie mógł być otwarty podczas sprawdzania kopii. Wygenerowany G-code znajduje się w lokalizacji %2%.tmp." +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" +"Kopiowanie tymczasowego G-code zakończono, ale oryginalny G-code w " +"lokalizacji %1% nie mógł być otwarty podczas sprawdzania kopii. Wygenerowany " +"G-code znajduje się w lokalizacji %2%.tmp." #, boost-format -msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp." -msgstr "Kopiowanie tymczasowego G-code zakończono, ale wyeksportowany G-code nie mógł być otwarty podczas sprawdzania kopii. Wygenerowany G-code znajduje się w lokalizacji %1%.tmp." +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" +"Kopiowanie tymczasowego G-code zakończono, ale wyeksportowany G-code nie " +"mógł być otwarty podczas sprawdzania kopii. Wygenerowany G-code znajduje się " +"w lokalizacji %1%.tmp." #, boost-format msgid "G-code file exported to %1%" @@ -3023,7 +3285,9 @@ msgstr "Kopiowanie tymczasowego G-kodu do G-kodu wyjściowego nie powiodło się #, boost-format msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" -msgstr "Planowanie przesyłania do `%1%`. Zobacz Okno -> Kolejka przesyłania do hosta drukarki" +msgstr "" +"Planowanie przesyłania do `%1%`. Zobacz Okno -> Kolejka przesyłania do hosta " +"drukarki" msgid "Device" msgstr "Urządzenie" @@ -3075,12 +3339,68 @@ msgstr "Status urządzenia" msgid "Actions" msgstr "Działania" -msgid "Please select the devices you would like to manage here (up to 6 devices)" -msgstr "Proszę wybrać urządzenia, którymi chciałbyś tutaj zarządzać (do 6 urządzeń)" +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" +"Proszę wybrać urządzenia, którymi chciałbyś tutaj zarządzać (do 6 urządzeń)" msgid "Add" msgstr "Dodaj" +msgid "Idle" +msgstr "Bezczynność" + +msgid "Printing" +msgstr "Drukowanie" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Niekompatybilne" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Przygotowanie" + +msgid "Slicing" +msgstr "Cięcie" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + msgid "Resume" msgstr "Wznów" @@ -3114,6 +3434,12 @@ msgstr "Przygotowywanie zadania do druku" msgid "Abnormal print file data. Please slice again" msgstr "Nieprawidłowe dane pliku druku. Proszę ponownie przetnij" +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + msgid "Use External Spool" msgstr "Użyj zewnętrznej szpuli" @@ -3135,14 +3461,21 @@ msgstr "Opcje wysyłania" msgid "Send" msgstr "Wyślij" -msgid "printers at the same time.(It depends on how many devices can undergo heating at the same time.)" -msgstr "jednocześnie drukowanie na kilku drukarkach (zależy to od liczby urządzeń, które można podgrzewać jednocześnie.)" +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" +"jednocześnie drukowanie na kilku drukarkach (zależy to od liczby urządzeń, " +"które można podgrzewać jednocześnie.)" msgid "Wait" msgstr "Czekaj" -msgid "minute each batch.(It depends on how long it takes to complete the heating.)" -msgstr "minut na każdą partię. (To zależy od tego, jak długo trwa proces nagrzewania.)" +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" +"minut na każdą partię. (To zależy od tego, jak długo trwa proces " +"nagrzewania.)" msgid "Name is invalid;" msgstr "Nazwa jest nieprawidłowa;" @@ -3171,11 +3504,17 @@ msgstr "Punkt bazowy" msgid "Size in X and Y of the rectangular plate." msgstr "Rozmiar w osi X i Y prostokątnej płyty." -msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." +msgid "" +"Distance of the 0,0 G-code coordinate from the front left corner of the " +"rectangle." msgstr "Odległość punktu 0,0 w G-code od lewego górnego rogu prostokąta." -msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center." -msgstr "Średnica stołu drukarki. Przyjmuje się, że punkt początkowy (0,0) znajduje się na środku." +msgid "" +"Diameter of the print bed. It is assumed that origin (0,0) is located in the " +"center." +msgstr "" +"Średnica stołu drukarki. Przyjmuje się, że punkt początkowy (0,0) znajduje " +"się na środku." msgid "Rectangular" msgstr "Prostokątna" @@ -3213,8 +3552,10 @@ msgstr "Błąd! Nieprawidłowy model" msgid "The selected file contains no geometry." msgstr "Wybrany plik nie zawiera geometrii." -msgid "The selected file contains several disjoint areas. This is not supported." -msgstr "Wybrany plik zawiera kilka niepołączonych obszarów. To nie jest obsługiwane." +msgid "" +"The selected file contains several disjoint areas. This is not supported." +msgstr "" +"Wybrany plik zawiera kilka niepołączonych obszarów. To nie jest obsługiwane." msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Wybierz plik do zaimportowania tekstury stołu (PNG/SVG):" @@ -3225,11 +3566,19 @@ msgstr "Wybierz plik STL do zaimportowania modelu stołu z:" msgid "Bed Shape" msgstr "Kształt stołu" -msgid "The recommended minimum temperature is less than 190 degree or the recommended maximum temperature is greater than 300 degree.\n" -msgstr "Zalecana temperatura jest poniżej minimalnych 190 stopni lub temperatura przekracza zalecane maksimum 300 stopni.\n" +msgid "" +"The recommended minimum temperature is less than 190 degree or the " +"recommended maximum temperature is greater than 300 degree.\n" +msgstr "" +"Zalecana temperatura jest poniżej minimalnych 190 stopni lub temperatura " +"przekracza zalecane maksimum 300 stopni.\n" -msgid "The recommended minimum temperature cannot be higher than the recommended maximum temperature.\n" -msgstr "Minimalna zalecana temperatura nie może być wyższa niż zalecana temperatura maksymalna.\n" +msgid "" +"The recommended minimum temperature cannot be higher than the recommended " +"maximum temperature.\n" +msgstr "" +"Minimalna zalecana temperatura nie może być wyższa niż zalecana temperatura " +"maksymalna.\n" msgid "Please check.\n" msgstr "Sprawdź.\n" @@ -3239,13 +3588,18 @@ msgid "" "Please make sure whether to use the temperature to print.\n" "\n" msgstr "" -"Dysza może zostać zablokowana, gdy temperatura wykracza poza zalecany zakres.\n" +"Dysza może zostać zablokowana, gdy temperatura wykracza poza zalecany " +"zakres.\n" "Upewnij się, czy temperatura do druku jest odpowiednia.\n" "\n" #, c-format, boost-format -msgid "Recommended nozzle temperature of this filament type is [%d, %d] degree centigrade" -msgstr "Zalecana temperatura dyszy dla tego typu filamentu wynosi [%d, %d] stopni Celsjusza" +msgid "" +"Recommended nozzle temperature of this filament type is [%d, %d] degree " +"centigrade" +msgstr "" +"Zalecana temperatura dyszy dla tego typu filamentu wynosi [%d, %d] stopni " +"Celsjusza" msgid "" "Too small max volumetric speed.\n" @@ -3255,8 +3609,14 @@ msgstr "" "Zresetowano do 0,5" #, c-format, boost-format -msgid "Current chamber temperature is higher than the material's safe temperature,it may result in material softening and clogging.The maximum safe temperature for the material is %d" -msgstr "Obecna temperatura komory jest wyższa niż bezpieczna temperatura dla filamentu, co może prowadzić do jego mięknięcia i zatykania. Maksymalna bezpieczna temperatura dla tego filamentu wynosi %d" +msgid "" +"Current chamber temperature is higher than the material's safe temperature," +"it may result in material softening and clogging.The maximum safe " +"temperature for the material is %d" +msgstr "" +"Obecna temperatura komory jest wyższa niż bezpieczna temperatura dla " +"filamentu, co może prowadzić do jego mięknięcia i zatykania. Maksymalna " +"bezpieczna temperatura dla tego filamentu wynosi %d" msgid "" "Too small layer height.\n" @@ -3282,14 +3642,18 @@ msgstr "" "Wysokość pierwszej warstwy zostanie zresetowana do 0,2." msgid "" -"This setting is only used for model size tunning with small value in some cases.\n" +"This setting is only used for model size tunning with small value in some " +"cases.\n" "For example, when model size has small error and hard to be assembled.\n" "For large size tuning, please use model scale function.\n" "\n" "The value will be reset to 0." msgstr "" -"To ustawienie jest używane tylko do dostrajania rozmiaru modelu w niewielkim stopniu.\n" -"Na przykład, gdy rozmiar modelu ma małe błędy lub gdy tolerancje są nieprawidłowe. W przypadku wprowadzania dużych zmian należy do tego użyć funkcji skalowania modelu.\n" +"To ustawienie jest używane tylko do dostrajania rozmiaru modelu w niewielkim " +"stopniu.\n" +"Na przykład, gdy rozmiar modelu ma małe błędy lub gdy tolerancje są " +"nieprawidłowe. W przypadku wprowadzania dużych zmian należy do tego użyć " +"funkcji skalowania modelu.\n" "\n" "Wartość zostanie zresetowana do 0." @@ -3301,33 +3665,43 @@ msgid "" "The value will be reset to 0." msgstr "" "Zbyt duża kompensacja efektu \"stopy słonia\" nie jest wskazana.\n" -"Jeśli rzeczywiście występuje poważny efekt stopy słonia, proszę sprawdzić inne ustawienia.\n" +"Jeśli rzeczywiście występuje poważny efekt stopy słonia, proszę sprawdzić " +"inne ustawienia.\n" "Na przykład, czy temperatura stołu jest zbyt wysoka.\n" "\n" "Wartość zostanie zresetowana do 0." -msgid "Alternate extra wall does't work well when ensure vertical shell thickness is set to All. " -msgstr "Alternatywna dodatkowa ściana działa tylko wtedy, gdy jest wyłączona opcja \"zapewnij stałą grubość pionowej powłoki\". " +msgid "" +"Alternate extra wall does't work well when ensure vertical shell thickness " +"is set to All. " +msgstr "" +"Alternatywna dodatkowa ściana działa tylko wtedy, gdy jest wyłączona opcja " +"\"zapewnij stałą grubość pionowej powłoki\". " msgid "" "Change these settings automatically? \n" -"Yes - Change ensure vertical shell thickness to Moderate and enable alternate extra wall\n" +"Yes - Change ensure vertical shell thickness to Moderate and enable " +"alternate extra wall\n" "No - Dont use alternate extra wall" msgstr "" "Zmienić te ustawienia automatycznie?\n" -"Tak - Wyłącz \"zapewnij pionową grubość powłoki\" i włącz \"alternatywną dodatkową ścianę\"\n" +"Tak - Wyłącz \"zapewnij pionową grubość powłoki\" i włącz \"alternatywną " +"dodatkową ścianę\"\n" "Nie - Nie używaj \"alternatywnej dodatkowej ściany\"" msgid "" -"Prime tower does not work when Adaptive Layer Height or Independent Support Layer Height is on.\n" +"Prime tower does not work when Adaptive Layer Height or Independent Support " +"Layer Height is on.\n" "Which do you want to keep?\n" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height and Independent Support Layer Height" msgstr "" -"Wieża czyszcząca nie działa, gdy włączona jest Adaptacyjna wysokość warstwy lub Niezależna wysokość warstwy podpory.\n" +"Wieża czyszcząca nie działa, gdy włączona jest Adaptacyjna wysokość warstwy " +"lub Niezależna wysokość warstwy podpory.\n" "Którą opcję chcesz zachować?\n" "TAK - Zachowaj Wieżę czyszczącą\n" -"NIE - Zachowaj Adaptacyjną wysokość warstwy i Niezależną wysokość warstwy podpory" +"NIE - Zachowaj Adaptacyjną wysokość warstwy i Niezależną wysokość warstwy " +"podpory" msgid "" "Prime tower does not work when Adaptive Layer Height is on.\n" @@ -3346,7 +3720,8 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Independent Support Layer Height" msgstr "" -"Wieża czyszcząca nie działa, gdy włączona jest Niezależna wysokość warstwy podpory.\n" +"Wieża czyszcząca nie działa, gdy włączona jest Niezależna wysokość warstwy " +"podpory.\n" "Którą opcję chcesz zachować?\n" "TAK - Zachowaj Wieżę czyszczącą\n" "NIE - Zachowaj Niezależną wysokość warstwy podpory" @@ -3355,7 +3730,8 @@ msgid "" "While printing by Object, the extruder may collide skirt.\n" "Thus, reset the skirt layer to 1 to avoid that." msgstr "" -"Podczas drukowania według obiektu extruder może zderzyć się z obrysem skirtu.\n" +"Podczas drukowania według obiektu extruder może zderzyć się z obrysem " +"skirtu.\n" "Dlatego zresetuj wysokość skirtu na 1, aby tego uniknąć." msgid "" @@ -3365,8 +3741,13 @@ msgstr "" "seam_slope_start_height musi być mniejsza niż wysokość warstwy. \n" "Zresetuj do wartości 0" -msgid "Spiral mode only works when wall loops is 1, support is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional." -msgstr "Tryb Wazy działa tylko wtedy gdy liczba pętli ściany wynosi 1, wyłączone są podpory, ilość warstw górnej powłoki wynosi 0, gęstość wypełnienia wynosi 0, a tryb Timelaps ustawiony jest na Tradycyjny." +msgid "" +"Spiral mode only works when wall loops is 1, support is disabled, top shell " +"layers is 0, sparse infill density is 0 and timelapse type is traditional." +msgstr "" +"Tryb Wazy działa tylko wtedy gdy liczba pętli ściany wynosi 1, wyłączone są " +"podpory, ilość warstw górnej powłoki wynosi 0, gęstość wypełnienia wynosi 0, " +"a tryb Timelaps ustawiony jest na Tradycyjny." msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Jednak maszyny z budową I3 nie będą generować filmów timelapse." @@ -3509,19 +3890,38 @@ msgstr "Weryfikacja nieudana." msgid "Update failed." msgstr "Aktualizacja nieudana." -msgid "The current chamber temperature or the target chamber temperature exceeds 45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/TPU) is not allowed to be loaded." -msgstr "Aktualna temperatura komory lub docelowa temperatura komory przekracza 45℃. Aby uniknąć zatkania extrudera, niedopuszczalne jest ładowanie filamentu o niskiej temperaturze (PLA/PETG/TPU)." +msgid "" +"The current chamber temperature or the target chamber temperature exceeds " +"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"TPU) is not allowed to be loaded." +msgstr "" +"Aktualna temperatura komory lub docelowa temperatura komory przekracza 45℃. " +"Aby uniknąć zatkania extrudera, niedopuszczalne jest ładowanie filamentu o " +"niskiej temperaturze (PLA/PETG/TPU)." -msgid "Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to avoid extruder clogging,it is not allowed to set the chamber temperature above 45℃." -msgstr "W extruderze jest załadowany filament o niskiej temperaturze (PLA/PETG/TPU). Aby uniknąć zatkania extrudera, nie wolno ustawiać temperatury komory powyżej 45℃." +msgid "" +"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " +"avoid extruder clogging,it is not allowed to set the chamber temperature " +"above 45℃." +msgstr "" +"W extruderze jest załadowany filament o niskiej temperaturze (PLA/PETG/TPU). " +"Aby uniknąć zatkania extrudera, nie wolno ustawiać temperatury komory " +"powyżej 45℃." -msgid "When you set the chamber temperature below 40℃, the chamber temperature control will not be activated. And the target chamber temperature will automatically be set to 0℃." -msgstr "Jeśli ustawisz temperaturę komory poniżej 40℃, kontrola temperatury komory nie będzie aktywowana. Docelowa temperatura komory zostanie automatycznie ustawiona na 0℃." +msgid "" +"When you set the chamber temperature below 40℃, the chamber temperature " +"control will not be activated. And the target chamber temperature will " +"automatically be set to 0℃." +msgstr "" +"Jeśli ustawisz temperaturę komory poniżej 40℃, kontrola temperatury komory " +"nie będzie aktywowana. Docelowa temperatura komory zostanie automatycznie " +"ustawiona na 0℃." msgid "Failed to start printing job" msgstr "Nie udało się rozpocząć zadania drukowania" -msgid "This calibration does not support the currently selected nozzle diameter" +msgid "" +"This calibration does not support the currently selected nozzle diameter" msgstr "Ta kalibracja nie obsługuje obecnie wybranego średnicy dyszy" msgid "Current flowrate cali param is invalid" @@ -3542,11 +3942,19 @@ msgstr "TPU nie jest obsługiwane przez AMS." msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF nie jest obsługiwane przez AMS." -msgid "Damp PVA will become flexible and get stuck inside AMS,please take care to dry it before use." -msgstr "Wilgotne PVA staje się elastyczne i może utknąć wewnątrz AMS, proszę pamiętać o wysuszeniu go przed użyciem." +msgid "" +"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"dry it before use." +msgstr "" +"Wilgotne PVA staje się elastyczne i może utknąć wewnątrz AMS, proszę " +"pamiętać o wysuszeniu go przed użyciem." -msgid "CF/GF filaments are hard and brittle, It's easy to break or get stuck in AMS, please use with caution." -msgstr "Filamenty CF/GF są twarde i kruche, łatwo je złamać i zaklinować w AMS, proszę używać ostrożnie." +msgid "" +"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"AMS, please use with caution." +msgstr "" +"Filamenty CF/GF są twarde i kruche, łatwo je złamać i zaklinować w AMS, " +"proszę używać ostrożnie." msgid "default" msgstr "domyślny" @@ -3988,8 +4396,12 @@ msgid "Size:" msgstr "Rozmiar:" #, c-format, boost-format -msgid "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please separate the conflicted objects farther (%s <-> %s)." -msgstr "Wykryto konflikty ścieżek G-code na warstwie %d, z = %.2lf mm. Proszę oddalić od siebie obiekty będące w konflikcie (%s <-> %s)." +msgid "" +"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"separate the conflicted objects farther (%s <-> %s)." +msgstr "" +"Wykryto konflikty ścieżek G-code na warstwie %d, z = %.2lf mm. Proszę " +"oddalić od siebie obiekty będące w konflikcie (%s <-> %s)." msgid "An object is layed over the boundary of plate." msgstr "Obiekt jest położony poza granicą płyty." @@ -4005,10 +4417,12 @@ msgstr "Widoczny jest tylko edytowany obiekt." msgid "" "An object is laid over the boundary of plate or exceeds the height limit.\n" -"Please solve the problem by moving it totally on or off the plate, and confirming that the height is within the build volume." +"Please solve the problem by moving it totally on or off the plate, and " +"confirming that the height is within the build volume." msgstr "" "Obiekt jest umieszczony poza granicą płyty lub przekracza limit wysokości.\n" -"Rozwiąż problem, przesuwając go całkowicie na płytę lub poza nią oraz potwierdzając, że wysokość mieści się w obszarze roboczym." +"Rozwiąż problem, przesuwając go całkowicie na płytę lub poza nią oraz " +"potwierdzając, że wysokość mieści się w obszarze roboczym." msgid "Calibration step selection" msgstr "Wybór kroku kalibracji" @@ -4029,10 +4443,12 @@ msgid "Calibration program" msgstr "Program kalibracji" msgid "" -"The calibration program detects the status of your device automatically to minimize deviation.\n" +"The calibration program detects the status of your device automatically to " +"minimize deviation.\n" "It keeps the device performing optimally." msgstr "" -"Program kalibracji automatycznie wykrywa stan urządzenia, aby zminimalizować odchylenia.\n" +"Program kalibracji automatycznie wykrywa stan urządzenia, aby zminimalizować " +"odchylenia.\n" "Utrzymuje urządzenie w optymalnej wydajności." msgid "Calibration Flow" @@ -4111,9 +4527,6 @@ msgstr "Zamykanie aplikacji podczas modyfikacji niektórych ustawień." msgid "Logging" msgstr "Logowanie" -msgid "Prepare" -msgstr "Przygotowanie" - msgid "Preview" msgstr "Podgląd" @@ -4130,7 +4543,8 @@ msgid "No" msgstr "Nie" msgid "will be closed before creating a new model. Do you want to continue?" -msgstr "zostanie zamknięta przed utworzeniem nowego modelu. Czy chcesz kontynuować?" +msgstr "" +"zostanie zamknięta przed utworzeniem nowego modelu. Czy chcesz kontynuować?" msgid "Slice plate" msgstr "Potnij aktualną płytę" @@ -4297,8 +4711,8 @@ msgstr "Eksportuj plik G-code" msgid "Export current plate as G-code" msgstr "Eksportuj bieżący stół jako plik G-code" -msgid "Export &Configs" -msgstr "Eksportuj &konfiguracje" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Eksportuj bieżącą konfigurację do plików" @@ -4465,10 +4879,10 @@ msgstr "Eksportuj &ścieżki narzędzi jako OBJ" msgid "Export toolpaths as OBJ" msgstr "Eksportuj ścieżki narzędzi jako OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Otwórz &Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Otwórz Studio" msgid "&Quit" @@ -4522,17 +4936,26 @@ msgstr "Wybierz profil do wczytania:" #, c-format, boost-format msgid "There is %d config imported. (Only non-system and compatible configs)" -msgid_plural "There are %d configs imported. (Only non-system and compatible configs)" -msgstr[0] "Zaimportowano %d konfigurację (tylko te, które nie są systemowe i kompatybilne)." -msgstr[1] "Zaimportowano %d konfiguracje (tylko te, które nie są systemowe i kompatybilne)." -msgstr[2] "Zaimportowano %d konfiguracji (tylko te, które nie są systemowe i kompatybilne)." +msgid_plural "" +"There are %d configs imported. (Only non-system and compatible configs)" +msgstr[0] "" +"Zaimportowano %d konfigurację (tylko te, które nie są systemowe i " +"kompatybilne)." +msgstr[1] "" +"Zaimportowano %d konfiguracje (tylko te, które nie są systemowe i " +"kompatybilne)." +msgstr[2] "" +"Zaimportowano %d konfiguracji (tylko te, które nie są systemowe i " +"kompatybilne)." msgid "" "\n" -"Hint: Make sure you have added the corresponding printer before importing the configs." +"Hint: Make sure you have added the corresponding printer before importing " +"the configs." msgstr "" "\n" -"Podpowiedź: Upewnij się, że dodałeś odpowiednią drukarkę przed zaimportowaniem konfiguracji." +"Podpowiedź: Upewnij się, że dodałeś odpowiednią drukarkę przed " +"zaimportowaniem konfiguracji." msgid "Import result" msgstr "Wynik importu" @@ -4563,28 +4986,43 @@ msgid "Synchronization" msgstr "Synchronizacja" msgid "The device cannot handle more conversations. Please retry later." -msgstr "Urządzenie nie może obsługiwać kolejnych połączeń. Proszę spróbować ponownie później." +msgstr "" +"Urządzenie nie może obsługiwać kolejnych połączeń. Proszę spróbować ponownie " +"później." msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "Odtwarzacz nie działa poprawnie. Proszę ponownie zainstalować odtwarzacz systemowy." +msgstr "" +"Odtwarzacz nie działa poprawnie. Proszę ponownie zainstalować odtwarzacz " +"systemowy." msgid "The player is not loaded, please click \"play\" button to retry." -msgstr "Odtwarzacz nie został załadowany, proszę kliknąć przycisk \"Odtwórz\", aby spróbować ponownie." +msgstr "" +"Odtwarzacz nie został załadowany, proszę kliknąć przycisk \"Odtwórz\", aby " +"spróbować ponownie." msgid "Please confirm if the printer is connected." msgstr "Proszę potwierdzić, czy drukarka jest podłączona." -msgid "The printer is currently busy downloading. Please try again after it finishes." -msgstr "Drukarka aktualnie pobiera dane. Proszę spróbować ponownie po zakończeniu tego procesu." +msgid "" +"The printer is currently busy downloading. Please try again after it " +"finishes." +msgstr "" +"Drukarka aktualnie pobiera dane. Proszę spróbować ponownie po zakończeniu " +"tego procesu." msgid "Printer camera is malfunctioning." msgstr "Kamera drukarki jest uszkodzona." msgid "Problem occured. Please update the printer firmware and try again." -msgstr "Wystąpił problem. Proszę zaktualizować oprogramowanie drukarki i spróbować ponownie." +msgstr "" +"Wystąpił problem. Proszę zaktualizować oprogramowanie drukarki i spróbować " +"ponownie." -msgid "LAN Only Liveview is off. Please turn on the liveview on printer screen." -msgstr "Tryb podglądu LAN jest wyłączony. Proszę włączyć podgląd na żywo na ekranie drukarki." +msgid "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." +msgstr "" +"Tryb podglądu LAN jest wyłączony. Proszę włączyć podgląd na żywo na ekranie " +"drukarki." msgid "Please enter the IP of printer to connect." msgstr "Proszę podać adres IP drukarki, aby nawiązać połączenie." @@ -4593,10 +5031,16 @@ msgid "Initializing..." msgstr "Inicjalizacja..." msgid "Connection Failed. Please check the network and try again" -msgstr "Połączenie nieudane. Proszę sprawdzić połączenie sieciowe i spróbować ponownie." +msgstr "" +"Połączenie nieudane. Proszę sprawdzić połączenie sieciowe i spróbować " +"ponownie." -msgid "Please check the network and try again, You can restart or update the printer if the issue persists." -msgstr "Proszę sprawdzić połączenie sieciowe i spróbować ponownie. Jeśli problem nadal występuje, można ponownie uruchomić lub zaktualizować drukarkę." +msgid "" +"Please check the network and try again, You can restart or update the " +"printer if the issue persists." +msgstr "" +"Proszę sprawdzić połączenie sieciowe i spróbować ponownie. Jeśli problem " +"nadal występuje, można ponownie uruchomić lub zaktualizować drukarkę." msgid "The printer has been logged out and cannot connect." msgstr "Drukarka została wylogowana i nie można się z nią połączyć." @@ -4712,17 +5156,23 @@ msgstr "Błąd ładowania" msgid "Initialize failed (Device connection not ready)!" msgstr "Inicjalizacja nie powiodła się (Brak gotowości połączenia urządzenia)!" -msgid "Browsing file in SD card is not supported in current firmware. Please update the printer firmware." -msgstr "Przeglądanie plików na karcie SD nie jest obsługiwane w bieżącym oprogramowaniu. Proszę zaktualizować oprogramowanie drukarki." +msgid "" +"Browsing file in SD card is not supported in current firmware. Please update " +"the printer firmware." +msgstr "" +"Przeglądanie plików na karcie SD nie jest obsługiwane w bieżącym " +"oprogramowaniu. Proszę zaktualizować oprogramowanie drukarki." msgid "Initialize failed (Storage unavailable, insert SD card.)!" -msgstr "Inicjalizacja nie powiodła się (brak dostępu do pamięci, włóż kartę SD)!" +msgstr "" +"Inicjalizacja nie powiodła się (brak dostępu do pamięci, włóż kartę SD)!" msgid "LAN Connection Failed (Failed to view sdcard)" msgstr "Połączenie LAN nieudane (Nie udało się wyświetlić zawartości karty SD)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "Przeglądanie plików na karcie SD nie jest obsługiwane w trybie tylko LAN." +msgstr "" +"Przeglądanie plików na karcie SD nie jest obsługiwane w trybie tylko LAN." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -4730,10 +5180,14 @@ msgstr "Inicjalizacja nie powiodła się (%s)!" #, c-format, boost-format msgid "You are going to delete %u file from printer. Are you sure to continue?" -msgid_plural "You are going to delete %u files from printer. Are you sure to continue?" -msgstr[0] "Zamierzasz usunąć %u plik z drukarki. Czy na pewno chcesz kontynuować?" -msgstr[1] "Zamierzasz usunąć %u pliki z drukarki. Czy na pewno chcesz kontynuować?" -msgstr[2] "Zamierzasz usunąć %u plików z drukarki. Czy na pewno chcesz kontynuować?" +msgid_plural "" +"You are going to delete %u files from printer. Are you sure to continue?" +msgstr[0] "" +"Zamierzasz usunąć %u plik z drukarki. Czy na pewno chcesz kontynuować?" +msgstr[1] "" +"Zamierzasz usunąć %u pliki z drukarki. Czy na pewno chcesz kontynuować?" +msgstr[2] "" +"Zamierzasz usunąć %u plików z drukarki. Czy na pewno chcesz kontynuować?" msgid "Delete files" msgstr "Usuń pliki" @@ -4754,8 +5208,12 @@ msgstr "Nie udało się pobrać informacji o modelu z drukarki." msgid "Failed to parse model information." msgstr "Nie udało się przeanalizować informacji o modelu." -msgid "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer and export a new .gcode.3mf file." -msgstr "Plik .gcode.3mf nie zawiera danych G-code. Proszę poddać go obróbce w programie Orca Slicer i wyeksportować jako nowy plik .gcode.3mf." +msgid "" +"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " +"and export a new .gcode.3mf file." +msgstr "" +"Plik .gcode.3mf nie zawiera danych G-code. Proszę poddać go obróbce w " +"programie Orca Slicer i wyeksportować jako nowy plik .gcode.3mf." #, c-format, boost-format msgid "File '%s' was lost! Please download it again." @@ -4785,11 +5243,12 @@ msgstr "Pobieranie zakończone" msgid "Downloading %d%%..." msgstr "Pobieranie %d%%..." -msgid "Reconnecting the printer, the operation cannot be completed immediately, please try again later." -msgstr "Ponowne łączenie z drukarką, operacja nie może być teraz zakończona, spróbuj ponownie później." - -msgid "Over 4 systems/handy are using remote access, you can close some and try again." -msgstr "Więcej niż 4 aplikacje Studio/Handy korzystają z dostępu zdalnego, możesz zamknąć kilka z nich i spróbować ponownie." +msgid "" +"Reconnecting the printer, the operation cannot be completed immediately, " +"please try again later." +msgstr "" +"Ponowne łączenie z drukarką, operacja nie może być teraz zakończona, spróbuj " +"ponownie później." msgid "File does not exist." msgstr "Plik nie istnieje." @@ -4868,7 +5327,9 @@ msgstr "" msgid "How do you like this printing file?" msgstr "Co sądzisz o tym pliku druku?" -msgid "(The model has already been rated. Your rating will overwrite the previous rating.)" +msgid "" +"(The model has already been rated. Your rating will overwrite the previous " +"rating.)" msgstr "(Ten model już został oceniony. Twoja ocena zastąpi poprzednią ocenę.)" msgid "Rate" @@ -4943,8 +5404,12 @@ msgstr "Warstwa: %s" msgid "Layer: %d/%d" msgstr "Warstwa: %d/%d" -msgid "Please heat the nozzle to above 170 degree before loading or unloading filament." -msgstr "Przed załadowaniem lub wyładunkiem filamentu, podgrzej dyszę do temperatury powyżej 170 stopni." +msgid "" +"Please heat the nozzle to above 170 degree before loading or unloading " +"filament." +msgstr "" +"Przed załadowaniem lub wyładunkiem filamentu, podgrzej dyszę do temperatury " +"powyżej 170 stopni." msgid "Still unload" msgstr "Wycofaj" @@ -4955,8 +5420,12 @@ msgstr "Podaj" msgid "Please select an AMS slot before calibration" msgstr "Przed kalibracją wybierz gniazdo AMS" -msgid "Cannot read filament info: the filament is loaded to the tool head,please unload the filament and try again." -msgstr "Nie można odczytać informacji o filamentach: filament jest załadowany w głowicy drukującej, proszę go wyładować i spróbować ponownie." +msgid "" +"Cannot read filament info: the filament is loaded to the tool head,please " +"unload the filament and try again." +msgstr "" +"Nie można odczytać informacji o filamentach: filament jest załadowany w " +"głowicy drukującej, proszę go wyładować i spróbować ponownie." msgid "This only takes effect during printing" msgstr "To działa tylko podczas drukowania" @@ -5022,10 +5491,12 @@ msgid " can not be opened\n" msgstr " nie można otworzyć\n" msgid "" -"The following issues occurred during the process of uploading images. Do you want to ignore them?\n" +"The following issues occurred during the process of uploading images. Do you " +"want to ignore them?\n" "\n" msgstr "" -"Podczas procesu przesyłania obrazów wystąpiły następujące problemy. Czy chcesz je zignorować?\n" +"Podczas procesu przesyłania obrazów wystąpiły następujące problemy. Czy " +"chcesz je zignorować?\n" "\n" msgid "info" @@ -5045,7 +5516,8 @@ msgid "" "\n" " error code: " msgstr "" -"Wynik twojego komentarza nie może być przesłany z powodu następujących przyczyn:\n" +"Wynik twojego komentarza nie może być przesłany z powodu następujących " +"przyczyn:\n" "\n" " kod błędu: " @@ -5061,8 +5533,12 @@ msgstr "" "\n" "Czy chcesz przenieść się na stronę internetową w celu oceny?" -msgid "Some of your images failed to upload. Would you like to redirect to the webpage for rating?" -msgstr "Niektóre z twoich zdjęć nie zostały przesłane. Chcesz przekierować się na stronę internetową w celu oceny?" +msgid "" +"Some of your images failed to upload. Would you like to redirect to the " +"webpage for rating?" +msgstr "" +"Niektóre z twoich zdjęć nie zostały przesłane. Chcesz przekierować się na " +"stronę internetową w celu oceny?" msgid "You can select up to 16 images." msgstr "Możesz wybrać maksymalnie 16 zdjęć." @@ -5113,8 +5589,12 @@ msgstr "Pomiń" msgid "Newer 3mf version" msgstr "Nowa wersja 3mf" -msgid "The 3mf file version is in Beta and it is newer than the current OrcaSlicer version." -msgstr "Wersja pliku 3MF jest w wersji Beta i jest nowsza niż obecna wersja OrcaSlicer." +msgid "" +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"version." +msgstr "" +"Wersja pliku 3MF jest w wersji Beta i jest nowsza niż obecna wersja " +"OrcaSlicer." msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "Jeśli chciałbyś wypróbować OrcaSlicer Beta, możesz kliknąć tutaj." @@ -5126,7 +5606,9 @@ msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "Wersja pliku 3MF jest nowsza niż obecna w wersji OrcaSlicer." msgid "Update your Orca Slicer could enable all functionality in the 3mf file." -msgstr "Zaktualizowanie OrcaSlicer może umożliwić korzystanie ze wszystkich funkcji pliku 3MF." +msgstr "" +"Zaktualizowanie OrcaSlicer może umożliwić korzystanie ze wszystkich funkcji " +"pliku 3MF." msgid "Current Version: " msgstr "Obecna wersja:" @@ -5266,8 +5748,12 @@ msgstr "Warstwy" msgid "Range" msgstr "Zakres" -msgid "The application cannot run normally because OpenGL version is lower than 2.0.\n" -msgstr "Aplikacja nie może działać poprawnie, ponieważ wersja OpenGL jest niższa niż 2.0.\n" +msgid "" +"The application cannot run normally because OpenGL version is lower than " +"2.0.\n" +msgstr "" +"Aplikacja nie może działać poprawnie, ponieważ wersja OpenGL jest niższa niż " +"2.0.\n" msgid "Please upgrade your graphics card driver." msgstr "Proszę zaktualizować sterownik karty graficznej." @@ -5303,8 +5789,12 @@ msgstr "Czułość pauzy wynosi" msgid "Enable detection of build plate position" msgstr "Włącz wykrywanie położenia płyty roboczej" -msgid "The localization tag of build plate is detected, and printing is paused if the tag is not in predefined range." -msgstr "Jeśli punkt kontrolny lokalizacji płyty roboczej (kod QR), zostanie wykryty w niewłaściwym miejscu, drukowanie zostanie wstrzymane." +msgid "" +"The localization tag of build plate is detected, and printing is paused if " +"the tag is not in predefined range." +msgstr "" +"Jeśli punkt kontrolny lokalizacji płyty roboczej (kod QR), zostanie wykryty " +"w niewłaściwym miejscu, drukowanie zostanie wstrzymane." msgid "First Layer Inspection" msgstr "Inspekcja pierwszej warstwy" @@ -5322,7 +5812,9 @@ msgid "Nozzle Clumping Detection" msgstr "Wykrywanie \"zalepienia\" się dyszy" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "Sprawdź, czy dysza nie została zatkana filamentem lub innym obcym przedmiotem." +msgstr "" +"Sprawdź, czy dysza nie została zatkana filamentem lub innym obcym " +"przedmiotem." msgid "Nozzle Type" msgstr "Rodzaj dyszy" @@ -5428,17 +5920,28 @@ msgstr "Wybierz filamenty do użycia" msgid "Search plate, object and part." msgstr "Szukaj stołu, obiektu i części." -msgid "No AMS filaments. Please select a printer in 'Device' page to load AMS info." -msgstr "Brak odczytu filamentów w AMS. Aby wyświetlić informacje AMS, wybierz drukarkę na stronie Urządzenia." +msgid "" +"No AMS filaments. Please select a printer in 'Device' page to load AMS info." +msgstr "" +"Brak odczytu filamentów w AMS. Aby wyświetlić informacje AMS, wybierz " +"drukarkę na stronie Urządzenia." msgid "Sync filaments with AMS" msgstr "Synchronizuj filamenty z AMS" -msgid "Sync filaments with AMS will drop all current selected filament presets and colors. Do you want to continue?" -msgstr "Synchronizacja filamentów z AMS usunie wszystkie obecnie wybrane profile filamentu i koloru. Czy chcesz kontynuować?" +msgid "" +"Sync filaments with AMS will drop all current selected filament presets and " +"colors. Do you want to continue?" +msgstr "" +"Synchronizacja filamentów z AMS usunie wszystkie obecnie wybrane profile " +"filamentu i koloru. Czy chcesz kontynuować?" -msgid "Already did a synchronization, do you want to sync only changes or resync all?" -msgstr "Synchronizacja została już wykonana. Chcesz synchronizować tylko zmiany czy zaktualizować wszystko ponownie?" +msgid "" +"Already did a synchronization, do you want to sync only changes or resync " +"all?" +msgstr "" +"Synchronizacja została już wykonana. Chcesz synchronizować tylko zmiany czy " +"zaktualizować wszystko ponownie?" msgid "Sync" msgstr "Tylko zmiany" @@ -5449,16 +5952,26 @@ msgstr "Zaktualizuj wszystko" msgid "There are no compatible filaments, and sync is not performed." msgstr "Brak kompatybilnych filamentów, synchronizacja nie została wykonana." -msgid "There are some unknown filaments mapped to generic preset. Please update Orca Slicer or restart Orca Slicer to check if there is an update to system presets." -msgstr "Istnieją nieznane filamenty przypisane do ogólnych profili. Proszę zaktualizować Orca Slicer lub zrestartować go, aby sprawdzić dostępność aktualizacji profili systemowych." +msgid "" +"There are some unknown filaments mapped to generic preset. Please update " +"Orca Slicer or restart Orca Slicer to check if there is an update to system " +"presets." +msgstr "" +"Istnieją nieznane filamenty przypisane do ogólnych profili. Proszę " +"zaktualizować Orca Slicer lub zrestartować go, aby sprawdzić dostępność " +"aktualizacji profili systemowych." #, boost-format msgid "Do you want to save changes to \"%1%\"?" msgstr "Czy chcesz zapisać zmiany w \"%1%\"?" #, c-format, boost-format -msgid "Successfully unmounted. The device %s(%s) can now be safely removed from the computer." -msgstr "Pomyślnie odmontowano. Urządzenie %s(%s) może teraz być bezpiecznie usunięte z komputera." +msgid "" +"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"computer." +msgstr "" +"Pomyślnie odmontowano. Urządzenie %s(%s) może teraz być bezpiecznie usunięte " +"z komputera." #, c-format, boost-format msgid "Ejecting of device %s(%s) has failed." @@ -5470,14 +5983,30 @@ msgstr "Wykryto poprzedni niezapisany projekt. Czy chcesz go przywrócić?" msgid "Restore" msgstr "Przywróć" -msgid "The current hot bed temperature is relatively high. The nozzle may be clogged when printing this filament in a closed enclosure. Please open the front door and/or remove the upper glass." -msgstr "Aktualna temperatura podgrzewanego stołu jest stosunkowo wysoka. Dysza może się zatkać podczas drukowania tym filamentu w zamkniętej obudowie. Proszę otworzyć drzwi przednie i/lub zdjąć górny panel." +msgid "" +"The current hot bed temperature is relatively high. The nozzle may be " +"clogged when printing this filament in a closed enclosure. Please open the " +"front door and/or remove the upper glass." +msgstr "" +"Aktualna temperatura podgrzewanego stołu jest stosunkowo wysoka. Dysza może " +"się zatkać podczas drukowania tym filamentu w zamkniętej obudowie. Proszę " +"otworzyć drzwi przednie i/lub zdjąć górny panel." -msgid "The nozzle hardness required by the filament is higher than the default nozzle hardness of the printer. Please replace the hardened nozzle or filament, otherwise, the nozzle will be attrited or damaged." -msgstr "Twardość dyszy wymagana przez filament jest wyższa niż domyślna twardość dyszy drukarki. Proszę wymienić dyszę na hartowaną lub zmienić filament, w przeciwnym razie dysza może ulec zużyciu lub uszkodzeniu." +msgid "" +"The nozzle hardness required by the filament is higher than the default " +"nozzle hardness of the printer. Please replace the hardened nozzle or " +"filament, otherwise, the nozzle will be attrited or damaged." +msgstr "" +"Twardość dyszy wymagana przez filament jest wyższa niż domyślna twardość " +"dyszy drukarki. Proszę wymienić dyszę na hartowaną lub zmienić filament, w " +"przeciwnym razie dysza może ulec zużyciu lub uszkodzeniu." -msgid "Enabling traditional timelapse photography may cause surface imperfections. It is recommended to change to smooth mode." -msgstr "Włączenie tradycyjnego timelapsu może powodować niedoskonałości powierzchni. Zaleca się zmianę trybu na płynny." +msgid "" +"Enabling traditional timelapse photography may cause surface imperfections. " +"It is recommended to change to smooth mode." +msgstr "" +"Włączenie tradycyjnego timelapsu może powodować niedoskonałości powierzchni. " +"Zaleca się zmianę trybu na płynny." msgid "Expand sidebar" msgstr "Rozwiń pasek boczny" @@ -5490,21 +6019,30 @@ msgid "Loading file: %s" msgstr "Wczytywanie pliku: %s" msgid "The 3mf is not supported by OrcaSlicer, load geometry data only." -msgstr "Plik 3MF nie jest obsługiwany przez OrcaSlicer, wczytuj tylko dane geometrii." +msgstr "" +"Plik 3MF nie jest obsługiwany przez OrcaSlicer, wczytuj tylko dane geometrii." msgid "Load 3mf" msgstr "Wczytaj 3MF" #, c-format, boost-format -msgid "The 3mf's version %s is newer than %s's version %s, Found following keys unrecognized:" -msgstr "Wersja 3mf %s jest nowsza niż wersja %s %s, znaleziono następujące nierozpoznane klucze:" +msgid "" +"The 3mf's version %s is newer than %s's version %s, Found following keys " +"unrecognized:" +msgstr "" +"Wersja 3mf %s jest nowsza niż wersja %s %s, znaleziono następujące " +"nierozpoznane klucze:" msgid "You'd better upgrade your software.\n" msgstr "Lepiej zaktualizuj swoje oprogramowanie.\n" #, c-format, boost-format -msgid "The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your software." -msgstr "Wersja 3mf %s jest nowsza niż wersja %s %s, sugeruje się aktualizację oprogramowania." +msgid "" +"The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your " +"software." +msgstr "" +"Wersja 3mf %s jest nowsza niż wersja %s %s, sugeruje się aktualizację " +"oprogramowania." msgid "Invalid values found in the 3mf:" msgstr "Znaleziono nieprawidłowe wartości w pliku 3MF:" @@ -5513,10 +6051,16 @@ msgid "Please correct them in the param tabs" msgstr "Proszę poprawić je na kartach parametrów" msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "Plik 3MF ma następujące zmodyfikowane G-code w profilach filamentu lub drukarki:" +msgstr "" +"Plik 3MF ma następujące zmodyfikowane G-code w profilach filamentu lub " +"drukarki:" -msgid "Please confirm that these modified G-codes are safe to prevent any damage to the machine!" -msgstr "Proszę potwierdzić, że te zmodyfikowane G-code są bezpieczne, aby zapobiec ewentualnym uszkodzeniom maszyny!" +msgid "" +"Please confirm that these modified G-codes are safe to prevent any damage to " +"the machine!" +msgstr "" +"Proszę potwierdzić, że te zmodyfikowane G-code są bezpieczne, aby zapobiec " +"ewentualnym uszkodzeniom maszyny!" msgid "Modified G-codes" msgstr "Zmodyfikowane G-codes" @@ -5524,8 +6068,12 @@ msgstr "Zmodyfikowane G-codes" msgid "The 3mf has following customized filament or printer presets:" msgstr "Plik 3MF ma następujące dostosowane profile filamentu lub drukarki:" -msgid "Please confirm that the G-codes within these presets are safe to prevent any damage to the machine!" -msgstr "Proszę potwierdzić, że G-code w tych profilach są bezpieczne, aby zapobiec ewentualnym uszkodzeniom maszyny!" +msgid "" +"Please confirm that the G-codes within these presets are safe to prevent any " +"damage to the machine!" +msgstr "" +"Proszę potwierdzić, że G-code w tych profilach są bezpieczne, aby zapobiec " +"ewentualnym uszkodzeniom maszyny!" msgid "Customized Preset" msgstr "Dostosowany profil" @@ -5536,9 +6084,13 @@ msgstr "Nazwa komponentów w pliku step nie jest w formacie UTF8!" msgid "The name may show garbage characters!" msgstr "Nazwa może zawierać nieczytelne znaki!" +msgid "Remember my choice." +msgstr "Zapamiętaj moją decyzję." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." -msgstr "Nie udało się wczytać pliku \"%1%\". Znaleziono nieprawidłową konfigurację." +msgstr "" +"Nie udało się wczytać pliku \"%1%\". Znaleziono nieprawidłową konfigurację." msgid "Objects with zero volume removed" msgstr "Usunięto obiekty o zerowym wolumenie" @@ -5570,7 +6122,9 @@ msgid "Multi-part object detected" msgstr "Wykryto obiekt składający się z wielu części" msgid "Load these files as a single object with multiple parts?\n" -msgstr "Czy chcesz wczytać te pliki jako pojedynczy obiekt składający się z wielu części?\n" +msgstr "" +"Czy chcesz wczytać te pliki jako pojedynczy obiekt składający się z wielu " +"części?\n" msgid "Object with multiple parts was detected" msgstr "Wykryto obiekt składający się z wielu części" @@ -5578,8 +6132,12 @@ msgstr "Wykryto obiekt składający się z wielu części" msgid "The file does not contain any geometry data." msgstr "Plik nie zawiera żadnych danych geometrycznych." -msgid "Your object appears to be too large, Do you want to scale it down to fit the heat bed automatically?" -msgstr "Importowany model przekracza wymiary przestrzeni roboczej. Czy chcesz go przeskalowanć do odpowiednich rozmiarów?" +msgid "" +"Your object appears to be too large, Do you want to scale it down to fit the " +"heat bed automatically?" +msgstr "" +"Importowany model przekracza wymiary przestrzeni roboczej. Czy chcesz go " +"przeskalowanć do odpowiednich rozmiarów?" msgid "Object too large" msgstr "Obiekt jest zbyt duży" @@ -5658,9 +6216,6 @@ msgstr "Nie można wczytać:" msgid "Error during reload" msgstr "Błąd podczas przeładowywania" -msgid "Slicing" -msgstr "Cięcie" - msgid "There are warnings after slicing models:" msgstr "Po wykonaniu cięcia modeli występują ostrzeżenia:" @@ -5680,8 +6235,11 @@ msgstr "Krojenie płyty %d" msgid "Please resolve the slicing errors and publish again." msgstr "Rozwiąż błędy w cięciu i opublikuj ponownie." -msgid "Network Plug-in is not detected. Network related features are unavailable." -msgstr "Wtyczka sieciowa nie jest wykrywana. Funkcje związane z siecią są niedostępne." +msgid "" +"Network Plug-in is not detected. Network related features are unavailable." +msgstr "" +"Wtyczka sieciowa nie jest wykrywana. Funkcje związane z siecią są " +"niedostępne." msgid "" "Preview only mode:\n" @@ -5691,7 +6249,8 @@ msgstr "" "Wczytany plik zawiera tylko G-code, nie można wejść na stronę Przygotuj" msgid "You can keep the modified presets to the new project or discard them" -msgstr "Możesz zachować zmodyfikowane profile w nowym projekcie lub je odrzucić" +msgstr "" +"Możesz zachować zmodyfikowane profile w nowym projekcie lub je odrzucić" msgid "Creating a new project" msgstr "Tworzenie nowego projektu" @@ -5701,10 +6260,12 @@ msgstr "Wczytaj projekt" msgid "" "Failed to save the project.\n" -"Please check whether the folder exists online or if other programs open the project file." +"Please check whether the folder exists online or if other programs open the " +"project file." msgstr "" "Nie udało się zapisać projektu.\n" -"Sprawdź, czy folder istnieje w trybie online lub czy inne programy nie używają pliku projektu." +"Sprawdź, czy folder istnieje w trybie online lub czy inne programy nie " +"używają pliku projektu." msgid "Save project" msgstr "Zapisz projekt" @@ -5726,10 +6287,14 @@ msgstr "Pobieranie nie powiodło się, wyjątek - rozmiar pliku." #, c-format, boost-format msgid "Project downloaded %d%%" -msgstr "Projekt pobrany w %d%%" +msgstr "" +"Projekt pobrany w %d%%Importowanie do OrcaSlicer nie powiodło się. Proszę " +"pobrać plik i ręcznie go zaimportować." -msgid "Importing to Bambu Studio failed. Please download the file and manually import it." -msgstr "Importowanie do OrcaSlicer nie powiodło się. Proszę pobrać plik i ręcznie go zaimportować." +msgid "" +"Importing to Orca Slicer failed. Please download the file and manually " +"import it." +msgstr "" msgid "Import SLA archive" msgstr "Importuj archiwum SLA" @@ -5767,17 +6332,12 @@ msgstr "Pliki G-code nie mogą być wczytywane razem z modelami!" msgid "Can not add models when in preview mode!" msgstr "Nie można dodawać modeli w trybie podglądu!" -msgid "Add Models" -msgstr "Dodaj modele" - msgid "All objects will be removed, continue?" msgstr "Wszystkie obiekty zostaną usunięte, kontynuować?" msgid "The current project has unsaved changes, save it before continue?" -msgstr "Aktualny projekt ma niezapisane zmiany, czy zapisać go przed kontynuacją?" - -msgid "Remember my choice." -msgstr "Zapamiętaj moją decyzję." +msgstr "" +"Aktualny projekt ma niezapisane zmiany, czy zapisać go przed kontynuacją?" msgid "Number of copies:" msgstr "Liczba kopii:" @@ -5801,11 +6361,18 @@ msgid "Save Sliced file as:" msgstr "Zapisz plik po wykonaniu cięcia jako:" #, c-format, boost-format -msgid "The file %s has been sent to the printer's storage space and can be viewed on the printer." -msgstr "Plik %s został wysłany do pamięci drukarki i można go obejrzeć na urządzeniu." +msgid "" +"The file %s has been sent to the printer's storage space and can be viewed " +"on the printer." +msgstr "" +"Plik %s został wysłany do pamięci drukarki i można go obejrzeć na urządzeniu." -msgid "Unable to perform boolean operation on model meshes. Only positive parts will be kept. You may fix the meshes and try agian." -msgstr "Nie można wykonać operacji boolowskich na siatkach modelu. Eksportowane będą tylko części dodatnie" +msgid "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try agian." +msgstr "" +"Nie można wykonać operacji boolowskich na siatkach modelu. Eksportowane będą " +"tylko części dodatnie" #, boost-format msgid "Reason: part \"%1%\" is empty." @@ -5824,17 +6391,22 @@ msgid "Reason: \"%1%\" and another part have no intersection." msgstr "Przyczyna: \"%1%\" i inna część nie mają wspólnego przecięcia." msgid "" -"Are you sure you want to store original SVGs with their local paths into the 3MF file?\n" +"Are you sure you want to store original SVGs with their local paths into the " +"3MF file?\n" "If you hit 'NO', all SVGs in the project will not be editable any more." msgstr "" -"Czy na pewno chcesz przechowywać oryginalne pliki SVG wraz z ich lokalnymi ścieżkami w pliku 3MF?\n" -"Jeśli wybierzesz 'NIE', wszystkie pliki SVG w projekcie przestaną być edytowalne." +"Czy na pewno chcesz przechowywać oryginalne pliki SVG wraz z ich lokalnymi " +"ścieżkami w pliku 3MF?\n" +"Jeśli wybierzesz 'NIE', wszystkie pliki SVG w projekcie przestaną być " +"edytowalne." msgid "Private protection" msgstr "Ochrona prywatności" msgid "Is the printer ready? Is the print sheet in place, empty and clean?" -msgstr "Czy drukarka jest gotowa? Czy arkusz drukujący jest na miejscu, pusty i czysty?" +msgstr "" +"Czy drukarka jest gotowa? Czy arkusz drukujący jest na miejscu, pusty i " +"czysty?" msgid "Upload and Print" msgstr "Prześlij i drukuj" @@ -5844,7 +6416,8 @@ msgid "" "Suggest to use auto-arrange to avoid collisions when printing." msgstr "" "Drukowanie według obiektu: \n" -"Zalecamy użycie automatycznego rozmieszczenia, aby uniknąć kolizji podczas drukowania." +"Zalecamy użycie automatycznego rozmieszczenia, aby uniknąć kolizji podczas " +"drukowania." msgid "Send G-code" msgstr "Wyślij G-code" @@ -5903,12 +6476,23 @@ msgstr "Trójkąty: %1%\n" msgid "Tips:" msgstr "Wskazówki:" -msgid "\"Fix Model\" feature is currently only on Windows. Please repair the model on Orca Slicer(windows) or CAD softwares." -msgstr "Funkcja „Napraw model” jest obecnie dostępna tylko w systemie Windows. Proszę naprawić model za pomocą programu Orca Slicer (Windows) lub oprogramowania CAD." +msgid "" +"\"Fix Model\" feature is currently only on Windows. Please repair the model " +"on Orca Slicer(windows) or CAD softwares." +msgstr "" +"Funkcja „Napraw model” jest obecnie dostępna tylko w systemie Windows. " +"Proszę naprawić model za pomocą programu Orca Slicer (Windows) lub " +"oprogramowania CAD." #, c-format, boost-format -msgid "Plate% d: %s is not suggested to be used to print filament %s(%s). If you still want to do this printing, please set this filament's bed temperature to non zero." -msgstr "Płyta% d:%s Nie zaleca się używania do druku filamentu %s(%s). Jeśli nadal chcesz wydrukować ten filament, ustaw temperaturę stołu dla tego filamentu na większą niż zero." +msgid "" +"Plate% d: %s is not suggested to be used to print filament %s(%s). If you " +"still want to do this printing, please set this filament's bed temperature " +"to non zero." +msgstr "" +"Płyta% d:%s Nie zaleca się używania do druku filamentu %s(%s). Jeśli nadal " +"chcesz wydrukować ten filament, ustaw temperaturę stołu dla tego filamentu " +"na większą niż zero." msgid "Switching the language requires application restart.\n" msgstr "Zmiana języka wymaga ponownego uruchomienia aplikacji.\n" @@ -5920,7 +6504,9 @@ msgid "Language selection" msgstr "Wybór języka" msgid "Switching application language while some presets are modified." -msgstr "Zmiana języka aplikacji przy jednoczesnym istniejących zmodyfikowanych ustawieniach." +msgstr "" +"Zmiana języka aplikacji przy jednoczesnym istniejących zmodyfikowanych " +"ustawieniach." msgid "Changing application language" msgstr "Zmiana języka aplikacji" @@ -5964,8 +6550,13 @@ msgstr "Region Logowania" msgid "Stealth Mode" msgstr "Tryb \"Niewidzialny\"" -msgid "This stops the transmission of data to Bambu's cloud services. Users who don't use BBL machines or use LAN mode only can safely turn on this function." -msgstr "Zatrzymuje to transmisję danych do chmury Bambu. Użytkownicy, którzy nie korzystają z maszyn BBL lub używają tylko trybu LAN, mogą bezpiecznie włączyć tę funkcję." +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" +"Zatrzymuje to transmisję danych do chmury Bambu. Użytkownicy, którzy nie " +"korzystają z maszyn BBL lub używają tylko trybu LAN, mogą bezpiecznie " +"włączyć tę funkcję." msgid "Enable network plugin" msgstr "Włącz wtyczkę sieciową (BambuLab)" @@ -5985,11 +6576,23 @@ msgstr "Jednostki" msgid "Allow only one OrcaSlicer instance" msgstr "Zezwól tylko na jedną instancję programu OrcaSlicer" -msgid "On OSX there is always only one instance of app running by default. However it is allowed to run multiple instances of same app from the command line. In such case this settings will allow only one instance." -msgstr "W systemie macOS domyślnie działa tylko jedna instancja aplikacji. Jednak z wiersza poleceń można uruchomić kilka instancji tej samej aplikacji. W takim przypadku te ustawienia umożliwią działanie tylko jednej instancji." +msgid "" +"On OSX there is always only one instance of app running by default. However " +"it is allowed to run multiple instances of same app from the command line. " +"In such case this settings will allow only one instance." +msgstr "" +"W systemie macOS domyślnie działa tylko jedna instancja aplikacji. Jednak z " +"wiersza poleceń można uruchomić kilka instancji tej samej aplikacji. W takim " +"przypadku te ustawienia umożliwią działanie tylko jednej instancji." -msgid "If this is enabled, when starting OrcaSlicer and another instance of the same OrcaSlicer is already running, that instance will be reactivated instead." -msgstr "Jeśli ta opcja jest włączona, po uruchomieniu OrcaSlicer, gdy inna instancja tego samego OrcaSlicer jest już uruchomiona, ta instancja zostanie ponownie aktywowana." +msgid "" +"If this is enabled, when starting OrcaSlicer and another instance of the " +"same OrcaSlicer is already running, that instance will be reactivated " +"instead." +msgstr "" +"Jeśli ta opcja jest włączona, po uruchomieniu OrcaSlicer, gdy inna instancja " +"tego samego OrcaSlicer jest już uruchomiona, ta instancja zostanie ponownie " +"aktywowana." msgid "Home" msgstr "Strona główna" @@ -6018,14 +6621,19 @@ msgstr "" msgid "Zoom to mouse position" msgstr "Powiększ do pozycji myszki" -msgid "Zoom in towards the mouse pointer's position in the 3D view, rather than the 2D window center." -msgstr "Powiększ do pozycji wskaźnika myszy w widoku 3D, zamiast do środka okna 2D." +msgid "" +"Zoom in towards the mouse pointer's position in the 3D view, rather than the " +"2D window center." +msgstr "" +"Powiększ do pozycji wskaźnika myszy w widoku 3D, zamiast do środka okna 2D." msgid "Use free camera" msgstr "Użyj swobodnej kamery" msgid "If enabled, use free camera. If not enabled, use constrained camera." -msgstr "Jeśli włączone, to używany będzie wolny widok. Jeśli wyłączone, to widok będzie ograniczony." +msgstr "" +"Jeśli włączone, to używany będzie wolny widok. Jeśli wyłączone, to widok " +"będzie ograniczony." msgid "Reverse mouse zoom" msgstr "Odwrócone przybliżanie myszką" @@ -6046,34 +6654,52 @@ msgid "If enabled, useful hints are displayed at startup." msgstr "Jeśli włączone, przy uruchamianiu wyświetlane są przydatne wskazówki." msgid "Flushing volumes: Auto-calculate everytime the color changed." -msgstr "Objętości płukania: Automatyczne obliczanie za każdym razem, gdy zmieni się kolor" +msgstr "" +"Objętości płukania: Automatyczne obliczanie za każdym razem, gdy zmieni się " +"kolor" msgid "If enabled, auto-calculate everytime the color changed." -msgstr "Jeśli włączone, automatyczne obliczanie za każdym razem, gdy zmieni się kolor" +msgstr "" +"Jeśli włączone, automatyczne obliczanie za każdym razem, gdy zmieni się kolor" -msgid "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "Objętości płukania: Automatycznie obliczaj za każdym razem, gdy zmieniany jest filament" +msgid "" +"Flushing volumes: Auto-calculate every time when the filament is changed." +msgstr "" +"Objętości płukania: Automatycznie obliczaj za każdym razem, gdy zmieniany " +"jest filament" msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "Jeśli ta opcja jest włączona, automatycznie obliczaj za każdym razem, gdy zmieniany jest filament." +msgstr "" +"Jeśli ta opcja jest włączona, automatycznie obliczaj za każdym razem, gdy " +"zmieniany jest filament." msgid "Remember printer configuration" msgstr "Zapamiętaj konfigurację drukarki" -msgid "If enabled, Orca will remember and switch filament/process configuration for each printer automatically." -msgstr "Jeśli ta opcja jest włączona, Orca będzie automatycznie zapamiętywać i przełączać konfigurację filamentu/procesu dla każdej drukarki." +msgid "" +"If enabled, Orca will remember and switch filament/process configuration for " +"each printer automatically." +msgstr "" +"Jeśli ta opcja jest włączona, Orca będzie automatycznie zapamiętywać i " +"przełączać konfigurację filamentu/procesu dla każdej drukarki." -msgid "Multi-device Management(Take effect after restarting Studio)." -msgstr "Obsługa wielu urządzeń (zacznie być aktywna po ponownym uruchomieniu Slicera)" +msgid "Multi-device Management(Take effect after restarting Orca)." +msgstr "" +"Obsługa wielu urządzeń (zacznie być aktywna po ponownym uruchomieniu Slicera)" -msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices." -msgstr "Dzięki tej opcji możesz wysyłać zadania do wielu urządzeń jednocześnie i zarządzać nimi." +msgid "" +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." +msgstr "" +"Dzięki tej opcji możesz wysyłać zadania do wielu urządzeń jednocześnie i " +"zarządzać nimi." msgid "Network" msgstr "Sieć" msgid "Auto sync user presets(Printer/Filament/Process)" -msgstr "Automatyczna synchronizacja profili użytkownika (Drukarka/Filament/Proces)" +msgstr "" +"Automatyczna synchronizacja profili użytkownika (Drukarka/Filament/Proces)" msgid "User Sync" msgstr "Synchronizacja użytkownika" @@ -6094,19 +6720,25 @@ msgid "Associate .3mf files to OrcaSlicer" msgstr "Skojarz pliki .3mf z OrcaSlicer" msgid "If enabled, sets OrcaSlicer as default application to open .3mf files" -msgstr "Jeśli włączone, ustawia OrcaSlicer jako domyślną aplikację do otwierania plików .3mf" +msgstr "" +"Jeśli włączone, ustawia OrcaSlicer jako domyślną aplikację do otwierania " +"plików .3mf" msgid "Associate .stl files to OrcaSlicer" msgstr "Skojarz pliki .stl z OrcaSlicer" msgid "If enabled, sets OrcaSlicer as default application to open .stl files" -msgstr "Jeśli włączone, ustawia OrcaSlicer jako domyślną aplikację do otwierania plików .stl" +msgstr "" +"Jeśli włączone, ustawia OrcaSlicer jako domyślną aplikację do otwierania " +"plików .stl" msgid "Associate .step/.stp files to OrcaSlicer" msgstr "Skojarz pliki .step/.stp z OrcaSlicer" msgid "If enabled, sets OrcaSlicer as default application to open .step files" -msgstr "Jeśli włączone, ustawia OrcaSlicer jako domyślną aplikację do otwierania plików .step" +msgstr "" +"Jeśli włączone, ustawia OrcaSlicer jako domyślną aplikację do otwierania " +"plików .step" msgid "Maximum recent projects" msgstr "Maksymalna liczba ostatnich projektów" @@ -6123,8 +6755,11 @@ msgstr "Brak ostrzeżeń przy wczytywaniu plików 3MF z zmodyfikowanymi G-code" msgid "Auto-Backup" msgstr "Auto-Zapis" -msgid "Backup your project periodically for restoring from the occasional crash." -msgstr "Wykonuj okresowe kopie zapasowe projektu w celu przywracania po sporadycznych awariach." +msgid "" +"Backup your project periodically for restoring from the occasional crash." +msgstr "" +"Wykonuj okresowe kopie zapasowe projektu w celu przywracania po " +"sporadycznych awariach." msgid "every" msgstr "każdy" @@ -6276,9 +6911,6 @@ msgstr "Wybierz/Usuń drukarki (profile systemowe)" msgid "Create printer" msgstr "Utwórz drukarkę" -msgid "Incompatible" -msgstr "Niekompatybilne" - msgid "The selected preset is null!" msgstr "Wybrany profil jest pusty!" @@ -6385,7 +7017,8 @@ msgstr "Profil \"%1%\" już istnieje." #, boost-format msgid "Preset \"%1%\" already exists and is incompatible with current printer." -msgstr "Profil \"%1%\" już istnieje i jest niekompatybilny z aktualną drukarką." +msgstr "" +"Profil \"%1%\" już istnieje i jest niekompatybilny z aktualną drukarką." msgid "Please note that saving action will replace this preset" msgstr "Zwróć uwagę, że zapisanie spowoduje zastąpienie tego profilu" @@ -6487,7 +7120,8 @@ msgid "Error code" msgstr "Kod błędu" msgid "Printer local connection failed, please try again." -msgstr "Nie udało się nawiązać lokalnego połączenia z drukarką, spróbuj ponownie." +msgstr "" +"Nie udało się nawiązać lokalnego połączenia z drukarką, spróbuj ponownie." msgid "No login account, only printers in LAN mode are displayed" msgstr "Bez logowania na koncie, wyświetlane są tylko drukarki w trybie LAN" @@ -6502,49 +7136,89 @@ msgid "Synchronizing device information time out" msgstr "Upłynął czas synchronizacji informacji o urządzeniu" msgid "Cannot send the print job when the printer is updating firmware" -msgstr "Nie można wysłać zadania do druku, gdy drukarka aktualizuje oprogramowanie" +msgstr "" +"Nie można wysłać zadania do druku, gdy drukarka aktualizuje oprogramowanie" -msgid "The printer is executing instructions. Please restart printing after it ends" -msgstr "Drukarka wykonuje instrukcje. Proszę wznowić drukowanie po ich zakończeniu" +msgid "" +"The printer is executing instructions. Please restart printing after it ends" +msgstr "" +"Drukarka wykonuje instrukcje. Proszę wznowić drukowanie po ich zakończeniu" msgid "The printer is busy on other print job" msgstr "Drukarka jest zajęta innym zadaniem drukowania" #, c-format, boost-format -msgid "Filament %s exceeds the number of AMS slots. Please update the printer firmware to support AMS slot assignment." -msgstr "Filament %s przekracza liczbę slotów AMS. Proszę zaktualizować oprogramowanie drukarki, aby obsługiwało przypisywanie slotów AMS." +msgid "" +"Filament %s exceeds the number of AMS slots. Please update the printer " +"firmware to support AMS slot assignment." +msgstr "" +"Filament %s przekracza liczbę slotów AMS. Proszę zaktualizować " +"oprogramowanie drukarki, aby obsługiwało przypisywanie slotów AMS." -msgid "Filament exceeds the number of AMS slots. Please update the printer firmware to support AMS slot assignment." -msgstr "Filament przekracza liczbę slotów AMS. Proszę zaktualizować oprogramowanie drukarki, aby obsługiwało przypisywanie slotów AMS." +msgid "" +"Filament exceeds the number of AMS slots. Please update the printer firmware " +"to support AMS slot assignment." +msgstr "" +"Filament przekracza liczbę slotów AMS. Proszę zaktualizować oprogramowanie " +"drukarki, aby obsługiwało przypisywanie slotów AMS." -msgid "Filaments to AMS slots mappings have been established. You can click a filament above to change its mapping AMS slot" -msgstr "Ustalono przyporządkowanie filamentów do gniazd w AMS. Możesz kliknąć na dowolny filament powyżej, aby zmienić jego przypisanie do innego gniazda w AMS" +msgid "" +"Filaments to AMS slots mappings have been established. You can click a " +"filament above to change its mapping AMS slot" +msgstr "" +"Ustalono przyporządkowanie filamentów do gniazd w AMS. Możesz kliknąć na " +"dowolny filament powyżej, aby zmienić jego przypisanie do innego gniazda w " +"AMS" -msgid "Please click each filament above to specify its mapping AMS slot before sending the print job" -msgstr "Proszę kliknąć na każdy filament powyżej, aby określić jego przypisany slot AMS przed wysłaniem zadania druku" +msgid "" +"Please click each filament above to specify its mapping AMS slot before " +"sending the print job" +msgstr "" +"Proszę kliknąć na każdy filament powyżej, aby określić jego przypisany slot " +"AMS przed wysłaniem zadania druku" #, c-format, boost-format -msgid "Filament %s does not match the filament in AMS slot %s. Please update the printer firmware to support AMS slot assignment." -msgstr "Filament %s nie pasuje do filamentu w slocie AMS %s. Proszę zaktualizować oprogramowanie drukarki, aby obsługiwało przypisywanie slotów AMS." +msgid "" +"Filament %s does not match the filament in AMS slot %s. Please update the " +"printer firmware to support AMS slot assignment." +msgstr "" +"Filament %s nie pasuje do filamentu w slocie AMS %s. Proszę zaktualizować " +"oprogramowanie drukarki, aby obsługiwało przypisywanie slotów AMS." -msgid "Filament does not match the filament in AMS slot. Please update the printer firmware to support AMS slot assignment." -msgstr "Filament nie pasuje do filamentu w slocie AMS. Proszę zaktualizować oprogramowanie drukarki, aby obsługiwało przypisywanie slotów AMS." +msgid "" +"Filament does not match the filament in AMS slot. Please update the printer " +"firmware to support AMS slot assignment." +msgstr "" +"Filament nie pasuje do filamentu w slocie AMS. Proszę zaktualizować " +"oprogramowanie drukarki, aby obsługiwało przypisywanie slotów AMS." -msgid "The printer firmware only supports sequential mapping of filament => AMS slot." -msgstr "Oprogramowanie drukarki obsługuje tylko sekwencyjne mapowanie filamentu => slot AMS." +msgid "" +"The printer firmware only supports sequential mapping of filament => AMS " +"slot." +msgstr "" +"Oprogramowanie drukarki obsługuje tylko sekwencyjne mapowanie filamentu => " +"slot AMS." msgid "An SD card needs to be inserted before printing." msgstr "Przed rozpoczęciem drukowania należy włożyć kartę SD." #, c-format, boost-format -msgid "The selected printer (%s) is incompatible with the chosen printer profile in the slicer (%s)." -msgstr "Wybrana drukarka (%s) jest niezgodna z wybranym profilem drukarki w programie (%s)." +msgid "" +"The selected printer (%s) is incompatible with the chosen printer profile in " +"the slicer (%s)." +msgstr "" +"Wybrana drukarka (%s) jest niezgodna z wybranym profilem drukarki w " +"programie (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "Aby nagrywać timelapse, należy włożyć kartę SD." -msgid "Cannot send the print job to a printer whose firmware is required to get updated." -msgstr "Nie można wysłać zadania druku do drukarki, której oprogramowanie wymaga aktualizacji." +msgid "" +"Cannot send the print job to a printer whose firmware is required to get " +"updated." +msgstr "" +"Nie można wysłać zadania druku do drukarki, której oprogramowanie wymaga " +"aktualizacji." msgid "Cannot send the print job for empty plate" msgstr "Nie można wysłać zadania druku dla pustej płyty" @@ -6552,11 +7226,18 @@ msgstr "Nie można wysłać zadania druku dla pustej płyty" msgid "This printer does not support printing all plates" msgstr "Ta drukarka nie obsługuje drukowania na wszystkich płytach" -msgid "When enable spiral vase mode, machines with I3 structure will not generate timelapse videos." -msgstr "Po włączeniu trybu 'spiralna waza', maszyny o strukturze I3 nie będą generować filmów timelapse." +msgid "" +"When enable spiral vase mode, machines with I3 structure will not generate " +"timelapse videos." +msgstr "" +"Po włączeniu trybu 'spiralna waza', maszyny o strukturze I3 nie będą " +"generować filmów timelapse." -msgid "Timelapse is not supported because Print sequence is set to \"By object\"." -msgstr "Timelapse nie jest obsługiwany, ponieważ sekwencja druku jest ustawiona na \"Obiekt po obiekcie\"." +msgid "" +"Timelapse is not supported because Print sequence is set to \"By object\"." +msgstr "" +"Timelapse nie jest obsługiwany, ponieważ sekwencja druku jest ustawiona na " +"\"Obiekt po obiekcie\"." msgid "Errors" msgstr "Błędy" @@ -6564,11 +7245,22 @@ msgstr "Błędy" msgid "Please check the following:" msgstr "Proszę sprawdzić następujące rzeczy:" -msgid "The printer type selected when generating G-Code is not consistent with the currently selected printer. It is recommended that you use the same printer type for slicing." -msgstr "Typ drukarki wybrany podczas generowania G-code nie jest zgodny z aktualnie wybraną drukarką. Zaleca się używanie tego samego typu drukarki do cięcia." +msgid "" +"The printer type selected when generating G-Code is not consistent with the " +"currently selected printer. It is recommended that you use the same printer " +"type for slicing." +msgstr "" +"Typ drukarki wybrany podczas generowania G-code nie jest zgodny z aktualnie " +"wybraną drukarką. Zaleca się używanie tego samego typu drukarki do cięcia." -msgid "There are some unknown filaments in the AMS mappings. Please check whether they are the required filaments. If they are okay, press \"Confirm\" to start printing." -msgstr "W mapowaniu AMS znajdują się nieznane filamenty. Proszę sprawdzić, czy są to wymagane filamenty. Jeśli wszystko jest w porządku, naciśnij \"Potwierdź\", aby rozpocząć drukowanie." +msgid "" +"There are some unknown filaments in the AMS mappings. Please check whether " +"they are the required filaments. If they are okay, press \"Confirm\" to " +"start printing." +msgstr "" +"W mapowaniu AMS znajdują się nieznane filamenty. Proszę sprawdzić, czy są to " +"wymagane filamenty. Jeśli wszystko jest w porządku, naciśnij \"Potwierdź\", " +"aby rozpocząć drukowanie." #, c-format, boost-format msgid "nozzle in preset: %s %s" @@ -6578,24 +7270,44 @@ msgstr "dysza w profilu: %s %s" msgid "nozzle memorized: %.1f %s" msgstr "zapamiętana dysza: %.1f %s" -msgid "Your nozzle diameter in sliced file is not consistent with memorized nozzle. If you changed your nozzle lately, please go to Device > Printer Parts to change settings." -msgstr "Średnica dyszy w przetworzonym pliku nie jest zgodna z średnicą dyszy w ustawieniach. Jeśli ostatnio zmieniłeś dyszę, przejdź do opcji Urządzenie > Części głowicy, aby zmienić to ustawienie." +msgid "" +"Your nozzle diameter in sliced file is not consistent with memorized nozzle. " +"If you changed your nozzle lately, please go to Device > Printer Parts to " +"change settings." +msgstr "" +"Średnica dyszy w przetworzonym pliku nie jest zgodna z średnicą dyszy w " +"ustawieniach. Jeśli ostatnio zmieniłeś dyszę, przejdź do opcji Urządzenie > " +"Części głowicy, aby zmienić to ustawienie." #, c-format, boost-format -msgid "Printing high temperature material(%s material) with %s may cause nozzle damage" -msgstr "Drukowanie materiału o wysokiej temperaturze (%s materiał) z %s może spowodować uszkodzenie dyszy." +msgid "" +"Printing high temperature material(%s material) with %s may cause nozzle " +"damage" +msgstr "" +"Drukowanie materiału o wysokiej temperaturze (%s materiał) z %s może " +"spowodować uszkodzenie dyszy." msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "Proszę naprawić powyższy błąd, w przeciwnym razie drukowanie nie może być kontynuowane." +msgstr "" +"Proszę naprawić powyższy błąd, w przeciwnym razie drukowanie nie może być " +"kontynuowane." -msgid "Please click the confirm button if you still want to proceed with printing." -msgstr "Proszę nacisnąć przycisk potwierdzenia, jeśli nadal chcesz kontynuować drukowanie." +msgid "" +"Please click the confirm button if you still want to proceed with printing." +msgstr "" +"Proszę nacisnąć przycisk potwierdzenia, jeśli nadal chcesz kontynuować " +"drukowanie." -msgid "Connecting to the printer. Unable to cancel during the connection process." +msgid "" +"Connecting to the printer. Unable to cancel during the connection process." msgstr "Łączenie z drukarką. Nie można anulować w trakcie procesu łączenia." -msgid "Caution to use! Flow calibration on Textured PEI Plate may fail due to the scattered surface." -msgstr "Ostrożnie! Kalibracja przepływu na Texture PEI może nie powieść się z powodu nierównomiernie rozłożonej powierzchni." +msgid "" +"Caution to use! Flow calibration on Textured PEI Plate may fail due to the " +"scattered surface." +msgstr "" +"Ostrożnie! Kalibracja przepływu na Texture PEI może nie powieść się z powodu " +"nierównomiernie rozłożonej powierzchni." msgid "Automatic flow calibration using Micro Lidar" msgstr "Automatyczna kalibracja przepływu za pomocą mikrolidaru" @@ -6613,7 +7325,8 @@ msgid "Cannot send the print task when the upgrade is in progress" msgstr "Nie można wysłać zadania druku podczas aktualizacji" msgid "The selected printer is incompatible with the chosen printer presets." -msgstr "Wybrana drukarka jest niekompatybilna z wybranymi ustawieniami drukarki." +msgstr "" +"Wybrana drukarka jest niekompatybilna z wybranymi ustawieniami drukarki." msgid "An SD card needs to be inserted before send to printer SD card." msgstr "Przed wysłaniem na kartę SD drukarki, należy włożyć kartę SD." @@ -6694,8 +7407,19 @@ msgstr "Przeczytaj i zaakceptuj" msgid "Terms and Conditions" msgstr "Warunki i zasady" -msgid "Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab device, please read the termsand conditions.By clicking to agree to use your Bambu Lab device, you agree to abide by the Privacy Policyand Terms of Use(collectively, the \"Terms\"). If you do not comply with or agree to the Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." -msgstr "Dziękujemy za zakup urządzenia Bambu Lab. Przed użyciem urządzenia Bambu Lab proszę przeczytać warunki i zasady. Klikając, aby zgodzić się na używanie urządzenia Bambu Lab, zgadzasz się przestrzegać Polityki Prywatności i Warunków Użytkowania (razem \"Warunki\"). Jeśli nie zgadzasz się lub nie przestrzegasz Polityki Prywatności Bambu Lab, proszę nie używać sprzętu i usług Bambu Lab." +msgid "" +"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " +"device, please read the termsand conditions.By clicking to agree to use your " +"Bambu Lab device, you agree to abide by the Privacy Policyand Terms of " +"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." +msgstr "" +"Dziękujemy za zakup urządzenia Bambu Lab. Przed użyciem urządzenia Bambu Lab " +"proszę przeczytać warunki i zasady. Klikając, aby zgodzić się na używanie " +"urządzenia Bambu Lab, zgadzasz się przestrzegać Polityki Prywatności i " +"Warunków Użytkowania (razem \"Warunki\"). Jeśli nie zgadzasz się lub nie " +"przestrzegasz Polityki Prywatności Bambu Lab, proszę nie używać sprzętu i " +"usług Bambu Lab." msgid "and" msgstr "i" @@ -6710,8 +7434,31 @@ msgid "Statement about User Experience Improvement Program" msgstr "Oświadczenie o programie poprawy doświadczenia użytkownika" #, c-format, boost-format -msgid "In the 3D Printing community, we learn from each other's successes and failures to adjust our own slicing parameters and settings. %s follows the same principle and uses machine learning to improve its performance from the successes and failures of the vast number of prints by our users. We are training %s to be smarter by feeding them the real-world data. If you are willing, this service will access information from your error logs and usage logs, which may include information described in Privacy Policy. We will not collect any Personal Data by which an individual can be identified directly or indirectly, including without limitation names, addresses, payment information, or phone numbers. By enabling this service, you agree to these terms and the statement about Privacy Policy." -msgstr "W społeczności druku 3D uczymy się od siebie nawzajem, korzystając z sukcesów i porażek, aby dostosować nasze parametry i ustawienia cięcia. %s stosuje tę samą zasadę i wykorzystuje uczenie maszynowe do poprawy swojej wydajności na podstawie sukcesów i porażek ogromnej liczby wydruków naszych użytkowników. Szkolimy %s, aby było mądrzejsze, dostarczając mu danych z rzeczywistego świata. Jeśli wyrażasz zgodę, ta usługa uzyska dostęp do informacji z Twoich logów błędów i dzienników użycia, które mogą zawierać informacje opisane w Polityce Prywatności. Nie będziemy zbierać żadnych danych osobowych, dzięki którym można by bezpośrednio lub pośrednio zidentyfikować osobę, w tym między innymi nanawisk, adresów, informacji o płatnościach czy numerów telefonów. Włączając tę usługę, zgadzasz się na te warunki i oświadczenie o Polityce Prywatności." +msgid "" +"In the 3D Printing community, we learn from each other's successes and " +"failures to adjust our own slicing parameters and settings. %s follows the " +"same principle and uses machine learning to improve its performance from the " +"successes and failures of the vast number of prints by our users. We are " +"training %s to be smarter by feeding them the real-world data. If you are " +"willing, this service will access information from your error logs and usage " +"logs, which may include information described in Privacy Policy. We will " +"not collect any Personal Data by which an individual can be identified " +"directly or indirectly, including without limitation names, addresses, " +"payment information, or phone numbers. By enabling this service, you agree " +"to these terms and the statement about Privacy Policy." +msgstr "" +"W społeczności druku 3D uczymy się od siebie nawzajem, korzystając z " +"sukcesów i porażek, aby dostosować nasze parametry i ustawienia cięcia. %s " +"stosuje tę samą zasadę i wykorzystuje uczenie maszynowe do poprawy swojej " +"wydajności na podstawie sukcesów i porażek ogromnej liczby wydruków naszych " +"użytkowników. Szkolimy %s, aby było mądrzejsze, dostarczając mu danych z " +"rzeczywistego świata. Jeśli wyrażasz zgodę, ta usługa uzyska dostęp do " +"informacji z Twoich logów błędów i dzienników użycia, które mogą zawierać " +"informacje opisane w Polityce Prywatności. Nie będziemy zbierać żadnych " +"danych osobowych, dzięki którym można by bezpośrednio lub pośrednio " +"zidentyfikować osobę, w tym między innymi nanawisk, adresów, informacji o " +"płatnościach czy numerów telefonów. Włączając tę usługę, zgadzasz się na te " +"warunki i oświadczenie o Polityce Prywatności." msgid "Statement on User Experience Improvement Plan" msgstr "Oświadczenie o planie poprawy doświadczenia użytkownika" @@ -6746,23 +7493,35 @@ msgid "Search in preset" msgstr "Szukaj w profilu" msgid "Click to reset all settings to the last saved preset." -msgstr "Kliknij, aby zresetować wszystkie ustawienia do ostatnio zapisanego profilu." +msgstr "" +"Kliknij, aby zresetować wszystkie ustawienia do ostatnio zapisanego profilu." -msgid "Prime tower is required for smooth timeplase. There may be flaws on the model without prime tower. Are you sure you want to disable prime tower?" -msgstr "Wieża czyszcząca jest wymagana dla płynnego timelapse'u. Możliwe są wady na modelu bez wieży czyszczącej. Czy na pewno chcesz ją wyłączyć?" +msgid "" +"Prime tower is required for smooth timeplase. There may be flaws on the " +"model without prime tower. Are you sure you want to disable prime tower?" +msgstr "" +"Wieża czyszcząca jest wymagana dla płynnego timelapse'u. Możliwe są wady na " +"modelu bez wieży czyszczącej. Czy na pewno chcesz ją wyłączyć?" -msgid "Prime tower is required for smooth timelapse. There may be flaws on the model without prime tower. Do you want to enable prime tower?" -msgstr "Wieża czyszcząca jest wymagana dla płynnego timelapse'u. Możliwe są wady na modelu bez wieży czyszczącej. Czy chcesz włączyć wieżę czyszczącą?" +msgid "" +"Prime tower is required for smooth timelapse. There may be flaws on the " +"model without prime tower. Do you want to enable prime tower?" +msgstr "" +"Wieża czyszcząca jest wymagana dla płynnego timelapse'u. Możliwe są wady na " +"modelu bez wieży czyszczącej. Czy chcesz włączyć wieżę czyszczącą?" msgid "Still print by object?" msgstr "Czy nadal drukować według obiektu?" msgid "" -"We have added an experimental style \"Tree Slim\" that features smaller support volume but weaker strength.\n" +"We have added an experimental style \"Tree Slim\" that features smaller " +"support volume but weaker strength.\n" "We recommend using it with: 0 interface layers, 0 top distance, 2 walls." msgstr "" -"Dodaliśmy eksperymentalny styl \"Cienkie Drzewo\", który charakteryzuje się mniejszą objętością podpór, ale i słabszą wytrzymałością.\n" -"Zalecamy używanie go z: 0 warstw łączących, 0 odległością od góry, 2 ścianami." +"Dodaliśmy eksperymentalny styl \"Cienkie Drzewo\", który charakteryzuje się " +"mniejszą objętością podpór, ale i słabszą wytrzymałością.\n" +"Zalecamy używanie go z: 0 warstw łączących, 0 odległością od góry, 2 " +"ścianami." msgid "" "Change these settings automatically? \n" @@ -6773,18 +7532,35 @@ msgstr "" "Tak - Zmień te ustawienia automatycznie\n" "Nie - Nie zmieniaj tych ustawień dla mnie" -msgid "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the following settings: at least 2 interface layers, at least 0.1mm top z distance or using support materials on interface." -msgstr "Dla stylów \"Drzewo Grube\" i \"Drzewo Hybrydowe\" zalecamy następujące ustawienia: co najmniej 2 warstwy łączące, co najmniej 0,1 mm odległości od góry lub używanie materiałów podporowych na łączeniach." +msgid "" +"For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the following " +"settings: at least 2 interface layers, at least 0.1mm top z distance or " +"using support materials on interface." +msgstr "" +"Dla stylów \"Drzewo Grube\" i \"Drzewo Hybrydowe\" zalecamy następujące " +"ustawienia: co najmniej 2 warstwy łączące, co najmniej 0,1 mm odległości od " +"góry lub używanie materiałów podporowych na łączeniach." msgid "" -"When using support material for the support interface, We recommend the following settings:\n" -"0 top z distance, 0 interface spacing, concentric pattern and disable independent support layer height" +"When using support material for the support interface, We recommend the " +"following settings:\n" +"0 top z distance, 0 interface spacing, concentric pattern and disable " +"independent support layer height" msgstr "" -"Przy użyciu materiału podporowego do warstw łączących podpory zalecamy następujące ustawienia:\n" -"0 odległość osu Z od góry, 0 odstęp warstwy łączącej, wzór koncentryczny i wyłączenie niezależnej wysokości warstwy podpory" +"Przy użyciu materiału podporowego do warstw łączących podpory zalecamy " +"następujące ustawienia:\n" +"0 odległość osu Z od góry, 0 odstęp warstwy łączącej, wzór koncentryczny i " +"wyłączenie niezależnej wysokości warstwy podpory" -msgid "Enabling this option will modify the model's shape. If your print requires precise dimensions or is part of an assembly, it's important to double-check whether this change in geometry impacts the functionality of your print." -msgstr "Włączenie tej opcji spowoduje zmianę kształtu modelu. Jeśli druk wymaga precyzyjnych wymiarów lub jest częścią złożonego projektu, ważne jest dokładne sprawdzenie, czy ta zmiana geometrii nie wpłynie na funkcjonalność druku." +msgid "" +"Enabling this option will modify the model's shape. If your print requires " +"precise dimensions or is part of an assembly, it's important to double-check " +"whether this change in geometry impacts the functionality of your print." +msgstr "" +"Włączenie tej opcji spowoduje zmianę kształtu modelu. Jeśli druk wymaga " +"precyzyjnych wymiarów lub jest częścią złożonego projektu, ważne jest " +"dokładne sprawdzenie, czy ta zmiana geometrii nie wpłynie na funkcjonalność " +"druku." msgid "Are you sure you want to enable this option?" msgstr "Czy na pewno chcesz włączyć tę opcję?" @@ -6796,8 +7572,12 @@ msgstr "" "Wysokość warstwy jest zbyt mała.\n" "Ustawione zostanie na min_layer_height\n" -msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits ,this may cause printing quality issues." -msgstr "Wysokość warstwy przekracza limit w Ustawieniach Drukarki -> Extruder -> Limity wysokości warstwy, co może powodować problemy z jakością druku." +msgid "" +"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " +"height limits ,this may cause printing quality issues." +msgstr "" +"Wysokość warstwy przekracza limit w Ustawieniach Drukarki -> Extruder -> " +"Limity wysokości warstwy, co może powodować problemy z jakością druku." msgid "Adjust to the set range automatically? \n" msgstr "Dostosować automatycznie do ustawionego zakresu? \n" @@ -6808,18 +7588,39 @@ msgstr "Dostosuj" msgid "Ignore" msgstr "Ignoruj" -msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush.Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications." -msgstr "Funkcja eksperymentalna: Polega na wycofywaniu filamentu na większą odległość w celu zminimalizowania płukania, a następne jego odcięcie. Choć może to znacząco zmniejszyć ilość zużytego filamentu, może również zwiększyć ryzyko zatknięcia dyszy lub innych problemów z drukowaniem." - -msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush.Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications.Please use with the latest printer firmware." -msgstr "Funkcja eksperymentalna: Polega na wycofywaniu filamentu na większą odległość w celu zminimalizowania płukania, a następne jego odcięcie. Choć może to znacząco zmniejszyć ilość zużytego filamentu, może również zwiększyć ryzyko zatknięcia dyszy lub innych problemów z drukowaniem. Proszę używać z najnowszym oprogramowaniem drukarki." +msgid "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush.Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " +"printing complications." +msgstr "" +"Funkcja eksperymentalna: Polega na wycofywaniu filamentu na większą " +"odległość w celu zminimalizowania płukania, a następne jego odcięcie. Choć " +"może to znacząco zmniejszyć ilość zużytego filamentu, może również zwiększyć " +"ryzyko zatknięcia dyszy lub innych problemów z drukowaniem." msgid "" -"When recording timelapse without toolhead, it is recommended to add a \"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add Primitive\"->\"Timelapse Wipe Tower\"." +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush.Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications.Please use with the latest printer firmware." msgstr "" -"Podczas nagrywania timelapse'a bez głowicy drukującej zaleca się dodanie \"Timelaps - Wieża Czyszcząca\" \n" -"przez kliknięcie prawym przyciskiem myszy na pustym miejscu płyty i wybranie \"Dodaj Prymityw\"->\"Timelaps - Wieża Czyszcząca\"." +"Funkcja eksperymentalna: Polega na wycofywaniu filamentu na większą " +"odległość w celu zminimalizowania płukania, a następne jego odcięcie. Choć " +"może to znacząco zmniejszyć ilość zużytego filamentu, może również zwiększyć " +"ryzyko zatknięcia dyszy lub innych problemów z drukowaniem. Proszę używać z " +"najnowszym oprogramowaniem drukarki." + +msgid "" +"When recording timelapse without toolhead, it is recommended to add a " +"\"Timelapse Wipe Tower\" \n" +"by right-click the empty position of build plate and choose \"Add Primitive" +"\"->\"Timelapse Wipe Tower\"." +msgstr "" +"Podczas nagrywania timelapse'a bez głowicy drukującej zaleca się dodanie " +"\"Timelaps - Wieża Czyszcząca\" \n" +"przez kliknięcie prawym przyciskiem myszy na pustym miejscu płyty i wybranie " +"\"Dodaj Prymityw\"->\"Timelaps - Wieża Czyszcząca\"." msgid "Line width" msgstr "Szerokość linii" @@ -6857,8 +7658,14 @@ msgstr "Szybkość innych warstw" msgid "Overhang speed" msgstr "Szybkość drukowania nawisów" -msgid "This is the speed for various overhang degrees. Overhang degrees are expressed as a percentage of line width. 0 speed means no slowing down for the overhang degree range and wall speed is used" -msgstr "To jest prędkość dla różnych stopni nawisu. Stopnie nawisu są wyrażane jako procent szerokości linii. Prędkość 0 oznacza brak spowolnienia, a używana jest prędkość ściany" +msgid "" +"This is the speed for various overhang degrees. Overhang degrees are " +"expressed as a percentage of line width. 0 speed means no slowing down for " +"the overhang degree range and wall speed is used" +msgstr "" +"To jest prędkość dla różnych stopni nawisu. Stopnie nawisu są wyrażane jako " +"procent szerokości linii. Prędkość 0 oznacza brak spowolnienia, a używana " +"jest prędkość ściany" msgid "Bridge" msgstr "Mosty" @@ -6884,6 +7691,9 @@ msgstr "Filament podpory" msgid "Tree supports" msgstr "Drzewo" +msgid "Skirt" +msgstr "Skirt" + msgid "Prime tower" msgstr "Wieża czyszcząca" @@ -6905,19 +7715,24 @@ msgstr "Cz.używ." #, c-format, boost-format msgid "" "Following line %s contains reserved keywords.\n" -"Please remove it, or will beat G-code visualization and printing time estimation." +"Please remove it, or will beat G-code visualization and printing time " +"estimation." msgid_plural "" "Following lines %s contain reserved keywords.\n" -"Please remove them, or will beat G-code visualization and printing time estimation." +"Please remove them, or will beat G-code visualization and printing time " +"estimation." msgstr[0] "" "Następująca linia %s zawiera zarezerwowane słowa kluczowe.\n" -"Proszę ją usunąć, inaczej może to zakłócić wizualizację G-code i oszacowanie czasu druku." +"Proszę ją usunąć, inaczej może to zakłócić wizualizację G-code i oszacowanie " +"czasu druku." msgstr[1] "" "Następujące %s linie zawierają zarezerwowane słowa kluczowe.\n" -"Proszę je usunąć, inaczej może to zakłócić wizualizację G-code i oszacowanie czasu druku." +"Proszę je usunąć, inaczej może to zakłócić wizualizację G-code i oszacowanie " +"czasu druku." msgstr[2] "" "Następujące %s linii zawiera zarezerwowane słowa kluczowe.\n" -"Proszę je usunąć, inaczej może to zakłócić wizualizację G-code i oszacowanie czasu druku." +"Proszę je usunąć, inaczej może to zakłócić wizualizację G-code i oszacowanie " +"czasu druku." msgid "Reserved keywords found" msgstr "Znaleziono zarezerwowane słowa kluczowe" @@ -6935,7 +7750,8 @@ msgid "Recommended nozzle temperature" msgstr "Zalecana temperatura dyszy" msgid "Recommended nozzle temperature range of this filament. 0 means no set" -msgstr "Zalecany zakres temperatury dyszy dla tego filamentu. 0 oznacza brak ustawień" +msgstr "" +"Zalecany zakres temperatury dyszy dla tego filamentu. 0 oznacza brak ustawień" msgid "Print chamber temperature" msgstr "Temperatura komory druku" @@ -6952,26 +7768,44 @@ msgstr "Temperatura dyszy podczas druku" msgid "Cool plate" msgstr "Cool plate / PLA Plate" -msgid "Bed temperature when cool plate is installed. Value 0 means the filament does not support to print on the Cool Plate" -msgstr "Temperatura stołu, gdy zainstalowana jest Cool Plate. Wartość 0 oznacza, że filament nie jest przystosowany do druku na Cool Plate" +msgid "" +"Bed temperature when cool plate is installed. Value 0 means the filament " +"does not support to print on the Cool Plate" +msgstr "" +"Temperatura stołu, gdy zainstalowana jest Cool Plate. Wartość 0 oznacza, że " +"filament nie jest przystosowany do druku na Cool Plate" msgid "Engineering plate" msgstr "Engineering Plate" -msgid "Bed temperature when engineering plate is installed. Value 0 means the filament does not support to print on the Engineering Plate" -msgstr "Temperatura stołu, gdy zainstalowana jest Engineering Plate. Wartość 0 oznacza, że filament nie jest przystosowany do druku na Engineering Plate" +msgid "" +"Bed temperature when engineering plate is installed. Value 0 means the " +"filament does not support to print on the Engineering Plate" +msgstr "" +"Temperatura stołu, gdy zainstalowana jest Engineering Plate. Wartość 0 " +"oznacza, że filament nie jest przystosowany do druku na Engineering Plate" msgid "Smooth PEI Plate / High Temp Plate" msgstr "Smooth PEI Plate / High Temp Plate" -msgid "Bed temperature when Smooth PEI Plate/High temperature plate is installed. Value 0 means the filament does not support to print on the Smooth PEI Plate/High Temp Plate" -msgstr "Temperatura stołu, gdy zainstalowana jest Smooth PEI Plate/High Temp Plate. Wartość 0 oznacza, że filament nie jest przystosowany do druku na Smooth PEI Plate/High Temp Plate" +msgid "" +"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " +"Value 0 means the filament does not support to print on the Smooth PEI Plate/" +"High Temp Plate" +msgstr "" +"Temperatura stołu, gdy zainstalowana jest Smooth PEI Plate/High Temp Plate. " +"Wartość 0 oznacza, że filament nie jest przystosowany do druku na Smooth PEI " +"Plate/High Temp Plate" msgid "Textured PEI Plate" msgstr "Textured PEI Plate" -msgid "Bed temperature when Textured PEI Plate is installed. Value 0 means the filament does not support to print on the Textured PEI Plate" -msgstr "Temperatura stołu, gdy zainstalowana jest Textured PEI Plate. Wartość 0 oznacza, że filament nie jest przystosowany do druku na Textured PEI Plate" +msgid "" +"Bed temperature when Textured PEI Plate is installed. Value 0 means the " +"filament does not support to print on the Textured PEI Plate" +msgstr "" +"Temperatura stołu, gdy zainstalowana jest Textured PEI Plate. Wartość 0 " +"oznacza, że filament nie jest przystosowany do druku na Textured PEI Plate" msgid "Volumetric speed limitation" msgstr "Ograniczenie prędkości przepływu" @@ -6988,14 +7822,27 @@ msgstr "Wentylator chłodzący części" msgid "Min fan speed threshold" msgstr "Minimalny próg prędkości wentylatora" -msgid "Part cooling fan speed will start to run at min speed when the estimated layer time is no longer than the layer time in setting. When layer time is shorter than threshold, fan speed is interpolated between the minimum and maximum fan speed according to layer printing time" -msgstr "Prędkość wentylatora chłodzącego części zacznie pracować z minimalną prędkością, gdy szacowany czas warstwy nie będzie dłuższy niż czas warstwy w ustawieniach. Gdy czas warstwy jest krótszy niż próg, prędkość wentylatora jest interpolowana między minimalną a maksymalną prędkością wentylatora zgodnie z czasem druku warstwy" +msgid "" +"Part cooling fan speed will start to run at min speed when the estimated " +"layer time is no longer than the layer time in setting. When layer time is " +"shorter than threshold, fan speed is interpolated between the minimum and " +"maximum fan speed according to layer printing time" +msgstr "" +"Prędkość wentylatora chłodzącego części zacznie pracować z minimalną " +"prędkością, gdy szacowany czas warstwy nie będzie dłuższy niż czas warstwy w " +"ustawieniach. Gdy czas warstwy jest krótszy niż próg, prędkość wentylatora " +"jest interpolowana między minimalną a maksymalną prędkością wentylatora " +"zgodnie z czasem druku warstwy" msgid "Max fan speed threshold" msgstr "Maksymalny próg prędkości wentylatora" -msgid "Part cooling fan speed will be max when the estimated layer time is shorter than the setting value" -msgstr "Prędkość wentylatora chłodzącego części będzie maksymalna, gdy szacowany czas warstwy będzie krótszy niż wartość ustawiona" +msgid "" +"Part cooling fan speed will be max when the estimated layer time is shorter " +"than the setting value" +msgstr "" +"Prędkość wentylatora chłodzącego części będzie maksymalna, gdy szacowany " +"czas warstwy będzie krótszy niż wartość ustawiona" msgid "Auxiliary part cooling fan" msgstr "Pomocniczy wentylator chłodzący części" @@ -7119,7 +7966,8 @@ msgid "" "\n" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" -"Opcja czyszczenia nie jest dostępna podczas korzystania z trybu retrakcji zaszytego w firmware. \n" +"Opcja czyszczenia nie jest dostępna podczas korzystania z trybu retrakcji " +"zaszytego w firmware. \n" "\n" "Czy powinienem ją wyłączyć, aby umożliwić włączenie retrakcji z firmware?" @@ -7130,8 +7978,12 @@ msgid "Detached" msgstr "Odłączony" #, c-format, boost-format -msgid "%d Filament Preset and %d Process Preset is attached to this printer. Those presets would be deleted if the printer is deleted." -msgstr "%d profil filamentu i %d profil procesu jest przypisany do tej drukarki. Te profile zostaną skasowane, jeśli drukarka zostanie usunięta." +msgid "" +"%d Filament Preset and %d Process Preset is attached to this printer. Those " +"presets would be deleted if the printer is deleted." +msgstr "" +"%d profil filamentu i %d profil procesu jest przypisany do tej drukarki. Te " +"profile zostaną skasowane, jeśli drukarka zostanie usunięta." msgid "Presets inherited by other presets can not be deleted!" msgstr "Profile dziedziczone przez inne profile nie mogą być usunięte!" @@ -7155,10 +8007,12 @@ msgstr[2] "Następujące profile również zostaną usunięte." msgid "" "Are you sure to delete the selected preset? \n" -"If the preset corresponds to a filament currently in use on your printer, please reset the filament information for that slot." +"If the preset corresponds to a filament currently in use on your printer, " +"please reset the filament information for that slot." msgstr "" "Czy na pewno chcesz usunąć wybrany profil? \n" -"Jeśli profil odpowiada filamentowi aktualnie używanemu w twojej drukarce, proszę zresetować informacje o filamentach dla tego slotu." +"Jeśli profil odpowiada filamentowi aktualnie używanemu w twojej drukarce, " +"proszę zresetować informacje o filamentach dla tego slotu." #, boost-format msgid "Are you sure to %1% the selected preset?" @@ -7171,10 +8025,12 @@ msgid "Set" msgstr "Ustaw" msgid "Click to reset current value and attach to the global value." -msgstr "Kliknij, aby zresetować bieżącą wartość i przypiąć ją do wartości globalnej." +msgstr "" +"Kliknij, aby zresetować bieżącą wartość i przypiąć ją do wartości globalnej." msgid "Click to drop current modify and reset to saved value." -msgstr "Kliknij, aby odrzucić bieżące zmiany i zresetować do zapisanej wartości." +msgstr "" +"Kliknij, aby odrzucić bieżące zmiany i zresetować do zapisanej wartości." msgid "Process Settings" msgstr "Ustawienia procesu" @@ -7242,12 +8098,20 @@ msgid "Preset \"%1%\" contains the following unsaved changes:" msgstr "Profil \"%1%\" zawiera następujące niezapisane zmiany:" #, boost-format -msgid "Preset \"%1%\" is not compatible with the new printer profile and it contains the following unsaved changes:" -msgstr "Profil \"%1%\" nie jest kompatybilny z nowym profilem drukarki i zawiera następujące niezapisane zmiany:" +msgid "" +"Preset \"%1%\" is not compatible with the new printer profile and it " +"contains the following unsaved changes:" +msgstr "" +"Profil \"%1%\" nie jest kompatybilny z nowym profilem drukarki i zawiera " +"następujące niezapisane zmiany:" #, boost-format -msgid "Preset \"%1%\" is not compatible with the new process profile and it contains the following unsaved changes:" -msgstr "Profil \"%1%\" nie jest kompatybilny z nowym profilem procesu i zawiera następujące niezapisane zmiany:" +msgid "" +"Preset \"%1%\" is not compatible with the new process profile and it " +"contains the following unsaved changes:" +msgstr "" +"Profil \"%1%\" nie jest kompatybilny z nowym profilem procesu i zawiera " +"następujące niezapisane zmiany:" #, boost-format msgid "You have changed some settings of preset \"%1%\". " @@ -7262,20 +8126,24 @@ msgstr "" msgid "" "\n" -"You can save or discard the preset values you have modified, or choose to transfer the values you have modified to the new preset." +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." msgstr "" "\n" -"Możesz zapisać lub odrzucić zmodyfikowane wartości profilu, lub kontynuować ich używanie w nowym profilu." +"Możesz zapisać lub odrzucić zmodyfikowane wartości profilu, lub kontynuować " +"ich używanie w nowym profilu." msgid "You have previously modified your settings." msgstr "Wcześniej zmodyfikowałeś swoje ustawienia." msgid "" "\n" -"You can discard the preset values you have modified, or choose to transfer the modified values to the new project" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" msgstr "" "\n" -"Możesz zapisać lub odrzucić zmodyfikowane wartości w profilu, lub kontynuować ich używanie w nowym profilu" +"Możesz zapisać lub odrzucić zmodyfikowane wartości w profilu, lub " +"kontynuować ich używanie w nowym profilu" msgid "Extruders count" msgstr "Liczba extruderów" @@ -7292,21 +8160,31 @@ msgstr "Pokaż wszystkie profile (łącznie z niekompatybilnymi)" msgid "Select presets to compare" msgstr "Wybierz profile do porównania" -msgid "You can only transfer to current active profile because it has been modified." -msgstr "Możesz przenieść tylko do aktualnie aktywnego profilu, ponieważ został on zmodyfikowany." +msgid "" +"You can only transfer to current active profile because it has been modified." +msgstr "" +"Możesz przenieść tylko do aktualnie aktywnego profilu, ponieważ został on " +"zmodyfikowany." msgid "" "Transfer the selected options from left preset to the right.\n" -"Note: New modified presets will be selected in settings tabs after close this dialog." +"Note: New modified presets will be selected in settings tabs after close " +"this dialog." msgstr "" "Przenieś wybrane opcje z lewego zestawu ustawień do prawego.\n" -"Uwaga: nowe, zmodyfikowane ustawienia zostaną wybrane w zakładkach ustawień po zamknięciu tego okna dialogowego." +"Uwaga: nowe, zmodyfikowane ustawienia zostaną wybrane w zakładkach ustawień " +"po zamknięciu tego okna dialogowego." msgid "Transfer values from left to right" msgstr "Przenieś wartości z lewej do prawej" -msgid "If enabled, this dialog can be used for transfer selected values from left to right preset." -msgstr "Jeśli ta opcja jest aktywowana, to okno dialogowe może być używane do przenoszenia wybranych wartości z profilu po lewej do profilu po prawej stronie." +msgid "" +"If enabled, this dialog can be used for transfer selected values from left " +"to right preset." +msgstr "" +"Jeśli ta opcja jest aktywowana, to okno dialogowe może być używane do " +"przenoszenia wybranych wartości z profilu po lewej do profilu po prawej " +"stronie." msgid "Add File" msgstr "Dodaj plik" @@ -7367,7 +8245,8 @@ msgid "" "%s will update the configuration package, Otherwise it won't be able to start" msgstr "" "Pakiet konfiguracyjny jest niekompatybilny z obecną aplikacją.\n" -"%s zaktualizuje pakiet konfiguracyjny, w przeciwnym razie nie będzie mógł się uruchomić" +"%s zaktualizuje pakiet konfiguracyjny, w przeciwnym razie nie będzie mógł " +"się uruchomić" #, c-format, boost-format msgid "Exit %s" @@ -7389,13 +8268,25 @@ msgid "Ramming customization" msgstr "Dostosowanie wyciskania" 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" +"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." +"This is an expert-level setting, incorrect adjustment will likely lead to " +"jams, extruder wheel grinding into filament etc." msgstr "" -"Ramming oznacza szybką ekstruzję tuż przed zmianą narzędzia w drukarce jednoextruderowej MM. Jego celem jest odpowiednie ukształtowanie końca wyładowanego filamentu, aby nie przeszkadzał on w wstawieniu nowego filamentu i mógł być później ponownie wstawiony. Ta faza jest ważna, a różne filamenty mogą wymagać różnych prędkości ekstruzji, aby uzyskać dobrą formę. Z tego powodu prędkości ekstruzji podczas wyciskania są regulowane.\n" +"Ramming oznacza szybką ekstruzję tuż przed zmianą narzędzia w drukarce " +"jednoextruderowej MM. Jego celem jest odpowiednie ukształtowanie końca " +"wyładowanego filamentu, aby nie przeszkadzał on w wstawieniu nowego " +"filamentu i mógł być później ponownie wstawiony. Ta faza jest ważna, a różne " +"filamenty mogą wymagać różnych prędkości ekstruzji, aby uzyskać dobrą formę. " +"Z tego powodu prędkości ekstruzji podczas wyciskania są regulowane.\n" "\n" -"Jest to ustawienie na poziomie eksperta, nieprawidłowa regulacja prawdopodobnie doprowadzi do zacięć filamentu, zgrzytania koła extrudera itp." +"Jest to ustawienie na poziomie eksperta, nieprawidłowa regulacja " +"prawdopodobnie doprowadzi do zacięć filamentu, zgrzytania koła extrudera itp." msgid "Total ramming time" msgstr "Całkowity czas wyciskania" @@ -7421,8 +8312,13 @@ msgstr "Przelicz ponownie" msgid "Flushing volumes for filament change" msgstr "Objętości płukania przy zmianie filamentu" -msgid "Orca would re-calculate your flushing volumes everytime the filaments color changed. You could disable the auto-calculate in Orca Slicer > Preferences" -msgstr "Orca będzie przeliczał objętość płukania za każdym razem, gdy zmieni się kolor filamentu. Możesz wyłączyć auto-przeliczanie w Orca Slicer > Preferencje" +msgid "" +"Orca would re-calculate your flushing volumes everytime the filaments color " +"changed. You could disable the auto-calculate in Orca Slicer > Preferences" +msgstr "" +"Orca będzie przeliczał objętość płukania za każdym razem, gdy zmieni się " +"kolor filamentu. Możesz wyłączyć auto-przeliczanie w Orca Slicer > " +"Preferencje" msgid "Flushing volume (mm³) for each filament pair." msgstr "Objętość płukania (mm³) dla każdej pary filamentów." @@ -7463,7 +8359,8 @@ msgid "Login" msgstr "Logowanie" msgid "The configuration package is changed in previous Config Guide" -msgstr "Pakiet konfiguracyjny został zmieniony w poprzednim Przewodniku konfiguracji" +msgstr "" +"Pakiet konfiguracyjny został zmieniony w poprzednim Przewodniku konfiguracji" msgid "Configuration package changed" msgstr "Zmieniono pakiet konfiguracyjny" @@ -7516,8 +8413,14 @@ msgstr "Shift+A" msgid "Shift+R" msgstr "Shift+R" -msgid "Auto orientates selected objects or all objects.If there are selected objects, it just orientates the selected ones.Otherwise, it will orientates all objects in the current disk." -msgstr "Ta funkcja automatycznie ustawia orientację zaznaczonych lub wszystkich obiektów. Jeśli są wybrane obiekty, ustawi tylko te wybrane. W przeciwnym razie ustawia wszystkie obiekty na aktualnej płycie roboczej." +msgid "" +"Auto orientates selected objects or all objects.If there are selected " +"objects, it just orientates the selected ones.Otherwise, it will orientates " +"all objects in the current disk." +msgstr "" +"Ta funkcja automatycznie ustawia orientację zaznaczonych lub wszystkich " +"obiektów. Jeśli są wybrane obiekty, ustawi tylko te wybrane. W przeciwnym " +"razie ustawia wszystkie obiekty na aktualnej płycie roboczej." msgid "Shift+Tab" msgstr "Shift+Tab" @@ -7717,6 +8620,12 @@ msgstr "Przesuń suwak 5x szybciej" msgid "Shift+Mouse wheel" msgstr "Shift+Kółko myszy" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Informacje o wydaniu" @@ -7727,8 +8636,11 @@ msgstr "informacje o aktualizacji wersji %s:" msgid "Network plug-in update" msgstr "Aktualizacja wtyczki sieciowej" -msgid "Click OK to update the Network plug-in when Orca Slicer launches next time." -msgstr "Kliknij OK, aby zaktualizować wtyczkę sieciową przy następnym uruchomieniu Orca Slicer." +msgid "" +"Click OK to update the Network plug-in when Orca Slicer launches next time." +msgstr "" +"Kliknij OK, aby zaktualizować wtyczkę sieciową przy następnym uruchomieniu " +"Orca Slicer." #, c-format, boost-format msgid "A new Network plug-in(%s) available, Do you want to install it?" @@ -7785,11 +8697,18 @@ msgstr "Potwierdź i zaktualizuj dyszę" msgid "LAN Connection Failed (Sending print file)" msgstr "Nieudane połączenie LAN (wysyłanie pliku do druku)" -msgid "Step 1, please confirm Orca Slicer and your printer are in the same LAN." -msgstr "Krok 1, proszę potwierdzić, że Orca Slicer i drukarka są w tej samej sieci LAN." +msgid "" +"Step 1, please confirm Orca Slicer and your printer are in the same LAN." +msgstr "" +"Krok 1, proszę potwierdzić, że Orca Slicer i drukarka są w tej samej sieci " +"LAN." -msgid "Step 2, if the IP and Access Code below are different from the actual values on your printer, please correct them." -msgstr "Krok 2, jeśli IP i kod dostępu poniżej różnią się od rzeczywistych wartości na drukarce, proszę je poprawić." +msgid "" +"Step 2, if the IP and Access Code below are different from the actual values " +"on your printer, please correct them." +msgstr "" +"Krok 2, jeśli IP i kod dostępu poniżej różnią się od rzeczywistych wartości " +"na drukarce, proszę je poprawić." msgid "IP" msgstr "IP" @@ -7801,7 +8720,9 @@ msgid "Where to find your printer's IP and Access Code?" msgstr "Gdzie znaleźć IP i kod dostępu do drukarki?" msgid "Step 3: Ping the IP address to check for packet loss and latency." -msgstr "Krok 3: Sprawdź adres IP za pomocą polecenia ping, aby sprawdzić utratę pakietów i opóźnienia." +msgstr "" +"Krok 3: Sprawdź adres IP za pomocą polecenia ping, aby sprawdzić utratę " +"pakietów i opóźnienia." msgid "Test" msgstr "Test" @@ -7831,12 +8752,6 @@ msgstr "Wersja:" msgid "Update firmware" msgstr "Aktualizuj oprogramowanie" -msgid "Printing" -msgstr "Drukowanie" - -msgid "Idle" -msgstr "Bezczynność" - msgid "Beta version" msgstr "Wersja beta" @@ -7852,14 +8767,31 @@ msgstr "Aktualizacja nieudana" msgid "Updating successful" msgstr "Aktualizacja udana" -msgid "Are you sure you want to update? This will take about 10 minutes. Do not turn off the power while the printer is updating." -msgstr "Czy na pewno chcesz zaktualizować? To zajmie około 10 minut. Nie wyłączaj zasilania podczas aktualizacji drukarki." +msgid "" +"Are you sure you want to update? This will take about 10 minutes. Do not " +"turn off the power while the printer is updating." +msgstr "" +"Czy na pewno chcesz zaktualizować? To zajmie około 10 minut. Nie wyłączaj " +"zasilania podczas aktualizacji drukarki." -msgid "An important update was detected and needs to be run before printing can continue. Do you want to update now? You can also update later from 'Upgrade firmware'." -msgstr "Wykryto ważną aktualizację, która musi zostać uruchomiona, zanim będzie można kontynuować drukowanie. Czy chcesz teraz dokonać aktualizacji? Możesz również dokonać aktualizacji później, wybierając opcję 'Aktualizacja oprogramowania'." +msgid "" +"An important update was detected and needs to be run before printing can " +"continue. Do you want to update now? You can also update later from 'Upgrade " +"firmware'." +msgstr "" +"Wykryto ważną aktualizację, która musi zostać uruchomiona, zanim będzie " +"można kontynuować drukowanie. Czy chcesz teraz dokonać aktualizacji? Możesz " +"również dokonać aktualizacji później, wybierając opcję 'Aktualizacja " +"oprogramowania'." -msgid "The firmware version is abnormal. Repairing and updating are required before printing. Do you want to update now? You can also update later on printer or update next time starting the studio." -msgstr "Błąd wersji oprogramowania układowego. Naprawa i aktualizacja są wymagane przed drukowaniem. Czy chcesz zaktualizować teraz? Możesz to również zrobić później na drukarce lub przy następnym uruchomieniu studia." +msgid "" +"The firmware version is abnormal. Repairing and updating are required before " +"printing. Do you want to update now? You can also update later on printer or " +"update next time starting Orca." +msgstr "" +"Błąd wersji oprogramowania układowego. Naprawa i aktualizacja są wymagane " +"przed drukowaniem. Czy chcesz zaktualizować teraz? Możesz to również zrobić " +"później na drukarce lub przy następnym uruchomieniu studia." msgid "Extension Board" msgstr "Płyta rozszerzeń" @@ -7928,19 +8860,28 @@ msgstr " aktualizacja do " msgid "Open G-code file:" msgstr "Otwórz plik G-code:" -msgid "One object has empty initial layer and can't be printed. Please Cut the bottom or enable supports." -msgstr "Jeden obiekt ma pustą pierwszą warstwę i nie może być wydrukowany. Proszę przyciąć dolną część modelu lub włączyć podpory." +msgid "" +"One object has empty initial layer and can't be printed. Please Cut the " +"bottom or enable supports." +msgstr "" +"Jeden obiekt ma pustą pierwszą warstwę i nie może być wydrukowany. Proszę " +"przyciąć dolną część modelu lub włączyć podpory." #, boost-format msgid "Object can't be printed for empty layer between %1% and %2%." -msgstr "Obiekt nie może być wydrukowany z powodu pustej warstwy między %1% a %2%." +msgstr "" +"Obiekt nie może być wydrukowany z powodu pustej warstwy między %1% a %2%." #, boost-format msgid "Object: %1%" msgstr "Obiekt: %1%" -msgid "Maybe parts of the object at these height are too thin, or the object has faulty mesh" -msgstr "Możliwe, że części obiektu na tej wysokości są zbyt cienkie, lub obiekt ma wadliwą siatkę" +msgid "" +"Maybe parts of the object at these height are too thin, or the object has " +"faulty mesh" +msgstr "" +"Możliwe, że części obiektu na tej wysokości są zbyt cienkie, lub obiekt ma " +"wadliwą siatkę" msgid "No object can be printed. Maybe too small" msgstr "Żaden obiekt nie może być wydrukowany. Może jest za mały" @@ -7948,10 +8889,14 @@ msgstr "Żaden obiekt nie może być wydrukowany. Może jest za mały" msgid "" "Failed to generate gcode for invalid custom G-code.\n" "\n" -msgstr "Nie udało się wygenerować G-code dla nieprawidłowego niestandardowego G-code.\n" +msgstr "" +"Nie udało się wygenerować G-code dla nieprawidłowego niestandardowego G-" +"code.\n" msgid "Please check the custom G-code or use the default custom G-code." -msgstr "Proszę sprawdzić niestandardowy G-code lub użyć domyślnego niestandardowego G-code." +msgstr "" +"Proszę sprawdzić niestandardowy G-code lub użyć domyślnego niestandardowego " +"G-code." #, boost-format msgid "Generating G-code: layer %1%" @@ -7984,9 +8929,6 @@ msgstr "Wewnętrzny most" msgid "Gap infill" msgstr "Wypełnienie szczelin" -msgid "Skirt" -msgstr "Skirt" - msgid "Support interface" msgstr "Warstwa łącząca" @@ -7998,10 +8940,16 @@ msgstr "Wielokrotne" #, boost-format msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " -msgstr "Nie udało się obliczyć szerokości linii %1%. Nie można uzyskać wartości \"%2%\" " +msgstr "" +"Nie udało się obliczyć szerokości linii %1%. Nie można uzyskać wartości \"%2%" +"\" " -msgid "Invalid spacing supplied to Flow::with_spacing(), check your layer height and extrusion width" -msgstr "Nieprawidłowy odstęp podany do Flow::with_spacing(), sprawdź wysokość warstwy i szerokość ekstruzji." +msgid "" +"Invalid spacing supplied to Flow::with_spacing(), check your layer height " +"and extrusion width" +msgstr "" +"Nieprawidłowy odstęp podany do Flow::with_spacing(), sprawdź wysokość " +"warstwy i szerokość ekstruzji." msgid "undefined error" msgstr "nieznany błąd" @@ -8097,8 +9045,11 @@ msgid "write callback failed" msgstr "błąd zapisu funkcji zwrotnej" #, boost-format -msgid "%1% is too close to exclusion area, there may be collisions when printing." -msgstr "%1% jest zbyt blisko obszaru wykluczenia, mogą wystąpić kolizje podczas drukowania." +msgid "" +"%1% is too close to exclusion area, there may be collisions when printing." +msgstr "" +"%1% jest zbyt blisko obszaru wykluczenia, mogą wystąpić kolizje podczas " +"drukowania." #, boost-format msgid "%1% is too close to others, and collisions may be caused." @@ -8109,10 +9060,13 @@ msgid "%1% is too tall, and collisions will be caused." msgstr "%1% jest zbyt wysoki, mogą wystąpić kolizje." msgid " is too close to others, there may be collisions when printing." -msgstr " jest zbyt blisko innych modeli, mogą wystąpić kolizje podczas drukowania." +msgstr "" +" jest zbyt blisko innych modeli, mogą wystąpić kolizje podczas drukowania." msgid " is too close to exclusion area, there may be collisions when printing." -msgstr " jest zbyt blisko obszaru wykluczenia, mogą wystąpić kolizje podczas drukowania." +msgstr "" +" jest zbyt blisko obszaru wykluczenia, mogą wystąpić kolizje podczas " +"drukowania." msgid "Prime Tower" msgstr "Wieża Czyszcząca" @@ -8123,67 +9077,126 @@ msgstr " jest zbyt blisko innych modeli, mogą wystąpić kolizje.\n" msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr " jest zbyt blisko obszaru wykluczenia, mogą wystąpić kolizje.\n" -msgid "Can not print multiple filaments which have large difference of temperature together. Otherwise, the extruder and nozzle may be blocked or damaged during printing" -msgstr "Nie można drukować jednocześnie wieloma filamentami o znacznych różnicach temperatur. Może to spowodować zablokowanie lub uszkodzenie extrudera i dyszy" +msgid "" +"Can not print multiple filaments which have large difference of temperature " +"together. Otherwise, the extruder and nozzle may be blocked or damaged " +"during printing" +msgstr "" +"Nie można drukować jednocześnie wieloma filamentami o znacznych różnicach " +"temperatur. Może to spowodować zablokowanie lub uszkodzenie extrudera i dyszy" msgid "No extrusions under current settings." msgstr "Brak ekstruzji przy obecnych ustawieniach." -msgid "Smooth mode of timelapse is not supported when \"by object\" sequence is enabled." -msgstr "Tryb \"Wygładzony\" timelapsu nie jest wspierany, gdy włączona jest sekwencja \"według obiektu\"." +msgid "" +"Smooth mode of timelapse is not supported when \"by object\" sequence is " +"enabled." +msgstr "" +"Tryb \"Wygładzony\" timelapsu nie jest wspierany, gdy włączona jest " +"sekwencja \"według obiektu\"." -msgid "Please select \"By object\" print sequence to print multiple objects in spiral vase mode." -msgstr "Proszę wybrać sekwencję druku \"Według obiektu\", aby drukować wiele obiektów w trybie wazy." +msgid "" +"Please select \"By object\" print sequence to print multiple objects in " +"spiral vase mode." +msgstr "" +"Proszę wybrać sekwencję druku \"Według obiektu\", aby drukować wiele " +"obiektów w trybie wazy." -msgid "The spiral vase mode does not work when an object contains more than one materials." -msgstr "Tryb \"Wazy\" nie działa, gdy obiekt zawiera więcej niż jeden filament." +msgid "" +"The spiral vase mode does not work when an object contains more than one " +"materials." +msgstr "" +"Tryb \"Wazy\" nie działa, gdy obiekt zawiera więcej niż jeden filament." #, boost-format msgid "The object %1% exceeds the maximum build volume height." msgstr "Obiekt %1% przekracza maksymalną wysokość objętości budowy." #, boost-format -msgid "While the object %1% itself fits the build volume, its last layer exceeds the maximum build volume height." -msgstr "Podczas gdy sam obiekt %1% mieści się w przestrzeni roboczej, jego ostatnia warstwa przekracza maksymalną wysokość przestrzeni roboczej." +msgid "" +"While the object %1% itself fits the build volume, its last layer exceeds " +"the maximum build volume height." +msgstr "" +"Podczas gdy sam obiekt %1% mieści się w przestrzeni roboczej, jego ostatnia " +"warstwa przekracza maksymalną wysokość przestrzeni roboczej." -msgid "You might want to reduce the size of your model or change current print settings and retry." -msgstr "Może być konieczne zmniejszenie rozmiaru modelu lub zmiana bieżących ustawień druku i ponowienie próby." +msgid "" +"You might want to reduce the size of your model or change current print " +"settings and retry." +msgstr "" +"Może być konieczne zmniejszenie rozmiaru modelu lub zmiana bieżących " +"ustawień druku i ponowienie próby." msgid "Variable layer height is not supported with Organic supports." -msgstr "Zmienna wysokość warstwy nie jest dostępna w przypadku podpór organicznych." +msgstr "" +"Zmienna wysokość warstwy nie jest dostępna w przypadku podpór organicznych." -msgid "Different nozzle diameters and different filament diameters is not allowed when prime tower is enabled." -msgstr "Różne średnice dysz i różne średnice filamentów nie są dozwolone, gdy włączona jest wieża czyszcząca." +msgid "" +"Different nozzle diameters and different filament diameters is not allowed " +"when prime tower is enabled." +msgstr "" +"Różne średnice dysz i różne średnice filamentów nie są dozwolone, gdy " +"włączona jest wieża czyszcząca." -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 wspierana tylko z relatywnym adresowaniem extrudera (use_relative_e_distances=1)." +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 wspierana tylko z relatywnym adresowaniem " +"extrudera (use_relative_e_distances=1)." -msgid "Ooze prevention is currently not supported with the prime tower enabled." -msgstr "Zapobieganie wyciekom nie jest obecnie wspierane, gdy włączona jest wieża czyszcząca." +msgid "" +"Ooze prevention is currently not supported with the prime tower enabled." +msgstr "" +"Zapobieganie wyciekom nie jest obecnie wspierane, gdy włączona jest wieża " +"czyszcząca." -msgid "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, RepRapFirmware and Repetier G-code flavors." -msgstr "Wieża czyszcząca jest obecnie obsługiwana tylko dla wariantów G-code Marlin, Klipper, RepRap/Sprinter, RepRapFirmware i Repetier." +msgid "" +"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." +msgstr "" +"Wieża czyszcząca jest obecnie obsługiwana tylko dla wariantów G-code Marlin, " +"Klipper, RepRap/Sprinter, RepRapFirmware i Repetier." msgid "The prime tower is not supported in \"By object\" print." msgstr "Wieża czyszcząca nie jest wspierana w druku \"Według obiektu\"." -msgid "The prime tower is not supported when adaptive layer height is on. It requires that all objects have the same layer height." -msgstr "Wieża czyszcząca nie jest wspierana, gdy włączona jest adaptacyjna wysokość warstwy. Wymaga to, aby wszystkie obiekty miały tę samą wysokość warstwy." +msgid "" +"The prime tower is not supported when adaptive layer height is on. It " +"requires that all objects have the same layer height." +msgstr "" +"Wieża czyszcząca nie jest wspierana, gdy włączona jest adaptacyjna wysokość " +"warstwy. Wymaga to, aby wszystkie obiekty miały tę samą wysokość warstwy." msgid "The prime tower requires \"support gap\" to be multiple of layer height" -msgstr "Wieża czyszcząca wymaga, aby \"szczelina podpory\" była wielokrotnością wysokości warstwy" +msgstr "" +"Wieża czyszcząca wymaga, aby \"szczelina podpory\" była wielokrotnością " +"wysokości warstwy" msgid "The prime tower requires that all objects have the same layer heights" -msgstr "Wieża czyszcząca wymaga, aby wszystkie obiekty miały tę samą wysokość warstwy" +msgstr "" +"Wieża czyszcząca wymaga, aby wszystkie obiekty miały tę samą wysokość warstwy" -msgid "The prime tower requires that all objects are printed over the same number of raft layers" -msgstr "Wieża czyszcząca wymaga, aby wszystkie obiekty były drukowane na tej samej liczbie warstw tratwy" +msgid "" +"The prime tower requires that all objects are printed over the same number " +"of raft layers" +msgstr "" +"Wieża czyszcząca wymaga, aby wszystkie obiekty były drukowane na tej samej " +"liczbie warstw tratwy" -msgid "The prime tower requires that all objects are sliced with the same layer heights." -msgstr "Wieża czyszcząca wymaga, aby wszystkie obiekty były cięte na tej samej wysokości warstw." +msgid "" +"The prime tower requires that all objects are sliced with the same layer " +"heights." +msgstr "" +"Wieża czyszcząca wymaga, aby wszystkie obiekty były cięte na tej samej " +"wysokości warstw." -msgid "The prime 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" +msgid "" +"The prime 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" msgid "Too small line width" msgstr "Zbyt mała szerokość linii" @@ -8191,66 +9204,119 @@ msgstr "Zbyt mała szerokość linii" msgid "Too large line width" msgstr "Zbyt duża szerokość linii" -msgid "The prime tower requires that support has the same layer height with object." -msgstr "Wieża czyszcząca wymaga, aby podpory miały tę samą wysokość warstwy co obiekt." +msgid "" +"The prime tower requires that support has the same layer height with object." +msgstr "" +"Wieża czyszcząca wymaga, aby podpory miały tę samą wysokość warstwy co " +"obiekt." -msgid "Organic support tree tip diameter must not be smaller than support material extrusion width." -msgstr "Średnica końcówki drzewa organicznego nie może być mniejsza niż szerokość ekstruzji filamentu podpory." +msgid "" +"Organic support tree tip diameter must not be smaller than support material " +"extrusion width." +msgstr "" +"Średnica końcówki drzewa organicznego nie może być mniejsza niż szerokość " +"ekstruzji filamentu podpory." -msgid "Organic support branch diameter must not be smaller than 2x support material extrusion width." -msgstr "Średnica gałęzi organicznego wsparcia (drzewo) nie może być mniejsza niż 2x szerokość ekstruzji filamentu podpory." +msgid "" +"Organic support branch diameter must not be smaller than 2x support material " +"extrusion width." +msgstr "" +"Średnica gałęzi organicznego wsparcia (drzewo) nie może być mniejsza niż 2x " +"szerokość ekstruzji filamentu podpory." -msgid "Organic support branch diameter must not be smaller than support tree tip diameter." -msgstr "Średnica gałęzi organicznego wsparcia nie może być mniejsza niż średnica końcówki podpory (drzewo)." +msgid "" +"Organic support branch diameter must not be smaller than support tree tip " +"diameter." +msgstr "" +"Średnica gałęzi organicznego wsparcia nie może być mniejsza niż średnica " +"końcówki podpory (drzewo)." -msgid "Support enforcers are used but support is not enabled. Please enable support." -msgstr "Używane są wzmocnienia podpór, ale funkcja podpór nie jest włączona. Proszę ją włączyć." +msgid "" +"Support enforcers are used but support is not enabled. Please enable support." +msgstr "" +"Używane są wzmocnienia podpór, ale funkcja podpór nie jest włączona. Proszę " +"ją włączyć." msgid "Layer height cannot exceed nozzle diameter" msgstr "Wysokość warstwy nie może przekraczać średnicy dyszy" -msgid "Relative extruder addressing requires resetting the extruder position at each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to layer_gcode." -msgstr "Relatywne adresowanie extrudera wymaga resetowania pozycji extrudera na każdej warstwie, aby zapobiec utracie dokładności zmiennoprzecinkowej. Dodaj \"G92 E0\" do layer_gcode." +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" +"Relatywne adresowanie extrudera wymaga resetowania pozycji extrudera na " +"każdej warstwie, aby zapobiec utracie dokładności zmiennoprzecinkowej. Dodaj " +"\"G92 E0\" do layer_gcode." -msgid "\"G92 E0\" was found in before_layer_gcode, which is incompatible with absolute extruder addressing." -msgstr "Znaleziono \"G92 E0\" w before_layer_gcode, co jest niezgodne z absolutnym adresowaniem extrudera." +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" +"Znaleziono \"G92 E0\" w before_layer_gcode, co jest niezgodne z absolutnym " +"adresowaniem extrudera." -msgid "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute extruder addressing." -msgstr "Znaleziono \"G92 E0\" w layer_gcode, co jest niezgodne z absolutnym adresowaniem extrudera." +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" +"Znaleziono \"G92 E0\" w layer_gcode, co jest niezgodne z absolutnym " +"adresowaniem extrudera." #, c-format, boost-format msgid "Plate %d: %s does not support filament %s" msgstr "Płyta robocza %d: %s nie obsługuje filamentu %s." -msgid "Setting the jerk speed too low could lead to artifacts on curved surfaces" -msgstr "Ustawienie zbyt niskiej prędkości jerk może prowadzić do artefaktów na zakrzywionych powierzchniach." +msgid "" +"Setting the jerk speed too low could lead to artifacts on curved surfaces" +msgstr "" +"Ustawienie zbyt niskiej prędkości jerk może prowadzić do artefaktów na " +"zakrzywionych powierzchniach." msgid "" -"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/machine_max_jerk_y).\n" -"Orca will automatically cap the jerk speed to ensure it doesn't surpass the printer's capabilities.\n" -"You can adjust the maximum jerk setting in your printer's configuration to get higher speeds." +"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/" +"machine_max_jerk_y).\n" +"Orca will automatically cap the jerk speed to ensure it doesn't surpass the " +"printer's capabilities.\n" +"You can adjust the maximum jerk setting in your printer's configuration to " +"get higher speeds." msgstr "" -"Ustawienie jerk przekracza maksymalne jerk drukarki (machine_max_jerk_x/machine_max_jerk_y).\n" -"Orca automatycznie ograniczy prędkość jerku, aby nie przekroczyć zdolności drukarki.\n" -"Możesz dostosować ustawienie maksymalnego jerku w konfiguracji swojej drukarki, aby uzyskać wyższe prędkości." +"Ustawienie jerk przekracza maksymalne jerk drukarki (machine_max_jerk_x/" +"machine_max_jerk_y).\n" +"Orca automatycznie ograniczy prędkość jerku, aby nie przekroczyć zdolności " +"drukarki.\n" +"Możesz dostosować ustawienie maksymalnego jerku w konfiguracji swojej " +"drukarki, aby uzyskać wyższe prędkości." msgid "" -"The acceleration setting exceeds the printer's maximum acceleration (machine_max_acceleration_extruding).\n" -"Orca will automatically cap the acceleration speed to ensure it doesn't surpass the printer's capabilities.\n" -"You can adjust the machine_max_acceleration_extruding value in your printer's configuration to get higher speeds." +"The acceleration setting exceeds the printer's maximum acceleration " +"(machine_max_acceleration_extruding).\n" +"Orca will automatically cap the acceleration speed to ensure it doesn't " +"surpass the printer's capabilities.\n" +"You can adjust the machine_max_acceleration_extruding value in your " +"printer's configuration to get higher speeds." msgstr "" -"Ustawienie przyspieszenia przekracza maksymalne przyspieszenie drukarki (machine_max_acceleration_extruding).\n" -"Orca automatycznie ograniczy prędkość przyspieszenia, aby nie przekroczyć zdolności drukarki.\n" -"Możesz dostosować wartość machine_max_acceleration_extruding w konfiguracji swojej drukarki, aby uzyskać wyższe prędkości." +"Ustawienie przyspieszenia przekracza maksymalne przyspieszenie drukarki " +"(machine_max_acceleration_extruding).\n" +"Orca automatycznie ograniczy prędkość przyspieszenia, aby nie przekroczyć " +"zdolności drukarki.\n" +"Możesz dostosować wartość machine_max_acceleration_extruding w konfiguracji " +"swojej drukarki, aby uzyskać wyższe prędkości." msgid "" -"The travel acceleration setting exceeds the printer's maximum travel acceleration (machine_max_acceleration_travel).\n" -"Orca will automatically cap the travel acceleration speed to ensure it doesn't surpass the printer's capabilities.\n" -"You can adjust the machine_max_acceleration_travel value in your printer's configuration to get higher speeds." +"The travel acceleration setting exceeds the printer's maximum travel " +"acceleration (machine_max_acceleration_travel).\n" +"Orca will automatically cap the travel acceleration speed to ensure it " +"doesn't surpass the printer's capabilities.\n" +"You can adjust the machine_max_acceleration_travel value in your printer's " +"configuration to get higher speeds." msgstr "" -"Ustawienie przyspieszenia przekracza maksymalne przyspieszenie drukarki (machine_max_acceleration_extruding).\n" -"Orca automatycznie ograniczy prędkość przyspieszenia, aby nie przekroczyć zdolności drukarki.\n" -"Możesz dostosować wartość machine_max_acceleration_extruding w konfiguracji swojej drukarki, aby uzyskać wyższe prędkości." +"Ustawienie przyspieszenia przekracza maksymalne przyspieszenie drukarki " +"(machine_max_acceleration_extruding).\n" +"Orca automatycznie ograniczy prędkość przyspieszenia, aby nie przekroczyć " +"zdolności drukarki.\n" +"Możesz dostosować wartość machine_max_acceleration_extruding w konfiguracji " +"swojej drukarki, aby uzyskać wyższe prędkości." msgid "Generating skirt & brim" msgstr "Generowanie Skirtu i Brimu" @@ -8270,8 +9336,15 @@ msgstr "Obszar druku" msgid "Bed exclude area" msgstr "Obszar wykluczony z druku" -msgid "Unprintable area in XY plane. For example, X1 Series printers use the front left corner to cut filament during filament change. The area is expressed as polygon by points in following format: \"XxY, XxY, ...\"" -msgstr "Obszar niemożliwy do wydrukowania w płaszczyźnie XY. Na przykład, drukarki serii X1 używają przedniego lewego rogu do cięcia filamentu podczas jego zmiany. Obszar jest wyrażony jako wielokąt punktami w następującym formacie: \"XxY, XxY, ...\"" +msgid "" +"Unprintable area in XY plane. For example, X1 Series printers use the front " +"left corner to cut filament during filament change. The area is expressed as " +"polygon by points in following format: \"XxY, XxY, ...\"" +msgstr "" +"Obszar niemożliwy do wydrukowania w płaszczyźnie XY. Na przykład, drukarki " +"serii X1 używają przedniego lewego rogu do cięcia filamentu podczas jego " +"zmiany. Obszar jest wyrażony jako wielokąt punktami w następującym formacie: " +"\"XxY, XxY, ...\"" msgid "Bed custom texture" msgstr "Niestandardowa tekstura stołu" @@ -8282,32 +9355,51 @@ msgstr "Niestandardowy model stołu" msgid "Elephant foot compensation" msgstr "Kompensacja \"stopy słonia\"" -msgid "Shrink the initial layer on build plate to compensate for elephant foot effect" -msgstr "Zmniejszenie pierwszej warstwy w płaszczyźnie XY o określoną wartość, aby skompensować efekt \"stopy słonia\"" +msgid "" +"Shrink the initial layer on build plate to compensate for elephant foot " +"effect" +msgstr "" +"Zmniejszenie pierwszej warstwy w płaszczyźnie XY o określoną wartość, aby " +"skompensować efekt \"stopy słonia\"" msgid "Elephant foot compensation layers" msgstr "Warstwy kompensacji \"stopy słonia\"" -msgid "The number of layers on which the elephant foot compensation will be active. The first layer will be shrunk by the elephant foot compensation value, then the next layers will be linearly shrunk less, up to the layer indicated by this value." -msgstr "Ilość warstw, na które będzie rozciągać się kompensacja \"stopy słonia\". Pierwsza warstwa zostanie zmniejszona o wartość kompensacji 'stopy słonia', a następne warstwy będą liniowo zmniejszane mniej, aż do warstwy wskazanej przez tę wartość." +msgid "" +"The number of layers on which the elephant foot compensation will be active. " +"The first layer will be shrunk by the elephant foot compensation value, then " +"the next layers will be linearly shrunk less, up to the layer indicated by " +"this value." +msgstr "" +"Ilość warstw, na które będzie rozciągać się kompensacja \"stopy słonia\". " +"Pierwsza warstwa zostanie zmniejszona o wartość kompensacji 'stopy słonia', " +"a następne warstwy będą liniowo zmniejszane mniej, aż do warstwy wskazanej " +"przez tę wartość." msgid "layers" msgstr "warstwy" -msgid "Slicing height for each layer. Smaller layer height means more accurate and more printing time" -msgstr "Wysokość każdej warstwy. Mniejsza wysokość warstwy oznacza większą dokładność, ale dłuższy czas drukowania" +msgid "" +"Slicing height for each layer. Smaller layer height means more accurate and " +"more printing time" +msgstr "" +"Wysokość każdej warstwy. Mniejsza wysokość warstwy oznacza większą " +"dokładność, ale dłuższy czas drukowania" msgid "Printable height" msgstr "Maksymalna wysokość" msgid "Maximum printable height which is limited by mechanism of printer" -msgstr "Maksymalna wysokość możliwa do wydrukowania, ograniczona przez mechanizm drukarki" +msgstr "" +"Maksymalna wysokość możliwa do wydrukowania, ograniczona przez mechanizm " +"drukarki" msgid "Preferred orientation" msgstr "Preferowana orientacja" msgid "Automatically orient stls on the Z-axis upon initial import" -msgstr "Automatyczne orientowanie plików STL na osi Z przy początkowym imporcie" +msgstr "" +"Automatyczne orientowanie plików STL na osi Z przy początkowym imporcie" msgid "Printer preset names" msgstr "Nazwy profilu drukarki" @@ -8316,25 +9408,43 @@ msgid "Use 3rd-party print host" msgstr "Użyj serwera druku firm trzecich" msgid "Allow controlling BambuLab's printer through 3rd party print hosts" -msgstr "Zezwól na kontrolowanie drukarki BambuLab przez serwery druku innych firm" +msgstr "" +"Zezwól na kontrolowanie drukarki BambuLab przez serwery druku innych firm" msgid "Hostname, IP or URL" msgstr "Nazwa hosta, IP lub URL" -msgid "Orca Slicer can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance. Print host behind HAProxy with basic auth enabled can be accessed by putting the user name and password into the URL in the following format: https://username:password@your-octopi-address/" -msgstr "Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno zawierać nazwę hosta, adres IP lub URL hosta drukarki. Host drukowania za HAProxy z włączoną autoryzacją podstawową można uzyskać, wpisując nazwę użytkownika i hasło w URL w następującym formacie: https://username:password@your-octopi-address/" +msgid "" +"Orca Slicer can upload G-code files to a printer host. This field should " +"contain the hostname, IP address or URL of the printer host instance. Print " +"host behind HAProxy with basic auth enabled can be accessed by putting the " +"user name and password into the URL in the following format: https://" +"username:password@your-octopi-address/" +msgstr "" +"Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno " +"zawierać nazwę hosta, adres IP lub URL hosta drukarki. Host drukowania za " +"HAProxy z włączoną autoryzacją podstawową można uzyskać, wpisując nazwę " +"użytkownika i hasło w URL w następującym formacie: https://username:" +"password@your-octopi-address/" msgid "Device UI" msgstr "Interfejs użytkownika urządzenia" -msgid "Specify the URL of your device user interface if it's not same as print_host" -msgstr "Podaj URL interfejsu użytkownika swojego urządzenia, jeśli nie jest taki sam jak print_host" +msgid "" +"Specify the URL of your device user interface if it's not same as print_host" +msgstr "" +"Podaj URL interfejsu użytkownika swojego urządzenia, jeśli nie jest taki sam " +"jak print_host" msgid "API Key / Password" msgstr "Klucz API / Hasło" -msgid "Orca Slicer can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication." -msgstr "Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno zawierać klucz API lub hasło wymagane do uwierzytelnienia." +msgid "" +"Orca Slicer can upload G-code files to a printer host. This field should " +"contain the API Key or the password required for authentication." +msgstr "" +"Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno " +"zawierać klucz API lub hasło wymagane do uwierzytelnienia." msgid "Name of the printer" msgstr "Nazwa drukarki" @@ -8342,8 +9452,14 @@ msgstr "Nazwa drukarki" msgid "HTTPS CA File" msgstr "Plik CA HTTPS" -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 "Można określić niestandardowy plik certyfikatu CA dla połączeń HTTPS OctoPrint, w formacie crt/pem. Jeśli pozostanie puste, używane jest domyślne repozytorium certyfikatów CA systemu operacyjnego." +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 "" +"Można określić niestandardowy plik certyfikatu CA dla połączeń HTTPS " +"OctoPrint, w formacie crt/pem. Jeśli pozostanie puste, używane jest domyślne " +"repozytorium certyfikatów CA systemu operacyjnego." msgid "User" msgstr "Użytkownik" @@ -8354,8 +9470,14 @@ msgstr "Hasło" msgid "Ignore HTTPS certificate revocation checks" msgstr "Ignoruj sprawdzanie unieważnienia certyfikatów HTTPS" -msgid "Ignore HTTPS certificate revocation checks in case of missing or offline distribution points. One may want to enable this option for self signed certificates if connection fails." -msgstr "Ignoruj sprawdzanie unieważnienia certyfikatów HTTPS w przypadku braku lub offline punktów dystrybucji. Można chcieć włączyć tę opcję dla samopodpisanych certyfikatów, jeśli połączenie zawodzi." +msgid "" +"Ignore HTTPS certificate revocation checks in case of missing or offline " +"distribution points. One may want to enable this option for self signed " +"certificates if connection fails." +msgstr "" +"Ignoruj sprawdzanie unieważnienia certyfikatów HTTPS w przypadku braku lub " +"offline punktów dystrybucji. Można chcieć włączyć tę opcję dla " +"samopodpisanych certyfikatów, jeśli połączenie zawodzi." msgid "Names of presets related to the physical printer" msgstr "Nazwy profili odnoszących się do drukarki fizycznej" @@ -8373,15 +9495,25 @@ msgid "Avoid crossing wall" msgstr "Unikaj ruchów nad obrysami" msgid "Detour and avoid to travel across wall which may cause blob on surface" -msgstr "Omijaj i unikaj przemieszczania się nad ścianą, co może spowodować powstanie grudek na powierzchni" +msgstr "" +"Omijaj i unikaj przemieszczania się nad ścianą, co może spowodować powstanie " +"grudek na powierzchni" msgid "Avoid crossing wall - Max detour length" msgstr "Maksymalna długość objazdu" -msgid "Maximum detour distance for avoiding crossing wall. Don't detour if the detour distance is large than this value. Detour length could be specified either as an absolute value or as percentage (for example 50%) of a direct travel path. Zero to disable" +msgid "" +"Maximum detour distance for avoiding crossing wall. Don't detour if the " +"detour distance is large than this value. Detour length could be specified " +"either as an absolute value or as percentage (for example 50%) of a direct " +"travel path. Zero to disable" msgstr "" "Unikaj ruchów nad obrysami-\n" -"Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad obrysami\" zostanie zignorowana dla tej ścieżki. Długość objazdu można zdefiniować jako wartość absolutna lub obliczona procentowo (np. 50%) z długości ruchu bezpośredniego." +"Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli " +"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad obrysami" +"\" zostanie zignorowana dla tej ścieżki. Długość objazdu można zdefiniować " +"jako wartość absolutna lub obliczona procentowo (np. 50%) z długości ruchu " +"bezpośredniego." msgid "mm or %" msgstr "mm lub %" @@ -8389,20 +9521,36 @@ msgstr "mm lub %" msgid "Other layers" msgstr "Pozostałe warstwy" -msgid "Bed temperature for layers except the initial one. Value 0 means the filament does not support to print on the Cool Plate" -msgstr "Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament nie obsługuje drukowania na Cool Plate" +msgid "" +"Bed temperature for layers except the initial one. Value 0 means the " +"filament does not support to print on the Cool Plate" +msgstr "" +"Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament " +"nie obsługuje drukowania na Cool Plate" msgid "°C" msgstr "°C" -msgid "Bed temperature for layers except the initial one. Value 0 means the filament does not support to print on the Engineering Plate" -msgstr "Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament nie obsługuje drukowania na Engineering Plate" +msgid "" +"Bed temperature for layers except the initial one. Value 0 means the " +"filament does not support to print on the Engineering Plate" +msgstr "" +"Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament " +"nie obsługuje drukowania na Engineering Plate" -msgid "Bed temperature for layers except the initial one. Value 0 means the filament does not support to print on the High Temp Plate" -msgstr "Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament nie obsługuje drukowania na High Temp Plate" +msgid "" +"Bed temperature for layers except the initial one. Value 0 means the " +"filament does not support to print on the High Temp Plate" +msgstr "" +"Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament " +"nie obsługuje drukowania na High Temp Plate" -msgid "Bed temperature for layers except the initial one. Value 0 means the filament does not support to print on the Textured PEI Plate" -msgstr "Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament nie obsługuje drukowania na Textured PEI Plate" +msgid "" +"Bed temperature for layers except the initial one. Value 0 means the " +"filament does not support to print on the Textured PEI Plate" +msgstr "" +"Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament " +"nie obsługuje drukowania na Textured PEI Plate" msgid "Initial layer" msgstr "Pierwsza warstwa" @@ -8410,17 +9558,33 @@ msgstr "Pierwsza warstwa" msgid "Initial layer bed temperature" msgstr "Temperatura stołu pierwszej warstwy" -msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the Cool Plate" -msgstr "Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie obsługuje drukowania na Cool Plate" +msgid "" +"Bed temperature of the initial layer. Value 0 means the filament does not " +"support to print on the Cool Plate" +msgstr "" +"Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie " +"obsługuje drukowania na Cool Plate" -msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the Engineering Plate" -msgstr "Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie obsługuje drukowania na Engineering Plate" +msgid "" +"Bed temperature of the initial layer. Value 0 means the filament does not " +"support to print on the Engineering Plate" +msgstr "" +"Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie " +"obsługuje drukowania na Engineering Plate" -msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the High Temp Plate" -msgstr "Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie obsługuje drukowania na High Temp Plate" +msgid "" +"Bed temperature of the initial layer. Value 0 means the filament does not " +"support to print on the High Temp Plate" +msgstr "" +"Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie " +"obsługuje drukowania na High Temp Plate" -msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the Textured PEI Plate" -msgstr "Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie obsługuje drukowania na Textured PEI Plate" +msgid "" +"Bed temperature of the initial layer. Value 0 means the filament does not " +"support to print on the Textured PEI Plate" +msgstr "" +"Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie " +"obsługuje drukowania na Textured PEI Plate" msgid "Bed types supported by the printer" msgstr "Rodzaje płyt roboczych obsługiwanych przez drukarkę" @@ -8444,36 +9608,62 @@ msgid "Other layers filament sequence" msgstr "Kolejność filamenu dla pozostałych warstw" msgid "This G-code is inserted at every layer change before lifting z" -msgstr "Ten G-code jest wstawiany przy każdej zmianie warstwy, tuż przed podniesieniem osi Z" +msgstr "" +"Ten G-code jest wstawiany przy każdej zmianie warstwy, tuż przed " +"podniesieniem osi Z" msgid "Bottom shell layers" msgstr "Dolne warstwy powłoki" -msgid "This is the number of solid layers of bottom shell, including the bottom surface layer. When the thickness calculated by this value is thinner than bottom shell thickness, the bottom shell layers will be increased" -msgstr "To jest liczba pełnych warstw dolnej powłoki, włączając w to dolną powierzchnie. Jeżeli grubość obliczona na podstawie tej wartości jest mniejsza niż grubość dolnej powłoki, liczba warstw dolnej powłoki zostanie zwiększona" +msgid "" +"This is the number of solid layers of bottom shell, including the bottom " +"surface layer. When the thickness calculated by this value is thinner than " +"bottom shell thickness, the bottom shell layers will be increased" +msgstr "" +"To jest liczba pełnych warstw dolnej powłoki, włączając w to dolną " +"powierzchnie. Jeżeli grubość obliczona na podstawie tej wartości jest " +"mniejsza niż grubość dolnej powłoki, liczba warstw dolnej powłoki zostanie " +"zwiększona" msgid "Bottom shell thickness" msgstr "Grubość dolnej powłoki" -msgid "The number of bottom solid layers is increased when slicing if the thickness calculated by bottom shell layers is thinner than this value. This can avoid having too thin shell when layer height is small. 0 means that this setting is disabled and thickness of bottom shell is absolutely determained by bottom shell layers" -msgstr "Ilość dolnych, pełnych warstw zostaje zwiększona podczas przygotowywania modelu do druku (slicingu), jeżeli wyliczona grubość dolnych warstw powłoki jest mniejsza niż ta wartość. Dzięki temu można uniknąć zbyt cienkiej powłoki, gdy wysokość warstwy jest niska. Wartość 0 oznacza wyłączenie tego ustawienia, a grubość dolnej powłoki jest wówczas wyznaczana wyłącznie przez ilość warstw dolnej powłoki" +msgid "" +"The number of bottom solid layers is increased when slicing if the thickness " +"calculated by bottom shell layers is thinner than this value. This can avoid " +"having too thin shell when layer height is small. 0 means that this setting " +"is disabled and thickness of bottom shell is absolutely determained by " +"bottom shell layers" +msgstr "" +"Ilość dolnych, pełnych warstw zostaje zwiększona podczas przygotowywania " +"modelu do druku (slicingu), jeżeli wyliczona grubość dolnych warstw powłoki " +"jest mniejsza niż ta wartość. Dzięki temu można uniknąć zbyt cienkiej " +"powłoki, gdy wysokość warstwy jest niska. Wartość 0 oznacza wyłączenie tego " +"ustawienia, a grubość dolnej powłoki jest wówczas wyznaczana wyłącznie przez " +"ilość warstw dolnej powłoki" msgid "Apply gap fill" msgstr "Zastosuj wypełnienie szczelin" msgid "" -"Enables gap fill for the selected surfaces. The minimum gap length that will be filled can be controlled from the filter out tiny gaps option below.\n" +"Enables gap fill for the selected surfaces. The minimum gap length that will " +"be filled can be controlled from the filter out tiny gaps option below.\n" "\n" "Options:\n" "1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces\n" -"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces only\n" +"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " +"only\n" "3. Nowhere: Disables gap fill\n" msgstr "" -"Umożliwia wypełnienie szpar/szczelin dla wybranych powierzchni. Minimalną długość szczeliny, która zostanie wypełniona, można kontrolować poprzez opcję 'filtruj wąskie szczeliny' znajdującej się poniżej.\n" +"Umożliwia wypełnienie szpar/szczelin dla wybranych powierzchni. Minimalną " +"długość szczeliny, która zostanie wypełniona, można kontrolować poprzez " +"opcję 'filtruj wąskie szczeliny' znajdującej się poniżej.\n" "\n" "Opcje:\n" -"1. Wszędzie: Stosuje wypełnienie na górnych, dolnych i wewnętrznych powierzchniach stałych\n" -"2. Powierzchnie górne i dolne: Stosuje wypełnienie tylko na górnych i dolnych powierzchniach\n" +"1. Wszędzie: Stosuje wypełnienie na górnych, dolnych i wewnętrznych " +"powierzchniach stałych\n" +"2. Powierzchnie górne i dolne: Stosuje wypełnienie tylko na górnych i " +"dolnych powierzchniach\n" "3. Nigdzie: Wyłącza wypełnienie\n" msgid "Everywhere" @@ -8488,97 +9678,169 @@ msgstr "Nigdzie" msgid "Force cooling for overhang and bridge" msgstr "Wymuszone chłodzenie dla nawisów i mostów" -msgid "Enable this option to optimize part cooling fan speed for overhang and bridge to get better cooling" -msgstr "Włącz tę opcję, aby zoptymalizować prędkość wentylatora chłodzącego części dla nawisów i mostów, aby uzyskać lepsze chłodzenie" +msgid "" +"Enable this option to optimize part cooling fan speed for overhang and " +"bridge to get better cooling" +msgstr "" +"Włącz tę opcję, aby zoptymalizować prędkość wentylatora chłodzącego części " +"dla nawisów i mostów, aby uzyskać lepsze chłodzenie" msgid "Fan speed for overhang" msgstr "Prędkość wentylatora dla nawisów" -msgid "Force part cooling fan to be this speed when printing bridge or overhang wall which has large overhang degree. Forcing cooling for overhang and bridge can get better quality for these part" -msgstr "Wymuś pracę wentylatora chłodzącego części na tej prędkości podczas drukowania mostu lub ściany nawisającej, która ma duży stopień nawisu. Wymuszanie chłodzenia dla nawisów i mostów może poprawić jakość tych części modelu" +msgid "" +"Force part cooling fan to be this speed when printing bridge or overhang " +"wall which has large overhang degree. Forcing cooling for overhang and " +"bridge can get better quality for these part" +msgstr "" +"Wymuś pracę wentylatora chłodzącego części na tej prędkości podczas " +"drukowania mostu lub ściany nawisającej, która ma duży stopień nawisu. " +"Wymuszanie chłodzenia dla nawisów i mostów może poprawić jakość tych części " +"modelu" msgid "Cooling overhang threshold" msgstr "Próg chłodzenia dla nawisów" #, c-format -msgid "Force cooling fan to be specific speed when overhang degree of printed part exceeds this value. Expressed as percentage which indicides how much width of the line without support from lower layer. 0% means forcing cooling for all outer wall no matter how much overhang degree" -msgstr "Wymuś pracę wentylatora chłodzącego na określoną prędkość, gdy stopień nawisu drukowanej części przekracza tę wartość. Wyrażone w procentach, co wskazuje, jak duża jest szerokość linii bez podpór z niższej warstwy. 0%% oznacza wymuszanie chłodzenia dla całej zewnętrznej ściany, bez względu na stopień nawisu" +msgid "" +"Force cooling fan to be specific speed when overhang degree of printed part " +"exceeds this value. Expressed as percentage which indicides how much width " +"of the line without support from lower layer. 0% means forcing cooling for " +"all outer wall no matter how much overhang degree" +msgstr "" +"Wymuś pracę wentylatora chłodzącego na określoną prędkość, gdy stopień " +"nawisu drukowanej części przekracza tę wartość. Wyrażone w procentach, co " +"wskazuje, jak duża jest szerokość linii bez podpór z niższej warstwy. 0%% " +"oznacza wymuszanie chłodzenia dla całej zewnętrznej ściany, bez względu na " +"stopień nawisu" msgid "Bridge infill direction" msgstr "Kierunek wypełnienia mostu" -msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for external bridges. Use 180°for zero angle." -msgstr "Zmiana ustawienia kąta linii mostów. Gdy ustawienie będzie równe 0, kąt zostanie wyliczony automatycznie. W przeciwnym wypadku, wybrany kąt będzie zastosowany do wszystkich mostów. Aby ustawić kąt na zero, wybierz 180°." +msgid "" +"Bridging angle override. If left to zero, the bridging angle will be " +"calculated automatically. Otherwise the provided angle will be used for " +"external bridges. Use 180°for zero angle." +msgstr "" +"Zmiana ustawienia kąta linii mostów. Gdy ustawienie będzie równe 0, kąt " +"zostanie wyliczony automatycznie. W przeciwnym wypadku, wybrany kąt będzie " +"zastosowany do wszystkich mostów. Aby ustawić kąt na zero, wybierz 180°." msgid "Bridge density" msgstr "Gęstość mostu" msgid "Density of external bridges. 100% means solid bridge. Default is 100%." -msgstr "Gęstość zewnętrznych mostów. 100% oznacza pełne wypełnienie mostu. Domyślnie jest 100%." +msgstr "" +"Gęstość zewnętrznych mostów. 100% oznacza pełne wypełnienie mostu. Domyślnie " +"jest 100%." msgid "Bridge flow ratio" msgstr "Współczynnik przepływu przy mostach" -msgid "Decrease this value slightly(for example 0.9) to reduce the amount of material for bridge, to improve sag" -msgstr "Zmniejsz tę wartość minimalnie (na przykład do 0.9), aby zmniejszyć ilość filamentu dla mostu, co zmniejszy jego wygięcie" +msgid "" +"Decrease this value slightly(for example 0.9) to reduce the amount of " +"material for bridge, to improve sag" +msgstr "" +"Zmniejsz tę wartość minimalnie (na przykład do 0.9), aby zmniejszyć ilość " +"filamentu dla mostu, co zmniejszy jego wygięcie" msgid "Internal bridge flow ratio" msgstr "Współczynnik przepływu dla wewnętrznych mostów" -msgid "This value governs the thickness of the internal bridge layer. This is the first layer over sparse infill. Decrease this value slightly (for example 0.9) to improve surface quality over sparse infill." -msgstr "Ta wartość określa grubość wewnętrznej warstwy mostu. Jest to pierwsza warstwa nad rzadkim wypełnieniem. Aby poprawić jakość powierzchni nad tym wypełnieniem, możesz zmniejszyć trochę tą wartość (na przykład do 0.9)" +msgid "" +"This value governs the thickness of the internal bridge layer. This is the " +"first layer over sparse infill. Decrease this value slightly (for example " +"0.9) to improve surface quality over sparse infill." +msgstr "" +"Ta wartość określa grubość wewnętrznej warstwy mostu. Jest to pierwsza " +"warstwa nad rzadkim wypełnieniem. Aby poprawić jakość powierzchni nad tym " +"wypełnieniem, możesz zmniejszyć trochę tą wartość (na przykład do 0.9)" msgid "Top surface flow ratio" msgstr "Współczynnik przepływu górnej powierzchni" -msgid "This factor affects the amount of material for top solid infill. You can decrease it slightly to have smooth surface finish" -msgstr "Czynnik ten wpływa na ilość filamentu na górne pełne wypełnienie. Możesz go nieco zmniejszyć, aby uzyskać gładkie wykończenie powierzchni" +msgid "" +"This factor affects the amount of material for top solid infill. You can " +"decrease it slightly to have smooth surface finish" +msgstr "" +"Czynnik ten wpływa na ilość filamentu na górne pełne wypełnienie. Możesz go " +"nieco zmniejszyć, aby uzyskać gładkie wykończenie powierzchni" msgid "Bottom surface flow ratio" msgstr "Współczynnik przepływu dolnej powierzchni" msgid "This factor affects the amount of material for bottom solid infill" -msgstr "Ten współczynnik wpływa na ilość materiału w dolnej warstwie pełnego wypełnienia" +msgstr "" +"Ten współczynnik wpływa na ilość materiału w dolnej warstwie pełnego " +"wypełnienia" msgid "Precise wall" msgstr "Ściany o wysokiej precyzji" msgid "" -"Improve shell precision by adjusting outer wall spacing. This also improves layer consistency.\n" -"Note: This setting will only take effect if the wall sequence is configured to Inner-Outer" +"Improve shell precision by adjusting outer wall spacing. This also improves " +"layer consistency.\n" +"Note: This setting will only take effect if the wall sequence is configured " +"to Inner-Outer" msgstr "" -"Popraw precyzję powłoki poprzez dostosowanie odstępów zewnętrznych ścian. To również poprawia spójność warstw.\n" -"Uwaga: To ustawienie będzie miało wpływ tylko wtedy, gdy sekwencja ściany jest skonfigurowana jako Wewnętrzna-Zewnętrzna." +"Popraw precyzję powłoki poprzez dostosowanie odstępów zewnętrznych ścian. To " +"również poprawia spójność warstw.\n" +"Uwaga: To ustawienie będzie miało wpływ tylko wtedy, gdy sekwencja ściany " +"jest skonfigurowana jako Wewnętrzna-Zewnętrzna." msgid "Only one wall on top surfaces" msgstr "Tylko jedna ściana na górnych powierzchniach" -msgid "Use only one wall on flat top surface, to give more space to the top infill pattern" -msgstr "Użyj tylko jednej ściany na płaskiej górnej powierzchni, aby zapewnić więcej miejsca dla wzoru górnego wypełnienia" +msgid "" +"Use only one wall on flat top surface, to give more space to the top infill " +"pattern" +msgstr "" +"Użyj tylko jednej ściany na płaskiej górnej powierzchni, aby zapewnić więcej " +"miejsca dla wzoru górnego wypełnienia" msgid "One wall threshold" msgstr "Próg jednej ściany" #, no-c-format, no-boost-format msgid "" -"If a top surface has to be printed and it's partially covered by another layer, it won't be considered at a top layer where its width is below this value. This can be useful to not let the 'one perimeter on top' trigger on surface that should be covered only by perimeters. This value can be a mm or a % of the perimeter extrusion width.\n" -"Warning: If enabled, artifacts can be created if you have some thin features on the next layer, like letters. Set this setting to 0 to remove these artifacts." +"If a top surface has to be printed and it's partially covered by another " +"layer, it won't be considered at a top layer where its width is below this " +"value. This can be useful to not let the 'one perimeter on top' trigger on " +"surface that should be covered only by perimeters. This value can be a mm or " +"a % of the perimeter extrusion width.\n" +"Warning: If enabled, artifacts can be created if you have some thin features " +"on the next layer, like letters. Set this setting to 0 to remove these " +"artifacts." msgstr "" -"Jeśli górna powierzchnia ma być drukowana i jest częściowo zakryta inną warstwą, nie będzie traktowana jako górna warstwa, jeśli jej szerokość jest mniejsza niż ta wartość. \n" -"Może to być przydatne, aby zapobiec uruchamianiu funkcji 'jeden perymetr na górze' na powierzchni, która powinna być pokryta tylko perymetrami. Ta wartość może być podawana w mm lub jako % szerokości ekstruzji perymetru.\n" -"Uwaga: Jeśli ta funkcja jest włączona, mogą pojawić się artefakty, jeśli masz na następnej warstwie jakieś cienkie elementy, na przykład litery. Ustaw tę opcję na 0, aby usunąć te artefakty." +"Jeśli górna powierzchnia ma być drukowana i jest częściowo zakryta inną " +"warstwą, nie będzie traktowana jako górna warstwa, jeśli jej szerokość jest " +"mniejsza niż ta wartość. \n" +"Może to być przydatne, aby zapobiec uruchamianiu funkcji 'jeden perymetr na " +"górze' na powierzchni, która powinna być pokryta tylko perymetrami. Ta " +"wartość może być podawana w mm lub jako % szerokości ekstruzji perymetru.\n" +"Uwaga: Jeśli ta funkcja jest włączona, mogą pojawić się artefakty, jeśli " +"masz na następnej warstwie jakieś cienkie elementy, na przykład litery. " +"Ustaw tę opcję na 0, aby usunąć te artefakty." msgid "Only one wall on first layer" msgstr "Tylko jedna ściana na pierwszej warstwie" -msgid "Use only one wall on first layer, to give more space to the bottom infill pattern" -msgstr "Użyj tylko jednej ściany na pierwszej warstwie, aby dać więcej miejsca na wzór dolnego wypełnienia" +msgid "" +"Use only one wall on first layer, to give more space to the bottom infill " +"pattern" +msgstr "" +"Użyj tylko jednej ściany na pierwszej warstwie, aby dać więcej miejsca na " +"wzór dolnego wypełnienia" msgid "Extra perimeters on overhangs" msgstr "Dodatkowe obrysy na nawisach" -msgid "Create additional perimeter paths over steep overhangs and areas where bridges cannot be anchored. " -msgstr "Tworzy dodatkowe ścieżeki nad stromymi nawisami i w obszarach, gdzie nie można zakotwiczyć mostów. " +msgid "" +"Create additional perimeter paths over steep overhangs and areas where " +"bridges cannot be anchored. " +msgstr "" +"Tworzy dodatkowe ścieżeki nad stromymi nawisami i w obszarach, gdzie nie " +"można zakotwiczyć mostów. " msgid "Reverse on odd" msgstr "Przeciwny kierunek na nieparzystych warstwach" @@ -8587,13 +9849,19 @@ msgid "Overhang reversal" msgstr "Przeciwny kierunek przy nawisach" msgid "" -"Extrude perimeters that have a part over an overhang in the reverse direction on odd layers. This alternating pattern can drastically improve steep overhangs.\n" +"Extrude perimeters that have a part over an overhang in the reverse " +"direction on odd layers. This alternating pattern can drastically improve " +"steep overhangs.\n" "\n" -"This setting can also help reduce part warping due to the reduction of stresses in the part walls." +"This setting can also help reduce part warping due to the reduction of " +"stresses in the part walls." msgstr "" -"Ekstruzja obrysów mających część z nawisem. Będą one drukowane, w przeciwnym kierunku na nieparzystych warstwach. Ten naprzemienny wzór może znacznie poprawić strome nawisy.\n" +"Ekstruzja obrysów mających część z nawisem. Będą one drukowane, w przeciwnym " +"kierunku na nieparzystych warstwach. Ten naprzemienny wzór może znacznie " +"poprawić strome nawisy.\n" "\n" -"Ustawienie to może również pomóc zmniejszyć deformację części dzięki zmniejszeniu naprężeń w ścianach części." +"Ustawienie to może również pomóc zmniejszyć deformację części dzięki " +"zmniejszeniu naprężeń w ścianach części." msgid "Reverse only internal perimeters" msgstr "Przeciwny kierunek tylko dla wewnętrznych obrysów" @@ -8601,28 +9869,47 @@ msgstr "Przeciwny kierunek tylko dla wewnętrznych obrysów" msgid "" "Apply the reverse perimeters logic only on internal perimeters. \n" "\n" -"This setting greatly reduces part stresses as they are now distributed in alternating directions. This should reduce part warping while also maintaining external wall quality. This feature can be very useful for warp prone material, like ABS/ASA, and also for elastic filaments, like TPU and Silk PLA. It can also help reduce warping on floating regions over supports.\n" +"This setting greatly reduces part stresses as they are now distributed in " +"alternating directions. This should reduce part warping while also " +"maintaining external wall quality. This feature can be very useful for warp " +"prone material, like ABS/ASA, and also for elastic filaments, like TPU and " +"Silk PLA. It can also help reduce warping on floating regions over " +"supports.\n" "\n" -"For this setting to be the most effective, it is recomended to set the Reverse Threshold to 0 so that all internal walls print in alternating directions on odd layers irrespective of their overhang degree." +"For this setting to be the most effective, it is recomended to set the " +"Reverse Threshold to 0 so that all internal walls print in alternating " +"directions on odd layers irrespective of their overhang degree." msgstr "" "Zastosuj logikę przeciwnych obrysów tylko na wewnętrznych obrysach. \n" "\n" -"To ustawienie znacznie zmniejsza naprężenia części, ponieważ są one teraz rozdzielone w przemiennych kierunkach. Powinno to zmniejszyć deformację części, jednocześnie zachowując jakość zewnętrznych ścian. Funkcja ta może być bardzo przydatna dla filamentów podatnych na deformację, takich jak ABS/ASA, a także dla elastycznych filamentów, takich jak TPU i Silk PLA. Może to również pomóc zmniejszyć deformację w unoszących się regionach nad podporami.\n" +"To ustawienie znacznie zmniejsza naprężenia części, ponieważ są one teraz " +"rozdzielone w przemiennych kierunkach. Powinno to zmniejszyć deformację " +"części, jednocześnie zachowując jakość zewnętrznych ścian. Funkcja ta może " +"być bardzo przydatna dla filamentów podatnych na deformację, takich jak ABS/" +"ASA, a także dla elastycznych filamentów, takich jak TPU i Silk PLA. Może to " +"również pomóc zmniejszyć deformację w unoszących się regionach nad " +"podporami.\n" "\n" -"Aby to ustawienie było najbardziej skuteczne, zaleca się ustawienie Progu Odwrócenia na 0, aby wszystkie wewnętrzne ściany drukowały się w przemiennych kierunkach na nieparzystych warstwach, niezależnie od stopnia nawisu." +"Aby to ustawienie było najbardziej skuteczne, zaleca się ustawienie Progu " +"Odwrócenia na 0, aby wszystkie wewnętrzne ściany drukowały się w " +"przemiennych kierunkach na nieparzystych warstwach, niezależnie od stopnia " +"nawisu." msgid "Bridge counterbore holes" msgstr "Mostek dla fazowanych otworów" msgid "" -"This option creates bridges for counterbore holes, allowing them to be printed without support. Available modes include:\n" +"This option creates bridges for counterbore holes, allowing them to be " +"printed without support. Available modes include:\n" "1. None: No bridge is created.\n" "2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" "3. Sacrificial Layer: A full sacrificial bridge layer is created." msgstr "" -"Ta opcja generuje mostki (wsparcie) dla otworów z fazowaniem, co pozwala na ich drukowanie bez konieczności stosowania dodatkowych podpór. Wybierz:\n" +"Ta opcja generuje mostki (wsparcie) dla otworów z fazowaniem, co pozwala na " +"ich drukowanie bez konieczności stosowania dodatkowych podpór. Wybierz:\n" "1. Brak (czyli wyłączone)\n" -"2. Częściowy most (mostek będzie konstruowany tylko nad niektórymi obszarami bez podpory)\n" +"2. Częściowy most (mostek będzie konstruowany tylko nad niektórymi obszarami " +"bez podpory)\n" "3. Warstwa pomocnicza (tworzy pełnowartościową warstwę podpory mostu)." msgid "Partially bridged" @@ -8639,11 +9926,14 @@ msgstr "Próg odwrócenia przy nawisach" #, no-c-format, no-boost-format msgid "" -"Number of mm the overhang need to be for the reversal to be considered useful. Can be a % of the perimeter width.\n" +"Number of mm the overhang need to be for the reversal to be considered " +"useful. Can be a % of the perimeter width.\n" "Value 0 enables reversal on every odd layers regardless." msgstr "" -"Ilość mm, jaką musi mieć nawis, aby odwrócenie było uznane za użyteczne. Może być to % szerokości obryski.\n" -"Wartość 0 umożliwia odwrócenie na każdej nieparzystej warstwie, niezależnie od wszystkiego." +"Ilość mm, jaką musi mieć nawis, aby odwrócenie było uznane za użyteczne. " +"Może być to % szerokości obryski.\n" +"Wartość 0 umożliwia odwrócenie na każdej nieparzystej warstwie, niezależnie " +"od wszystkiego." msgid "Classic mode" msgstr "Tryb klasyczny" @@ -8660,8 +9950,12 @@ msgstr "Włącz tę opcję, aby zwolnić drukowanie dla różnych stopni nawisu" msgid "Slow down for curled perimeters" msgstr "Zwalnienie na łukach" -msgid "Enable this option to slow printing down in areas where potential curled perimeters may exist" -msgstr "Włącz tę opcję, aby zwolnić drukowanie w obszarach, gdzie istnieje potencjalne zagrożenie odkształceniem obwodów" +msgid "" +"Enable this option to slow printing down in areas where potential curled " +"perimeters may exist" +msgstr "" +"Włącz tę opcję, aby zwolnić drukowanie w obszarach, gdzie istnieje " +"potencjalne zagrożenie odkształceniem obwodów" msgid "mm/s or %" msgstr "mm/s lub %" @@ -8678,8 +9972,12 @@ msgstr "mm/s" msgid "Internal" msgstr "Wewn." -msgid "Speed of internal bridge. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%." -msgstr "Prędkość wewnętrznego mostu. Jeśli wartość jest wyrażona w procentach, będzie obliczana na podstawie prędkości mostu. Domyślna wartość to 150%." +msgid "" +"Speed of internal bridge. If the value is expressed as a percentage, it will " +"be calculated based on the bridge_speed. Default value is 150%." +msgstr "" +"Prędkość wewnętrznego mostu. Jeśli wartość jest wyrażona w procentach, " +"będzie obliczana na podstawie prędkości mostu. Domyślna wartość to 150%." msgid "Brim width" msgstr "Szerokość Brimu" @@ -8690,14 +9988,23 @@ msgstr "Odległość od modelu do najbardziej zewnętrznej linii Brimu" msgid "Brim type" msgstr "Typ Brimu" -msgid "This controls the generation of the brim at outer and/or inner side of models. Auto means the brim width is analysed and calculated automatically." -msgstr "To kontroluje generowanie Brimu na zewnętrznej i/lub wewnętrznej stronie modeli. Auto oznacza, że szerokość Brimu jest analizowana i obliczana automatycznie." +msgid "" +"This controls the generation of the brim at outer and/or inner side of " +"models. Auto means the brim width is analysed and calculated automatically." +msgstr "" +"To kontroluje generowanie Brimu na zewnętrznej i/lub wewnętrznej stronie " +"modeli. Auto oznacza, że szerokość Brimu jest analizowana i obliczana " +"automatycznie." msgid "Brim-object gap" msgstr "Odstęp Brimu od obiektu" -msgid "A gap between innermost brim line and object can make brim be removed more easily" -msgstr "Szczelina między najbardziej wewnętrzną linią Brimu a obiektem może ułatwić usunięcie Brimu" +msgid "" +"A gap between innermost brim line and object can make brim be removed more " +"easily" +msgstr "" +"Szczelina między najbardziej wewnętrzną linią Brimu a obiektem może ułatwić " +"usunięcie Brimu" msgid "Brim ears" msgstr "Uszy Brim" @@ -8715,16 +10022,19 @@ msgid "" msgstr "" "Maksymalny kąt, przy którym pojawia się ucho Brimu.\n" "Jeśli ustawione na 0, Brim nie zostanie utworzony.\n" -"Jeśli ustawione na ~180, Brim zostanie utworzony wszędzie, oprócz prostych sekcji." +"Jeśli ustawione na ~180, Brim zostanie utworzony wszędzie, oprócz prostych " +"sekcji." msgid "Brim ear detection radius" msgstr "Promień wykrywania uszu Brimu" msgid "" -"The geometry will be decimated before dectecting sharp angles. This parameter indicates the minimum length of the deviation for the decimation.\n" +"The geometry will be decimated before dectecting sharp angles. This " +"parameter indicates the minimum length of the deviation for the decimation.\n" "0 to deactivate" msgstr "" -"Kształt zostanie zredukowany przed wykryciem ostrych kątów. Ten parametr wskazuje minimalną długość odchylenia dla redukcji.\n" +"Kształt zostanie zredukowany przed wykryciem ostrych kątów. Ten parametr " +"wskazuje minimalną długość odchylenia dla redukcji.\n" "0, aby dezaktywować" msgid "Compatible machine" @@ -8755,7 +10065,9 @@ msgid "Intra-layer order" msgstr "Kolejność warstw" msgid "Print order within a single layer" -msgstr "Kolejność druku obiektów w obrębie jednej warstwy. Domyślnie lub według listy obiektów" +msgstr "" +"Kolejność druku obiektów w obrębie jednej warstwy. Domyślnie lub według " +"listy obiektów" msgid "As object list" msgstr "Wg.listy obiektów" @@ -8763,14 +10075,26 @@ msgstr "Wg.listy obiektów" msgid "Slow printing down for better layer cooling" msgstr "Zwolnienie druku dla lepszego chłodzenia warstw" -msgid "Enable this option to slow printing speed down to make the final layer time not shorter than the layer time threshold in \"Max fan speed threshold\", so that layer can be cooled for longer time. This can improve the cooling quality for needle and small details" -msgstr "Włącz tę opcję, aby zmniejszyć prędkość drukowania, aby czas ostatniej warstwy nie był krótszy niż próg czasu warstwy w „Maksymalny próg prędkości wentylatora”, aby warstwa mogła być chłodzona przez dłuższy czas. Może to poprawić jakość drobnych szczegółów i małych detali" +msgid "" +"Enable this option to slow printing speed down to make the final layer time " +"not shorter than the layer time threshold in \"Max fan speed threshold\", so " +"that layer can be cooled for longer time. This can improve the cooling " +"quality for needle and small details" +msgstr "" +"Włącz tę opcję, aby zmniejszyć prędkość drukowania, aby czas ostatniej " +"warstwy nie był krótszy niż próg czasu warstwy w „Maksymalny próg prędkości " +"wentylatora”, aby warstwa mogła być chłodzona przez dłuższy czas. Może to " +"poprawić jakość drobnych szczegółów i małych detali" msgid "Normal printing" msgstr "Normalne drukowanie" -msgid "The default acceleration of both normal printing and travel except initial layer" -msgstr "Domyślne przyspieszenie zarówno normalnego druku, jak i prędkości jałowej, z wyjątkiem pierwszej warstwy" +msgid "" +"The default acceleration of both normal printing and travel except initial " +"layer" +msgstr "" +"Domyślne przyspieszenie zarówno normalnego druku, jak i prędkości jałowej, z " +"wyjątkiem pierwszej warstwy" msgid "mm/s²" msgstr "mm/s²" @@ -8791,13 +10115,18 @@ msgid "Activate air filtration" msgstr "Aktywuj filtrację powietrza" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" -msgstr "Aktywuj dla lepszej filtracji powietrza. Komenda G-code: M106 P3 S(0-255)" +msgstr "" +"Aktywuj dla lepszej filtracji powietrza. Komenda G-code: M106 P3 S(0-255)" msgid "Fan speed" msgstr "Prędkość wentylatora" -msgid "Speed of exhaust fan during printing.This speed will overwrite the speed in filament custom gcode" -msgstr "Prędkość wentylatora wyciągowego podczas drukowania. Ta prędkość zastąpi ustawienia prędkości w niestandardowym G-code dla filamentu" +msgid "" +"Speed of exhaust fan during printing.This speed will overwrite the speed in " +"filament custom gcode" +msgstr "" +"Prędkość wentylatora wyciągowego podczas drukowania. Ta prędkość zastąpi " +"ustawienia prędkości w niestandardowym G-code dla filamentu" msgid "Speed of exhaust fan after printing completes" msgstr "Prędkość wentylatora wyciągowego po zakończeniu drukowania" @@ -8805,58 +10134,107 @@ msgstr "Prędkość wentylatora wyciągowego po zakończeniu drukowania" msgid "No cooling for the first" msgstr "Brak chłodzenia na pierwszych" -msgid "Close all cooling fan for the first certain layers. Cooling fan of the first layer used to be closed to get better build plate adhesion" -msgstr "Wyłącz wszystkie wentylatory chłodzące na pierwszych określonych warstwach. Wentylator chłodzący pierwszą warstwę był zazwyczaj wyłączony, aby uzyskać lepsze przyleganie do stołu drukarki" +msgid "" +"Close all cooling fan for the first certain layers. Cooling fan of the first " +"layer used to be closed to get better build plate adhesion" +msgstr "" +"Wyłącz wszystkie wentylatory chłodzące na pierwszych określonych warstwach. " +"Wentylator chłodzący pierwszą warstwę był zazwyczaj wyłączony, aby uzyskać " +"lepsze przyleganie do stołu drukarki" msgid "Don't support bridges" msgstr "Nie twórz podpór pod mostami" -msgid "Don't support the whole bridge area which make support very large. Bridge usually can be printing directly without support if not very long" -msgstr "Nie używaj podpór dla całego obszaru mostu, co powoduje, że podpora jest bardzo duża. Most zwykle może być drukowany bezpośrednio bez podpór, jeśli nie jest zbyt długi" +msgid "" +"Don't support the whole bridge area which make support very large. Bridge " +"usually can be printing directly without support if not very long" +msgstr "" +"Nie używaj podpór dla całego obszaru mostu, co powoduje, że podpora jest " +"bardzo duża. Most zwykle może być drukowany bezpośrednio bez podpór, jeśli " +"nie jest zbyt długi" msgid "Thick bridges" msgstr "Grube mosty" -msgid "If enabled, bridges are more reliable, can bridge longer distances, but may look worse. If disabled, bridges look better but are reliable just for shorter bridged distances." -msgstr "Jeśli włączone, mosty są bardziej niezawodne, mogą obejmować dłuższe odległości, ale mogą wyglądać gorzej. Jeśli wyłączone, mosty wyglądają lepiej, ale są niezawodne tylko na krótszych dystansach." +msgid "" +"If enabled, bridges are more reliable, can bridge longer distances, but may " +"look worse. If disabled, bridges look better but are reliable just for " +"shorter bridged distances." +msgstr "" +"Jeśli włączone, mosty są bardziej niezawodne, mogą obejmować dłuższe " +"odległości, ale mogą wyglądać gorzej. Jeśli wyłączone, mosty wyglądają " +"lepiej, ale są niezawodne tylko na krótszych dystansach." msgid "Thick internal bridges" msgstr "Grube wewnętrzne mosty" -msgid "If enabled, thick internal bridges will be used. It's usually recommended to have this feature turned on. However, consider turning it off if you are using large nozzles." -msgstr "Jeśli włączone, będą używane grube wewnętrzne mosty. Zazwyczaj zaleca się użycie tej funkcji. Jednak rozważ jej wyłączenie, jeśli używasz dużych dysz." +msgid "" +"If enabled, thick internal bridges will be used. It's usually recommended to " +"have this feature turned on. However, consider turning it off if you are " +"using large nozzles." +msgstr "" +"Jeśli włączone, będą używane grube wewnętrzne mosty. Zazwyczaj zaleca się " +"użycie tej funkcji. Jednak rozważ jej wyłączenie, jeśli używasz dużych dysz." msgid "Don't filter out small internal bridges (beta)" msgstr "Nie filtruj małych wewnętrznych mostów (beta)" msgid "" -"This option can help reducing pillowing on top surfaces in heavily slanted or curved models.\n" +"This option can help reducing pillowing on top surfaces in heavily slanted " +"or curved models.\n" "\n" -"By default, small internal bridges are filtered out and the internal solid infill is printed directly over the sparse infill. This works well in most cases, speeding up printing without too much compromise on top surface quality. \n" +"By default, small internal bridges are filtered out and the internal solid " +"infill is printed directly over the sparse infill. This works well in most " +"cases, speeding up printing without too much compromise on top surface " +"quality. \n" "\n" -"However, in heavily slanted or curved models especially where too low sparse infill density is used, this may result in curling of the unsupported solid infill, causing pillowing.\n" +"However, in heavily slanted or curved models especially where too low sparse " +"infill density is used, this may result in curling of the unsupported solid " +"infill, causing pillowing.\n" "\n" -"Enabling this option will print internal bridge layer over slightly unsupported internal solid infill. The options below control the amount of filtering, i.e. the amount of internal bridges created.\n" +"Enabling this option will print internal bridge layer over slightly " +"unsupported internal solid infill. The options below control the amount of " +"filtering, i.e. the amount of internal bridges created.\n" "\n" -"Disabled - Disables this option. This is the default behaviour and works well in most cases.\n" +"Disabled - Disables this option. This is the default behaviour and works " +"well in most cases.\n" "\n" -"Limited filtering - Creates internal bridges on heavily slanted surfaces, while avoiding creating uncessesary interal bridges. This works well for most difficult models.\n" +"Limited filtering - Creates internal bridges on heavily slanted surfaces, " +"while avoiding creating uncessesary interal bridges. This works well for " +"most difficult models.\n" "\n" -"No filtering - Creates internal bridges on every potential internal overhang. This option is useful for heavily slanted top surface models. However, in most cases it creates too many unecessary bridges." +"No filtering - Creates internal bridges on every potential internal " +"overhang. This option is useful for heavily slanted top surface models. " +"However, in most cases it creates too many unecessary bridges." msgstr "" -"To opcja może pomóc w redukcji efektu \"pillowing\" na górnych powierzchniach w mocno pochylonych lub zakrzywionych modelach.\n" +"To opcja może pomóc w redukcji efektu \"pillowing\" na górnych " +"powierzchniach w mocno pochylonych lub zakrzywionych modelach.\n" "\n" -"Domyślnie, małe wewnętrzne mosty są odfiltrowywane, a wewnętrzna struktura jest drukowana bezpośrednio na rzadkiej strukturze wypełnienia. To działa dobrze w większości przypadków, przyspieszając drukowanie bez zbyt dużego kompromisu w jakości górnej powierzchni. \n" +"Domyślnie, małe wewnętrzne mosty są odfiltrowywane, a wewnętrzna struktura " +"jest drukowana bezpośrednio na rzadkiej strukturze wypełnienia. To działa " +"dobrze w większości przypadków, przyspieszając drukowanie bez zbyt dużego " +"kompromisu w jakości górnej powierzchni. \n" "\n" -"Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania się niewspieranej struktury wypełnienia, co powoduje efekt \"pillowing\".\n" +"Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy " +"niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania się " +"niewspieranej struktury wypełnienia, co powoduje efekt \"pillowing\".\n" "\n" -"Włączenie tej opcji spowoduje drukowanie wewnętrznej warstwy mostka nad nieco niewspieraną wewnętrzną strukturą wypełnienia. Poniższe opcje kontrolują stopień filtrowania, czyli ilość tworzonych wewnętrznych mostków.\n" +"Włączenie tej opcji spowoduje drukowanie wewnętrznej warstwy mostka nad " +"nieco niewspieraną wewnętrzną strukturą wypełnienia. Poniższe opcje " +"kontrolują stopień filtrowania, czyli ilość tworzonych wewnętrznych " +"mostków.\n" "\n" -"Wyłączone - Wyłącza tę opcję. Jest to zachowanie domyślne i działa dobrze w większości przypadków.\n" +"Wyłączone - Wyłącza tę opcję. Jest to zachowanie domyślne i działa dobrze w " +"większości przypadków.\n" "\n" -"Ograniczone filtrowanie - Tworzy wewnętrzne mosty na mocno pochylonych powierzchniach, unikając tworzenia niepotrzebnych wewnętrznych mostków. To działa dobrze dla większości trudnych modeli.\n" +"Ograniczone filtrowanie - Tworzy wewnętrzne mosty na mocno pochylonych " +"powierzchniach, unikając tworzenia niepotrzebnych wewnętrznych mostków. To " +"działa dobrze dla większości trudnych modeli.\n" "\n" -"Brak filtrowania - Tworzy wewnętrzne mosty na każdym potencjalnym wewnętrznym występie. Ta opcja jest przydatna dla mocno pochylonych modeli górnych powierzchni. Jednakże w większości przypadków tworzy zbyt wiele niepotrzebnych mostów." +"Brak filtrowania - Tworzy wewnętrzne mosty na każdym potencjalnym " +"wewnętrznym występie. Ta opcja jest przydatna dla mocno pochylonych modeli " +"górnych powierzchni. Jednakże w większości przypadków tworzy zbyt wiele " +"niepotrzebnych mostów." msgid "Disabled" msgstr "Wyłączona" @@ -8870,8 +10248,14 @@ msgstr "Bez filtracji" msgid "Max bridge length" msgstr "Maksymalna długość mostu" -msgid "Max length of bridges that don't need support. Set it to 0 if you want all bridges to be supported, and set it to a very large value if you don't want any bridges to be supported." -msgstr "Maksymalna długość mostów, które nie potrzebują podpór. Ustaw na 0, jeśli chcesz, aby wszystkie mosty były podparte lub ustaw większą wartość, jeśli nie chcesz, aby jakiekolwiek most były podpierany." +msgid "" +"Max length of bridges that don't need support. Set it to 0 if you want all " +"bridges to be supported, and set it to a very large value if you don't want " +"any bridges to be supported." +msgstr "" +"Maksymalna długość mostów, które nie potrzebują podpór. Ustaw na 0, jeśli " +"chcesz, aby wszystkie mosty były podparte lub ustaw większą wartość, jeśli " +"nie chcesz, aby jakiekolwiek most były podpierany." msgid "End G-code" msgstr "Końcowy G-code" @@ -8882,8 +10266,12 @@ msgstr "Końcowy G-code po zakończeniu całego druku" msgid "Between Object Gcode" msgstr "G-code między obiektami" -msgid "Insert Gcode between objects. This parameter will only come into effect when you print your models object by object" -msgstr "Wstaw G-code między obiektami. Ten parametr będzie miał wpływ tylko wtedy, gdy drukujesz swoje modele obiekt po obiekcie" +msgid "" +"Insert Gcode between objects. This parameter will only come into effect when " +"you print your models object by object" +msgstr "" +"Wstaw G-code między obiektami. Ten parametr będzie miał wpływ tylko wtedy, " +"gdy drukujesz swoje modele obiekt po obiekcie" msgid "End G-code when finish the printing of this filament" msgstr "Końcowy G-code po zakończeniu drukowania tym filamentem" @@ -8892,22 +10280,28 @@ msgid "Ensure vertical shell thickness" msgstr "Zapewnij stałą grubość pionowej powłoki" msgid "" -"Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)\n" -"None: No solid infill will be added anywhere. Caution: Use this option carefully if your model has sloped surfaces\n" +"Add solid infill near sloping surfaces to guarantee the vertical shell " +"thickness (top+bottom solid layers)\n" +"None: No solid infill will be added anywhere. Caution: Use this option " +"carefully if your model has sloped surfaces\n" "Critical Only: Avoid adding solid infill for walls\n" "Moderate: Add solid infill for heavily sloping surfaces only\n" "All: Add solid infill for all suitable sloping surfaces\n" "Default value is All." msgstr "" -"Dodaj pełne wypełnienie w pobliżu nachylonych powierzchni, aby zagwarantować grubość pionowej powłoki (górne + dolne pełne warstwy).\n" +"Dodaj pełne wypełnienie w pobliżu nachylonych powierzchni, aby zagwarantować " +"grubość pionowej powłoki (górne + dolne pełne warstwy).\n" "\n" -"Brak: Nie umieszczaj pełnego wypełnienia w żadnym miejscu. Uwaga: Korzystaj z tej opcji ostrożnie, jeśli twój model posiada nachylone powierzchnie.\n" +"Brak: Nie umieszczaj pełnego wypełnienia w żadnym miejscu. Uwaga: Korzystaj " +"z tej opcji ostrożnie, jeśli twój model posiada nachylone powierzchnie.\n" "\n" "Tylko krytyczne: Unikaj dodawania pełnego wypełnienia dla ścian.\n" "\n" -"Umiarkowane: Dodaj pełne wypełnienie tylko dla silnie nachylonych powierzchni.\n" +"Umiarkowane: Dodaj pełne wypełnienie tylko dla silnie nachylonych " +"powierzchni.\n" "\n" -"Wszystkie: Dodaj pełne wypełnienie dla wszystkich odpowiednio nachylonych powierzchni.\n" +"Wszystkie: Dodaj pełne wypełnienie dla wszystkich odpowiednio nachylonych " +"powierzchni.\n" "\n" "Domyślna wartość to Wszystkie." @@ -8951,30 +10345,54 @@ msgid "Bottom surface pattern" msgstr "Wzór dolnej powierzchni" msgid "Line pattern of bottom surface infill, not bridge infill" -msgstr "Wzór linii wypełnienia dolnej powierzchni, nie dotyczy wypełnienia mostu" +msgstr "" +"Wzór linii wypełnienia dolnej powierzchni, nie dotyczy wypełnienia mostu" msgid "Internal solid infill pattern" msgstr "Wzór wewnętrznego pełnego wypełnienia" -msgid "Line pattern of internal solid infill. if the detect narrow internal solid infill be enabled, the concentric pattern will be used for the small area." -msgstr "Wzór linii wewnętrznego pełnego wypełnienia. Jeśli zostanie włączona funkcja wykrywania wąskiego wewnętrznego pełnego wypełnienia, dla małego obszaru użyty zostanie wzór koncentryczny." +msgid "" +"Line pattern of internal solid infill. if the detect narrow internal solid " +"infill be enabled, the concentric pattern will be used for the small area." +msgstr "" +"Wzór linii wewnętrznego pełnego wypełnienia. Jeśli zostanie włączona funkcja " +"wykrywania wąskiego wewnętrznego pełnego wypełnienia, dla małego obszaru " +"użyty zostanie wzór koncentryczny." -msgid "Line width of outer wall. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Szerokość zewnętrznej ściany. Jeśli wyrażona w %, zostanie obliczona na podstawie średnicy dyszy." +msgid "" +"Line width of outer wall. If expressed as a %, it will be computed over the " +"nozzle diameter." +msgstr "" +"Szerokość zewnętrznej ściany. Jeśli wyrażona w %, zostanie obliczona na " +"podstawie średnicy dyszy." -msgid "Speed of outer wall which is outermost and visible. It's used to be slower than inner wall speed to get better quality." -msgstr "Prędkość druku zewnętrznej ściany, która jest najbardziej widoczną zewnętrzną powłoką modelu . Zwykle jest drukowana wolniej niż wewnętrzne ściany, aby uzyskać lepszą jej jakość." +msgid "" +"Speed of outer wall which is outermost and visible. It's used to be slower " +"than inner wall speed to get better quality." +msgstr "" +"Prędkość druku zewnętrznej ściany, która jest najbardziej widoczną " +"zewnętrzną powłoką modelu . Zwykle jest drukowana wolniej niż wewnętrzne " +"ściany, aby uzyskać lepszą jej jakość." msgid "Small perimeters" msgstr "Małe obrysy" -msgid "This separate setting will affect the speed of perimeters having radius <= small_perimeter_threshold (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the outer wall speed setting above. Set to zero for auto." -msgstr "To ustawienie reguluje prędkość obrysów posiadających promień <= próg małego obrysu (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ć ustawień automatycznych." +msgid "" +"This separate setting will affect the speed of perimeters having radius <= " +"small_perimeter_threshold (usually holes). If expressed as percentage (for " +"example: 80%) it will be calculated on the outer wall speed setting above. " +"Set to zero for auto." +msgstr "" +"To ustawienie reguluje prędkość obrysów posiadających promień <= próg małego " +"obrysu (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ć ustawień automatycznych." msgid "Small perimeters threshold" msgstr "Próg małego obrysu" -msgid "This sets the threshold for small perimeter length. Default threshold is 0mm" +msgid "" +"This sets the threshold for small perimeter length. Default threshold is 0mm" msgstr "To ustawia próg długości małych obrysów. Domyślny próg to 0 mm" msgid "Walls printing order" @@ -8983,21 +10401,50 @@ msgstr "Kolejność drukowania ścian" msgid "" "Print sequence of the internal (inner) and external (outer) walls. \n" "\n" -"Use Inner/Outer for best overhangs. This is because the overhanging walls can adhere to a neighouring perimeter while printing. However, this option results in slightly reduced surface quality as the external perimeter is deformed by being squashed to the internal perimeter.\n" +"Use Inner/Outer for best overhangs. This is because the overhanging walls " +"can adhere to a neighouring perimeter while printing. However, this option " +"results in slightly reduced surface quality as the external perimeter is " +"deformed by being squashed to the internal perimeter.\n" "\n" -"Use Inner/Outer/Inner for the best external surface finish and dimensional accuracy as the external wall is printed undisturbed from an internal perimeter. However, overhang performance will reduce as there is no internal perimeter to print the external wall against. This option requires a minimum of 3 walls to be effective as it prints the internal walls from the 3rd perimeter onwards first, then the external perimeter and, finally, the first internal perimeter. This option is recomended against the Outer/Inner option in most cases. \n" +"Use Inner/Outer/Inner for the best external surface finish and dimensional " +"accuracy as the external wall is printed undisturbed from an internal " +"perimeter. However, overhang performance will reduce as there is no internal " +"perimeter to print the external wall against. This option requires a minimum " +"of 3 walls to be effective as it prints the internal walls from the 3rd " +"perimeter onwards first, then the external perimeter and, finally, the first " +"internal perimeter. This option is recomended against the Outer/Inner option " +"in most cases. \n" "\n" -"Use Outer/Inner for the same external wall quality and dimensional accuracy benefits of Inner/Outer/Inner option. However, the z seams will appear less consistent as the first extrusion of a new layer starts on a visible surface.\n" +"Use Outer/Inner for the same external wall quality and dimensional accuracy " +"benefits of Inner/Outer/Inner option. However, the z seams will appear less " +"consistent as the first extrusion of a new layer starts on a visible " +"surface.\n" "\n" " " msgstr "" "Sekwencja druku zewnętrznych i wewnętrznych ścian.\n" "\n" -"Użyj opcji \"wewnętrzna/zewnętrzna\" dla najlepszego efektu nawisów. Jest to spowodowane tym, że ściany zwisające mogą przylegać do sąsiednich obwodów podczas drukowania. Jednakże, opcja ta skutkuje delikatnie obniżoną jakością powierzchni, ponieważ zewnętrzny obrys jest deformowany przez ścianę wewnętrzną, która jest do niej dociskana.\n" +"Użyj opcji \"wewnętrzna/zewnętrzna\" dla najlepszego efektu nawisów. Jest to " +"spowodowane tym, że ściany zwisające mogą przylegać do sąsiednich obwodów " +"podczas drukowania. Jednakże, opcja ta skutkuje delikatnie obniżoną jakością " +"powierzchni, ponieważ zewnętrzny obrys jest deformowany przez ścianę " +"wewnętrzną, która jest do niej dociskana.\n" "\n" -"Użyj opcji \"wewnętrzna/zewnętrzna/wewnętrzna\" dla najlepszego wykończenia zewnętrznej powierzchni i dokładności wymiarowej, ponieważ zewnętrzna ściana jest drukowana niezakłócona przez wewnętrzny obwód. Jednak wydajność druku przy nawisach będzie niższa, ponieważ nie ma wewnętrznego obwodu, który mógłby podeprzeć druk zewnętrznej ściany. Ta opcja wymaga co najmniej 3 ścian, aby była skuteczna, ponieważ najpierw drukuje wewnętrzne ściany zaczynając od trzeciego obwodu, następnie zewnętrzny obwód i w końcu pierwszy wewnętrzny obwód. W większości przypadków ta opcja jest polecana jako alternatywa dla opcji zewnętrzna/wewnętrzna.\n" +"Użyj opcji \"wewnętrzna/zewnętrzna/wewnętrzna\" dla najlepszego wykończenia " +"zewnętrznej powierzchni i dokładności wymiarowej, ponieważ zewnętrzna ściana " +"jest drukowana niezakłócona przez wewnętrzny obwód. Jednak wydajność druku " +"przy nawisach będzie niższa, ponieważ nie ma wewnętrznego obwodu, który " +"mógłby podeprzeć druk zewnętrznej ściany. Ta opcja wymaga co najmniej 3 " +"ścian, aby była skuteczna, ponieważ najpierw drukuje wewnętrzne ściany " +"zaczynając od trzeciego obwodu, następnie zewnętrzny obwód i w końcu " +"pierwszy wewnętrzny obwód. W większości przypadków ta opcja jest polecana " +"jako alternatywa dla opcji zewnętrzna/wewnętrzna.\n" "\n" -"Użyj opcji \"zewnętrzna/wewnętrzna\", aby uzyskać taką samą jakość zewnętrznej ściany i precyzję wymiarową jak w opcji \"wewnętrzna/zewnętrzna/wewnętrzna\". Jednakże, szwy na osi Z będą wydawać się mniej spójne, ponieważ pierwsza ekstruzja nowej warstwy rozpoczyna się na widocznej powierzchni." +"Użyj opcji \"zewnętrzna/wewnętrzna\", aby uzyskać taką samą jakość " +"zewnętrznej ściany i precyzję wymiarową jak w opcji \"wewnętrzna/zewnętrzna/" +"wewnętrzna\". Jednakże, szwy na osi Z będą wydawać się mniej spójne, " +"ponieważ pierwsza ekstruzja nowej warstwy rozpoczyna się na widocznej " +"powierzchni." msgid "Inner/Outer" msgstr "Wewnętrzna/Zewnętrzna" @@ -9012,27 +10459,44 @@ msgid "Print infill first" msgstr "Drukuj najpierw wypełnienie" msgid "" -"Order of wall/infill. When the tickbox is unchecked the walls are printed first, which works best in most cases.\n" +"Order of wall/infill. When the tickbox is unchecked the walls are printed " +"first, which works best in most cases.\n" "\n" -"Printing walls first may help with extreme overhangs as the walls have the neighbouring infill to adhere to. However, the infill will slighly push out the printed walls where it is attached to them, resulting in a worse external surface finish. It can also cause the infill to shine through the external surfaces of the part." +"Printing walls first may help with extreme overhangs as the walls have the " +"neighbouring infill to adhere to. However, the infill will slighly push out " +"the printed walls where it is attached to them, resulting in a worse " +"external surface finish. It can also cause the infill to shine through the " +"external surfaces of the part." msgstr "" -"Kolejność drukowania ścian/wypełnienia. Gdy pole wyboru nie jest zaznaczone, najpierw drukowane są ściany, co w większości przypadków działa najlepiej.\n" +"Kolejność drukowania ścian/wypełnienia. Gdy pole wyboru nie jest zaznaczone, " +"najpierw drukowane są ściany, co w większości przypadków działa najlepiej.\n" "\n" -"Drukowanie najpierw ścian, może pomóc przy ekstremalnych nawisach, ponieważ ściany mają sąsiednie wypełnienie, do którego przylegają. Jednak wypełnienie może nieznacznie wypchnąć tam wydrukowane ściany w miejscu gdzie są do nich przymocowane. Skutkuje to gorszym wykończeniem zewnętrznej powierzchni. Może to również spowodować prześwitywanie wypełnienia przez zewnętrzne powierzchnie części." +"Drukowanie najpierw ścian, może pomóc przy ekstremalnych nawisach, ponieważ " +"ściany mają sąsiednie wypełnienie, do którego przylegają. Jednak wypełnienie " +"może nieznacznie wypchnąć tam wydrukowane ściany w miejscu gdzie są do nich " +"przymocowane. Skutkuje to gorszym wykończeniem zewnętrznej powierzchni. Może " +"to również spowodować prześwitywanie wypełnienia przez zewnętrzne " +"powierzchnie części." msgid "Wall loop direction" msgstr "Kierunek obwodu ściany" msgid "" -"The direction which the wall loops are extruded when looking down from the top.\n" +"The direction which the wall loops are extruded when looking down from the " +"top.\n" "\n" -"By default all walls are extruded in counter-clockwise, unless Reverse on odd is enabled. Set this to any option other than Auto will force the wall direction regardless of the Reverse on odd.\n" +"By default all walls are extruded in counter-clockwise, unless Reverse on " +"odd is enabled. Set this to any option other than Auto will force the wall " +"direction regardless of the Reverse on odd.\n" "\n" "This option will be disabled if sprial vase mode is enabled." msgstr "" "Kierunek, w którym są drukowane obwody ściany, patrząc z góry.\n" "\n" -"Domyślnie wszystkie ściany są drukowane w kierunku przeciwnym do ruchu wskazówek zegara, chyba że włączona jest opcja Odwróć dla nieparzystych warstw.Ustawienie tego na dowolną inną opcję niż Auto spowoduje, że kierunek ściany będzie ustalony niezależnie od ustawienia Odwróć dla nieparzystych.\n" +"Domyślnie wszystkie ściany są drukowane w kierunku przeciwnym do ruchu " +"wskazówek zegara, chyba że włączona jest opcja Odwróć dla nieparzystych " +"warstw.Ustawienie tego na dowolną inną opcję niż Auto spowoduje, że kierunek " +"ściany będzie ustalony niezależnie od ustawienia Odwróć dla nieparzystych.\n" "\n" "Ta opcja będzie wyłączona, jeśli aktywowany jest tryb Wazy.\n" "\n" @@ -9049,17 +10513,29 @@ msgstr "Zgodnie" msgid "Height to rod" msgstr "Odległość od prowadnicy" -msgid "Distance of the nozzle tip to the lower rod. Used for collision avoidance in by-object printing." -msgstr "Odległość od końcówki dyszy do dolnej części prowadnicy. Używane do unikania kolizji w druku według obiektu." +msgid "" +"Distance of the nozzle tip to the lower rod. Used for collision avoidance in " +"by-object printing." +msgstr "" +"Odległość od końcówki dyszy do dolnej części prowadnicy. Używane do unikania " +"kolizji w druku według obiektu." msgid "Height to lid" msgstr "Odległość do pokrywy" -msgid "Distance of the nozzle tip to the lid. Used for collision avoidance in by-object printing." -msgstr "Odległość od końcówki dyszy do pokrywy. Używane do unikania kolizji w druku według obiektu." +msgid "" +"Distance of the nozzle tip to the lid. Used for collision avoidance in by-" +"object printing." +msgstr "" +"Odległość od końcówki dyszy do pokrywy. Używane do unikania kolizji w druku " +"według obiektu." -msgid "Clearance radius around extruder. Used for collision avoidance in by-object printing." -msgstr "Promień odstępu wokół extrudera. Używane do unikania kolizji w druku obiekt-po-obiekcie." +msgid "" +"Clearance radius around extruder. Used for collision avoidance in by-object " +"printing." +msgstr "" +"Promień odstępu wokół extrudera. Używane do unikania kolizji w druku obiekt-" +"po-obiekcie." msgid "Nozzle height" msgstr "Wysokość dyszy" @@ -9070,26 +10546,69 @@ msgstr "Wysokość końcówki dyszy." msgid "Bed mesh min" msgstr "Min. obszar skanowania stołu" -msgid "This option sets the min point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (-99999, -99999), which means there are no limits, thus allowing probing across the entire bed." -msgstr "Ta opcja ustawia minimalny punkt dla dozwolonego obszaru siatki stołu. Ze względu na przesunięcie XY sondy większość drukarek nie jest w stanie zeskanować całego stołu. Aby upewnić się, że punkt skanowania nie wychodzi poza obszar stołu, minimalne i maksymalne punkty siatki stołu powinny być odpowiednio ustawione. OrcaSlicer sprawdza, czy wartości adaptive_bed_mesh_min/adaptive_bed_mesh_max nie przekraczają tych punktów min./maks. Te informacje zazwyczaj można uzyskać od producenta drukarki. Domyślne ustawienie to (-99999, -99999), co oznacza brak ograniczeń, umożliwiając skanowanie całego stołu." +msgid "" +"This option sets the min point for the allowed bed mesh area. Due to the " +"probe's XY offset, most printers are unable to probe the entire bed. To " +"ensure the probe point does not go outside the bed area, the minimum and " +"maximum points of the bed mesh should be set appropriately. OrcaSlicer " +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " +"exceed these min/max points. This information can usually be obtained from " +"your printer manufacturer. The default setting is (-99999, -99999), which " +"means there are no limits, thus allowing probing across the entire bed." +msgstr "" +"Ta opcja ustawia minimalny punkt dla dozwolonego obszaru siatki stołu. Ze " +"względu na przesunięcie XY sondy większość drukarek nie jest w stanie " +"zeskanować całego stołu. Aby upewnić się, że punkt skanowania nie wychodzi " +"poza obszar stołu, minimalne i maksymalne punkty siatki stołu powinny być " +"odpowiednio ustawione. OrcaSlicer sprawdza, czy wartości " +"adaptive_bed_mesh_min/adaptive_bed_mesh_max nie przekraczają tych punktów " +"min./maks. Te informacje zazwyczaj można uzyskać od producenta drukarki. " +"Domyślne ustawienie to (-99999, -99999), co oznacza brak ograniczeń, " +"umożliwiając skanowanie całego stołu." msgid "Bed mesh max" msgstr "Maks. obszar skanowania stołu" -msgid "This option sets the max point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (99999, 99999), which means there are no limits, thus allowing probing across the entire bed." -msgstr "Ta opcja ustawia maksymalny punkt dla dozwolonego obszaru siatki stołu. Ze względu na przesunięcie XY sondy większość drukarek nie jest w stanie zeskanować całego stołu. Aby upewnić się, że punkt skanowania nie wychodzi poza obszar stołu, minimalne i maksymalne punkty siatki stołu powinny być odpowiednio ustawione. OrcaSlicer sprawdza, czy wartości adaptive_bed_mesh_min/adaptive_bed_mesh_max nie przekraczają tych punktów min./maks. Te informacje zazwyczaj można uzyskać od producenta drukarki. Domyślne ustawienie to (-99999, -99999), co oznacza brak ograniczeń, umożliwiając skanowanie całego stołu" +msgid "" +"This option sets the max point for the allowed bed mesh area. Due to the " +"probe's XY offset, most printers are unable to probe the entire bed. To " +"ensure the probe point does not go outside the bed area, the minimum and " +"maximum points of the bed mesh should be set appropriately. OrcaSlicer " +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " +"exceed these min/max points. This information can usually be obtained from " +"your printer manufacturer. The default setting is (99999, 99999), which " +"means there are no limits, thus allowing probing across the entire bed." +msgstr "" +"Ta opcja ustawia maksymalny punkt dla dozwolonego obszaru siatki stołu. Ze " +"względu na przesunięcie XY sondy większość drukarek nie jest w stanie " +"zeskanować całego stołu. Aby upewnić się, że punkt skanowania nie wychodzi " +"poza obszar stołu, minimalne i maksymalne punkty siatki stołu powinny być " +"odpowiednio ustawione. OrcaSlicer sprawdza, czy wartości " +"adaptive_bed_mesh_min/adaptive_bed_mesh_max nie przekraczają tych punktów " +"min./maks. Te informacje zazwyczaj można uzyskać od producenta drukarki. " +"Domyślne ustawienie to (-99999, -99999), co oznacza brak ograniczeń, " +"umożliwiając skanowanie całego stołu" msgid "Probe point distance" msgstr "Odległość między punktami skanowania" -msgid "This option sets the preferred distance between probe points (grid size) for the X and Y directions, with the default being 50mm for both X and Y." -msgstr "Ta opcja ustawia preferowaną odległość między punktami skanowania (rozmiar siatki) w kierunku X i Y, przy czym wartość domyślna dla obu kierunków wynosi 50 mm." +msgid "" +"This option sets the preferred distance between probe points (grid size) for " +"the X and Y directions, with the default being 50mm for both X and Y." +msgstr "" +"Ta opcja ustawia preferowaną odległość między punktami skanowania (rozmiar " +"siatki) w kierunku X i Y, przy czym wartość domyślna dla obu kierunków " +"wynosi 50 mm." msgid "Mesh margin" msgstr "Obszar skanowania" -msgid "This option determines the additional distance by which the adaptive bed mesh area should be expanded in the XY directions." -msgstr "Ta opcja określa dodatkową odległość, o którą ma być rozszerzony adaptacyjny obszar siatki stołu w kierunkach XY." +msgid "" +"This option determines the additional distance by which the adaptive bed " +"mesh area should be expanded in the XY directions." +msgstr "" +"Ta opcja określa dodatkową odległość, o którą ma być rozszerzony adaptacyjny " +"obszar siatki stołu w kierunkach XY." msgid "Extruder Color" msgstr "Kolor extrudera" @@ -9103,32 +10622,64 @@ msgstr "Margines ekstrudera" msgid "Flow ratio" msgstr "Współczynnik przepływu" -msgid "The material may have volumetric change after switching between molten state and crystalline state. This setting changes all extrusion flow of this filament in gcode proportionally. Recommended value range is between 0.95 and 1.05. Maybe you can tune this value to get nice flat surface when there has slight overflow or underflow" -msgstr "Materiał może ulegać zmianie objętościowej po przejściu między stanem ciekłym a krystalicznym. Ustawienie to proporcjonalnie zmienia przepływ ekstruzji tego filamentu w G-code. Zalecany zakres wartości mieści się między 0,95 a 1,05. Być może możesz dostroić tę wartość, aby uzyskać gładką powierzchnię, gdy występuje lekkie przelewanie lub niedomiar" +msgid "" +"The material may have volumetric change after switching between molten state " +"and crystalline state. This setting changes all extrusion flow of this " +"filament in gcode proportionally. Recommended value range is between 0.95 " +"and 1.05. Maybe you can tune this value to get nice flat surface when there " +"has slight overflow or underflow" +msgstr "" +"Materiał może ulegać zmianie objętościowej po przejściu między stanem " +"ciekłym a krystalicznym. Ustawienie to proporcjonalnie zmienia przepływ " +"ekstruzji tego filamentu w G-code. Zalecany zakres wartości mieści się " +"między 0,95 a 1,05. Być może możesz dostroić tę wartość, aby uzyskać gładką " +"powierzchnię, gdy występuje lekkie przelewanie lub niedomiar" msgid "Enable pressure advance" msgstr "Włącz przyspieszenie ciśnienia" -msgid "Enable pressure advance, auto calibration result will be overwriten once enabled." -msgstr "Włącz przyspieszenie ciśnienia, wynik automatycznej kalibracji zostanie nadpisany po włączeniu." +msgid "" +"Enable pressure advance, auto calibration result will be overwriten once " +"enabled." +msgstr "" +"Włącz przyspieszenie ciśnienia, wynik automatycznej kalibracji zostanie " +"nadpisany po włączeniu." msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" -msgstr "Przyspieszenie ciśnienia (Klipper), znane również jako współczynnik przyspieszenia liniowego (Marlin)." +msgstr "" +"Przyspieszenie ciśnienia (Klipper), znane również jako współczynnik " +"przyspieszenia liniowego (Marlin)." -msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Domyślna szerokość linii, jeśli inne szerokości linii są ustawione na 0. Jeśli wyrażona w %, zostanie obliczona na podstawie średnicy dyszy." +msgid "" +"Default line width if other line widths are set to 0. If expressed as a %, " +"it will be computed over the nozzle diameter." +msgstr "" +"Domyślna szerokość linii, jeśli inne szerokości linii są ustawione na 0. " +"Jeśli wyrażona w %, zostanie obliczona na podstawie średnicy dyszy." msgid "Keep fan always on" msgstr "Wentylator zawsze włączony" -msgid "If enable this setting, part cooling fan will never be stoped and will run at least at minimum speed to reduce the frequency of starting and stoping" -msgstr "Jeśli włączysz to ustawienie, wentylator chłodzący części nigdy nie zostanie zatrzymany i będzie pracował przynajmniej z minimalną prędkością, aby zmniejszyć częstotliwość włączania i wyłączania" +msgid "" +"If enable this setting, part cooling fan will never be stoped and will run " +"at least at minimum speed to reduce the frequency of starting and stoping" +msgstr "" +"Jeśli włączysz to ustawienie, wentylator chłodzący części nigdy nie zostanie " +"zatrzymany i będzie pracował przynajmniej z minimalną prędkością, aby " +"zmniejszyć częstotliwość włączania i wyłączania" msgid "Layer time" msgstr "Czas warstwy" -msgid "Part cooling fan will be enabled for layers of which estimated time is shorter than this value. Fan speed is interpolated between the minimum and maximum fan speeds according to layer printing time" -msgstr "Wentylator chłodzący części zostanie włączony dla warstw, których szacowany czas jest krótszy niż ta wartość. Prędkość wentylatora jest interpolowana między minimalną a maksymalną prędkością wentylatora zgodnie z czasem druku warstwy" +msgid "" +"Part cooling fan will be enabled for layers of which estimated time is " +"shorter than this value. Fan speed is interpolated between the minimum and " +"maximum fan speeds according to layer printing time" +msgstr "" +"Wentylator chłodzący części zostanie włączony dla warstw, których szacowany " +"czas jest krótszy niż ta wartość. Prędkość wentylatora jest interpolowana " +"między minimalną a maksymalną prędkością wentylatora zgodnie z czasem druku " +"warstwy" msgid "Default color" msgstr "Domyślny kolor" @@ -9145,11 +10696,22 @@ msgstr "Tutaj możesz umieścić notatki dotyczące filamentu." msgid "Required nozzle HRC" msgstr "Wymagana dysza HRC" -msgid "Minimum HRC of nozzle required to print the filament. Zero means no checking of nozzle's HRC." -msgstr "Minimalna twardość dyszy HRC wymagana do druku filamentu. Zero oznacza brak sprawdzania twardości HRC dyszy." +msgid "" +"Minimum HRC of nozzle required to print the filament. Zero means no checking " +"of nozzle's HRC." +msgstr "" +"Minimalna twardość dyszy HRC wymagana do druku filamentu. Zero oznacza brak " +"sprawdzania twardości HRC dyszy." -msgid "This setting stands for how much volume of filament can be melted and extruded per second. Printing speed is limited by max volumetric speed, in case of too high and unreasonable speed setting. Can't be zero" -msgstr "To ustawienie określa, ile objętości filamentu może być stopione i wyciśnięte na sekundę. Prędkość drukowania jest ograniczana przez maksymalną prędkość przepływu, w przypadku zbyt wysokiego i nierealistycznego ustawienia prędkości. Nie może wynosić zero" +msgid "" +"This setting stands for how much volume of filament can be melted and " +"extruded per second. Printing speed is limited by max volumetric speed, in " +"case of too high and unreasonable speed setting. Can't be zero" +msgstr "" +"To ustawienie określa, ile objętości filamentu może być stopione i " +"wyciśnięte na sekundę. Prędkość drukowania jest ograniczana przez maksymalną " +"prędkość przepływu, w przypadku zbyt wysokiego i nierealistycznego " +"ustawienia prędkości. Nie może wynosić zero" msgid "mm³/s" msgstr "mm³/s" @@ -9158,25 +10720,41 @@ msgid "Filament load time" msgstr "Czas ładowania filamentu" msgid "Time to load new filament when switch filament. For statistics only" -msgstr "Czas ładowania nowego filamentu podczas zmiany filamentu. Tylko do celów statystycznych" +msgstr "" +"Czas ładowania nowego filamentu podczas zmiany filamentu. Tylko do celów " +"statystycznych" msgid "Filament unload time" msgstr "Czas rozładowania filamentu" msgid "Time to unload old filament when switch filament. For statistics only" -msgstr "Czas rozładunku poprzedniego filamentu podczas zmiany filamentu. Tylko do celów statystycznych" +msgstr "" +"Czas rozładunku poprzedniego filamentu podczas zmiany filamentu. Tylko do " +"celów statystycznych" -msgid "Filament diameter is used to calculate extrusion in gcode, so it's important and should be accurate" -msgstr "Średnica filamentu jest używana do obliczania ekstruzji w G-code, więc jest bardzo ważna i powinna być dokładna" +msgid "" +"Filament diameter is used to calculate extrusion in gcode, so it's important " +"and should be accurate" +msgstr "" +"Średnica filamentu jest używana do obliczania ekstruzji w G-code, więc jest " +"bardzo ważna i powinna być dokładna" msgid "Shrinkage" msgstr "Skurcz" #, no-c-format, no-boost-format msgid "" -"Enter the shrinkage percentage that the filament will get after cooling (94% if you measure 94mm instead of 100mm). The part will be scaled in xy to compensate. Only the filament used for the perimeter is taken into account.\n" -"Be sure to allow enough space between objects, as this compensation is done after the checks." -msgstr "Podaj procent skurczu, którego filament doświadczy po schłodzeniu (94% jeśli zmierzyłeś 94mm zamiast 100mm). Część będzie skalowana w płaszczyźnie xy, aby to zrekompensować. Wzięto pod uwagę tylko filament używany do obwodu. Upewnij się, że pozostawiłeś wystarczająco dużo miejsca między obiektami, ponieważ ta kompensacja jest wykonywana po przeprowadzeniu kontroli." +"Enter the shrinkage percentage that the filament will get after cooling (94% " +"if you measure 94mm instead of 100mm). The part will be scaled in xy to " +"compensate. Only the filament used for the perimeter is taken into account.\n" +"Be sure to allow enough space between objects, as this compensation is done " +"after the checks." +msgstr "" +"Podaj procent skurczu, którego filament doświadczy po schłodzeniu (94% jeśli " +"zmierzyłeś 94mm zamiast 100mm). Część będzie skalowana w płaszczyźnie xy, " +"aby to zrekompensować. Wzięto pod uwagę tylko filament używany do obwodu. " +"Upewnij się, że pozostawiłeś wystarczająco dużo miejsca między obiektami, " +"ponieważ ta kompensacja jest wykonywana po przeprowadzeniu kontroli." msgid "Loading speed" msgstr "Prędkość ładowania" @@ -9193,26 +10771,44 @@ msgstr "Prędkość używana na samym początku fazy ładowania." msgid "Unloading speed" msgstr "Prędkość rozładowania" -msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." -msgstr "Prędkość stosowana do usuwania filamentu na wieży czyszczącej (nie ma wpływu na wstępną część usuwania filamentu, następującą bezpośrednio po procesie wtłaczania)." +msgid "" +"Speed used for unloading the filament on the wipe tower (does not affect " +"initial part of unloading just after ramming)." +msgstr "" +"Prędkość stosowana do usuwania filamentu na wieży czyszczącej (nie ma wpływu " +"na wstępną część usuwania filamentu, następującą bezpośrednio po procesie " +"wtłaczania)." msgid "Unloading speed at the start" msgstr "Początkowa prędkość rozładowania" -msgid "Speed used for unloading the tip of the filament immediately after ramming." -msgstr "Prędkość używana do rozładowywania końcówki filamentu zaraz po ramming-u." +msgid "" +"Speed used for unloading the tip of the filament immediately after ramming." +msgstr "" +"Prędkość używana do rozładowywania końcówki filamentu zaraz po ramming-u." msgid "Delay after unloading" msgstr "Opóźnienie po rozładowaniu" -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." +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." msgid "Number of cooling moves" msgstr "Liczba ruchów chłodzących" -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 poprzez poruszanie go tam i z powrotem w ruchach chłodzących. Określ pożądaną liczbę tych ruchów." +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 poprzez poruszanie go tam i z powrotem w ruchach " +"chłodzących. Określ pożądaną liczbę tych ruchów." msgid "Speed of the first cooling move" msgstr "Prędkość pierwszego ruchu chłodzącego" @@ -9223,8 +10819,18 @@ msgstr "Ruchy chłodzące stopniowo przyspieszają, zaczynając od tej prędkoś msgid "Minimal purge on wipe tower" msgstr "Minimalna objętość czyszczenia" -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, Orca Slicer 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 dokładna pozycja nowo załadowanego filamentu wewnątrz dyszy może nie być znana, a ciśnienie filamentu prawdopodobnie jeszcze nie jest stabilne. Przed wyczyszczeniem głowicy drukującej do wypełnienia lub do obiektu, OrcaSlicer zawsze wstępnie wytłoczy tę ilość filamentu do wieży czyszczącej, aby zapewnić niezawodną dalszą ekstruzję." +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, Orca Slicer 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 dokładna pozycja nowo załadowanego filamentu wewnątrz " +"dyszy może nie być znana, a ciśnienie filamentu prawdopodobnie jeszcze nie " +"jest stabilne. Przed wyczyszczeniem głowicy drukującej do wypełnienia lub do " +"obiektu, OrcaSlicer zawsze wstępnie wytłoczy tę ilość filamentu do wieży " +"czyszczącej, aby zapewnić niezawodną dalszą ekstruzję." msgid "Speed of the last cooling move" msgstr "Prędkość ostatniego ruchu chłodzącego" @@ -9232,23 +10838,48 @@ msgstr "Prędkość ostatniego ruchu chłodzącego" msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Ruchy chłodzące stopniowo przyspieszają do tej prędkości." -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." +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." msgid "Ramming parameters" msgstr "Parametry wyciskania" -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." +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." -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." +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." msgid "Enable ramming for multitool setups" msgstr "Włącz wbijanie dla konfiguracji wielonarzędziowych" -msgid "Perform ramming when using multitool printer (i.e. when the 'Single Extruder Multimaterial' in Printer Settings is unchecked). When checked, a small amount of filament is rapidly extruded on the wipe tower just before the toolchange. This option is only used when the wipe tower is enabled." -msgstr "Wykonuj raming podczas korzystania z drukarki wieloinstrumentowej (tj. gdy opcja „Pojedynczy extruder wielomateriałowy” w ustawieniach drukarki jest odznaczona). Po zaznaczeniu tej opcji, niewielka ilość filamentu jest szybko wytłaczana na wieżę czyszczącą tuż przed zmianą narzędzia. Ta opcja jest używana tylko wtedy, gdy wieża czyszcząca jest włączona." +msgid "" +"Perform ramming when using multitool printer (i.e. when the 'Single Extruder " +"Multimaterial' in Printer Settings is unchecked). When checked, a small " +"amount of filament is rapidly extruded on the wipe tower just before the " +"toolchange. This option is only used when the wipe tower is enabled." +msgstr "" +"Wykonuj raming podczas korzystania z drukarki wieloinstrumentowej (tj. gdy " +"opcja „Pojedynczy extruder wielomateriałowy” w ustawieniach drukarki jest " +"odznaczona). Po zaznaczeniu tej opcji, niewielka ilość filamentu jest szybko " +"wytłaczana na wieżę czyszczącą tuż przed zmianą narzędzia. Ta opcja jest " +"używana tylko wtedy, gdy wieża czyszcząca jest włączona." msgid "Multitool ramming volume" msgstr "Objętość ramingu wieloinstrumentowego" @@ -9277,20 +10908,32 @@ msgstr "Typ filamentu" msgid "Soluble material" msgstr "Materiał rozpuszczalny" -msgid "Soluble material is commonly used to print support and support interface" -msgstr "Materiał rozpuszczalny jest powszechnie używany do drukowania podpór i warstw łączących podpory z modelem" +msgid "" +"Soluble material is commonly used to print support and support interface" +msgstr "" +"Materiał rozpuszczalny jest powszechnie używany do drukowania podpór i " +"warstw łączących podpory z modelem" msgid "Support material" msgstr "Materiał podporowy" -msgid "Support material is commonly used to print support and support interface" -msgstr "Materiał podporowy jest powszechnie używany do drukowania podpór i warstw łączących podpory z modelem" +msgid "" +"Support material is commonly used to print support and support interface" +msgstr "" +"Materiał podporowy jest powszechnie używany do drukowania podpór i warstw " +"łączących podpory z modelem" msgid "Softening temperature" msgstr "Temperatura mięknięcia" -msgid "The material softens at this temperature, so when the bed temperature is equal to or greater than it, it's highly recommended to open the front door and/or remove the upper glass to avoid cloggings." -msgstr "Materiał mięknie w tej temperaturze, więc gdy temperatura stołu jest równa lub wyższa, zaleca się otwarcie drzwi przednich i/lub usunięcie górnej szyby, aby uniknąć zatykania." +msgid "" +"The material softens at this temperature, so when the bed temperature is " +"equal to or greater than it, it's highly recommended to open the front door " +"and/or remove the upper glass to avoid cloggings." +msgstr "" +"Materiał mięknie w tej temperaturze, więc gdy temperatura stołu jest równa " +"lub wyższa, zaleca się otwarcie drzwi przednich i/lub usunięcie górnej " +"szyby, aby uniknąć zatykania." msgid "Price" msgstr "Cena" @@ -9313,13 +10956,19 @@ msgstr "(Nieokreślone)" msgid "Sparse infill direction" msgstr "Kierunek wzoru wypełnienia" -msgid "Angle for sparse infill pattern, which controls the start or main direction of line" -msgstr "Kąt dla wzoru wypełnienia, który kontroluje początek lub główny kierunek linii" +msgid "" +"Angle for sparse infill pattern, which controls the start or main direction " +"of line" +msgstr "" +"Kąt dla wzoru wypełnienia, który kontroluje początek lub główny kierunek " +"linii" msgid "Solid infill direction" msgstr "Kierunek wzoru pełnego wypełnienia" -msgid "Angle for solid infill pattern, which controls the start or main direction of line" +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" msgstr "Kąt wyznaczający główny kierunek linii dla wzoru pełnego wypełnienia" msgid "Rotate solid infill direction" @@ -9332,8 +10981,12 @@ msgid "Sparse infill density" msgstr "Gęstość wypełnienia" #, no-c-format, no-boost-format -msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used" -msgstr "Gęstość wewnętrznego wypełnienia, 100% przekształca całe rzadkie wypełnienie w wypełnienie pełne, a użyty zostanie wzór wewnętrznego pełnego wypełnienia" +msgid "" +"Density of internal sparse infill, 100% turns all sparse infill into solid " +"infill and internal solid infill pattern will be used" +msgstr "" +"Gęstość wewnętrznego wypełnienia, 100% przekształca całe rzadkie wypełnienie " +"w wypełnienie pełne, a użyty zostanie wzór wewnętrznego pełnego wypełnienia" msgid "Sparse infill pattern" msgstr "Wzór wypełnienia" @@ -9378,11 +11031,28 @@ msgid "Sparse infill anchor length" msgstr "Długość kotwiczenia wypełnienia" msgid "" -"Connect an infill line to an internal perimeter with a short segment of an additional perimeter. If expressed as percentage (example: 15%) it is calculated over infill extrusion width. Orca Slicer tries to connect two close infill lines to a short perimeter segment. If no such perimeter segment shorter than infill_anchor_max is found, the infill line is connected to a perimeter segment at just one side and the length of the perimeter segment taken is limited to this parameter, but no longer than anchor_length_max. \n" -"Set this parameter to zero to disable anchoring perimeters connected to a single infill line." +"Connect an infill line to an internal perimeter with a short segment of an " +"additional perimeter. If expressed as percentage (example: 15%) it is " +"calculated over infill extrusion width. Orca Slicer tries to connect two " +"close infill lines to a short perimeter segment. If no such perimeter " +"segment shorter than infill_anchor_max is found, the infill line is " +"connected to a perimeter segment at just one side and the length of the " +"perimeter segment taken is limited to this parameter, but no longer than " +"anchor_length_max. \n" +"Set this parameter to zero to disable anchoring perimeters connected to a " +"single infill line." msgstr "" -"Połączenie wypełnienia z wewnętrznym obrysem poprzez dodawanie krótkich segmentów obrysu. Gdy wartość jest podana w procentach (przykład: 15%), zostanie ona obliczona na podstawie szerokości ścieżki wypełnienia. Slicer stara się łączyć dwie sąsiednie linie wypełnienia za pomocą krótkiego segmentu obrysu. W sytuacji, gdy nie znajdzie segmentu krótszego niż określony parametr, linia wypełnienia zostanie połączona z segmentem obrysu tylko z jednej strony. Długość tego segmentu zostanie ograniczona do wartości określonej w parametrze infill_anchor, ale nie przekroczy tej wartości. \n" -"Aby wyłączyć funkcję kotwiczenia, należy ustawić wartość na zero. Ustaw zero, aby wyłączyć kotwiczenie obrysów do pojedynczej linii wypełnienia." +"Połączenie wypełnienia z wewnętrznym obrysem poprzez dodawanie krótkich " +"segmentów obrysu. Gdy wartość jest podana w procentach (przykład: 15%), " +"zostanie ona obliczona na podstawie szerokości ścieżki wypełnienia. Slicer " +"stara się łączyć dwie sąsiednie linie wypełnienia za pomocą krótkiego " +"segmentu obrysu. W sytuacji, gdy nie znajdzie segmentu krótszego niż " +"określony parametr, linia wypełnienia zostanie połączona z segmentem obrysu " +"tylko z jednej strony. Długość tego segmentu zostanie ograniczona do " +"wartości określonej w parametrze infill_anchor, ale nie przekroczy tej " +"wartości. \n" +"Aby wyłączyć funkcję kotwiczenia, należy ustawić wartość na zero. Ustaw " +"zero, aby wyłączyć kotwiczenie obrysów do pojedynczej linii wypełnienia." msgid "0 (no open anchors)" msgstr "0 (brak otwartych kotwic)" @@ -9394,11 +11064,27 @@ msgid "Maximum length of the infill anchor" msgstr "Maksymalna długość kotwiczenia wypełnienia" msgid "" -"Connect an infill line to an internal perimeter with a short segment of an additional perimeter. If expressed as percentage (example: 15%) it is calculated over infill extrusion width. Orca Slicer tries to connect two close infill lines to a short perimeter segment. If no such perimeter segment shorter than this parameter is found, the infill line is connected to a perimeter segment at just one side and the length of the perimeter segment taken is limited to infill_anchor, but no longer than this parameter. \n" -"If set to 0, the old algorithm for infill connection will be used, it should create the same result as with 1000 & 0." +"Connect an infill line to an internal perimeter with a short segment of an " +"additional perimeter. If expressed as percentage (example: 15%) it is " +"calculated over infill extrusion width. Orca Slicer tries to connect two " +"close infill lines to a short perimeter segment. If no such perimeter " +"segment shorter than this parameter is found, the infill line is connected " +"to a perimeter segment at just one side and the length of the perimeter " +"segment taken is limited to infill_anchor, but no longer than this " +"parameter. \n" +"If set to 0, the old algorithm for infill connection will be used, it should " +"create the same result as with 1000 & 0." msgstr "" -"Łączenie wypełnienia z wewnętrznym obrysem przez dodanie krótkiego segmentu obrysu. Jeśli wyrażone w procentach (np. 15%), zostanie obliczone z szerokości ścieżki wypełnienia. Orca Slicer spróbuje połączyć dwie najbliższe linie wypełnienia krótkim segmentem obrysu. Jeśli nie zostanie znaleziony segment krótszy, niż ten parametr, linia wypełnienia zostanie dołączona do segmentu obrysu tylko z jednej strony, a długość segmentu będzie ograniczona do wartości parametru infill_anchor, ale nie dłuższa niż ten parametr.\n" -"Jeśli ustawione na 0, zostanie użyty stary algorytm łączenia wypełnienia, powinien dać ten sam wynik co przy ustawieniu 1000 & 0." +"Łączenie wypełnienia z wewnętrznym obrysem przez dodanie krótkiego segmentu " +"obrysu. Jeśli wyrażone w procentach (np. 15%), zostanie obliczone z " +"szerokości ścieżki wypełnienia. Orca Slicer spróbuje połączyć dwie " +"najbliższe linie wypełnienia krótkim segmentem obrysu. Jeśli nie zostanie " +"znaleziony segment krótszy, niż ten parametr, linia wypełnienia zostanie " +"dołączona do segmentu obrysu tylko z jednej strony, a długość segmentu " +"będzie ograniczona do wartości parametru infill_anchor, ale nie dłuższa niż " +"ten parametr.\n" +"Jeśli ustawione na 0, zostanie użyty stary algorytm łączenia wypełnienia, " +"powinien dać ten sam wynik co przy ustawieniu 1000 & 0." msgid "0 (Simple connect)" msgstr "0 (bez przymocowania)" @@ -9412,39 +11098,69 @@ msgstr "Przyspieszenie na wewnętrznych ścianach" msgid "Acceleration of travel moves" msgstr "Przyspieszenie ruchów podróżnych" -msgid "Acceleration of top surface infill. Using a lower value may improve top surface quality" -msgstr "Przyspieszenie dla wypełnienia górnej powierzchni. Użycie niższej wartości może poprawić jakość górnej powierzchni" +msgid "" +"Acceleration of top surface infill. Using a lower value may improve top " +"surface quality" +msgstr "" +"Przyspieszenie dla wypełnienia górnej powierzchni. Użycie niższej wartości " +"może poprawić jakość górnej powierzchni" msgid "Acceleration of outer wall. Using a lower value can improve quality" -msgstr "Przyspieszenie na zewnętrznej ścianie. Użycie niższej wartości może poprawić jakość" +msgstr "" +"Przyspieszenie na zewnętrznej ścianie. Użycie niższej wartości może poprawić " +"jakość" -msgid "Acceleration of bridges. If the value is expressed as a percentage (e.g. 50%), it will be calculated based on the outer wall acceleration." -msgstr "Przyspieszenie na mostkach. Jeśli wartość jest wyrażona w procentach (np. 50%), będzie obliczana na podstawie przyspieszenia zewnętrznej ściany." +msgid "" +"Acceleration of bridges. If the value is expressed as a percentage (e.g. " +"50%), it will be calculated based on the outer wall acceleration." +msgstr "" +"Przyspieszenie na mostkach. Jeśli wartość jest wyrażona w procentach (np. " +"50%), będzie obliczana na podstawie przyspieszenia zewnętrznej ściany." msgid "mm/s² or %" msgstr "mm/s² lub %" -msgid "Acceleration of sparse infill. If the value is expressed as a percentage (e.g. 100%), it will be calculated based on the default acceleration." -msgstr "Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w procentach (np. 100%), będzie obliczana na podstawie domyślnego przyspieszenia." +msgid "" +"Acceleration of sparse infill. If the value is expressed as a percentage (e." +"g. 100%), it will be calculated based on the default acceleration." +msgstr "" +"Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w " +"procentach (np. 100%), będzie obliczana na podstawie domyślnego " +"przyspieszenia." -msgid "Acceleration of internal solid infill. If the value is expressed as a percentage (e.g. 100%), it will be calculated based on the default acceleration." -msgstr "Przyspieszenie wewnętrznego, pełnego wypełnienia. Jeśli wartość jest wyrażona w procentach (np. 100%), będzie obliczana na podstawie domyślnego przyspieszenia." +msgid "" +"Acceleration of internal solid infill. If the value is expressed as a " +"percentage (e.g. 100%), it will be calculated based on the default " +"acceleration." +msgstr "" +"Przyspieszenie wewnętrznego, pełnego wypełnienia. Jeśli wartość jest " +"wyrażona w procentach (np. 100%), będzie obliczana na podstawie domyślnego " +"przyspieszenia." -msgid "Acceleration of initial layer. Using a lower value can improve build plate adhesive" -msgstr "Przyspieszenie dla pierwszej warstwy. Użycie niższej wartości może poprawić przyczepność do stołu" +msgid "" +"Acceleration of initial layer. Using a lower value can improve build plate " +"adhesive" +msgstr "" +"Przyspieszenie dla pierwszej warstwy. Użycie niższej wartości może poprawić " +"przyczepność do stołu" msgid "Enable accel_to_decel" msgstr "Włącz accel_to_decel" msgid "Klipper's max_accel_to_decel will be adjusted automatically" -msgstr "Maksymalne przyspieszenie hamowania Klippera zostanie dostosowane automatycznie" +msgstr "" +"Maksymalne przyspieszenie hamowania Klippera zostanie dostosowane " +"automatycznie" msgid "accel_to_decel" msgstr "Dopasuj przyspieszenie przed zmianą kierunku" #, c-format, boost-format -msgid "Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" -msgstr "Maksymalne przyspieszenie hamowania Klippera zostanie dostosowane do tego %% przyspieszenia" +msgid "" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +msgstr "" +"Maksymalne przyspieszenie hamowania Klippera zostanie dostosowane do tego %% " +"przyspieszenia" msgid "Jerk of outer walls" msgstr "Jerk zewnętrznych ścian" @@ -9464,14 +11180,22 @@ msgstr "Jerk pierwszej warstwy" msgid "Jerk for travel" msgstr "Jerk ruchu jałowego" -msgid "Line width of initial layer. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Szerokość linii dla pierwszej warstwy. Jeśli jest wyrażona jako %, zostanie obliczona na podstawie średnicy dyszy." +msgid "" +"Line width of initial layer. If expressed as a %, it will be computed over " +"the nozzle diameter." +msgstr "" +"Szerokość linii dla pierwszej warstwy. Jeśli jest wyrażona jako %, zostanie " +"obliczona na podstawie średnicy dyszy." msgid "Initial layer height" msgstr "Wysokość pierwszej warstwy" -msgid "Height of initial layer. Making initial layer height to be thick slightly can improve build plate adhension" -msgstr "Wysokość pierwszej warstwy. Nieznaczne zwiększenie grubości pierwszej warstwy może poprawić przyczepność do stołu" +msgid "" +"Height of initial layer. Making initial layer height to be thick slightly " +"can improve build plate adhension" +msgstr "" +"Wysokość pierwszej warstwy. Nieznaczne zwiększenie grubości pierwszej " +"warstwy może poprawić przyczepność do stołu" msgid "Speed of initial layer except the solid infill part" msgstr "Prędkość pierwszej warstwy z wyjątkiem pełnego wypełnienia" @@ -9491,35 +11215,57 @@ msgstr "Prędkość jałowa dla pierwszej warstwy" msgid "Number of slow layers" msgstr "Ilość warstw o niższej prędkości" -msgid "The first few layers are printed slower than normal. The speed is gradually increased in a linear fashion over the specified number of layers." -msgstr "Pierwsze kilka warstw jest drukowane wolniej niż zwykle. Prędkość jest stopniowo zwiększana w sposób liniowy przez określoną liczbę warstw." +msgid "" +"The first few layers are printed slower than normal. The speed is gradually " +"increased in a linear fashion over the specified number of layers." +msgstr "" +"Pierwsze kilka warstw jest drukowane wolniej niż zwykle. Prędkość jest " +"stopniowo zwiększana w sposób liniowy przez określoną liczbę warstw." msgid "Initial layer nozzle temperature" msgstr "Temperatura dyszy dla pierwszej warstwy" msgid "Nozzle temperature to print initial layer when using this filament" -msgstr "Temperatura dyszy do drukowania pierwszej warstwy przy użyciu tego filamentu" +msgstr "" +"Temperatura dyszy do drukowania pierwszej warstwy przy użyciu tego filamentu" msgid "Full fan speed at layer" msgstr "Pełna prędkość wentylatora na warstwie" -msgid "Fan speed will be ramped up linearly from zero at layer \"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower than \"close_fan_the_first_x_layers\", in which case the fan will be running at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." -msgstr "Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie \"close_fan_the_first_x_layers\" do maksymalnej na warstwie \"full_fan_speed_layer\". Jeśli \"full_fan_speed_layer\" jest niższa niż \"close_fan_the_first_x_layers\", to wentylator będzie pracować z maksymalną dozwoloną prędkością na warstwie \"close_fan_the_first_x_layers\" + 1." +msgid "" +"Fan speed will be ramped up linearly from zero at layer " +"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" +"\". \"full_fan_speed_layer\" will be ignored if lower than " +"\"close_fan_the_first_x_layers\", in which case the fan will be running at " +"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +msgstr "" +"Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie " +"\"close_fan_the_first_x_layers\" do maksymalnej na warstwie " +"\"full_fan_speed_layer\". Jeśli \"full_fan_speed_layer\" jest niższa niż " +"\"close_fan_the_first_x_layers\", to wentylator będzie pracować z maksymalną " +"dozwoloną prędkością na warstwie \"close_fan_the_first_x_layers\" + 1." msgid "Support interface fan speed" msgstr "Prędkość wentylatora dla warstwy łączącej podpory" msgid "" -"This fan speed is enforced during all support interfaces, to be able to weaken their bonding with a high fan speed.\n" +"This fan speed is enforced during all support interfaces, to be able to " +"weaken their bonding with a high fan speed.\n" "Set to -1 to disable this override.\n" "Can only be overriden by disable_fan_first_layers." msgstr "" -"Ta prędkość wentylatora jest narzucana podczas drukowania wszystkich warstw łączących podpory,\n" -"aby osłabić ich wiązanie przy wyższej prędkości wentylatora. Ustaw na -1, aby wyłączyć to narzucenie.\n" +"Ta prędkość wentylatora jest narzucana podczas drukowania wszystkich warstw " +"łączących podpory,\n" +"aby osłabić ich wiązanie przy wyższej prędkości wentylatora. Ustaw na -1, " +"aby wyłączyć to narzucenie.\n" "Można to nadpisać tylko za pomocą opcji disable_fan_first_layers." -msgid "Randomly jitter while printing the wall, so that the surface has a rough look. This setting controls the fuzzy position" -msgstr "Losowe wibracje podczas drukowania ścian, aby nadać powierzchni chropowaty wygląd.To ustawienie reguluje \"chropowatość\"" +msgid "" +"Randomly jitter while printing the wall, so that the surface has a rough " +"look. This setting controls the fuzzy position" +msgstr "" +"Losowe wibracje podczas drukowania ścian, aby nadać powierzchni chropowaty " +"wygląd.To ustawienie reguluje \"chropowatość\"" msgid "Contour" msgstr "Kontur" @@ -9533,14 +11279,22 @@ msgstr "Wszystkie ściany" msgid "Fuzzy skin thickness" msgstr "Grubość skóry Fuzzy" -msgid "The width within which to jitter. It's adversed to be below outer wall line width" -msgstr "Szerokość w granicach której występuje drganie. Zaleca się, aby była poniżej szerokości linii zewnętrznej ściany." +msgid "" +"The width within which to jitter. It's adversed to be below outer wall line " +"width" +msgstr "" +"Szerokość w granicach której występuje drganie. Zaleca się, aby była poniżej " +"szerokości linii zewnętrznej ściany." msgid "Fuzzy skin point distance" msgstr "Odstęp między punktami na skórze Fuzzy" -msgid "The average diatance between the random points introducded on each line segment" -msgstr "Średnia odległość między losowymi punktami wprowadzonymi na każdym odcinku linii" +msgid "" +"The average diatance between the random points introducded on each line " +"segment" +msgstr "" +"Średnia odległość między losowymi punktami wprowadzonymi na każdym odcinku " +"linii" msgid "Apply fuzzy skin to first layer" msgstr "Zastosuj skórę Fuzzy na pierwszej warstwie" @@ -9557,20 +11311,39 @@ msgstr "Warstwy i obwody" msgid "Filter out gaps smaller than the threshold specified" msgstr "Filtruj szczeliny mniejsze niż podany próg" -msgid "Speed of gap infill. Gap usually has irregular line width and should be printed more slowly" -msgstr "Prędkość wypełniania szczelin. Przerwa zazwyczaj ma nieregularną szerokość linii i powinna być drukowana wolniej" +msgid "" +"Speed of gap infill. Gap usually has irregular line width and should be " +"printed more slowly" +msgstr "" +"Prędkość wypełniania szczelin. Przerwa zazwyczaj ma nieregularną szerokość " +"linii i powinna być drukowana wolniej" msgid "Precise Z height" msgstr "Precyzyjna wysokość Z" -msgid "Enable this to get precise z height of object after slicing. It will get the precise object height by fine-tuning the layer heights of the last few layers. Note that this is an experimental parameter." -msgstr "Aktywuj tę opcję, aby uzyskać precyzyjną wysokość obiektu po przetworzeniu na warstwy. Precyzyjna wysokość obiektu zostanie uzyskana poprzez dokładne dostosowanie wysokości ostatnich kilku warstw. Należy pamiętać, że jest to parametr eksperymentalny." +msgid "" +"Enable this to get precise z height of object after slicing. It will get the " +"precise object height by fine-tuning the layer heights of the last few " +"layers. Note that this is an experimental parameter." +msgstr "" +"Aktywuj tę opcję, aby uzyskać precyzyjną wysokość obiektu po przetworzeniu " +"na warstwy. Precyzyjna wysokość obiektu zostanie uzyskana poprzez dokładne " +"dostosowanie wysokości ostatnich kilku warstw. Należy pamiętać, że jest to " +"parametr eksperymentalny." msgid "Arc fitting" msgstr "Dopasowanie łuków" -msgid "Enable this to get a G-code file which has G2 and G3 moves. And the fitting tolerance is same with resolution" -msgstr "Włącz tę opcję, aby uzyskać plik G-code zawierający ruchy G2 i G3. Tolerancja dopasowania jest taka sama jak rozdzielczość" +msgid "" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." +msgstr "" msgid "Add line number" msgstr "Dodaj numer linii" @@ -9581,14 +11354,22 @@ msgstr "Włącz to, aby dodać numer linii (Nx) na początku każdej linii G-Cod msgid "Scan first layer" msgstr "Skanuj pierwszą warstwę" -msgid "Enable this to enable the camera on printer to check the quality of first layer" -msgstr "Włącz to, aby włączyć kamerę w drukarce do sprawdzania jakości pierwszej warstwy" +msgid "" +"Enable this to enable the camera on printer to check the quality of first " +"layer" +msgstr "" +"Włącz to, aby włączyć kamerę w drukarce do sprawdzania jakości pierwszej " +"warstwy" msgid "Nozzle type" msgstr "Typ dyszy" -msgid "The metallic material of nozzle. This determines the abrasive resistance of nozzle, and what kind of filament can be printed" -msgstr "Materiał metalu dyszy. Określa on odporność na ścieranie dyszy oraz rodzaj filamentu, który można drukować" +msgid "" +"The metallic material of nozzle. This determines the abrasive resistance of " +"nozzle, and what kind of filament can be printed" +msgstr "" +"Materiał metalu dyszy. Określa on odporność na ścieranie dyszy oraz rodzaj " +"filamentu, który można drukować" msgid "Undefine" msgstr "Nie zdefiniowane" @@ -9605,8 +11386,12 @@ msgstr "Mosiądz" msgid "Nozzle HRC" msgstr "Twardość dyszy (HRC)" -msgid "The nozzle's hardness. Zero means no checking for nozzle's hardness during slicing." -msgstr "Twardość dyszy. Zero oznacza brak sprawdzania twardości dyszy podczas procesu cięcia." +msgid "" +"The nozzle's hardness. Zero means no checking for nozzle's hardness during " +"slicing." +msgstr "" +"Twardość dyszy. Zero oznacza brak sprawdzania twardości dyszy podczas " +"procesu cięcia." msgid "HRC" msgstr "HRC" @@ -9633,22 +11418,37 @@ msgid "Best object position" msgstr "Najlepsza pozycja obiektu" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." -msgstr "Najlepsza automatyczna pozycja w zakresie [0,1] w stosunku do kształtu stołu." - -msgid "Enable this option if machine has auxiliary part cooling fan. G-code command: M106 P2 S(0-255)." -msgstr "Włącz tę opcję, jeśli urządzenie ma dodatkowy wentylator chłodzenia części. Polecenie G-code: M106 P2 S(0-255)." +msgstr "" +"Najlepsza automatyczna pozycja w zakresie [0,1] w stosunku do kształtu stołu." msgid "" -"Start the fan this number of seconds earlier than its target start time (you can use fractional seconds). It assumes infinite acceleration for this time estimation, and will only take into account G1 and G0 moves (arc fitting is unsupported).\n" -"It won't move fan comands from custom gcodes (they act as a sort of 'barrier').\n" -"It won't move fan comands into the start gcode if the 'only custom start gcode' is activated.\n" +"Enable this option if machine has auxiliary part cooling fan. G-code " +"command: M106 P2 S(0-255)." +msgstr "" +"Włącz tę opcję, jeśli urządzenie ma dodatkowy wentylator chłodzenia części. " +"Polecenie G-code: M106 P2 S(0-255)." + +msgid "" +"Start the fan this number of seconds earlier than its target start time (you " +"can use fractional seconds). It assumes infinite acceleration for this time " +"estimation, and will only take into account G1 and G0 moves (arc fitting is " +"unsupported).\n" +"It won't move fan comands from custom gcodes (they act as a sort of " +"'barrier').\n" +"It won't move fan comands into the start gcode if the 'only custom start " +"gcode' is activated.\n" "Use 0 to deactivate." msgstr "" -"Uruchom wentylator na określoną liczbę sekund wcześniej niż planowany czas startu (możliwe jest użycie ułamków sekundy). Przyjmuje się nieskończone przyspieszenie dla oszacowania tego czasu, przy uwzględnieniu jedynie ruchów G1 i G0 (obsługa ruchów po łuku nie jest wspierana).\n" +"Uruchom wentylator na określoną liczbę sekund wcześniej niż planowany czas " +"startu (możliwe jest użycie ułamków sekundy). Przyjmuje się nieskończone " +"przyspieszenie dla oszacowania tego czasu, przy uwzględnieniu jedynie ruchów " +"G1 i G0 (obsługa ruchów po łuku nie jest wspierana).\n" "\n" -"To nie spowoduje zmiany ustawień wentylatora z niestandardowych G-code (działają one jak rodzaj bariery).\n" +"To nie spowoduje zmiany ustawień wentylatora z niestandardowych G-code " +"(działają one jak rodzaj bariery).\n" "\n" -"Nie spowoduje to również zmiany ustawień wentylatora w początkowym G-code, jeśli aktywowana jest opcja \"tylko niestandardowy początkowy G-code\".\n" +"Nie spowoduje to również zmiany ustawień wentylatora w początkowym G-code, " +"jeśli aktywowana jest opcja \"tylko niestandardowy początkowy G-code\".\n" "\n" "Ustaw 0, aby wyłączyć tę funkcję." @@ -9662,12 +11462,18 @@ msgid "Fan kick-start time" msgstr "Czas działania wentylatora w trybie wymuszonego startu" msgid "" -"Emit a max fan speed command for this amount of seconds before reducing to target speed to kick-start the cooling fan.\n" -"This is useful for fans where a low PWM/power may be insufficient to get the fan started spinning from a stop, or to get the fan up to speed faster.\n" +"Emit a max fan speed command for this amount of seconds before reducing to " +"target speed to kick-start the cooling fan.\n" +"This is useful for fans where a low PWM/power may be insufficient to get the " +"fan started spinning from a stop, or to get the fan up to speed faster.\n" "Set to 0 to deactivate." msgstr "" -"Wysyła polecenie maksymalnej prędkości wentylatora na określony czas, zanim zostanie zmniejszona do docelowej prędkości, aby uruchomić wentylator chłodzenia.\n" -"Jest to przydatne dla wentylatorów, gdzie niskie PWM/moc może być niewystarczające do uruchomienia wentylatora po zatrzymaniu lub do szybszego zwiększenia prędkości obrotowej\n" +"Wysyła polecenie maksymalnej prędkości wentylatora na określony czas, zanim " +"zostanie zmniejszona do docelowej prędkości, aby uruchomić wentylator " +"chłodzenia.\n" +"Jest to przydatne dla wentylatorów, gdzie niskie PWM/moc może być " +"niewystarczające do uruchomienia wentylatora po zatrzymaniu lub do szybszego " +"zwiększenia prędkości obrotowej\n" "\n" "Ustaw 0, aby wyłączyć tę funkcję." @@ -9687,7 +11493,8 @@ msgid "" "This option is enabled if machine support controlling chamber temperature\n" "G-code command: M141 S(0-255)" msgstr "" -"Ta opcja jest włączona, jeśli drukarka obsługuje kontrolę temperatury komory\n" +"Ta opcja jest włączona, jeśli drukarka obsługuje kontrolę temperatury " +"komory\n" "Polecenie G-code: M141 S(0-255)" msgid "Support air filtration" @@ -9718,8 +11525,16 @@ msgstr "Włącz tę opcję, jeśli chcesz używać wielu rodzajów płyt roboczy msgid "Label objects" msgstr "Etykietuj obiekty" -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 to, aby dodać komentarze do pliku G-Code, oznaczające ruchy druku, do jakiego obiektu należą. Jest to przydatne dla wtyczki Octoprint CancelObject. Te ustawienia NIE są kompatybilne z konfiguracją Single Extruder Multi Material i opcją Wipe into Object / Wipe into Infill." +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 to, aby dodać komentarze do pliku G-Code, oznaczające ruchy druku, do " +"jakiego obiektu należą. Jest to przydatne dla wtyczki Octoprint " +"CancelObject. Te ustawienia NIE są kompatybilne z konfiguracją Single " +"Extruder Multi Material i opcją Wipe into Object / Wipe into Infill." msgid "Exclude objects" msgstr "Wyłącz obiekty" @@ -9730,32 +11545,68 @@ msgstr "Włącz tę opcję, aby dodać polecenie EXCLUDE OBJECT do G-code" msgid "Verbose G-code" msgstr "Rozszerzony G-code" -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 to, aby uzyskać plik G-code z komentarzami, w którym każda linia jest wyjaśniana przez opisowy tekst. Jeśli drukujesz z karty SD, dodatkowy rozmiar pliku może spowolnić twoje oprogramowanie." +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 to, aby uzyskać plik G-code z komentarzami, w którym każda linia jest " +"wyjaśniana przez opisowy tekst. Jeśli drukujesz z karty SD, dodatkowy " +"rozmiar pliku może spowolnić twoje oprogramowanie." msgid "Infill combination" msgstr "Kombinacja wypełnienia" -msgid "Automatically Combine sparse infill of several layers to print together to reduce time. Wall is still printed with original layer height." -msgstr "Automatycznie łącz wypełnienie z kilku warstw, aby wydrukować je razem i zaoszczędzić czas. Ściana będzie nadal drukowana z pierwotną wysokością warstwy." +msgid "" +"Automatically Combine sparse infill of several layers to print together to " +"reduce time. Wall is still printed with original layer height." +msgstr "" +"Automatycznie łącz wypełnienie z kilku warstw, aby wydrukować je razem i " +"zaoszczędzić czas. Ściana będzie nadal drukowana z pierwotną wysokością " +"warstwy." msgid "Filament to print internal sparse infill." msgstr "Filament do druku wewnętrznego wypełnienia." -msgid "Line width of internal sparse infill. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Szerokość linii wewnętrznego wypełnienia. Jeśli jest wyrażona w procentach, zostanie obliczona na podstawie średnicy dyszy." +msgid "" +"Line width of internal sparse infill. If expressed as a %, it will be " +"computed over the nozzle diameter." +msgstr "" +"Szerokość linii wewnętrznego wypełnienia. Jeśli jest wyrażona w procentach, " +"zostanie obliczona na podstawie średnicy dyszy." msgid "Infill/Wall overlap" msgstr "Nakładanie wypełnienia na obrysy" -msgid "Infill area is enlarged slightly to overlap with wall for better bonding. The percentage value is relative to line width of sparse infill. Set this value to ~10-15% to minimize potential over extrusion and accumulation of material resulting in rough top surfaces." -msgstr "Obszar wypełnienia jest nieznacznie powiększony, aby częściowo zachodzić na ścianę i tym zapewnić lepsze połączenie. Wartość procentowa odnosi się do szerokości linii wypełnienia. Ustaw tę wartość na około 10-15%, aby uniknąć nadmiernej ekstruzji materiału, co może prowadzić do nierówności na górnej powierzchni wydruku." +#, no-c-format, no-boost-format +msgid "" +"Infill area is enlarged slightly to overlap with wall for better bonding. " +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" +"Obszar wypełnienia jest nieznacznie powiększony, aby częściowo zachodzić na " +"ścianę i tym zapewnić lepsze połączenie. Wartość procentowa odnosi się do " +"szerokości linii wypełnienia. Ustaw tę wartość na około 10-15%, aby uniknąć " +"nadmiernej ekstruzji materiału, co może prowadzić do nierówności na górnej " +"powierzchni wydruku." msgid "Top/Bottom solid infill/wall overlap" msgstr "Nachodzenie pełnego wypełnienia na ściany" -msgid "Top solid infill area is enlarged slightly to overlap with wall for better bonding and to minimize the appearance of pinholes where the top infill meets the walls. A value of 25-30% is a good starting point, minimising the appearance of pinholes. The percentage value is relative to line width of sparse infill" -msgstr "Górny obszar wypełnienia jest nieznacznie powiększony, aby zachodził na ścianę w celu lepszego połączenia i zminimalizowania pojawiania się otworów w miejscu, w którym górne wypełnienie styka się ze ścianami. Wartość 25-30% jest dobrym punktem wyjścia, minimalizującym pojawianie się otworów. Wartość procentowa odnosi się do szerokości linii wypełnienia" +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" +msgstr "" +"Górny obszar wypełnienia jest nieznacznie powiększony, aby zachodził na " +"ścianę w celu lepszego połączenia i zminimalizowania pojawiania się otworów " +"w miejscu, w którym górne wypełnienie styka się ze ścianami. Wartość 25-30% " +"jest dobrym punktem wyjścia, minimalizującym pojawianie się otworów. Wartość " +"procentowa odnosi się do szerokości linii wypełnienia" msgid "Speed of internal sparse infill" msgstr "Prędkość wewnętrznego wypełnienia" @@ -9763,26 +11614,39 @@ msgstr "Prędkość wewnętrznego wypełnienia" msgid "Interface shells" msgstr "Powłoki łączące" -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 "Wymuszaj generowanie warstw między sąsiadującymi materiałami/woluminami. Przydatne przy wydrukach z wieloma ekstruderami, materiałów o przejrzystej strukturze lub rozpuszczalnym materiale do drukowania podpór" +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 "" +"Wymuszaj generowanie warstw między sąsiadującymi materiałami/woluminami. " +"Przydatne przy wydrukach z wieloma ekstruderami, materiałów o przejrzystej " +"strukturze lub rozpuszczalnym materiale do drukowania podpór" msgid "Maximum width of a segmented region" msgstr "Maksymalna szerokość segmentowanej strefy" msgid "Maximum width of a segmented region. Zero disables this feature." -msgstr "Maksymalna szerokość segmentowanej strefy. Wartość zero wyłącza tę funkcję." +msgstr "" +"Maksymalna szerokość segmentowanej strefy. Wartość zero wyłącza tę funkcję." msgid "Interlocking depth of a segmented region" msgstr "Głębokość zazębiania się podzielonego na segmenty obszaru" msgid "Interlocking depth of a segmented region. Zero disables this feature." -msgstr "Głębokość blokowania obszaru segmentowego. Wartość zero wyłącza tę funkcję." +msgstr "" +"Głębokość blokowania obszaru segmentowego. Wartość zero wyłącza tę funkcję." msgid "Ironing Type" msgstr "Rodzaj prasowania" -msgid "Ironing is using small flow to print on same height of surface again to make flat surface more smooth. This setting controls which layer being ironed" -msgstr "Prasowanie polega na używaniu małego przepływu, aby ponownie wydrukować na tej samej wysokości powierzchnię, w celu uzyskania bardziej gładkiej powierzchni. Ta opcja kontroluje, który poziom jest prasowany" +msgid "" +"Ironing is using small flow to print on same height of surface again to make " +"flat surface more smooth. This setting controls which layer being ironed" +msgstr "" +"Prasowanie polega na używaniu małego przepływu, aby ponownie wydrukować na " +"tej samej wysokości powierzchnię, w celu uzyskania bardziej gładkiej " +"powierzchni. Ta opcja kontroluje, który poziom jest prasowany" msgid "No ironing" msgstr "Bez prasowania" @@ -9805,8 +11669,13 @@ msgstr "Wzór, który zostanie użyty podczas prasowania" msgid "Ironing flow" msgstr "Przepływ prasowania" -msgid "The amount of material to extrude during ironing. Relative to flow of normal layer height. Too high value results in overextrusion on the surface" -msgstr "Ilość materiału do wytłoczenia podczas prasowania. Względem przepływu o normalnej wysokości warstwy. Zbyt wysoka wartość powoduje nadmierną ekstruzję na powierzchni" +msgid "" +"The amount of material to extrude during ironing. Relative to flow of normal " +"layer height. Too high value results in overextrusion on the surface" +msgstr "" +"Ilość materiału do wytłoczenia podczas prasowania. Względem przepływu o " +"normalnej wysokości warstwy. Zbyt wysoka wartość powoduje nadmierną " +"ekstruzję na powierzchni" msgid "Ironing line spacing" msgstr "Odstęp między liniami" @@ -9823,17 +11692,27 @@ msgstr "Prędkość drukowania linii dla prasowania" msgid "Ironing angle" msgstr "Kąt prasowania" -msgid "The angle ironing is done at. A negative number disables this function and uses the default method." -msgstr "Kąt, pod jakim wykonywane jest prasowanie. Liczba ujemna wyłącza tę funkcję i używa domyślnej metody." +msgid "" +"The angle ironing is done at. A negative number disables this function and " +"uses the default method." +msgstr "" +"Kąt, pod jakim wykonywane jest prasowanie. Liczba ujemna wyłącza tę funkcję " +"i używa domyślnej metody." msgid "This gcode part is inserted at every layer change after lift z" -msgstr "Ten fragment G-code jest wstawiany przy każdej zmianie warstwy po podniesieniu osi Z" +msgstr "" +"Ten fragment G-code jest wstawiany przy każdej zmianie warstwy po " +"podniesieniu osi Z" msgid "Supports silent mode" msgstr "Obsługuje tryb cichy" -msgid "Whether the machine supports silent mode in which machine use lower acceleration to print" -msgstr "Czy drukarka obsługuje tryb cichy, w którym drukarka używa niższego przyspieszenia do druku" +msgid "" +"Whether the machine supports silent mode in which machine use lower " +"acceleration to print" +msgstr "" +"Czy drukarka obsługuje tryb cichy, w którym drukarka używa niższego " +"przyspieszenia do druku" msgid "Emit limits to G-code" msgstr "Wysyłaj limity do G-code" @@ -9845,11 +11724,16 @@ msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" "This option will be ignored if the g-code flavor is set to Klipper." msgstr "" -"Jeśli ta opcja jest włączona, limity maszyny zostaną wysłane do pliku G-code.\n" +"Jeśli ta opcja jest włączona, limity maszyny zostaną wysłane do pliku G-" +"code.\n" "Ta opcja zostanie zignorowana, jeśli wybrany jest G-code Klipper." -msgid "This G-code will be used as a code for the pause print. User can insert pause G-code in gcode viewer" -msgstr "Ten G-code zostanie użyty przy pauzie wydruku. Użytkownik może wstawić G-code do przeglądarki gcode" +msgid "" +"This G-code will be used as a code for the pause print. User can insert " +"pause G-code in gcode viewer" +msgstr "" +"Ten G-code zostanie użyty przy pauzie wydruku. Użytkownik może wstawić G-" +"code do przeglądarki gcode" msgid "This G-code will be used as a custom code" msgstr "Ten G-code będzie użyty jako niestandardowy" @@ -9862,13 +11746,22 @@ msgstr "" "Włącz kompensację przepływu dla małych obszarów wypełnienia\n" "\n" "\n" -"Jest to zaawansowana funkcja, która umożliwia dokładniejsze kontrolowanie, jak materiał wypełnienia jest nanoszony na małych obszarach" +"Jest to zaawansowana funkcja, która umożliwia dokładniejsze kontrolowanie, " +"jak materiał wypełnienia jest nanoszony na małych obszarach" msgid "Flow Compensation Model" msgstr "Model Kompensacji Przepływu" -msgid "Flow Compensation Model, used to adjust the flow for small infill areas. The model is expressed as a comma separated pair of values for extrusion length and flow correction factors, one per line, in the following format: \"1.234,5.678\"" -msgstr "Model kompensacji przepływu, używany do dostosowywania przepływu dla małych obszarów wypełnienia. Model jest wyrażony jako para wartości oddzielonych przecinkiem dla długości wytłoczenia i czynników korekty przepływu, jeden zestaw na linię, w następującym formacie: \"1.234,5.678\"" +msgid "" +"Flow Compensation Model, used to adjust the flow for small infill areas. The " +"model is expressed as a comma separated pair of values for extrusion length " +"and flow correction factors, one per line, in the following format: " +"\"1.234,5.678\"" +msgstr "" +"Model kompensacji przepływu, używany do dostosowywania przepływu dla małych " +"obszarów wypełnienia. Model jest wyrażony jako para wartości oddzielonych " +"przecinkiem dla długości wytłoczenia i czynników korekty przepływu, jeden " +"zestaw na linię, w następującym formacie: \"1.234,5.678\"" msgid "Maximum speed X" msgstr "Maksymalna prędkość X" @@ -9972,42 +11865,81 @@ msgstr "Maksymalne przyspieszenie podczas ruchów jałowych" msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" msgstr "Maksymalne przyspieszenie podróży (M204 T), dotyczy tylko Marlin 2" -msgid "Part cooling fan speed may be increased when auto cooling is enabled. This is the maximum speed limitation of part cooling fan" -msgstr "Prędkość wentylatora chłodzenia części może być zwiększona, gdy jest włączona funkcja automatycznego chłodzenia. To jest maksymalne ograniczenie prędkości wentylatora chłodzenia części" +msgid "" +"Part cooling fan speed may be increased when auto cooling is enabled. This " +"is the maximum speed limitation of part cooling fan" +msgstr "" +"Prędkość wentylatora chłodzenia części może być zwiększona, gdy jest " +"włączona funkcja automatycznego chłodzenia. To jest maksymalne ograniczenie " +"prędkości wentylatora chłodzenia części" msgid "Max" msgstr "Max" -msgid "The largest printable layer height for extruder. Used tp limits the maximum layer hight when enable adaptive layer height" -msgstr "Największa wysokość warstwy drukowalnej dla extrudera. Używane do ograniczenia maksymalnej wysokości warstwy podczas włączonej adaptacyjnej wysokości warstwy" +msgid "" +"The largest printable layer height for extruder. Used tp limits the maximum " +"layer hight when enable adaptive layer height" +msgstr "" +"Największa wysokość warstwy drukowalnej dla extrudera. Używane do " +"ograniczenia maksymalnej wysokości warstwy podczas włączonej adaptacyjnej " +"wysokości warstwy" msgid "Extrusion rate smoothing" msgstr "Wygładzanie przepływu ekstruzji" msgid "" -"This parameter smooths out sudden extrusion rate changes that happen when the printer transitions from printing a high flow (high speed/larger width) extrusion to a lower flow (lower speed/smaller width) extrusion and vice versa.\n" +"This parameter smooths out sudden extrusion rate changes that happen when " +"the printer transitions from printing a high flow (high speed/larger width) " +"extrusion to a lower flow (lower speed/smaller width) extrusion and vice " +"versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec can change over time. Higher values mean higher extrusion rate changes are allowed, resulting in faster speed transitions.\n" +"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"can change over time. Higher values mean higher extrusion rate changes are " +"allowed, resulting in faster speed transitions.\n" "\n" "A value of 0 disables the feature. \n" "\n" -"For a high speed, high flow direct drive printer (like the Bambu lab or Voron) this value is usually not needed. However it can provide some marginal benefit in certain cases where feature speeds vary greatly. For example, when there are aggressive slowdowns due to overhangs. In these cases a high value of around 300-350mm3/s2 is recommended as this allows for just enough smoothing to assist pressure advance achieve a smoother flow transition.\n" +"For a high speed, high flow direct drive printer (like the Bambu lab or " +"Voron) this value is usually not needed. However it can provide some " +"marginal benefit in certain cases where feature speeds vary greatly. For " +"example, when there are aggressive slowdowns due to overhangs. In these " +"cases a high value of around 300-350mm3/s2 is recommended as this allows for " +"just enough smoothing to assist pressure advance achieve a smoother flow " +"transition.\n" "\n" -"For slower printers without pressure advance, the value should be set much lower. A value of 10-15mm3/s2 is a good starting point for direct drive extruders and 5-10mm3/s2 for Bowden style. \n" +"For slower printers without pressure advance, the value should be set much " +"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " +"extruders and 5-10mm3/s2 for Bowden style. \n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" "Note: this parameter disables arc fitting." msgstr "" -"Ten parametr wygładza nagłe zmiany szybkości wytłaczania, które występują, gdy drukarka przechodzi od drukowania wytłaczania o wysokim przepływie (duża prędkość/większa szerokość) do wytłaczania o niższym przepływie (mniejsza prędkość/mniejsza szerokość) i odwrotnie.\n" +"Ten parametr wygładza nagłe zmiany szybkości wytłaczania, które występują, " +"gdy drukarka przechodzi od drukowania wytłaczania o wysokim przepływie (duża " +"prędkość/większa szerokość) do wytłaczania o niższym przepływie (mniejsza " +"prędkość/mniejsza szerokość) i odwrotnie.\n" "\n" -"Określa maksymalną szybkość, o jaką natężenie przepływu wytłaczania w mm3/s może zmieniać się w czasie. Wyższe wartości oznaczają, że dozwolone są większe zmiany szybkości wytłaczania, co skutkuje szybszymi przejściami prędkości.\n" +"Określa maksymalną szybkość, o jaką natężenie przepływu wytłaczania w mm3/s " +"może zmieniać się w czasie. Wyższe wartości oznaczają, że dozwolone są " +"większe zmiany szybkości wytłaczania, co skutkuje szybszymi przejściami " +"prędkości.\n" "\n" "Wartość 0 wyłącza tę funkcję.\n" "\n" -"W przypadku drukarek z napędem bezpośrednim o dużej prędkości i wysokim przepływie (takich jak Bambu lab lub Voron) wartość ta zwykle nie jest potrzebna. Może ona jednak zapewnić pewne marginalne korzyści w niektórych przypadkach, gdy prędkości funkcji znacznie się różnią. Na przykład, gdy występują agresywne spowolnienia spowodowane nawisami. W takich przypadkach zalecana jest wysoka wartość około 300-350 mm3/s2, ponieważ pozwala to na wystarczające wygładzenie, aby wspomóc wzrost ciśnienia w celu uzyskania płynniejszego przejścia przepływu.\n" +"W przypadku drukarek z napędem bezpośrednim o dużej prędkości i wysokim " +"przepływie (takich jak Bambu lab lub Voron) wartość ta zwykle nie jest " +"potrzebna. Może ona jednak zapewnić pewne marginalne korzyści w niektórych " +"przypadkach, gdy prędkości funkcji znacznie się różnią. Na przykład, gdy " +"występują agresywne spowolnienia spowodowane nawisami. W takich przypadkach " +"zalecana jest wysoka wartość około 300-350 mm3/s2, ponieważ pozwala to na " +"wystarczające wygładzenie, aby wspomóc wzrost ciśnienia w celu uzyskania " +"płynniejszego przejścia przepływu.\n" "\n" -"W przypadku wolniejszych drukarek bez przyspieszenia ciśnienia wartość ta powinna być znacznie niższa. Wartość 10-15 mm3/s2 jest dobrym punktem wyjścia dla extruderów z napędem bezpośrednim i 5-10 mm3/s2 dla extruderów typu Bowden.\n" +"W przypadku wolniejszych drukarek bez przyspieszenia ciśnienia wartość ta " +"powinna być znacznie niższa. Wartość 10-15 mm3/s2 jest dobrym punktem " +"wyjścia dla extruderów z napędem bezpośrednim i 5-10 mm3/s2 dla extruderów " +"typu Bowden.\n" "\n" "Ta funkcja jest znana jako Pressure Equalizer w Prusa slicer.\n" "\n" @@ -10020,15 +11952,21 @@ msgid "Smoothing segment length" msgstr "Długość odcinka do wygładzenia" msgid "" -"A lower value results in smoother extrusion rate transitions. However, this results in a significantly larger gcode file and more instructions for the printer to process. \n" +"A lower value results in smoother extrusion rate transitions. However, this " +"results in a significantly larger gcode file and more instructions for the " +"printer to process. \n" "\n" -"Default value of 3 works well for most cases. If your printer is stuttering, increase this value to reduce the number of adjustments made\n" +"Default value of 3 works well for most cases. If your printer is stuttering, " +"increase this value to reduce the number of adjustments made\n" "\n" "Allowed values: 1-5" msgstr "" -"Mniejsza wartość skutkuje płynniejszymi przejściami prędkości ekstruzji. Jednakże prowadzi to do znacznie większego pliku gcode i większej liczby instrukcji do przetworzenia przez drukarkę.\n" +"Mniejsza wartość skutkuje płynniejszymi przejściami prędkości ekstruzji. " +"Jednakże prowadzi to do znacznie większego pliku gcode i większej liczby " +"instrukcji do przetworzenia przez drukarkę.\n" "\n" -"Domyślna wartość 3 działa dobrze dla większości przypadków. Jeśli Twoja drukarka się zacina, zwiększ tę wartość, aby zredukować liczbę dostosowań.\n" +"Domyślna wartość 3 działa dobrze dla większości przypadków. Jeśli Twoja " +"drukarka się zacina, zwiększ tę wartość, aby zredukować liczbę dostosowań.\n" "\n" "Dozwolone wartości: 1-5" @@ -10036,23 +11974,39 @@ msgid "Minimum speed for part cooling fan" msgstr "Minimalna prędkość wentylatora chłodzenia części" msgid "" -"Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed during printing except the first several layers which is defined by no cooling layers.\n" -"Please enable auxiliary_fan in printer settings to use this feature. G-code command: M106 P2 S(0-255)" +"Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed " +"during printing except the first several layers which is defined by no " +"cooling layers.\n" +"Please enable auxiliary_fan in printer settings to use this feature. G-code " +"command: M106 P2 S(0-255)" msgstr "" -"Prędkość wentylatora pomocniczego. Wentylator pomocniczy będzie pracować z tą prędkością podczas drukowania, z wyjątkiem pierwszych kilku warstw, które są określone jako warstwy bez chłodzenia.\n" -"Proszę włączyć opcję auxiliary_fan w ustawieniach drukarki, aby skorzystać z tej funkcji. Polecenie G-code: M106 P2 S(0-255)" +"Prędkość wentylatora pomocniczego. Wentylator pomocniczy będzie pracować z " +"tą prędkością podczas drukowania, z wyjątkiem pierwszych kilku warstw, które " +"są określone jako warstwy bez chłodzenia.\n" +"Proszę włączyć opcję auxiliary_fan w ustawieniach drukarki, aby skorzystać z " +"tej funkcji. Polecenie G-code: M106 P2 S(0-255)" msgid "Min" msgstr "Min" -msgid "The lowest printable layer height for extruder. Used tp limits the minimum layer hight when enable adaptive layer height" -msgstr "Najniższa możliwa do wydrukowania wysokość warstwy dla extrudera. Stosowana jako dolna granica dla adaptacyjnej wysokości warstw" +msgid "" +"The lowest printable layer height for extruder. Used tp limits the minimum " +"layer hight when enable adaptive layer height" +msgstr "" +"Najniższa możliwa do wydrukowania wysokość warstwy dla extrudera. Stosowana " +"jako dolna granica dla adaptacyjnej wysokości warstw" msgid "Min print speed" msgstr "Minimalna prędkość druku" -msgid "The minimum printing speed that the printer will slow down to to attempt to maintain the minimum layer time above, when slow down for better layer cooling is enabled." -msgstr "Minimalna prędkość druku, do której drukarka zwolni, aby zachować minimalny czas warstwy powyżej, gdy włączona jest opcja zwalniania dla lepszego schładzania warstwy." +msgid "" +"The minimum printing speed that the printer will slow down to to attempt to " +"maintain the minimum layer time above, when slow down for better layer " +"cooling is enabled." +msgstr "" +"Minimalna prędkość druku, do której drukarka zwolni, aby zachować minimalny " +"czas warstwy powyżej, gdy włączona jest opcja zwalniania dla lepszego " +"schładzania warstwy." msgid "Nozzle diameter" msgstr "Średnica dyszy" @@ -10063,14 +12017,21 @@ msgstr "Średnica dyszy" msgid "Configuration notes" msgstr "Uwagi do konfiguracji" -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." +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." msgid "Host Type" msgstr "Typ hosta" -msgid "Orca Slicer can upload G-code files to a printer host. This field must contain the kind of the host." -msgstr "Orca Slicer może przesyłać pliki G-code do hosta drukarki. To pole musi zawierać rodzaj hosta." +msgid "" +"Orca Slicer can upload G-code files to a printer host. This field must " +"contain the kind of the host." +msgstr "" +"Orca Slicer może przesyłać pliki G-code do hosta drukarki. To pole musi " +"zawierać rodzaj hosta." msgid "Nozzle volume" msgstr "Objętość dyszy" @@ -10088,25 +12049,45 @@ msgid "Cooling tube length" msgstr "Długość rurki chłodzącej" msgid "Length of the cooling tube to limit space for cooling moves inside it." -msgstr "Długość rurki chłodzącej ograniczająca przestrzeń na ruchy chłodzące wewnątrz." +msgstr "" +"Długość rurki chłodzącej ograniczająca przestrzeń na ruchy chłodzące " +"wewnątrz." msgid "High extruder current on filament swap" msgstr "Wysoki prąd extrudera przy wymianie filamentu" -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 "Może być korzystne zwiększenie prądu silnika extrudera podczas wymiany filamentu, aby umożliwić szybkie podawanie i przezwyciężenie oporu podczas ładowania filamentu o nieprawidłowym kształcie końcówki." +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 "" +"Może być korzystne zwiększenie prądu silnika extrudera podczas wymiany " +"filamentu, aby umożliwić szybkie podawanie i przezwyciężenie oporu podczas " +"ładowania filamentu o nieprawidłowym kształcie końcówki." msgid "Filament parking position" msgstr "Pozycja parkowania filamentu" -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 extrudera od pozycji, gdzie filament jest parkowany przy rozładowaniu. Powinno to odpowiadać wartości w oprogramowaniu drukarki." +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 extrudera od pozycji, gdzie filament jest parkowany przy " +"rozładowaniu. Powinno to odpowiadać wartości w oprogramowaniu drukarki." msgid "Extra loading distance" msgstr "Dodatkowa długość ładowania" -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." +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." msgid "Start end points" msgstr "Początkowe i końcowe punkty" @@ -10117,32 +12098,54 @@ msgstr "Punkty początkowe i końcowe, od obszaru cięcia do kanału wyrzutowego msgid "Reduce infill retraction" msgstr "Zmniejszanie retrakcji wypełnienia" -msgid "Don't retract when the travel is in infill area absolutely. That means the oozing can't been seen. This can reduce times of retraction for complex model and save printing time, but make slicing and G-code generating slower" -msgstr "Nie wykonuj retrakcji, gdy ruch odbywa się całkowicie w obszarze wypełnienia. Oznacza to, że wyciek nie będzie widoczny. Może to zmniejszyć liczbę retrakcji dla skomplikowanego modelu i zaoszczędzić czas druku, ale spowolnić krojenie i generowanie G-code" +msgid "" +"Don't retract when the travel is in infill area absolutely. That means the " +"oozing can't been seen. This can reduce times of retraction for complex " +"model and save printing time, but make slicing and G-code generating slower" +msgstr "" +"Nie wykonuj retrakcji, gdy ruch odbywa się całkowicie w obszarze " +"wypełnienia. Oznacza to, że wyciek nie będzie widoczny. Może to zmniejszyć " +"liczbę retrakcji dla skomplikowanego modelu i zaoszczędzić czas druku, ale " +"spowolnić krojenie i generowanie G-code" msgid "Filename format" msgstr "Format nazwy pliku" msgid "User can self-define the project file name when export" -msgstr "Użytkownik może samodzielnie zdefiniować nazwę pliku projektu podczas eksportu" +msgstr "" +"Użytkownik może samodzielnie zdefiniować nazwę pliku projektu podczas " +"eksportu" msgid "Make overhangs printable" msgstr "Drukuj nawisy bez podpór" msgid "Modify the geometry to print overhangs without support material." -msgstr "Modyfikuje tak geometrię, aby drukować elementy wystające bez materiału podporowego." +msgstr "" +"Modyfikuje tak geometrię, aby drukować elementy wystające bez materiału " +"podporowego." msgid "Make overhangs printable - Maximum angle" msgstr "Drukuj nawisy bez podpór - Maksymalny kąt" -msgid "Maximum angle of overhangs to allow after making more steep overhangs printable.90° will not change the model at all and allow any overhang, while 0 will replace all overhangs with conical material." -msgstr "Maksymalny kąt elementów wystających dozwolony po umożliwieniu drukowania bardziej stromych elementów. 90° nie zmieni w ogóle modelu i pozwoli na dowolny element wystający, podczas gdy 0° zastąpi wszystkie elementy wystające materiałem stożkowym." +msgid "" +"Maximum angle of overhangs to allow after making more steep overhangs " +"printable.90° will not change the model at all and allow any overhang, while " +"0 will replace all overhangs with conical material." +msgstr "" +"Maksymalny kąt elementów wystających dozwolony po umożliwieniu drukowania " +"bardziej stromych elementów. 90° nie zmieni w ogóle modelu i pozwoli na " +"dowolny element wystający, podczas gdy 0° zastąpi wszystkie elementy " +"wystające materiałem stożkowym." msgid "Make overhangs printable - Hole area" msgstr "Drukuj nawisy bez podpór - Obszar otworów" -msgid "Maximum area of a hole in the base of the model before it's filled by conical material.A value of 0 will fill all the holes in the model base." -msgstr "Maksymalna powierzchnia otworu w podstawie modelu przed jego wypełnieniem materiałem stożkowym. Wartość 0 wypełni wszystkie otwory w podstawie modelu." +msgid "" +"Maximum area of a hole in the base of the model before it's filled by " +"conical material.A value of 0 will fill all the holes in the model base." +msgstr "" +"Maksymalna powierzchnia otworu w podstawie modelu przed jego wypełnieniem " +"materiałem stożkowym. Wartość 0 wypełni wszystkie otwory w podstawie modelu." msgid "mm²" msgstr "mm²" @@ -10151,11 +12154,19 @@ msgid "Detect overhang wall" msgstr "Wykrywanie ścian nawisu" #, c-format, boost-format -msgid "Detect the overhang percentage relative to line width and use different speed to print. For 100%% overhang, bridge speed is used." -msgstr "Określ procentowy udział nawisów w stosunku do szerokości ekstruzji i użyj różnych prędkości do druku. Dla 100%% nawisów, zostanie użyta prędkość mostu." +msgid "" +"Detect the overhang percentage relative to line width and use different " +"speed to print. For 100%% overhang, bridge speed is used." +msgstr "" +"Określ procentowy udział nawisów w stosunku do szerokości ekstruzji i użyj " +"różnych prędkości do druku. Dla 100%% nawisów, zostanie użyta prędkość mostu." -msgid "Line width of inner wall. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Szerokość linii wewnętrznej ściany. Jeśli wyrażona w procentach, zostanie obliczona na podstawie średnicy dyszy." +msgid "" +"Line width of inner wall. If expressed as a %, it will be computed over the " +"nozzle diameter." +msgstr "" +"Szerokość linii wewnętrznej ściany. Jeśli wyrażona w procentach, zostanie " +"obliczona na podstawie średnicy dyszy." msgid "Speed of inner wall" msgstr "Prędkość wewnętrznej ściany" @@ -10167,20 +12178,38 @@ msgid "Alternate extra wall" msgstr "Alternatywna dodatkowa ściana" msgid "" -"This setting adds an extra wall to every other layer. This way the infill gets wedged vertically between the walls, resulting in stronger prints. \n" +"This setting adds an extra wall to every other layer. This way the infill " +"gets wedged vertically between the walls, resulting in stronger prints. \n" "\n" -"When this option is enabled, the ensure vertical shell thickness option needs to be disabled. \n" +"When this option is enabled, the ensure vertical shell thickness option " +"needs to be disabled. \n" "\n" -"Using lightning infill together with this option is not recommended as there is limited infill to anchor the extra perimeters to." +"Using lightning infill together with this option is not recommended as there " +"is limited infill to anchor the extra perimeters to." msgstr "" -"To ustawienie dodaje dodatkową ścianę do co drugiej warstwy. W ten sposób wypełnienie jest osadzone pionowo między ścianami, co prowadzi do uzyskania wydruków o większej wytrzymałości.\n" +"To ustawienie dodaje dodatkową ścianę do co drugiej warstwy. W ten sposób " +"wypełnienie jest osadzone pionowo między ścianami, co prowadzi do uzyskania " +"wydruków o większej wytrzymałości.\n" "\n" -"Kiedy ta opcja jest włączona, to opcja \"zapewnij stałą pionową grubość powłoki\" musi być wyłączona.\n" +"Kiedy ta opcja jest włączona, to opcja \"zapewnij stałą pionową grubość " +"powłoki\" musi być wyłączona.\n" "\n" -"Nie jest zalecane korzystanie z wypełnienia typu \"lightning\" jednocześnie z tą opcją, ponieważ wypełnienie to jest ograniczone i nie jest w stanie dostarczyć wystarczającego wsparcia dla dodatkowych obwodów." +"Nie jest zalecane korzystanie z wypełnienia typu \"lightning\" jednocześnie " +"z tą opcją, ponieważ wypełnienie to jest ograniczone i nie jest w stanie " +"dostarczyć wystarczającego wsparcia dla dodatkowych obwodów." -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 Orca Slicer config settings by reading environment variables." -msgstr "Jeśli chcesz przetworzyć wynikowy G-code za pomocą niestandardowych skryptów, wystarczy, że wpiszesz tutaj ich pełne ścieżki. Aby oddzielić kilka skryptów, użyj średnika. Skrypty otrzymają pełną ścieżkę do pliku G-code jako pierwszy argument, a także będą mogły uzyskać dostęp do ustawień konfiguracyjnych Orca Slicer, zytając zmienne środowiskowe." +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 Orca Slicer config settings by reading " +"environment variables." +msgstr "" +"Jeśli chcesz przetworzyć wynikowy G-code za pomocą niestandardowych " +"skryptów, wystarczy, że wpiszesz tutaj ich pełne ścieżki. Aby oddzielić " +"kilka skryptów, użyj średnika. Skrypty otrzymają pełną ścieżkę do pliku G-" +"code jako pierwszy argument, a także będą mogły uzyskać dostęp do ustawień " +"konfiguracyjnych Orca Slicer, zytając zmienne środowiskowe." msgid "Printer notes" msgstr "Notatki o drukarce" @@ -10192,7 +12221,9 @@ msgid "Raft contact Z distance" msgstr "Odległość Z kontaktu z tratwą" msgid "Z gap between object and raft. Ignored for soluble interface" -msgstr "Dystans między modelem, a raftem, mierzony w poziomie. Ignorowany dla rozpuszczalnych warstw łączących" +msgstr "" +"Dystans między modelem, a raftem, mierzony w poziomie. Ignorowany dla " +"rozpuszczalnych warstw łączących" msgid "Raft expansion" msgstr "Rozszerzenie tratwy" @@ -10210,28 +12241,47 @@ msgid "Initial layer expansion" msgstr "Rozszerzenie pierwszej warstwy" msgid "Expand the first raft or support layer to improve bed plate adhesion" -msgstr "Rozszerz pierwszą warstwę tratwy lub podpory, aby poprawić przyczepność do płyty grzewczej" +msgstr "" +"Rozszerz pierwszą warstwę tratwy lub podpory, aby poprawić przyczepność do " +"płyty grzewczej" msgid "Raft layers" msgstr "Ilość warstw tratwy" -msgid "Object will be raised by this number of support layers. Use this function to avoid wrapping when print ABS" -msgstr "Model zostanie podniesiony o zadaną ilość warstw i umieszczony na podporach. Użyj tej funkcji, aby uniknąć deformacji podczas drukowania ABS" +msgid "" +"Object will be raised by this number of support layers. Use this function to " +"avoid wrapping when print ABS" +msgstr "" +"Model zostanie podniesiony o zadaną ilość warstw i umieszczony na podporach. " +"Użyj tej funkcji, aby uniknąć deformacji podczas drukowania ABS" -msgid "G-code path is genereated after simplifing the contour of model to avoid too much points and gcode lines in gcode file. Smaller value means higher resolution and more time to slice" -msgstr "Ścieżka G-code jest generowana po uproszczeniu konturu modelu, aby uniknąć zbyt wielu punktów i linii w pliku G-code. Mniejsza wartość oznacza wyższą rozdzielczość i więcej czasu na krojenie" +msgid "" +"G-code path is genereated after simplifing the contour of model to avoid too " +"much points and gcode lines in gcode file. Smaller value means higher " +"resolution and more time to slice" +msgstr "" +"Ścieżka G-code jest generowana po uproszczeniu konturu modelu, aby uniknąć " +"zbyt wielu punktów i linii w pliku G-code. Mniejsza wartość oznacza wyższą " +"rozdzielczość i więcej czasu na krojenie" msgid "Travel distance threshold" msgstr "Próg odległości podróży" -msgid "Only trigger retraction when the travel distance is longer than this threshold" -msgstr "Wywołaj retrakcję tylko wtedy, gdy dystans ruchu jałowego jest dłuższy niż ta wartość" +msgid "" +"Only trigger retraction when the travel distance is longer than this " +"threshold" +msgstr "" +"Wywołaj retrakcję tylko wtedy, gdy dystans ruchu jałowego jest dłuższy niż " +"ta wartość" msgid "Retract amount before wipe" msgstr "Długość retrakcji przed ruchem czyszczącym" -msgid "The length of fast retraction before wipe, relative to retraction length" -msgstr "Długość szybkiej retrakcji przed czyszczeniem, w stosunku do długości retrakcji." +msgid "" +"The length of fast retraction before wipe, relative to retraction length" +msgstr "" +"Długość szybkiej retrakcji przed czyszczeniem, w stosunku do długości " +"retrakcji." msgid "Retract when change layer" msgstr "Retrakcja przy zmianie warstwy" @@ -10242,38 +12292,71 @@ msgstr "Wymuś retrakcję przy zmianie warstwy" msgid "Retraction Length" msgstr "Długość retrakcji" -msgid "Some amount of material in extruder is pulled back to avoid ooze during long travel. Set zero to disable retraction" -msgstr "Pewna ilość materiału w ekstruderze jest cofana, aby zapobiec wyciekowi filamentu podczas długiego ruchu. Ustaw zero, aby zablokować retrakcje" +msgid "" +"Some amount of material in extruder is pulled back to avoid ooze during long " +"travel. Set zero to disable retraction" +msgstr "" +"Pewna ilość materiału w ekstruderze jest cofana, aby zapobiec wyciekowi " +"filamentu podczas długiego ruchu. Ustaw zero, aby zablokować retrakcje" msgid "Long retraction when cut(experimental)" msgstr "Długość retrakcji przed odcięciem filamentu (eksperymentalna)" -msgid "Experimental feature.Retracting and cutting off the filament at a longer distance during changes to minimize purge.While this reduces flush significantly, it may also raise the risk of nozzle clogs or other printing problems." -msgstr "Funkcja eksperymentalna. Wycofanie i odcięcie filamentu na większej odległości podczas jego zmian w celu zminimalizowania objętości płukania. Chociaż znacząco zmniejszy to zużycie filamentu, może to również zwiększyć ryzyko zatkania dyszy lub innych problemów podczas drukowania." +msgid "" +"Experimental feature.Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge.While this reduces flush " +"significantly, it may also raise the risk of nozzle clogs or other printing " +"problems." +msgstr "" +"Funkcja eksperymentalna. Wycofanie i odcięcie filamentu na większej " +"odległości podczas jego zmian w celu zminimalizowania objętości płukania. " +"Chociaż znacząco zmniejszy to zużycie filamentu, może to również zwiększyć " +"ryzyko zatkania dyszy lub innych problemów podczas drukowania." msgid "Retraction distance when cut" msgstr "Długość retrakcji podczas cięcia" -msgid "Experimental feature.Retraction length before cutting off during filament change" -msgstr "Funkcja eksperymentalna. Długość retrakcji przed odcięciem podczas zmiany filamentu" +msgid "" +"Experimental feature.Retraction length before cutting off during filament " +"change" +msgstr "" +"Funkcja eksperymentalna. Długość retrakcji przed odcięciem podczas zmiany " +"filamentu" msgid "Z hop when retract" msgstr "Z-hop podczas retrakcji" -msgid "Whenever the retraction is done, the nozzle is lifted a little to create clearance between nozzle and the print. It prevents nozzle from hitting the print when travel move. Using spiral line to lift z can prevent stringing" -msgstr "Zawsze gdy wykonana jest retrakcja, dysza jest nieco podnoszona, aby stworzyć odstęp między dyszą a wydrukiem. Zapobiega to uderzeniu dyszy w wydruk podczas ruchu jałowego. Użycie linii spiralnej do podniesienia Z może zapobiec powstawaniu strun" +msgid "" +"Whenever the retraction is done, the nozzle is lifted a little to create " +"clearance between nozzle and the print. It prevents nozzle from hitting the " +"print when travel move. Using spiral line to lift z can prevent stringing" +msgstr "" +"Zawsze gdy wykonana jest retrakcja, dysza jest nieco podnoszona, aby " +"stworzyć odstęp między dyszą a wydrukiem. Zapobiega to uderzeniu dyszy w " +"wydruk podczas ruchu jałowego. Użycie linii spiralnej do podniesienia Z może " +"zapobiec powstawaniu strun" msgid "Z hop lower boundary" msgstr "Dolna granica Z-hop" -msgid "Z hop will only come into effect when Z is above this value and is below the parameter: \"Z hop upper boundary\"" -msgstr "Jeśli podana jest dodatnia wartość, oś Z będzie podnosić się tylko poniżej ustawionej tutaj granicy. W ten sposób możesz zablokować podnoszenie się osi Z powyżej ustawionej wysokości." +msgid "" +"Z hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z hop upper boundary\"" +msgstr "" +"Jeśli podana jest dodatnia wartość, oś Z będzie podnosić się tylko poniżej " +"ustawionej tutaj granicy. W ten sposób możesz zablokować podnoszenie się osi " +"Z powyżej ustawionej wysokości." msgid "Z hop upper boundary" msgstr "Górna granica Z-hop" -msgid "If this value is positive, Z hop will only come into effect when Z is above the parameter: \"Z hop lower boundary\" and is below this value" -msgstr "Jeśli podano wartość dodatnią, oś Z będzie podnosić się tylko powyżej określonej tutaj wysokości. Dzięki temu możesz wyłączyć podnoszenie osi Z podczas drukowania pierwszych warstw (na początku drukowania)." +msgid "" +"If this value is positive, Z hop will only come into effect when Z is above " +"the parameter: \"Z hop lower boundary\" and is below this value" +msgstr "" +"Jeśli podano wartość dodatnią, oś Z będzie podnosić się tylko powyżej " +"określonej tutaj wysokości. Dzięki temu możesz wyłączyć podnoszenie osi Z " +"podczas drukowania pierwszych warstw (na początku drukowania)." msgid "Z hop type" msgstr "Typ Z-hop" @@ -10287,20 +12370,32 @@ msgstr "Spiralny" msgid "Only lift Z above" msgstr "Z-hop tylko powyżej" -msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z." -msgstr "Jeśli ustawisz to na wartość dodatnią, podnoszenie Z będzie miało miejsce tylko powyżej określonego bezwzględnego Z." +msgid "" +"If you set this to a positive value, Z lift will only take place above the " +"specified absolute Z." +msgstr "" +"Jeśli ustawisz to na wartość dodatnią, podnoszenie Z będzie miało miejsce " +"tylko powyżej określonego bezwzględnego Z." msgid "Only lift Z below" msgstr "Z-hop tylko poniżej" -msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z." -msgstr "Jeśli ustawisz to na wartość dodatnią, podnoszenie Z będzie miało miejsce tylko poniżej określonego bezwzględnego Z." +msgid "" +"If you set this to a positive value, Z lift will only take place below the " +"specified absolute Z." +msgstr "" +"Jeśli ustawisz to na wartość dodatnią, podnoszenie Z będzie miało miejsce " +"tylko poniżej określonego bezwzględnego Z." msgid "On surfaces" msgstr "Na powierzchniach" -msgid "Enforce Z Hop behavior. This setting is impacted by the above settings (Only lift Z above/below)." -msgstr "Wymuszaj zachowanie Z-hop. To ustawienie jest zależne od ustawień powyżej (Z-hop tylko powyżej/poniżej)." +msgid "" +"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"lift Z above/below)." +msgstr "" +"Wymuszaj zachowanie Z-hop. To ustawienie jest zależne od ustawień powyżej (Z-" +"hop tylko powyżej/poniżej)." msgid "All Surfaces" msgstr "Wszystkie powierzchnie" @@ -10317,11 +12412,19 @@ msgstr "Na górnych i dolnych" msgid "Extra length on restart" msgstr "Dodatkowa długość przed wznowieniem" -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 "Gdy retrakcja jest kompensowana po ruchu jałowym, ekstruder przepycha tę dodatkową ilość filamentu. To opcja jest rzadko potrzebna." +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 "" +"Gdy retrakcja jest kompensowana po ruchu jałowym, ekstruder przepycha tę " +"dodatkową ilość filamentu. To opcja jest rzadko potrzebna." -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, extruder przepchnie taką dodatkową ilość filamentu." +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, extruder przepchnie " +"taką dodatkową ilość filamentu." msgid "Retraction Speed" msgstr "Prędkość retrakcji" @@ -10332,14 +12435,23 @@ msgstr "Prędkość retrakcji" msgid "Deretraction Speed" msgstr "Prędkość deretrakcji" -msgid "Speed for reloading filament into extruder. Zero means same speed with retraction" -msgstr "Prędkość ponownego załadowania filamentu do extrudera. Zero oznacza tę samą prędkość co retrakcja" +msgid "" +"Speed for reloading filament into extruder. Zero means same speed with " +"retraction" +msgstr "" +"Prędkość ponownego załadowania filamentu do extrudera. Zero oznacza tę samą " +"prędkość co retrakcja" msgid "Use firmware retraction" msgstr "Użyj retrakcji z firmware" -msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin." -msgstr "To eksperymentalne ustawienie używa komend G10 i G11, aby oprogramowanie obsługiwało retrakcję. Jest to obsługiwane tylko w najnowszych wersjach Marlin." +msgid "" +"This experimental setting uses G10 and G11 commands to have the firmware " +"handle the retraction. This is only supported in recent Marlin." +msgstr "" +"To eksperymentalne ustawienie używa komend G10 i G11, aby oprogramowanie " +"obsługiwało retrakcję. Jest to obsługiwane tylko w najnowszych wersjach " +"Marlin." msgid "Show auto-calibration marks" msgstr "Pokaż znaczniki autokalibracji" @@ -10347,8 +12459,11 @@ msgstr "Pokaż znaczniki autokalibracji" msgid "Disable set remaining print time" msgstr "Wyłącz ustawianie pozostałego czasu druku" -msgid "Disable generating of the M73: Set remaining print time in the final gcode" -msgstr "Zablokuj generowanie polecenia M73: Ustaw pozostały czas druku w końcowym G-code" +msgid "" +"Disable generating of the M73: Set remaining print time in the final gcode" +msgstr "" +"Zablokuj generowanie polecenia M73: Ustaw pozostały czas druku w końcowym G-" +"code" msgid "Seam position" msgstr "Pozycja szwu" @@ -10371,69 +12486,118 @@ msgstr "Losowo" msgid "Staggered inner seams" msgstr "Przesunięte wewnętrzne szwy" -msgid "This option causes the inner seams to be shifted backwards based on their depth, forming a zigzag pattern." -msgstr "Ta opcja powoduje, że wewnętrzne szwy są przesunięte do tyłu w oparciu o ich głębokość, tworząc wzór zygzaka." +msgid "" +"This option causes the inner seams to be shifted backwards based on their " +"depth, forming a zigzag pattern." +msgstr "" +"Ta opcja powoduje, że wewnętrzne szwy są przesunięte do tyłu w oparciu o ich " +"głębokość, tworząc wzór zygzaka." msgid "Seam gap" msgstr "Szczelina szwu" msgid "" -"In order to reduce the visibility of the seam in a closed loop extrusion, the loop is interrupted and shortened by a specified amount.\n" -"This amount can be specified in millimeters or as a percentage of the current extruder diameter. The default value for this parameter is 10%." +"In order to reduce the visibility of the seam in a closed loop extrusion, " +"the loop is interrupted and shortened by a specified amount.\n" +"This amount can be specified in millimeters or as a percentage of the " +"current extruder diameter. The default value for this parameter is 10%." msgstr "" -"Aby zmniejszyć widoczność szwu w ekstruzji zamkniętej pętli, pętla jest przerywana i skracana o określoną ilość.\n" -"Ta ilość może być określona w milimetrach lub jako procent obecnej średnicy extrudera. Domyślna wartość tego parametru to 10%." +"Aby zmniejszyć widoczność szwu w ekstruzji zamkniętej pętli, pętla jest " +"przerywana i skracana o określoną ilość.\n" +"Ta ilość może być określona w milimetrach lub jako procent obecnej średnicy " +"extrudera. Domyślna wartość tego parametru to 10%." msgid "Scarf joint seam (beta)" msgstr "Szew ukośny (beta)" msgid "Use scarf joint to minimize seam visibility and increase seam strength." -msgstr "Zastosuj szew ukośny, aby zminimalizować widoczność szwu i zwiększyć jego wytrzymałość." +msgstr "" +"Zastosuj szew ukośny, aby zminimalizować widoczność szwu i zwiększyć jego " +"wytrzymałość." msgid "Conditional scarf joint" msgstr "Warunkowe szwy ukośne" -msgid "Apply scarf joints only to smooth perimeters where traditional seams do not conceal the seams at sharp corners effectively." -msgstr "Zastosuj szwy ukośne jedynie do gładkich obwodów, gdzie tradycyjne szwy nie maskują skutecznie szwów w ostrych narożnikach." +msgid "" +"Apply scarf joints only to smooth perimeters where traditional seams do not " +"conceal the seams at sharp corners effectively." +msgstr "" +"Zastosuj szwy ukośne jedynie do gładkich obwodów, gdzie tradycyjne szwy nie " +"maskują skutecznie szwów w ostrych narożnikach." msgid "Conditional angle threshold" msgstr "Warunkowy próg kąta" msgid "" -"This option sets the threshold angle for applying a conditional scarf joint seam.\n" -"If the maximum angle within the perimeter loop exceeds this value (indicating the absence of sharp corners), a scarf joint seam will be used. The default value is 155°." +"This option sets the threshold angle for applying a conditional scarf joint " +"seam.\n" +"If the maximum angle within the perimeter loop exceeds this value " +"(indicating the absence of sharp corners), a scarf joint seam will be used. " +"The default value is 155°." msgstr "" "Ten parametr określa minimalny kąt do zastosowania szwu ukośnego.\n" -"Jeśli maksymalny kąt w obrębie pętli obwodu przekroczy tę wartość (co wskazuje na brak ostrych narożników), zostanie użyty szew ukośny. Domyślna wartość to 155°." +"Jeśli maksymalny kąt w obrębie pętli obwodu przekroczy tę wartość (co " +"wskazuje na brak ostrych narożników), zostanie użyty szew ukośny. Domyślna " +"wartość to 155°." msgid "Conditional overhang threshold" msgstr "Wartość progowa nawisu" #, no-c-format, no-boost-format -msgid "This option determines the overhang threshold for the application of scarf joint seams. If the unsupported portion of the perimeter is less than this threshold, scarf joint seams will be applied. The default threshold is set at 40% of the external wall's width. Due to performance considerations, the degree of overhang is estimated." -msgstr "Ten parametr określa wartości progowe nawisu dla zastosowania szwu ukośnego. Jeśli niepodparta część obwodu jest mniejsza niż ten próg, zostanie zastosowany szew ukośny. Domyślny próg jest ustawiony na 40% szerokości zewnętrznego obwodu. Ze względów wydajnościowych stopień nawisu jest szacowany." +msgid "" +"This option determines the overhang threshold for the application of scarf " +"joint seams. If the unsupported portion of the perimeter is less than this " +"threshold, scarf joint seams will be applied. The default threshold is set " +"at 40% of the external wall's width. Due to performance considerations, the " +"degree of overhang is estimated." +msgstr "" +"Ten parametr określa wartości progowe nawisu dla zastosowania szwu ukośnego. " +"Jeśli niepodparta część obwodu jest mniejsza niż ten próg, zostanie " +"zastosowany szew ukośny. Domyślny próg jest ustawiony na 40% szerokości " +"zewnętrznego obwodu. Ze względów wydajnościowych stopień nawisu jest " +"szacowany." msgid "Scarf joint speed" msgstr "Prędkość szwu ukośnego" -msgid "This option sets the printing speed for scarf joints. It is recommended to print scarf joints at a slow speed (less than 100 mm/s). It's also advisable to enable 'Extrusion rate smoothing' if the set speed varies significantly from the speed of the outer or inner walls. If the speed specified here is higher than the speed of the outer or inner walls, the printer will default to the slower of the two speeds. When specified as a percentage (e.g., 80%), the speed is calculated based on the respective outer or inner wall speed. The default value is set to 100%." -msgstr "Ta opcja ustawia prędkość druku dla szwów ukośnych. Zaleca się drukowanie szwów ukośnych z niższą prędkością (poniżej 100 mm/s). Zaleca się również włączenie 'Wygładzania współczynnika ekstruzji', jeśli ustawiona prędkość znacząco różni się od prędkości zewnętrznych lub wewnętrznych obwodów. Jeżeli prędkość określona tutaj jest wyższa niż prędkość zewnętrznych lub wewnętrznych obwodów, drukarka domyślnie użyje wolniejszej z dwóch prędkości. Jeśli prędkość jest podana w procentach (np. 80%), jest ona obliczana na podstawie prędkości zewnętrznego lub wewnętrznego obwodu. Wartość domyślna wynosi 100%." +msgid "" +"This option sets the printing speed for scarf joints. It is recommended to " +"print scarf joints at a slow speed (less than 100 mm/s). It's also " +"advisable to enable 'Extrusion rate smoothing' if the set speed varies " +"significantly from the speed of the outer or inner walls. If the speed " +"specified here is higher than the speed of the outer or inner walls, the " +"printer will default to the slower of the two speeds. When specified as a " +"percentage (e.g., 80%), the speed is calculated based on the respective " +"outer or inner wall speed. The default value is set to 100%." +msgstr "" +"Ta opcja ustawia prędkość druku dla szwów ukośnych. Zaleca się drukowanie " +"szwów ukośnych z niższą prędkością (poniżej 100 mm/s). Zaleca się również " +"włączenie 'Wygładzania współczynnika ekstruzji', jeśli ustawiona prędkość " +"znacząco różni się od prędkości zewnętrznych lub wewnętrznych obwodów. " +"Jeżeli prędkość określona tutaj jest wyższa niż prędkość zewnętrznych lub " +"wewnętrznych obwodów, drukarka domyślnie użyje wolniejszej z dwóch " +"prędkości. Jeśli prędkość jest podana w procentach (np. 80%), jest ona " +"obliczana na podstawie prędkości zewnętrznego lub wewnętrznego obwodu. " +"Wartość domyślna wynosi 100%." msgid "Scarf joint flow ratio" msgstr "Współczynnik przepływu szwu ukośnego" msgid "This factor affects the amount of material for scarf joints." -msgstr "Ten współczynnik wpływa na ilość materiału potrzebną dla szwów ukośnych." +msgstr "" +"Ten współczynnik wpływa na ilość materiału potrzebną dla szwów ukośnych." msgid "Scarf start height" msgstr "Wysokość początkowa szwu ukośnego" msgid "" "Start height of the scarf.\n" -"This amount can be specified in millimeters or as a percentage of the current layer height. The default value for this parameter is 0." +"This amount can be specified in millimeters or as a percentage of the " +"current layer height. The default value for this parameter is 0." msgstr "" "Początkowa wysokość szwu ukośnego.\n" -"Ta wartość może być określona w milimetrach lub jako procent bieżącej wysokości warstwy. Domyślna wartość tego parametru to 0." +"Ta wartość może być określona w milimetrach lub jako procent bieżącej " +"wysokości warstwy. Domyślna wartość tego parametru to 0." msgid "Scarf around entire wall" msgstr "Szew ukośny obejmujący cały obrys ściany" @@ -10444,8 +12608,11 @@ msgstr "Szew rozciąga się na całą długość ściany" msgid "Scarf length" msgstr "Długość szwu ukośnego" -msgid "Length of the scarf. Setting this parameter to zero effectively disables the scarf." -msgstr "Długość szwu ukośnego. Ustawienie tego parametru na zero wyłączy tą funkcje." +msgid "" +"Length of the scarf. Setting this parameter to zero effectively disables the " +"scarf." +msgstr "" +"Długość szwu ukośnego. Ustawienie tego parametru na zero wyłączy tą funkcje." msgid "Scarf steps" msgstr "Kroki szwu ukośnego" @@ -10462,32 +12629,66 @@ msgstr "Zastosuj szwy ukośne również do wewnętrznych obrysów." msgid "Role base wipe speed" msgstr "Prędkość czyszczenia w oparciu o rolę ekstruzji" -msgid "The wipe speed is determined by the speed of the current extrusion role.e.g. if a wipe action is executed immediately following an outer wall extrusion, the speed of the outer wall extrusion will be utilized for the wipe action." -msgstr "Szybkość czyszczenia głowicy drukującej jest ustalana na podstawie prędkości aktualnie używanej w procesie ekstruzji. Na przykład, jeżeli czyszczenie jest przeprowadzane zaraz po wydrukowaniu zewnętrznej ścianki modelu, to dla czyszczenia wykorzystywana jest prędkość, która została zastosowana przy drukowaniu tej ścianki." +msgid "" +"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"if a wipe action is executed immediately following an outer wall extrusion, " +"the speed of the outer wall extrusion will be utilized for the wipe action." +msgstr "" +"Szybkość czyszczenia głowicy drukującej jest ustalana na podstawie prędkości " +"aktualnie używanej w procesie ekstruzji. Na przykład, jeżeli czyszczenie " +"jest przeprowadzane zaraz po wydrukowaniu zewnętrznej ścianki modelu, to dla " +"czyszczenia wykorzystywana jest prędkość, która została zastosowana przy " +"drukowaniu tej ścianki." msgid "Wipe on loops" msgstr "Czyszczenie na pętlach" -msgid "To minimize the visibility of the seam in a closed loop extrusion, a small inward movement is executed before the extruder leaves the loop." -msgstr "Aby zminimalizować widoczność szwu w ekstruzji zamkniętej pętli, przed opuszczeniem pętli przez extruder wykonuje się mały ruch do wewnątrz." +msgid "" +"To minimize the visibility of the seam in a closed loop extrusion, a small " +"inward movement is executed before the extruder leaves the loop." +msgstr "" +"Aby zminimalizować widoczność szwu w ekstruzji zamkniętej pętli, przed " +"opuszczeniem pętli przez extruder wykonuje się mały ruch do wewnątrz." msgid "Wipe before external loop" msgstr "Czyszczenie przed zewnętrzną pętlą" msgid "" -"To minimise visibility of potential overextrusion at the start of an external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall print order, the deretraction is performed slightly on the inside from the start of the external perimeter. That way any potential over extrusion is hidden from the outside surface. \n" +"To minimise visibility of potential overextrusion at the start of an " +"external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " +"print order, the deretraction is performed slightly on the inside from the " +"start of the external perimeter. That way any potential over extrusion is " +"hidden from the outside surface. \n" "\n" -"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall print order as in these modes it is more likely an external perimeter is printed immediately after a deretraction move." +"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " +"print order as in these modes it is more likely an external perimeter is " +"printed immediately after a deretraction move." msgstr "" -"Aby zminimalizować widoczność potencjalnego nadmiernego wytłaczania na początku zewnętrznego obwodu podczas drukowania z kolejnością drukowania Ściana Zewnętrzna/Wewnętrzna lub Wewnętrzna/Zewnętrzna/Wewnętrzna, deretrakcja jest wykonana nieco od wewnątrz od początku zewnętrznego obwodu. W ten sposób wszelkie potencjalne nadmierne wytłaczanie jest ukryte przed zewnętrzną powierzchnią. \n" +"Aby zminimalizować widoczność potencjalnego nadmiernego wytłaczania na " +"początku zewnętrznego obwodu podczas drukowania z kolejnością drukowania " +"Ściana Zewnętrzna/Wewnętrzna lub Wewnętrzna/Zewnętrzna/Wewnętrzna, " +"deretrakcja jest wykonana nieco od wewnątrz od początku zewnętrznego obwodu. " +"W ten sposób wszelkie potencjalne nadmierne wytłaczanie jest ukryte przed " +"zewnętrzną powierzchnią. \n" "\n" -"Jest to przydatne podczas drukowania z kolejnością drukowania Ściana zewnętrzna/Wewnętrzna lub Wewnętrzna/Zewnętrzna/Wewnętrzna, ponieważ w tych trybach jest bardziej prawdopodobne, że zewnętrzny obrys zostanie wydrukowany bezpośrednio po ruchu deretrakcji." +"Jest to przydatne podczas drukowania z kolejnością drukowania Ściana " +"zewnętrzna/Wewnętrzna lub Wewnętrzna/Zewnętrzna/Wewnętrzna, ponieważ w tych " +"trybach jest bardziej prawdopodobne, że zewnętrzny obrys zostanie " +"wydrukowany bezpośrednio po ruchu deretrakcji." msgid "Wipe speed" msgstr "Prędkość czyszczenia" -msgid "The wipe speed is determined by the speed setting specified in this configuration.If the value is expressed as a percentage (e.g. 80%), it will be calculated based on the travel speed setting above.The default value for this parameter is 80%" -msgstr "Prędkość czyszczenia jest ustalona przez ustawienie prędkości określone w tej konfiguracji. Jeśli wartość jest wyrażona w procentach (np. 80%), będzie obliczana na podstawie wcześniej ustawionej prędkości. Domyślna wartość dla tego parametru to 80%" +msgid "" +"The wipe speed is determined by the speed setting specified in this " +"configuration.If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above.The default value for " +"this parameter is 80%" +msgstr "" +"Prędkość czyszczenia jest ustalona przez ustawienie prędkości określone w " +"tej konfiguracji. Jeśli wartość jest wyrażona w procentach (np. 80%), będzie " +"obliczana na podstawie wcześniej ustawionej prędkości. Domyślna wartość dla " +"tego parametru to 80%" msgid "Skirt distance" msgstr "Odstęp Skirtu od obiektu" @@ -10501,6 +12702,23 @@ msgstr "Wysokość Skirtu" msgid "How many layers of skirt. Usually only one layer" msgstr "Ile warstw Skirtu. Zwykle tylko jedna warstwa" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Ilość pętli Skirtu" @@ -10511,40 +12729,100 @@ msgid "Skirt speed" msgstr "Prędkość Skirtu" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." -msgstr "Prędkość Skirtu, w mm/s. Zero oznacza użycie domyślnej prędkości ekstruzji warstwy." +msgstr "" +"Prędkość Skirtu, w mm/s. Zero oznacza użycie domyślnej prędkości ekstruzji " +"warstwy." -msgid "The printing speed in exported gcode will be slowed down, when the estimated layer time is shorter than this value, to get better cooling for these layers" -msgstr "Prędkość drukowania w wyeksportowanym gcode zostanie zwolniona, gdy szacowany czas warstwy jest krótszy niż ta wartość, aby uzyskać lepsze chłodzenie tych warstw" +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + +msgid "" +"The printing speed in exported gcode will be slowed down, when the estimated " +"layer time is shorter than this value, to get better cooling for these layers" +msgstr "" +"Prędkość drukowania w wyeksportowanym gcode zostanie zwolniona, gdy " +"szacowany czas warstwy jest krótszy niż ta wartość, aby uzyskać lepsze " +"chłodzenie tych warstw" msgid "Minimum sparse infill threshold" msgstr "Minimalny próg wypełnienia" -msgid "Sparse infill area which is smaller than threshold value is replaced by internal solid infill" -msgstr "Obszar wypełnienia, który jest mniejszy od wartości progowej zostaje zastąpiony wewnętrznym, pełnym wypełnieniem" +msgid "" +"Sparse infill area which is smaller than threshold value is replaced by " +"internal solid infill" +msgstr "" +"Obszar wypełnienia, który jest mniejszy od wartości progowej zostaje " +"zastąpiony wewnętrznym, pełnym wypełnieniem" -msgid "Line width of internal solid infill. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Szerokość linii wewnętrznego pełnego wypełnienia. Jeśli wyrażona w procentach, będzie obliczana na podstawie średnicy dyszy." +msgid "" +"Line width of internal solid infill. If expressed as a %, it will be " +"computed over the nozzle diameter." +msgstr "" +"Szerokość linii wewnętrznego pełnego wypełnienia. Jeśli wyrażona w " +"procentach, będzie obliczana na podstawie średnicy dyszy." msgid "Speed of internal solid infill, not the top and bottom surface" -msgstr "Prędkość wewnętrznego pełnego wypełnienia, nie dotyczy górnej i dolnej powierzchni" +msgstr "" +"Prędkość wewnętrznego pełnego wypełnienia, nie dotyczy górnej i dolnej " +"powierzchni" -msgid "Spiralize smooths out the z moves of the outer contour. And turns a solid model into a single walled print with solid bottom layers. The final generated model has no seam" -msgstr "Tryb Wazy wygładza ruchy osi z zewnętrznego konturu. Zamienia cały model w wydruk jednościenny z pełnymi dolnymi warstwami. Końcowy wygenerowany model nie ma szwu" +msgid "" +"Spiralize smooths out the z moves of the outer contour. And turns a solid " +"model into a single walled print with solid bottom layers. The final " +"generated model has no seam" +msgstr "" +"Tryb Wazy wygładza ruchy osi z zewnętrznego konturu. Zamienia cały model w " +"wydruk jednościenny z pełnymi dolnymi warstwami. Końcowy wygenerowany model " +"nie ma szwu" msgid "Smooth Spiral" msgstr "Wygładzona Spirala" -msgid "Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam at all, even in the XY directions on walls that are not vertical" -msgstr "Wygładzona Spirala wygładza również ruchy w osiach X i Y, dzięki czemu nie jest widoczny żaden szew, nawet w kierunkach XY na ścianach, które nie są pionowe" +msgid "" +"Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " +"at all, even in the XY directions on walls that are not vertical" +msgstr "" +"Wygładzona Spirala wygładza również ruchy w osiach X i Y, dzięki czemu nie " +"jest widoczny żaden szew, nawet w kierunkach XY na ścianach, które nie są " +"pionowe" msgid "Max XY Smoothing" msgstr "Maksymalne Wygładzanie XY" -msgid "Maximum distance to move points in XY to try to achieve a smooth spiralIf expressed as a %, it will be computed over nozzle diameter" -msgstr "Maksymalna odległość, o którą można przesunąć punkty w płaszczyźnie XY, aby spróbować uzyskać gładką spiralę. Jeśli wyrażone jako %, będzie obliczane względem średnicy dyszy." +msgid "" +"Maximum distance to move points in XY to try to achieve a smooth spiralIf " +"expressed as a %, it will be computed over nozzle diameter" +msgstr "" +"Maksymalna odległość, o którą można przesunąć punkty w płaszczyźnie XY, aby " +"spróbować uzyskać gładką spiralę. Jeśli wyrażone jako %, będzie obliczane " +"względem średnicy dyszy." -msgid "If smooth or traditional mode is selected, a timelapse video will be generated for each print. After each layer is printed, a snapshot is taken with the chamber camera. All of these snapshots are composed into a timelapse video when printing completes. If smooth mode is selected, the toolhead will move to the excess chute after each layer is printed and then take a snapshot. Since the melt filament may leak from the nozzle during the process of taking a snapshot, prime tower is required for smooth mode to wipe nozzle." -msgstr "Jeśli wybrany jest tryb \"Tradycyjny\", dla każdego wydruku będzie tworzony film poklatkowy (timelapse). Po wydrukowaniu każdej warstwy robione jest zdjęcie kamerą w komorze. Wszystkie te zdjęcia są komponowane w film poklatkowy po zakończeniu drukowania. Jeśli wybrany jest tryb \"Wygładź\", głowica drukująca przesunie się w pobliże otworu wyrzutowego przy każdej zmianie warstwy, a następnie zrobi zdjęcie. Ponieważ stopiony filament może wyciekać z dyszy podczas robienia zdjęcia, wieża czyszcząca jest wymagana w trybie \"Wygładź\" do czyszczenia dyszy." +msgid "" +"If smooth or traditional mode is selected, a timelapse video will be " +"generated for each print. After each layer is printed, a snapshot is taken " +"with the chamber camera. All of these snapshots are composed into a " +"timelapse video when printing completes. If smooth mode is selected, the " +"toolhead will move to the excess chute after each layer is printed and then " +"take a snapshot. Since the melt filament may leak from the nozzle during the " +"process of taking a snapshot, prime tower is required for smooth mode to " +"wipe nozzle." +msgstr "" +"Jeśli wybrany jest tryb \"Tradycyjny\", dla każdego wydruku będzie tworzony " +"film poklatkowy (timelapse). Po wydrukowaniu każdej warstwy robione jest " +"zdjęcie kamerą w komorze. Wszystkie te zdjęcia są komponowane w film " +"poklatkowy po zakończeniu drukowania. Jeśli wybrany jest tryb \"Wygładź\", " +"głowica drukująca przesunie się w pobliże otworu wyrzutowego przy każdej " +"zmianie warstwy, a następnie zrobi zdjęcie. Ponieważ stopiony filament może " +"wyciekać z dyszy podczas robienia zdjęcia, wieża czyszcząca jest wymagana w " +"trybie \"Wygładź\" do czyszczenia dyszy." msgid "Traditional" msgstr "Tradycyjny" @@ -10570,8 +12848,18 @@ msgstr "Użyj pojedynczej dyszy do drukowania wieloma filamentami" msgid "Manual Filament Change" msgstr "Ręczna zmiana filamentu" -msgid "Enable this option to omit the custom Change filament G-code only at the beginning of the print. The tool change command (e.g., T0) will be skipped throughout the entire print. This is useful for manual multi-material printing, where we use M600/PAUSE to trigger the manual filament change action." -msgstr "Włącz tę opcję, aby pominąć niestandardowy G-code zmiany filamentu tylko na początku druku. Komenda zmiany narzędzia (np. T0) będzie pomijana przez cały proces drukowania. Jest to przydatne przy ręcznym drukowaniu wielomateriałowym, gdzie używamy M600/PAUSE, aby wywołać akcję ręcznej zmiany filamentu." +msgid "" +"Enable this option to omit the custom Change filament G-code only at the " +"beginning of the print. The tool change command (e.g., T0) will be skipped " +"throughout the entire print. This is useful for manual multi-material " +"printing, where we use M600/PAUSE to trigger the manual filament change " +"action." +msgstr "" +"Włącz tę opcję, aby pominąć niestandardowy G-code zmiany filamentu tylko na " +"początku druku. Komenda zmiany narzędzia (np. T0) będzie pomijana przez cały " +"proces drukowania. Jest to przydatne przy ręcznym drukowaniu " +"wielomateriałowym, gdzie używamy M600/PAUSE, aby wywołać akcję ręcznej " +"zmiany filamentu." msgid "Purge in prime tower" msgstr "Oczyszczanie na wieży czyszczącej" @@ -10585,26 +12873,49 @@ msgstr "Włącz szybką ekstruzję filamentu" msgid "No sparse layers (beta)" msgstr "Brak warstw bez czyszczenia (beta)" -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 "Jeśli włączone, wieża czyszcząca nie będzie drukowana na warstwach bez zmian narzędzi. Na warstwach ze zmianą narzędzia, extruder przemieści się w dół, aby wydrukować wieżę czyszczącą. Użytkownik jest odpowiedzialny za zapewnienie, że nie dojdzie do kolizji z wydrukiem." +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 "" +"Jeśli włączone, wieża czyszcząca nie będzie drukowana na warstwach bez zmian " +"narzędzi. Na warstwach ze zmianą narzędzia, extruder przemieści się w dół, " +"aby wydrukować wieżę czyszczącą. Użytkownik jest odpowiedzialny za " +"zapewnienie, że nie dojdzie do kolizji z wydrukiem." msgid "Prime all printing extruders" msgstr "Przygotuj wszystkie extrudery do drukowania" -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 włączone, wszystkie extrudery do drukowania będą przygotowane na przedniej krawędzi stołu drukującego na początku druku." +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 włączone, wszystkie extrudery do drukowania będą przygotowane na " +"przedniej krawędzi stołu drukującego na początku druku." msgid "Slice gap closing radius" msgstr "Promień zamykania szpar" -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." +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." msgid "Slicing Mode" msgstr "Tryb cięcia" -msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." -msgstr "Użyj \"Parzysto-nieparzysty\" dla modeli samolotów 3DLabPrint. Użyj \"Zamknij otwory\" do zamknięcia wszystkich otworów w modelu." +msgid "" +"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " +"close all holes in the model." +msgstr "" +"Użyj \"Parzysto-nieparzysty\" dla modeli samolotów 3DLabPrint. Użyj " +"\"Zamknij otwory\" do zamknięcia wszystkich otworów w modelu." msgid "Regular" msgstr "Regularny" @@ -10618,8 +12929,16 @@ msgstr "Zamknij otwory" msgid "Z offset" msgstr "Przesunięcie w osi Z" -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ę).\"" +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ę).\"" msgid "Enable support" msgstr "Włącz" @@ -10627,8 +12946,14 @@ msgstr "Włącz" msgid "Enable support generation." msgstr "Włącz generowanie podpór." -msgid "normal(auto) and tree(auto) is used to generate support automatically. If normal(manual) or tree(manual) is selected, only support enforcers are generated" -msgstr "tryb 'normalny(auto)' oraz 'drzewo(auto)' służą do automatycznego generowania podpór. Jeśli wybierzesz 'normalny(manual)' lub 'drzewo(manual)', zostaną wygenerowane jedynie podpory wymuszone" +msgid "" +"normal(auto) and tree(auto) is used to generate support automatically. If " +"normal(manual) or tree(manual) is selected, only support enforcers are " +"generated" +msgstr "" +"tryb 'normalny(auto)' oraz 'drzewo(auto)' służą do automatycznego " +"generowania podpór. Jeśli wybierzesz 'normalny(manual)' lub " +"'drzewo(manual)', zostaną wygenerowane jedynie podpory wymuszone" msgid "normal(auto)" msgstr "normalny (auto)" @@ -10652,7 +12977,9 @@ msgid "Pattern angle" msgstr "Kąt wzoru" msgid "Use this setting to rotate the support pattern on the horizontal plane." -msgstr "To ustawienie odpowiada za obrót materiału podporowego w płaszczyźnie poziomej." +msgstr "" +"To ustawienie odpowiada za obrót materiału podporowego w płaszczyźnie " +"poziomej." msgid "On build plate only" msgstr "Tylko na stole" @@ -10663,8 +12990,12 @@ msgstr "Nie twórz podpór na powierzchni modelu, tylko na stole" msgid "Support critical regions only" msgstr "Podpory tylko dla krytycznych obszarów" -msgid "Only create support for critical regions including sharp tail, cantilever, etc." -msgstr "Twórz podpory tylko dla krytycznych obszarów, takich jak ostra krawędź, wspornik, itp." +msgid "" +"Only create support for critical regions including sharp tail, cantilever, " +"etc." +msgstr "" +"Twórz podpory tylko dla krytycznych obszarów, takich jak ostra krawędź, " +"wspornik, itp." msgid "Remove small overhangs" msgstr "Usuń małe nawisy" @@ -10687,29 +13018,45 @@ msgstr "Odległość w osi Z między dolną warstwą łączącyą a obiektem" msgid "Support/raft base" msgstr "Podstawa podpory/tratwy" -msgid "Filament to print support base and raft. \"Default\" means no specific filament for support and current filament is used" -msgstr "Filament do drukowania podstawy podpory i raftu. \"Domyślnie\" oznacza brak wyboru konkretnego filamentu dla ich podstawy. Zostanie użyty obecny filament" +msgid "" +"Filament to print support base and raft. \"Default\" means no specific " +"filament for support and current filament is used" +msgstr "" +"Filament do drukowania podstawy podpory i raftu. \"Domyślnie\" oznacza brak " +"wyboru konkretnego filamentu dla ich podstawy. Zostanie użyty obecny filament" msgid "Avoid interface filament for base" msgstr "Zredukuj ilość materiału warstwy łączącej dla podstawy" -msgid "Avoid using support interface filament to print support base if possible." -msgstr "Jeśli to możliwe, unikaj używania filamentu podporowego do drukowania podstawy podpór." +msgid "" +"Avoid using support interface filament to print support base if possible." +msgstr "" +"Jeśli to możliwe, unikaj używania filamentu podporowego do drukowania " +"podstawy podpór." -msgid "Line width of support. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Szerokość linii podpory. Jeśli wyrażona w procentach, będzie obliczona na podstawie średnicy dyszy." +msgid "" +"Line width of support. If expressed as a %, it will be computed over the " +"nozzle diameter." +msgstr "" +"Szerokość linii podpory. Jeśli wyrażona w procentach, będzie obliczona na " +"podstawie średnicy dyszy." msgid "Interface use loop pattern" msgstr "Użyj wzoru pętli dla warstw łączących" -msgid "Cover the top contact layer of the supports with loops. Disabled by default." +msgid "" +"Cover the top contact layer of the supports with loops. Disabled by default." msgstr "Przykryj górną warstwę stykową podpór pętlami. Domyślnie wyłączone." msgid "Support/raft interface" msgstr "Warstwy łączące podpory/tratwy" -msgid "Filament to print support interface. \"Default\" means no specific filament for support interface and current filament is used" -msgstr "Filament do drukowania warstw łączących podpory z modelem. \"Domyślnie\" oznacza brak konkretnego filamentu dla podpory i używanie obecnego filamentu" +msgid "" +"Filament to print support interface. \"Default\" means no specific filament " +"for support interface and current filament is used" +msgstr "" +"Filament do drukowania warstw łączących podpory z modelem. \"Domyślnie\" " +"oznacza brak konkretnego filamentu dla podpory i używanie obecnego filamentu" msgid "Top interface layers" msgstr "Górne warstwy łączące" @@ -10730,13 +13077,17 @@ msgid "Top interface spacing" msgstr "Rozstaw górnych warstw łączących" msgid "Spacing of interface lines. Zero means solid interface" -msgstr "Odstęp między liniami powierzchni warstwy łączącej. Wartość zero oznacza, że warstwa łącząca jest jednolita i bez przerw" +msgstr "" +"Odstęp między liniami powierzchni warstwy łączącej. Wartość zero oznacza, że " +"warstwa łącząca jest jednolita i bez przerw" msgid "Bottom interface spacing" msgstr "Rozstaw dolnych warstw łączących" msgid "Spacing of bottom interface lines. Zero means solid interface" -msgstr "Odstęp między liniami dolnej powierzchni warstwy łączącej. Wartość zero oznacza, że warstwa łącząca jest jednolita i bez przerw" +msgstr "" +"Odstęp między liniami dolnej powierzchni warstwy łączącej. Wartość zero " +"oznacza, że warstwa łącząca jest jednolita i bez przerw" msgid "Speed of support interface" msgstr "Prędkość dla warstw łączących" @@ -10756,8 +13107,14 @@ msgstr "Wydrążony" msgid "Interface pattern" msgstr "Wzór warstwy łączącej" -msgid "Line pattern of support interface. Default pattern for non-soluble support interface is Rectilinear, while default pattern for soluble support interface is Concentric" -msgstr "Wzór linii dla warstw łączących podpory. Standardowy wzór dla warstwy łączącej podpory nierozpuszczalnej jest Prostoliniowy, natomiast dla warstwy łączącej podpory rozpuszczalnej jest Koncentryczny" +msgid "" +"Line pattern of support interface. Default pattern for non-soluble support " +"interface is Rectilinear, while default pattern for soluble support " +"interface is Concentric" +msgstr "" +"Wzór linii dla warstw łączących podpory. Standardowy wzór dla warstwy " +"łączącej podpory nierozpuszczalnej jest Prostoliniowy, natomiast dla warstwy " +"łączącej podpory rozpuszczalnej jest Koncentryczny" msgid "Rectilinear Interlaced" msgstr "Prostoliniowe przeplatane" @@ -10778,11 +13135,22 @@ msgid "Speed of support" msgstr "Prędkość podpory" msgid "" -"Style and shape of the support. For normal support, projecting the supports into a regular grid will create more stable supports (default), while snug support towers will save material and reduce object scarring.\n" -"For tree support, slim and organic style will merge branches more aggressively and save a lot of material (default organic), while hybrid style will create similar structure to normal support under large flat overhangs." +"Style and shape of the support. For normal support, projecting the supports " +"into a regular grid will create more stable supports (default), while snug " +"support towers will save material and reduce object scarring.\n" +"For tree support, slim and organic style will merge branches more " +"aggressively and save a lot of material (default organic), while hybrid " +"style will create similar structure to normal support under large flat " +"overhangs." msgstr "" -"Styl i kształt podpory. Dla normalnego wsparcia, rzutowanie wsparć na regularną siatkę stworzy stabilniejsze wsparcia (domyślne), podczas gdy wąskie wieże podporowe zaoszczędzą filament i zmniejszą uszkodzenia obiektu.\n" -"Dla podpory drzewa, stylu Cinkiego i Organicznego połączy gałęzie bardziej agresywnie i zaoszczędzi dużo filamentu (domyślnie organiczny), podczas gdy styl hybrydowy stworzy podobną strukturę do normalnego wsparcia pod dużymi płaskimi nawisami." +"Styl i kształt podpory. Dla normalnego wsparcia, rzutowanie wsparć na " +"regularną siatkę stworzy stabilniejsze wsparcia (domyślne), podczas gdy " +"wąskie wieże podporowe zaoszczędzą filament i zmniejszą uszkodzenia " +"obiektu.\n" +"Dla podpory drzewa, stylu Cinkiego i Organicznego połączy gałęzie bardziej " +"agresywnie i zaoszczędzi dużo filamentu (domyślnie organiczny), podczas gdy " +"styl hybrydowy stworzy podobną strukturę do normalnego wsparcia pod dużymi " +"płaskimi nawisami." msgid "Snug" msgstr "Przylegający" @@ -10802,52 +13170,93 @@ msgstr "Organiczne" msgid "Independent support layer height" msgstr "Niezależna wysokość warstwy podpory" -msgid "Support layer uses layer height independent with object layer. This is to support customizing z-gap and save print time.This option will be invalid when the prime tower is enabled." -msgstr "Warstwa podpory używa niezależnej wysokości warstwy od warstwy obiektu. Służy to dostosowywaniu odstępu osi Z i oszczędzaniu czasu drukowania. Opcja ta będzie nieaktywna, gdy włączona jest wieża czyszcząca." +msgid "" +"Support layer uses layer height independent with object layer. This is to " +"support customizing z-gap and save print time.This option will be invalid " +"when the prime tower is enabled." +msgstr "" +"Warstwa podpory używa niezależnej wysokości warstwy od warstwy obiektu. " +"Służy to dostosowywaniu odstępu osi Z i oszczędzaniu czasu drukowania. Opcja " +"ta będzie nieaktywna, gdy włączona jest wieża czyszcząca." msgid "Threshold angle" msgstr "Kąt progowy" -msgid "Support will be generated for overhangs whose slope angle is below the threshold." -msgstr "Podpora zostanie wygenerowana dla nawisów, których kąt nachylenia jest poniżej tego progu." +msgid "" +"Support will be generated for overhangs whose slope angle is below the " +"threshold." +msgstr "" +"Podpora zostanie wygenerowana dla nawisów, których kąt nachylenia jest " +"poniżej tego progu." msgid "Tree support branch angle" msgstr "Kąt nachylenia gałęzi" -msgid "This setting determines the maximum overhang angle that t he branches of tree support allowed to make.If the angle is increased, the branches can be printed more horizontally, allowing them to reach farther." -msgstr "To ustawienie określa maksymalny kąt nawisu, jaki mogą tworzyć gałęzie podpory (drzewo). Jeśli kąt zostanie zwiększony, gałęzie mogą być drukowane bardziej poziomo, pozwalając im sięgać dalej." +msgid "" +"This setting determines the maximum overhang angle that t he branches of " +"tree support allowed to make.If the angle is increased, the branches can be " +"printed more horizontally, allowing them to reach farther." +msgstr "" +"To ustawienie określa maksymalny kąt nawisu, jaki mogą tworzyć gałęzie " +"podpory (drzewo). Jeśli kąt zostanie zwiększony, gałęzie mogą być drukowane " +"bardziej poziomo, pozwalając im sięgać dalej." msgid "Preferred Branch Angle" msgstr "Preferowany kąt gałęzi" #. TRN PrintSettings: "Organic supports" > "Preferred Branch Angle" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "Preferowany kąt nachylenia gałęzi, gdy nie muszą one omijać modelu. Użyj mniejszego kąta, aby były bardziej pionowe i stabilne. Użyj większego kąta, aby gałęzie szybciej się łączyły." +msgid "" +"The preferred angle of the branches, when they do not have to avoid the " +"model. Use a lower angle to make them more vertical and more stable. Use a " +"higher angle for branches to merge faster." +msgstr "" +"Preferowany kąt nachylenia gałęzi, gdy nie muszą one omijać modelu. Użyj " +"mniejszego kąta, aby były bardziej pionowe i stabilne. Użyj większego kąta, " +"aby gałęzie szybciej się łączyły." msgid "Tree support branch distance" msgstr "Odstęp gałęzi podpór drzewa" -msgid "This setting determines the distance between neighboring tree support nodes." -msgstr "To ustawienie określa odległość między sąsiednimi węzłami podpory (drzewa)." +msgid "" +"This setting determines the distance between neighboring tree support nodes." +msgstr "" +"To ustawienie określa odległość między sąsiednimi węzłami podpory (drzewa)." msgid "Branch Density" msgstr "Gęstość gałęzi" #. TRN PrintSettings: "Organic supports" > "Branch Density" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs but the supports are harder to remove, thus it is recommended to enable top support interfaces instead of a high branch density value if dense interfaces are needed." -msgstr "Dostosowuje gęstość konstrukcji nośnej używanej do generowania końcówek gałęzi. Wyższa wartość skutkuje lepszymi nawisami, ale podpory są trudniejsze do usunięcia, dlatego zaleca się włączenie górnych łączników podpór zamiast wysokiej gęstości gałęzi, jeśli potrzebne są gęste podpory." +msgid "" +"Adjusts the density of the support structure used to generate the tips of " +"the branches. A higher value results in better overhangs but the supports " +"are harder to remove, thus it is recommended to enable top support " +"interfaces instead of a high branch density value if dense interfaces are " +"needed." +msgstr "" +"Dostosowuje gęstość konstrukcji nośnej używanej do generowania końcówek " +"gałęzi. Wyższa wartość skutkuje lepszymi nawisami, ale podpory są " +"trudniejsze do usunięcia, dlatego zaleca się włączenie górnych łączników " +"podpór zamiast wysokiej gęstości gałęzi, jeśli potrzebne są gęste podpory." msgid "Adaptive layer height" msgstr "Adaptacyjna wysokość warstwy" -msgid "Enabling this option means the height of tree support layer except the first will be automatically calculated " -msgstr "Włączenie tej opcji oznacza, że wysokość warstwy podpory drzewo, z wyjątkiem pierwszej, zostanie automatycznie obliczona " +msgid "" +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated " +msgstr "" +"Włączenie tej opcji oznacza, że wysokość warstwy podpory drzewo, z wyjątkiem " +"pierwszej, zostanie automatycznie obliczona " msgid "Auto brim width" msgstr "Automatyczna szerokość Brimu" -msgid "Enabling this option means the width of the brim for tree support will be automatically calculated" -msgstr "Włączenie tej opcji oznacza, że szerokość Brimu dla podpory drzewo będzie automatycznie obliczana" +msgid "" +"Enabling this option means the width of the brim for tree support will be " +"automatically calculated" +msgstr "" +"Włączenie tej opcji oznacza, że szerokość Brimu dla podpory drzewo będzie " +"automatycznie obliczana" msgid "Tree support brim width" msgstr "Szerokość Brimu dla podpory drzewa" @@ -10873,15 +13282,28 @@ msgid "Branch Diameter Angle" msgstr "Kąt średnicy gałęzi" #. TRN PrintSettings: "Organic supports" > "Branch Diameter Angle" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the organic support." -msgstr "Kąt średnicy gałęzi w miarę stopniowego zagęszczania się ich ku dołowi. Kąt 0 spowoduje, że gałęzie będą miały jednakową grubość na całej długości. Niewielki kąt może zwiększyć stabilność podpór organicznych." +msgid "" +"The angle of the branches' diameter as they gradually become thicker towards " +"the bottom. An angle of 0 will cause the branches to have uniform thickness " +"over their length. A bit of an angle can increase stability of the organic " +"support." +msgstr "" +"Kąt średnicy gałęzi w miarę stopniowego zagęszczania się ich ku dołowi. Kąt " +"0 spowoduje, że gałęzie będą miały jednakową grubość na całej długości. " +"Niewielki kąt może zwiększyć stabilność podpór organicznych." msgid "Branch Diameter with double walls" msgstr "Średnica gałęzi z podwójnymi ścianami" #. TRN PrintSettings: "Organic supports" > "Branch Diameter" -msgid "Branches with area larger than the area of a circle of this diameter will be printed with double walls for stability. Set this value to zero for no double walls." -msgstr "Gałęzie o powierzchni większej niż powierzchnia koła o tej średnicy będą drukowane z podwójnymi ścianami dla stabilności. Ustaw tę wartość na zero, aby nie było podwójnych ścian." +msgid "" +"Branches with area larger than the area of a circle of this diameter will be " +"printed with double walls for stability. Set this value to zero for no " +"double walls." +msgstr "" +"Gałęzie o powierzchni większej niż powierzchnia koła o tej średnicy będą " +"drukowane z podwójnymi ścianami dla stabilności. Ustaw tę wartość na zero, " +"aby nie było podwójnych ścian." msgid "Support wall loops" msgstr "Pętle ścian podpory" @@ -10892,24 +13314,43 @@ msgstr "To ustawienie określa liczbę ścian wokół podpory" msgid "Tree support with infill" msgstr "Podpora w formie drzewa z wypełnieniem" -msgid "This setting specifies whether to add infill inside large hollows of tree support" -msgstr "To ustawienie określa, czy dodać wypełnienie wewnątrz dużych pustych przestrzeni podpor (drzewa)" +msgid "" +"This setting specifies whether to add infill inside large hollows of tree " +"support" +msgstr "" +"To ustawienie określa, czy dodać wypełnienie wewnątrz dużych pustych " +"przestrzeni podpor (drzewa)" msgid "Activate temperature control" msgstr "Aktywuj kontrolę temperatury" msgid "" -"Enable this option for chamber temperature control. An M191 command will be added before \"machine_start_gcode\"\n" +"Enable this option for chamber temperature control. An M191 command will be " +"added before \"machine_start_gcode\"\n" "G-code commands: M141/M191 S(0-255)" msgstr "" -"Włącz tę opcję dla kontroli temperatury komory. Komenda M191 zostanie dodana przed \"początkowy G-code drukarki\"\n" +"Włącz tę opcję dla kontroli temperatury komory. Komenda M191 zostanie dodana " +"przed \"początkowy G-code drukarki\"\n" "Komendy G-code: M141/M191 S(0-255)" msgid "Chamber temperature" msgstr "Temperatura komory" -msgid "Higher chamber temperature can help suppress or reduce warping and potentially lead to higher interlayer bonding strength for high temperature materials like ABS, ASA, PC, PA and so on.At the same time, the air filtration of ABS and ASA will get worse.While for PLA, PETG, TPU, PVA and other low temperature materials,the actual chamber temperature should not be high to avoid cloggings, so 0 which stands for turning off is highly recommended" -msgstr "Wyższa temperatura komory może pomóc w redukcji wypaczania i potencjalnie prowadzić do większej siły wiązania międzywarstwowego w przypadku materiałów wysokotemperaturowych, takich jak ABS, ASA, PC, PA itp. Dla filametów PLA, PETG, TPU, PVA i innych materiałów niskotemperaturowych temperatura komory nie powinna być wysoka. Aby uniknąć zatykania sie dyszy zaleca się ustawienia na wartość 0 (wyłączone)." +msgid "" +"Higher chamber temperature can help suppress or reduce warping and " +"potentially lead to higher interlayer bonding strength for high temperature " +"materials like ABS, ASA, PC, PA and so on.At the same time, the air " +"filtration of ABS and ASA will get worse.While for PLA, PETG, TPU, PVA and " +"other low temperature materials,the actual chamber temperature should not be " +"high to avoid cloggings, so 0 which stands for turning off is highly " +"recommended" +msgstr "" +"Wyższa temperatura komory może pomóc w redukcji wypaczania i potencjalnie " +"prowadzić do większej siły wiązania międzywarstwowego w przypadku materiałów " +"wysokotemperaturowych, takich jak ABS, ASA, PC, PA itp. Dla filametów PLA, " +"PETG, TPU, PVA i innych materiałów niskotemperaturowych temperatura komory " +"nie powinna być wysoka. Aby uniknąć zatykania sie dyszy zaleca się " +"ustawienia na wartość 0 (wyłączone)." msgid "Nozzle temperature for layers after the initial one" msgstr "Temperatura dyszy dla warstw po początkowej" @@ -10917,17 +13358,29 @@ msgstr "Temperatura dyszy dla warstw po początkowej" msgid "Detect thin wall" msgstr "Wykrywanie cienkich ścian" -msgid "Detect thin wall which can't contain two line width. And use single line to print. Maybe printed not very well, because it's not closed loop" -msgstr "Wykrywaj ściany o grubości jednego obrysu. Są to obszary, gdzie 2 obrysy nie zmieszczą się i trzeba będzie połączyć je w jedną linię" +msgid "" +"Detect thin wall which can't contain two line width. And use single line to " +"print. Maybe printed not very well, because it's not closed loop" +msgstr "" +"Wykrywaj ściany o grubości jednego obrysu. Są to obszary, gdzie 2 obrysy nie " +"zmieszczą się i trzeba będzie połączyć je w jedną linię" -msgid "This gcode is inserted when change filament, including T command to trigger tool change" -msgstr "Ten gcode jest wstawiany podczas zmiany filamentu, w tym komendy T do wywołania zmiany narzędzia" +msgid "" +"This gcode is inserted when change filament, including T command to trigger " +"tool change" +msgstr "" +"Ten gcode jest wstawiany podczas zmiany filamentu, w tym komendy T do " +"wywołania zmiany narzędzia" msgid "This gcode is inserted when the extrusion role is changed" msgstr "Ten G-code jest dodawany przy zmianie funkcji ekstruzji" -msgid "Line width for top surfaces. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Szerokość linii dla górnych powierzchni. Jeśli wyrażona w procentach, będzie obliczona na podstawie średnicy dyszy." +msgid "" +"Line width for top surfaces. If expressed as a %, it will be computed over " +"the nozzle diameter." +msgstr "" +"Szerokość linii dla górnych powierzchni. Jeśli wyrażona w procentach, będzie " +"obliczona na podstawie średnicy dyszy." msgid "Speed of top surface infill which is solid" msgstr "Prędkość wypełnienia górnej powierzchni, która jest zwarta" @@ -10935,8 +13388,15 @@ msgstr "Prędkość wypełnienia górnej powierzchni, która jest zwarta" msgid "Top shell layers" msgstr "Górne warstwy powłoki" -msgid "This is the number of solid layers of top shell, including the top surface layer. When the thickness calculated by this value is thinner than top shell thickness, the top shell layers will be increased" -msgstr "To jest liczba pełnych warstw górnej powłoki, włączając w to górną powierzchnie. Jeżeli grubość obliczona na podstawie tej wartości jest mniejsza niż grubość górnej powłoki, liczba warstw górnej powłoki zostanie zwiększona" +msgid "" +"This is the number of solid layers of top shell, including the top surface " +"layer. When the thickness calculated by this value is thinner than top shell " +"thickness, the top shell layers will be increased" +msgstr "" +"To jest liczba pełnych warstw górnej powłoki, włączając w to górną " +"powierzchnie. Jeżeli grubość obliczona na podstawie tej wartości jest " +"mniejsza niż grubość górnej powłoki, liczba warstw górnej powłoki zostanie " +"zwiększona" msgid "Top solid layers" msgstr "Pełne warstwy górne" @@ -10944,8 +13404,18 @@ msgstr "Pełne warstwy górne" msgid "Top shell thickness" msgstr "Grubość górnej powłoki" -msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is absolutely determained by top shell layers" -msgstr "Liczba górnych zwartych warstw jest zwiększana podczas cięcia, jeśli grubość obliczona przez górną warstwe powłoki jest cieńsza niż ta wartość. Można w ten sposób uniknąć zbyt cienkiej powłoki, gdy wysokość warstwy jest mała. 0 oznacza, że to ustawienie jest wyłączone, a grubość górnej powłoki jest absolutnie określona przez górne warstwy powłoki" +msgid "" +"The number of top solid layers is increased when slicing if the thickness " +"calculated by top shell layers is thinner than this value. This can avoid " +"having too thin shell when layer height is small. 0 means that this setting " +"is disabled and thickness of top shell is absolutely determained by top " +"shell layers" +msgstr "" +"Liczba górnych zwartych warstw jest zwiększana podczas cięcia, jeśli grubość " +"obliczona przez górną warstwe powłoki jest cieńsza niż ta wartość. Można w " +"ten sposób uniknąć zbyt cienkiej powłoki, gdy wysokość warstwy jest mała. 0 " +"oznacza, że to ustawienie jest wyłączone, a grubość górnej powłoki jest " +"absolutnie określona przez górne warstwy powłoki" msgid "Speed of travel which is faster and without extrusion" msgstr "Prędkość jałowa, która jest szybsza i bez ekstruzji" @@ -10953,27 +13423,47 @@ msgstr "Prędkość jałowa, która jest szybsza i bez ekstruzji" msgid "Wipe while retracting" msgstr "Czyszczenie przy retrakcji" -msgid "Move nozzle along the last extrusion path when retracting to clean leaked material on nozzle. This can minimize blob when print new part after travel" -msgstr "Przesuń dyszę wzdłuż ostatniej ścieżki ekstruzji podczas cofania, aby oczyścić wyciekły filament na dyszy. Może to zminimalizować wystąpienie grudek podczas drukowania nowej części po przejeździe" +msgid "" +"Move nozzle along the last extrusion path when retracting to clean leaked " +"material on nozzle. This can minimize blob when print new part after travel" +msgstr "" +"Przesuń dyszę wzdłuż ostatniej ścieżki ekstruzji podczas cofania, aby " +"oczyścić wyciekły filament na dyszy. Może to zminimalizować wystąpienie " +"grudek podczas drukowania nowej części po przejeździe" msgid "Wipe Distance" msgstr "Odległość czyszczenia" msgid "" -"Discribe how long the nozzle will move along the last path when retracting. \n" +"Discribe how long the nozzle will move along the last path when " +"retracting. \n" "\n" -"Depending on how long the wipe operation lasts, how fast and long the extruder/filament retraction settings are, a retraction move may be needed to retract the remaining filament. \n" +"Depending on how long the wipe operation lasts, how fast and long the " +"extruder/filament retraction settings are, a retraction move may be needed " +"to retract the remaining filament. \n" "\n" -"Setting a value in the retract amount before wipe setting below will perform any excess retraction before the wipe, else it will be performed after." +"Setting a value in the retract amount before wipe setting below will perform " +"any excess retraction before the wipe, else it will be performed after." msgstr "" -"Opisz, jak długo dysza będzie się przesuwać wzdłuż ostatniej ścieżki podczas cofania. \n" +"Opisz, jak długo dysza będzie się przesuwać wzdłuż ostatniej ścieżki podczas " +"cofania. \n" "\n" -"W zależności od tego, jak długo trwa operacja czyszczenia oraz jak szybkie i długie są ustawienia cofania extrudera/filamentu, może być potrzebny ruch cofania, aby cofnąć pozostały filament. \n" +"W zależności od tego, jak długo trwa operacja czyszczenia oraz jak szybkie i " +"długie są ustawienia cofania extrudera/filamentu, może być potrzebny ruch " +"cofania, aby cofnąć pozostały filament. \n" "\n" -"Ustawienie wartości w ilości cofania przed ustawieniem czyszczenia poniżej spowoduje wykonanie nadmiernego cofania przed czyszczeniem, w przeciwnym razie zostanie wykonane po nim." +"Ustawienie wartości w ilości cofania przed ustawieniem czyszczenia poniżej " +"spowoduje wykonanie nadmiernego cofania przed czyszczeniem, w przeciwnym " +"razie zostanie wykonane po nim." -msgid "The wiping tower can be used to clean up the residue on the nozzle and stabilize the chamber pressure inside the nozzle, in order to avoid appearance defects when printing objects." -msgstr "Wieża czyszcząca może być używana do czyszczenia resztek na dyszy i stabilizacji ciśnienia w komorze wewnątrz dyszy, aby uniknąć defektów wyglądu podczas drukowania obiektów." +msgid "" +"The wiping tower can be used to clean up the residue on the nozzle and " +"stabilize the chamber pressure inside the nozzle, in order to avoid " +"appearance defects when printing objects." +msgstr "" +"Wieża czyszcząca może być używana do czyszczenia resztek na dyszy i " +"stabilizacji ciśnienia w komorze wewnątrz dyszy, aby uniknąć defektów " +"wyglądu podczas drukowania obiektów." msgid "Purging volumes" msgstr "Objętości czyszczenia" @@ -10981,14 +13471,19 @@ msgstr "Objętości czyszczenia" msgid "Flush multiplier" msgstr "Mnożnik płukania" -msgid "The actual flushing volumes is equal to the flush multiplier multiplied by the flushing volumes in the table." -msgstr "Aktualna objętość płukania jest równa mnożnikowi płukania pomnożonemu przez objętości płukania w tabeli." +msgid "" +"The actual flushing volumes is equal to the flush multiplier multiplied by " +"the flushing volumes in the table." +msgstr "" +"Aktualna objętość płukania jest równa mnożnikowi płukania pomnożonemu przez " +"objętości płukania w tabeli." msgid "Prime volume" msgstr "Objętość czyszczenia" msgid "The volume of material to prime extruder on tower." -msgstr "Objętość materiału, który ekstruder powinien upuścić na wieży czyszczącej." +msgstr "" +"Objętość materiału, który ekstruder powinien upuścić na wieży czyszczącej." msgid "Width of prime tower" msgstr "Szerokość wieży czyszczącej" @@ -11002,8 +13497,12 @@ msgstr "Kąt obrotu wieży czyszczącej względem osi x." msgid "Stabilization cone apex angle" msgstr "Kąt wierzchołka stożka stabilizacji" -msgid "Angle at the apex of the cone that is used to stabilize the wipe tower. Larger angle means wider base." -msgstr "Kąt w wierzchołku stożka, który jest używany do stabilizacji wieży czyszczącej. Większy kąt oznacza szerszą podstawę." +msgid "" +"Angle at the apex of the cone that is used to stabilize the wipe tower. " +"Larger angle means wider base." +msgstr "" +"Kąt w wierzchołku stożka, który jest używany do stabilizacji wieży " +"czyszczącej. Większy kąt oznacza szerszą podstawę." msgid "Wipe tower purge lines spacing" msgstr "Odległość między liniami na wieży oczyszczającej" @@ -11015,59 +13514,120 @@ msgid "Maximum print speed when purging" msgstr "Maksymalna prędkość druku podczas czyszczenia" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill speed or calculated speed from the filament max volumetric speed is lower, the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be performed over sparse layers. Before increasing this parameter beyond the default of 90mm/sec, make sure your printer can reliably bridge at the increased speeds." +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." msgstr "" -"Maksymalna prędkość drukowania podczas oczyszczania w wieży czyszczącej. Jeśli prędkość wypełnienia rzadkiego lub prędkość obliczona na podstawie maksymalnej prędkości przepływu filamentu jest niższa, zostanie użyta najniższa prędkość.\n" -"Zwiększenie tej prędkości może wpłynąć na stabilność wieży, ponieważ oczyszczanie może być wykonywane na rzadkich warstwach. Przed zwiększeniem tego parametru ponad domyślną wartość 90 mm/s należy upewnić się, że drukarka może niezawodnie drukować ze zwiększoną prędkością." +"Maksymalna prędkość drukowania podczas oczyszczania w wieży czyszczącej. " +"Jeśli prędkość wypełnienia rzadkiego lub prędkość obliczona na podstawie " +"maksymalnej prędkości przepływu filamentu jest niższa, zostanie użyta " +"najniższa prędkość.\n" +"Zwiększenie tej prędkości może wpłynąć na stabilność wieży, ponieważ " +"oczyszczanie może być wykonywane na rzadkich warstwach. Przed zwiększeniem " +"tego parametru ponad domyślną wartość 90 mm/s należy upewnić się, że " +"drukarka może niezawodnie drukować ze zwiększoną prędkością." msgid "Wipe tower extruder" msgstr "Ekstruder dla wieży czyszczącej" -msgid "The extruder to use when printing perimeter of the wipe tower. Set to 0 to use the one that is available (non-soluble would be preferred)." -msgstr "Extruder używany do drukowania obrysów wieży czyszczącej. Ustaw na 0, aby użyć tego, który jest dostępny (preferowany jest ten, w którym załadowany jest filament nierozpuszczalny)." +msgid "" +"The extruder to use when printing perimeter of the wipe tower. Set to 0 to " +"use the one that is available (non-soluble would be preferred)." +msgstr "" +"Extruder używany do drukowania obrysów wieży czyszczącej. Ustaw na 0, aby " +"użyć tego, który jest dostępny (preferowany jest ten, w którym załadowany " +"jest filament nierozpuszczalny)." msgid "Purging volumes - load/unload volumes" msgstr "Objętości czyszczenia - objętości ładowania/rozładowania" -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" +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" -msgid "Purging after filament change will be done inside objects' infills. This may lower the amount of waste and decrease the print time. If the walls are printed with transparent filament, the mixed color infill will be seen outside. It will not take effect, unless the prime tower is enabled." -msgstr "Czyszczenie po zmianie filamentu będzie wykonane wewnątrz wypełnień obiektów. Może to zmniejszyć ilość odpadów i skrócić czas druku. Jeśli ściany są drukowane przezroczystym filamentem, mieszane kolorowe wypełnienie będzie widoczne na zewnątrz. Nie będzie miało efektu, chyba że wieża czyszcząca jest włączona." +msgid "" +"Purging after filament change will be done inside objects' infills. This may " +"lower the amount of waste and decrease the print time. If the walls are " +"printed with transparent filament, the mixed color infill will be seen " +"outside. It will not take effect, unless the prime tower is enabled." +msgstr "" +"Czyszczenie po zmianie filamentu będzie wykonane wewnątrz wypełnień " +"obiektów. Może to zmniejszyć ilość odpadów i skrócić czas druku. Jeśli " +"ściany są drukowane przezroczystym filamentem, mieszane kolorowe wypełnienie " +"będzie widoczne na zewnątrz. Nie będzie miało efektu, chyba że wieża " +"czyszcząca jest włączona." -msgid "Purging after filament change will be done inside objects' support. This may lower the amount of waste and decrease the print time. It will not take effect, unless the prime tower is enabled." -msgstr "Czyszczenie po zmianie filamentu będzie wykonane wewnątrz podpory obiektów. Może to zmniejszyć ilość odpadów i skrócić czas druku. Nie będzie miało efektu, chyba że wieża czyszcząca jest włączona." +msgid "" +"Purging after filament change will be done inside objects' support. This may " +"lower the amount of waste and decrease the print time. It will not take " +"effect, unless the prime tower is enabled." +msgstr "" +"Czyszczenie po zmianie filamentu będzie wykonane wewnątrz podpory obiektów. " +"Może to zmniejszyć ilość odpadów i skrócić czas druku. Nie będzie miało " +"efektu, chyba że wieża czyszcząca jest włączona." -msgid "This object will be used to purge the nozzle after a filament change to save filament and decrease the print time. Colours of the objects will be mixed as a result. It will not take effect, unless the prime tower is enabled." -msgstr "To jest obiekt wykorzystywany do oczyszczenia dyszy po zmianie filamentu, co pozwala zaoszczędzić filament i skrócić czas druku. W wyniku tego procesu kolory filamentów mogą się wymieszać." +msgid "" +"This object will be used to purge the nozzle after a filament change to save " +"filament and decrease the print time. Colours of the objects will be mixed " +"as a result. It will not take effect, unless the prime tower is enabled." +msgstr "" +"To jest obiekt wykorzystywany do oczyszczenia dyszy po zmianie filamentu, co " +"pozwala zaoszczędzić filament i skrócić czas druku. W wyniku tego procesu " +"kolory filamentów mogą się wymieszać." msgid "Maximal bridging distance" msgstr "Maksymalna odległość mostkowania" msgid "Maximal distance between supports on sparse infill sections." -msgstr "Maksymalna odległość między podporami na rzadkich sekcjach wypełnienia." +msgstr "" +"Maksymalna odległość między podporami na rzadkich sekcjach wypełnienia." msgid "X-Y hole compensation" msgstr "Kompensacja otworów X-Y" -msgid "Holes of object will be grown or shrunk in XY plane by the configured value. Positive value makes holes bigger. Negative value makes holes smaller. This function is used to adjust size slightly when the object has assembling issue" -msgstr "Otwory obiektu będą powiększane lub zmniejszane w płaszczyźnie XY przez zadaną wartość (ujemna = zmniejszenie, dodatnia = zwiększenie). Funkcja ta jest używana do lekkiej regulacji rozmiaru, gdy obiekt ma problem z montażem" +msgid "" +"Holes of object will be grown or shrunk in XY plane by the configured value. " +"Positive value makes holes bigger. Negative value makes holes smaller. This " +"function is used to adjust size slightly when the object has assembling issue" +msgstr "" +"Otwory obiektu będą powiększane lub zmniejszane w płaszczyźnie XY przez " +"zadaną wartość (ujemna = zmniejszenie, dodatnia = zwiększenie). Funkcja ta " +"jest używana do lekkiej regulacji rozmiaru, gdy obiekt ma problem z montażem" msgid "X-Y contour compensation" msgstr "Kompensacja konturu X-Y" -msgid "Contour of object will be grown or shrunk in XY plane by the configured value. Positive value makes contour bigger. Negative value makes contour smaller. This function is used to adjust size slightly when the object has assembling issue" -msgstr "Model zostanie zmniejszony lub zwiększony w osiach X i Y o zadaną wartość (ujemna = zmniejszenie, dodatnia = zwiększenie). Może być przydatne przy kalibracji średnic otworów" +msgid "" +"Contour of object will be grown or shrunk in XY plane by the configured " +"value. Positive value makes contour bigger. Negative value makes contour " +"smaller. This function is used to adjust size slightly when the object has " +"assembling issue" +msgstr "" +"Model zostanie zmniejszony lub zwiększony w osiach X i Y o zadaną wartość " +"(ujemna = zmniejszenie, dodatnia = zwiększenie). Może być przydatne przy " +"kalibracji średnic otworów" msgid "Convert holes to polyholes" msgstr "Konwertuj otwory na poligonalne" msgid "" -"Search for almost-circular holes that span more than one layer and convert the geometry to polyholes. Use the nozzle size and the (biggest) diameter to compute the polyhole.\n" +"Search for almost-circular holes that span more than one layer and convert " +"the geometry to polyholes. Use the nozzle size and the (biggest) diameter to " +"compute the polyhole.\n" "See http://hydraraptor.blogspot.com/2011/02/polyholes.html" msgstr "" -"Szukaj niemal okrągłych otworów obejmujących więcej niż jedną warstwę i konwertuj geometrię na poliotwory. Użyj rozmiaru dyszy i (największej) średnicy do obliczenia poliotworu.\n" +"Szukaj niemal okrągłych otworów obejmujących więcej niż jedną warstwę i " +"konwertuj geometrię na poliotwory. Użyj rozmiaru dyszy i (największej) " +"średnicy do obliczenia poliotworu.\n" "Zobacz http://hydraraptor.blogspot.com/2011/02/polyholes.html" msgid "Polyhole detection margin" @@ -11076,11 +13636,15 @@ msgstr "Margines wykrywania poliotworów" #, no-c-format, no-boost-format msgid "" "Maximum defection of a point to the estimated radius of the circle.\n" -"As cylinders are often exported as triangles of varying size, points may not be on the circle circumference. This setting allows you some leway to broaden the detection.\n" +"As cylinders are often exported as triangles of varying size, points may not " +"be on the circle circumference. This setting allows you some leway to " +"broaden the detection.\n" "In mm or in % of the radius." msgstr "" "Maksymalne odchylenie punktu od szacowanego promienia koła.\n" -"Ponieważ cylindry często eksportowane są jako trójkąty o różnej wielkości, punkty mogą nie znajdować się na obwodzie koła. To ustawienie pozwala na pewną swobodę w poszerzaniu wykrywania.\n" +"Ponieważ cylindry często eksportowane są jako trójkąty o różnej wielkości, " +"punkty mogą nie znajdować się na obwodzie koła. To ustawienie pozwala na " +"pewną swobodę w poszerzaniu wykrywania.\n" "W mm lub w % promienia." msgid "Polyhole twist" @@ -11092,25 +13656,47 @@ msgstr "Obracaj poliotwor co warstwę." msgid "G-code thumbnails" msgstr "Miniatury G-code" -msgid "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the following format: \"XxY, XxY, ...\"" -msgstr "Rozmiary obrazów do przechowywania w plikach .gcode i .sl1 / .sl1s, w następującym formacie: \"XxY, XxY, ...\"" +msgid "" +"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the " +"following format: \"XxY, XxY, ...\"" +msgstr "" +"Rozmiary obrazów do przechowywania w plikach .gcode i .sl1 / .sl1s, w " +"następującym formacie: \"XxY, XxY, ...\"" msgid "Format of G-code thumbnails" msgstr "Format miniatur G-code" -msgid "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, QOI for low memory firmware" -msgstr "Format miniatur G-code: PNG dla najlepszej jakości, JPG dla najmniejszego rozmiaru, QOI dla oprogramowania o niskiej pamięci" +msgid "" +"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " +"QOI for low memory firmware" +msgstr "" +"Format miniatur G-code: PNG dla najlepszej jakości, JPG dla najmniejszego " +"rozmiaru, QOI dla oprogramowania o niskiej pamięci" msgid "Use relative E distances" msgstr "" "Użyj względnych \n" "wartości dla Extrudera" -msgid "Relative extrusion is recommended when using \"label_objects\" option.Some extruders work better with this option unckecked (absolute extrusion mode). Wipe tower is only compatible with relative mode. It is recommended on most printers. Default is checked" -msgstr "Względna ekstruzja jest zalecana przy użyciu opcji \"label_objects\". Niektóre extrudery działają lepiej z tą opcją odznaczoną (tryb absolutnej ekstruzji). Wieża czyszcząca jest kompatybilna tylko z trybem względnym. Zalecana na większości drukarek. Domyślnie zaznaczone" +msgid "" +"Relative extrusion is recommended when using \"label_objects\" option.Some " +"extruders work better with this option unckecked (absolute extrusion mode). " +"Wipe tower is only compatible with relative mode. It is recommended on most " +"printers. Default is checked" +msgstr "" +"Względna ekstruzja jest zalecana przy użyciu opcji \"label_objects\". " +"Niektóre extrudery działają lepiej z tą opcją odznaczoną (tryb absolutnej " +"ekstruzji). Wieża czyszcząca jest kompatybilna tylko z trybem względnym. " +"Zalecana na większości drukarek. Domyślnie zaznaczone" -msgid "Classic wall generator produces walls with constant extrusion width and for very thin areas is used gap-fill. Arachne engine produces walls with variable extrusion width" -msgstr "Klasyczny generator ścian tworzy ściany o stałej szerokości ekstruzji, a do bardzo cienkich obszarów używa wypełnienia szczelin. Silnik Arachne generuje ściany o zmiennej szerokości ekstruzji" +msgid "" +"Classic wall generator produces walls with constant extrusion width and for " +"very thin areas is used gap-fill. Arachne engine produces walls with " +"variable extrusion width" +msgstr "" +"Klasyczny generator ścian tworzy ściany o stałej szerokości ekstruzji, a do " +"bardzo cienkich obszarów używa wypełnienia szczelin. Silnik Arachne generuje " +"ściany o zmiennej szerokości ekstruzji" msgid "Classic" msgstr "Klasyczny" @@ -11121,62 +13707,140 @@ msgstr "Arachne" msgid "Wall transition length" msgstr "Długość przejścia ściany" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall segments. It's expressed as a percentage over nozzle diameter" -msgstr "Podczas przechodzenia między różnymi liczbami obrysów, gdy część staje się cieńsza, przydzielana jest pewna ilość miejsca na rozdzielenie lub połączenie segmentów obrysu. Jest wyrażona w procentach i zostanie obliczona na podstawie średnicy dyszy." +msgid "" +"When transitioning between different numbers of walls as the part becomes " +"thinner, a certain amount of space is allotted to split or join the wall " +"segments. It's expressed as a percentage over nozzle diameter" +msgstr "" +"Podczas przechodzenia między różnymi liczbami obrysów, gdy część staje się " +"cieńsza, przydzielana jest pewna ilość miejsca na rozdzielenie lub " +"połączenie segmentów obrysu. Jest wyrażona w procentach i zostanie obliczona " +"na podstawie średnicy dyszy." msgid "Wall transitioning filter margin" msgstr "Margines filtra przejścia ściany" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of extrusion widths which follow to [Minimum wall width - margin, 2 * Minimum wall width + margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large extrusion width variation can lead to under- or overextrusion problems. It's expressed as a percentage over nozzle diameter" -msgstr "Unikaj zmiany między zbyt grubą a zbyt cienką ścianą. Ten margines rozszerza zakres szerokości ekstruzji na [Minimalną szerokość ściany - margines, 2 * Minimalną szerokość ściany + margines]. Zwiększenie tego marginesu zmniejsza liczbę zmian, co skraca czas wydruku poprzez redukcję liczby startów i zatrzymań ekstruzji. Należy jednak pamiętać, że duże wahania w szerokości ekstruzji mogą prowadzić do problemów z jakością wydruku w postaci nadmiernej lub niewystarczającej ekstruzji. Wartość wyrażana jest jako procent średnicy dyszy" +msgid "" +"Prevent transitioning back and forth between one extra wall and one less. " +"This margin extends the range of extrusion widths which follow to [Minimum " +"wall width - margin, 2 * Minimum wall width + margin]. Increasing this " +"margin reduces the number of transitions, which reduces the number of " +"extrusion starts/stops and travel time. However, large extrusion width " +"variation can lead to under- or overextrusion problems. It's expressed as a " +"percentage over nozzle diameter" +msgstr "" +"Unikaj zmiany między zbyt grubą a zbyt cienką ścianą. Ten margines rozszerza " +"zakres szerokości ekstruzji na [Minimalną szerokość ściany - margines, 2 * " +"Minimalną szerokość ściany + margines]. Zwiększenie tego marginesu zmniejsza " +"liczbę zmian, co skraca czas wydruku poprzez redukcję liczby startów i " +"zatrzymań ekstruzji. Należy jednak pamiętać, że duże wahania w szerokości " +"ekstruzji mogą prowadzić do problemów z jakością wydruku w postaci " +"nadmiernej lub niewystarczającej ekstruzji. Wartość wyrażana jest jako " +"procent średnicy dyszy" msgid "Wall transitioning threshold angle" msgstr "Kąt progowy przejścia ściany" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude" -msgstr "Kiedy tworzyć przejścia między parzystą i nieparzystą liczbą obrysów. Kształt klina o kącie większym niż to ustawienie nie będzie miał przejść, a w środku nie zostaną wydrukowane żadne obrysy, które wypełniłyby pozostałą przestrzeń. Zmniejszenie tego ustawienia zmniejsza liczbę i długość obrysów centralnych, ale może powodować powstawanie szczelin lub nadmierne wytłaczanie." +msgid "" +"When to create transitions between even and odd numbers of walls. A wedge " +"shape with an angle greater than this setting will not have transitions and " +"no walls will be printed in the center to fill the remaining space. Reducing " +"this setting reduces the number and length of these center walls, but may " +"leave gaps or overextrude" +msgstr "" +"Kiedy tworzyć przejścia między parzystą i nieparzystą liczbą obrysów. " +"Kształt klina o kącie większym niż to ustawienie nie będzie miał przejść, a " +"w środku nie zostaną wydrukowane żadne obrysy, które wypełniłyby pozostałą " +"przestrzeń. Zmniejszenie tego ustawienia zmniejsza liczbę i długość obrysów " +"centralnych, ale może powodować powstawanie szczelin lub nadmierne " +"wytłaczanie." msgid "Wall distribution count" msgstr "Liczba rozdzielanych ścian" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width" -msgstr "Ilość ścian, licząc od środka, na których należy rozłożyć zmienność. Niższe wartości oznaczają, że zewnętrzne ściany nie zmieniają szerokości" +msgid "" +"The number of walls, counted from the center, over which the variation needs " +"to be spread. Lower values mean that the outer walls don't change in width" +msgstr "" +"Ilość ścian, licząc od środka, na których należy rozłożyć zmienność. Niższe " +"wartości oznaczają, że zewnętrzne ściany nie zmieniają szerokości" msgid "Minimum feature size" msgstr "Minimalny rozmiar detalu" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum feature size will be widened to the Minimum wall width. It's expressed as a percentage over nozzle diameter" -msgstr "Minimalna grubość cienkich detali. Detale modelu, które są cieńsze niż ta wartość, nie będą drukowane, natomiast detale grubsze niż minimalny rozmiar detalu zostaną poszerzone do minimalnej szerokości ściany. Jest to wyrażone jako procent średnicy dyszy" +msgid "" +"Minimum thickness of thin features. Model features that are thinner than " +"this value will not be printed, while features thicker than the Minimum " +"feature size will be widened to the Minimum wall width. It's expressed as a " +"percentage over nozzle diameter" +msgstr "" +"Minimalna grubość cienkich detali. Detale modelu, które są cieńsze niż ta " +"wartość, nie będą drukowane, natomiast detale grubsze niż minimalny rozmiar " +"detalu zostaną poszerzone do minimalnej szerokości ściany. Jest to wyrażone " +"jako procent średnicy dyszy" msgid "Minimum wall length" msgstr "Minimalna szerokość ściany" msgid "" -"Adjust this value to prevent short, unclosed walls from being printed, which could increase print time. Higher values remove more and longer walls.\n" +"Adjust this value to prevent short, unclosed walls from being printed, which " +"could increase print time. Higher values remove more and longer walls.\n" "\n" -"NOTE: Bottom and top surfaces will not be affected by this value to prevent visual gaps on the ouside of the model. Adjust 'One wall threshold' in the Advanced settings below to adjust the sensitivity of what is considered a top-surface. 'One wall threshold' is only visibile if this setting is set above the default value of 0.5, or if single-wall top surfaces is enabled." +"NOTE: Bottom and top surfaces will not be affected by this value to prevent " +"visual gaps on the ouside of the model. Adjust 'One wall threshold' in the " +"Advanced settings below to adjust the sensitivity of what is considered a " +"top-surface. 'One wall threshold' is only visibile if this setting is set " +"above the default value of 0.5, or if single-wall top surfaces is enabled." msgstr "" -"Zmodyfikuj tę wartość, aby uniknąć drukowania krótkich, otwartych ścianek, co może prowadzić do wydłużenia czasu druku. Wyższe wartości spowodują usunięcie większej ilości dłuższych ścianek.\n" +"Zmodyfikuj tę wartość, aby uniknąć drukowania krótkich, otwartych ścianek, " +"co może prowadzić do wydłużenia czasu druku. Wyższe wartości spowodują " +"usunięcie większej ilości dłuższych ścianek.\n" "\n" -"UWAGA: Ta wartość nie wpłynie na dolne i górne powierzchnie modelu i może zapobiec widocznym przerwom na zewnątrz. Aby dostosować czułość określającą, co jest uważane za górną powierzchnię, dostosuj 'Próg jednej ściany' w zaawansowanych ustawieniach poniżej. 'Próg jednej ściany' jest widoczny tylko wtedy, gdy to ustawienie jest ustawione na wartość wyższą niż domyślna wartość 0,5 lub jeśli opcja pojedynczych ścianek na górze jest włączona." +"UWAGA: Ta wartość nie wpłynie na dolne i górne powierzchnie modelu i może " +"zapobiec widocznym przerwom na zewnątrz. Aby dostosować czułość określającą, " +"co jest uważane za górną powierzchnię, dostosuj 'Próg jednej ściany' w " +"zaawansowanych ustawieniach poniżej. 'Próg jednej ściany' jest widoczny " +"tylko wtedy, gdy to ustawienie jest ustawione na wartość wyższą niż domyślna " +"wartość 0,5 lub jeśli opcja pojedynczych ścianek na górze jest włączona." msgid "First layer minimum wall width" msgstr "Minimalna szerokość ściany pierwszej warstwy" -msgid "The minimum wall width that should be used for the first layer is recommended to be set to the same size as the nozzle. This adjustment is expected to enhance adhesion." -msgstr "Zaleca się, aby minimalna szerokość ściany, która powinna być używana dla pierwszej warstwy, była ustawiona na tę samą wielkość co dysza. Oczekuje się, że to dostosowanie zwiększy przyczepność." +msgid "" +"The minimum wall width that should be used for the first layer is " +"recommended to be set to the same size as the nozzle. This adjustment is " +"expected to enhance adhesion." +msgstr "" +"Zaleca się, aby minimalna szerokość ściany, która powinna być używana dla " +"pierwszej warstwy, była ustawiona na tę samą wielkość co dysza. Oczekuje " +"się, że to dostosowanie zwiększy przyczepność." msgid "Minimum wall width" msgstr "Minimalna szerokość ściany" -msgid "Width of the wall that will replace thin features (according to the Minimum feature size) of the model. If the Minimum wall width is thinner than the thickness of the feature, the wall will become as thick as the feature itself. It's expressed as a percentage over nozzle diameter" -msgstr "Szerokość obrysu, który zastąpi cienkie detale modelu (zgodnie z minimalnym rozmiarem detalu). Jeśli minimalna szerokość obrysu jest mniejsza niż grubość detalu, obrys będzie miał taką samą grubość jak sam element. Jest wyrażona w procentach i zostanie obliczona na podstawie średnicy dyszy." +msgid "" +"Width of the wall that will replace thin features (according to the Minimum " +"feature size) of the model. If the Minimum wall width is thinner than the " +"thickness of the feature, the wall will become as thick as the feature " +"itself. It's expressed as a percentage over nozzle diameter" +msgstr "" +"Szerokość obrysu, który zastąpi cienkie detale modelu (zgodnie z minimalnym " +"rozmiarem detalu). Jeśli minimalna szerokość obrysu jest mniejsza niż " +"grubość detalu, obrys będzie miał taką samą grubość jak sam element. Jest " +"wyrażona w procentach i zostanie obliczona na podstawie średnicy dyszy." msgid "Detect narrow internal solid infill" msgstr "Wykryj wąskie wewnętrzne pełne wypełnienie" -msgid "This option will auto detect narrow internal solid infill area. If enabled, concentric pattern will be used for the area to speed printing up. Otherwise, rectilinear pattern is used defaultly." -msgstr "Ta opcja automatycznie wykryje wąski obszar wewnętrznego pełnego wypełnienia. Jeśli włączone, zostanie użyty wzór koncentryczny dla tego obszaru, aby przyspieszyć drukowanie. W przeciwnym razie domyślnie używany jest wzór prostoliniowy." +msgid "" +"This option will auto detect narrow internal solid infill area. If enabled, " +"concentric pattern will be used for the area to speed printing up. " +"Otherwise, rectilinear pattern is used defaultly." +msgstr "" +"Ta opcja automatycznie wykryje wąski obszar wewnętrznego pełnego " +"wypełnienia. Jeśli włączone, zostanie użyty wzór koncentryczny dla tego " +"obszaru, aby przyspieszyć drukowanie. W przeciwnym razie domyślnie używany " +"jest wzór prostoliniowy." msgid "invalid value " msgstr "nieprawidłowa wartość " @@ -11200,13 +13864,17 @@ msgid "No check" msgstr "Brak sprawdzania" msgid "Do not run any validity checks, such as gcode path conflicts check." -msgstr "Nie uruchamiaj żadnych testów poprawności, takich jak sprawdzanie konfliktów ścieżek gcode." +msgstr "" +"Nie uruchamiaj żadnych testów poprawności, takich jak sprawdzanie konfliktów " +"ścieżek gcode." msgid "Ensure on bed" msgstr "Zapewnij na łóżku" -msgid "Lift the object above the bed when it is partially below. Disabled by default" -msgstr "Podnieś obiekt ponad łóżko, gdy jest częściowo poniżej. Domyślnie wyłączone" +msgid "" +"Lift the object above the bed when it is partially below. Disabled by default" +msgstr "" +"Podnieś obiekt ponad łóżko, gdy jest częściowo poniżej. Domyślnie wyłączone" msgid "Orient Options" msgstr "Opcje orientacji" @@ -11226,8 +13894,13 @@ msgstr "Kąt obrotu wokół osi Y w stopniach." msgid "Data directory" msgstr "Katalog danych" -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 zapisz ustawienia w podanym katalogu. Jest to przydatne do utrzymania różnych profili lub dołączania konfiguracji z pamięci sieciowej." +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 zapisz ustawienia w podanym katalogu. Jest to przydatne do " +"utrzymania różnych profili lub dołączania konfiguracji z pamięci sieciowej." msgid "Load custom gcode" msgstr "Załaduj własny gcode" @@ -11241,17 +13914,32 @@ msgstr "Bieżący Z-hop" msgid "Contains z-hop present at the beginning of the custom G-code block." msgstr "Zawiera z-hop obecny na początku bloku niestandardowego G-code" -msgid "Position of the extruder at the beginning of the custom G-code block. If the custom G-code travels somewhere else, it should write to this variable so PrusaSlicer knows where it travels from when it gets control back." -msgstr "Pozycja ekstrudera na początku bloku niestandardowego G-kodu. Jeśli niestandardowy G-code przemieszcza się gdzieś indziej, powinien zostać zapisany do tej zmiennej, aby OrcaSlicer wiedział, skąd się przemieszcza, gdy odzyska kontrolę." +msgid "" +"Position of the extruder at the beginning of the custom G-code block. If the " +"custom G-code travels somewhere else, it should write to this variable so " +"PrusaSlicer knows where it travels from when it gets control back." +msgstr "" +"Pozycja ekstrudera na początku bloku niestandardowego G-kodu. Jeśli " +"niestandardowy G-code przemieszcza się gdzieś indziej, powinien zostać " +"zapisany do tej zmiennej, aby OrcaSlicer wiedział, skąd się przemieszcza, " +"gdy odzyska kontrolę." -msgid "Retraction state at the beginning of the custom G-code block. If the custom G-code moves the extruder axis, it should write to this variable so PrusaSlicer deretracts correctly when it gets control back." -msgstr "Stan retrakcji na początku bloku niestandardowego G-code. Jeśli niestandardowy G-code przesunie oś ekstrudera, powinien zostać zapisany do tej zmiennej, aby OrcaSlicer prawidłowo wykonał retrakcję, gdy odzyska kontrolę." +msgid "" +"Retraction state at the beginning of the custom G-code block. If the custom " +"G-code moves the extruder axis, it should write to this variable so " +"PrusaSlicer deretracts correctly when it gets control back." +msgstr "" +"Stan retrakcji na początku bloku niestandardowego G-code. Jeśli " +"niestandardowy G-code przesunie oś ekstrudera, powinien zostać zapisany do " +"tej zmiennej, aby OrcaSlicer prawidłowo wykonał retrakcję, gdy odzyska " +"kontrolę." msgid "Extra deretraction" msgstr "Dodatkowa deretrakcja" msgid "Currently planned extra extruder priming after deretraction." -msgstr "Obecnie planowane dodatkowe czyszczenie ekstrudera po powrocie z retrakcji." +msgstr "" +"Obecnie planowane dodatkowe czyszczenie ekstrudera po powrocie z retrakcji." msgid "Current extruder" msgstr "Aktualny extruder" @@ -11262,8 +13950,12 @@ msgstr "Indeks aktualnie używanego extrudera wynosi - zero" msgid "Current object index" msgstr "Zapisz bieżący projekt do pliku" -msgid "Specific for sequential printing. Zero-based index of currently printed object." -msgstr "Specyficzne dla druku sekwencyjnego. Indeks obecnie drukowanego obiektu, zaczynający się od zera." +msgid "" +"Specific for sequential printing. Zero-based index of currently printed " +"object." +msgstr "" +"Specyficzne dla druku sekwencyjnego. Indeks obecnie drukowanego obiektu, " +"zaczynający się od zera." msgid "Has wipe tower" msgstr "Ma wieżę czyszczącą" @@ -11274,26 +13966,37 @@ msgstr "Określa, czy dla tego wydruku generowana jest wieża czyszcząca." msgid "Initial extruder" msgstr "Początkowy ekstruder" -msgid "Zero-based index of the first extruder used in the print. Same as initial_tool." -msgstr "Indeks pierwszego extrudera używanego w wydruku, uwzględniający zero. To samo, co initial_tool." +msgid "" +"Zero-based index of the first extruder used in the print. Same as " +"initial_tool." +msgstr "" +"Indeks pierwszego extrudera używanego w wydruku, uwzględniający zero. To " +"samo, co initial_tool." msgid "Initial tool" msgstr "Początkowe narzędzie" -msgid "Zero-based index of the first extruder used in the print. Same as initial_extruder." -msgstr "Index pierwszego ekstrudera używanego podczas drukowania, licząc od zera. To samo, co initial_extruder" +msgid "" +"Zero-based index of the first extruder used in the print. Same as " +"initial_extruder." +msgstr "" +"Index pierwszego ekstrudera używanego podczas drukowania, licząc od zera. To " +"samo, co initial_extruder" msgid "Is extruder used?" msgstr "Czy ekstruder jest używany?" msgid "Vector of bools stating whether a given extruder is used in the print." -msgstr "Wektory logiczne określające, czy dany ekstruder jest używany w wydruku" +msgstr "" +"Wektory logiczne określające, czy dany ekstruder jest używany w wydruku" msgid "Volume per extruder" msgstr "Objętość na extruder" msgid "Total filament volume extruded per extruder during the entire print." -msgstr "Całkowita objętość filamentu wytłoczona przez każdy ekstruder podczas całego wydruku" +msgstr "" +"Całkowita objętość filamentu wytłoczona przez każdy ekstruder podczas całego " +"wydruku" msgid "Total toolchanges" msgstr "Całkowita zmiana narzędzia" @@ -11310,14 +14013,22 @@ msgstr "Całkowita objętość filamentu użytego podczas całego wydruku." msgid "Weight per extruder" msgstr "Waga na ekstruder" -msgid "Weight per extruder extruded during the entire print. Calculated from filament_density value in Filament Settings." -msgstr "Waga wytłaczanego filamentu przypadająca na każdy extruder podczas całego wydruku. Obliczana na podstawie gęstości w sekcji Ustawienia filamentu." +msgid "" +"Weight per extruder extruded during the entire print. Calculated from " +"filament_density value in Filament Settings." +msgstr "" +"Waga wytłaczanego filamentu przypadająca na każdy extruder podczas całego " +"wydruku. Obliczana na podstawie gęstości w sekcji Ustawienia filamentu." msgid "Total weight" msgstr "Waga całkowita" -msgid "Total weight of the print. Calculated from filament_density value in Filament Settings." -msgstr "Całkowita waga wydruku. Obliczana na podstawie wartości w sekcji Ustawienia filamentu." +msgid "" +"Total weight of the print. Calculated from filament_density value in " +"Filament Settings." +msgstr "" +"Całkowita waga wydruku. Obliczana na podstawie wartości w sekcji Ustawienia " +"filamentu." msgid "Total layer count" msgstr "Całkowita liczba warstw" @@ -11335,16 +14046,22 @@ msgid "Number of instances" msgstr "Liczba instancji" msgid "Total number of object instances in the print, summed over all objects." -msgstr "Całkowita liczba instancji obiektów w druku, zsumowana dla wszystkich obiektów." +msgstr "" +"Całkowita liczba instancji obiektów w druku, zsumowana dla wszystkich " +"obiektów." msgid "Scale per object" msgstr "Skalowanie wg obiektu" msgid "" -"Contains a string with the information about what scaling was applied to the individual objects. Indexing of the objects is zero-based (first object has index 0).\n" +"Contains a string with the information about what scaling was applied to the " +"individual objects. Indexing of the objects is zero-based (first object has " +"index 0).\n" "Example: 'x:100% y:50% z:100'." msgstr "" -"Zawiera ciąg znaków z informacją o zastosowanej skali dla poszczególnych obiektów. Numeracja obiektów zaczyna się od zera (pierwszy obiekt ma indeks 0).\n" +"Zawiera ciąg znaków z informacją o zastosowanej skali dla poszczególnych " +"obiektów. Numeracja obiektów zaczyna się od zera (pierwszy obiekt ma indeks " +"0).\n" "Przykład: 'x:100% y:50% z:100'." msgid "Input filename without extension" @@ -11353,17 +14070,26 @@ msgstr "Podaj nazwę pliku wejściowego bez rozszerzenia" msgid "Source filename of the first object, without extension." msgstr "Nazwa pliku źródłowego pierwszego obiektu, bez rozszerzenia." -msgid "The vector has two elements: x and y coordinate of the point. Values in mm." -msgstr "Wektor składa się z dwóch elementów: współrzędnych x i y punktu. Wartości w mm." +msgid "" +"The vector has two elements: x and y coordinate of the point. Values in mm." +msgstr "" +"Wektor składa się z dwóch elementów: współrzędnych x i y punktu. Wartości w " +"mm." -msgid "The vector has two elements: x and y dimension of the bounding box. Values in mm." +msgid "" +"The vector has two elements: x and y dimension of the bounding box. Values " +"in mm." msgstr "Wektor ma dwa elementy: wymiar x i y obwiedni. Wartości w mm." msgid "First layer convex hull" msgstr "Otoczka wypukła pierwszej warstwy" -msgid "Vector of points of the first layer convex hull. Each element has the following format:'[x, y]' (x and y are floating-point numbers in mm)." -msgstr "Wektor punktów otoczki wypukłej pierwszej warstwy. Każdy element ma następujący format: '[x, y]' (x i y są liczbami zmiennoprzecinkowymi w mm)." +msgid "" +"Vector of points of the first layer convex hull. Each element has the " +"following format:'[x, y]' (x and y are floating-point numbers in mm)." +msgstr "" +"Wektor punktów otoczki wypukłej pierwszej warstwy. Każdy element ma " +"następujący format: '[x, y]' (x i y są liczbami zmiennoprzecinkowymi w mm)." msgid "Bottom-left corner of first layer bounding box" msgstr "Ogranicznik lewego dolnego narożnika obszaru pierwszej warstwy" @@ -11407,8 +14133,12 @@ msgstr "Nazwa profilu druku używanego do cięcia." msgid "Filament preset name" msgstr "Nazwa profilu filamentu" -msgid "Names of the filament presets used for slicing. The variable is a vector containing one name for each extruder." -msgstr "Nazwy profili filamentu używane do cięcia.\" Zmienna jest wektorem zawierającym jedną nazwę dla każdego extrudera" +msgid "" +"Names of the filament presets used for slicing. The variable is a vector " +"containing one name for each extruder." +msgstr "" +"Nazwy profili filamentu używane do cięcia.\" Zmienna jest wektorem " +"zawierającym jedną nazwę dla każdego extrudera" msgid "Printer preset name" msgstr "Nazwa profilu drukarki" @@ -11426,13 +14156,18 @@ msgid "Layer number" msgstr "Numer warstwy" msgid "Index of the current layer. One-based (i.e. first layer is number 1)." -msgstr "Indeks aktualnej warstwy uwzględniający zero (pierwsza warstwa ma wartość 1)." +msgstr "" +"Indeks aktualnej warstwy uwzględniający zero (pierwsza warstwa ma wartość 1)." msgid "Layer z" msgstr "Warstwa Z" -msgid "Height of the current layer above the print bed, measured to the top of the layer." -msgstr "Wysokość bieżącej warstwy nad stołem roboczym, mierzona do górnej krawędzi warstwy" +msgid "" +"Height of the current layer above the print bed, measured to the top of the " +"layer." +msgstr "" +"Wysokość bieżącej warstwy nad stołem roboczym, mierzona do górnej krawędzi " +"warstwy" msgid "Maximal layer z" msgstr "Maksymalna warstwa Z" @@ -11477,8 +14212,12 @@ msgid "large overhangs" msgstr "duże nawisy" #, c-format, boost-format -msgid "It seems object %s has %s. Please re-orient the object or enable support generation." -msgstr "Wydaje się, że obiekt %s ma %s. Proszę ponownie ustawić obiekt lub włączyć generowanie podpór." +msgid "" +"It seems object %s has %s. Please re-orient the object or enable support " +"generation." +msgstr "" +"Wydaje się, że obiekt %s ma %s. Proszę ponownie ustawić obiekt lub włączyć " +"generowanie podpór." msgid "Optimizing toolpath" msgstr "Optymalizowanie ścieżki narzędzia" @@ -11486,14 +14225,20 @@ msgstr "Optymalizowanie ścieżki narzędzia" msgid "Slicing mesh" msgstr "Krojenie siatki" -msgid "No layers were detected. You might want to repair your STL file(s) or check their size or thickness and retry.\n" -msgstr "Nie wykryto żadnych warstw. Możesz chcieć naprawić swoje pliki STL lub sprawdzić ich rozmiar lub grubość i spróbować ponownie.\n" +msgid "" +"No layers were detected. You might want to repair your STL file(s) or check " +"their size or thickness and retry.\n" +msgstr "" +"Nie wykryto żadnych warstw. Możesz chcieć naprawić swoje pliki STL lub " +"sprawdzić ich rozmiar lub grubość i spróbować ponownie.\n" msgid "" -"An object's XY size compensation will not be used because it is also color-painted.\n" +"An object's XY size compensation will not be used because it is also color-" +"painted.\n" "XY Size compensation can not be combined with color-painting." msgstr "" -"Kompensacja rozmiaru XY obiektu nie będzie używana, ponieważ jest także malowany na kolor.\n" +"Kompensacja rozmiaru XY obiektu nie będzie używana, ponieważ jest także " +"malowany na kolor.\n" "Kompensacja rozmiaru XY nie może być połączona z malowaniem kolorów." #, c-format, boost-format @@ -11527,8 +14272,11 @@ msgstr "Podpory: napraw dziury na warstwie %d" msgid "Support: propagate branches at layer %d" msgstr "Podpory: rozprzestrzeniaj gałęzie na warstwie %d" -msgid "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." -msgstr "Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .stl, .obj, .amf(.xml)." +msgid "" +"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." +msgstr "" +"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .stl, .obj, ." +"amf(.xml)." msgid "Loading of a model file failed." msgstr "Ładowanie pliku modelu nie powiodło się." @@ -11537,7 +14285,9 @@ msgid "The supplied file couldn't be read because it's empty" msgstr "Dostarczony plik nie mógł być odczytany, ponieważ jest pusty" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." -msgstr "Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf lub .zip.amf." +msgstr "" +"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf lub .zip." +"amf." msgid "Canceled" msgstr "Anulowano" @@ -11596,8 +14346,11 @@ msgstr "Zakończ" msgid "How to use calibration result?" msgstr "Jak używać wyniku kalibracji?" -msgid "You could change the Flow Dynamics Calibration Factor in material editing" -msgstr "Możesz zmienić współczynnik Kalibracji Dynamiki Przepływu podczas edycji profilu filamentu" +msgid "" +"You could change the Flow Dynamics Calibration Factor in material editing" +msgstr "" +"Możesz zmienić współczynnik Kalibracji Dynamiki Przepływu podczas edycji " +"profilu filamentu" msgid "" "The current firmware version of the printer does not support calibration.\n" @@ -11654,8 +14407,10 @@ msgstr "Nazwa jest taka sama jak nazwa innego istniejącego ustwienia" msgid "create new preset failed." msgstr "utworzenie nowego profilu nie powiodło się." -msgid "Are you sure to cancel the current calibration and return to the home page?" -msgstr "Czy na pewno chcesz anulować bieżącą kalibrację i powrócić do strony głównej?" +msgid "" +"Are you sure to cancel the current calibration and return to the home page?" +msgstr "" +"Czy na pewno chcesz anulować bieżącą kalibrację i powrócić do strony głównej?" msgid "No Printer Connected!" msgstr "Żadna drukarka nie jest podłączona!" @@ -11670,9 +14425,16 @@ msgid "The input value size must be 3." msgstr "Rozmiar wartości wejściowej musi wynosić 3." msgid "" -"This machine type can only hold 16 history results per nozzle. You can delete the existing historical results and then start calibration. Or you can continue the calibration, but you cannot create new calibration historical results. \n" +"This machine type can only hold 16 history results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results. \n" "Do you still want to continue the calibration?" -msgstr "To urządzenie może przechowywać tylko 16 wyników w historii dla jednej dyszy. Możesz usunąć istniejące wyniki w historii, a następnie rozpocząć kalibrację lub kontynuować, ale nie będzie można tworzyć nowych wyników kalibracji. Czy nadal chcesz kontynuować kalibrację?" +msgstr "" +"To urządzenie może przechowywać tylko 16 wyników w historii dla jednej " +"dyszy. Możesz usunąć istniejące wyniki w historii, a następnie rozpocząć " +"kalibrację lub kontynuować, ale nie będzie można tworzyć nowych wyników " +"kalibracji. Czy nadal chcesz kontynuować kalibrację?" msgid "Connecting to printer..." msgstr "Łączenie z drukarką..." @@ -11684,12 +14446,21 @@ msgid "Flow Dynamics Calibration result has been saved to the printer" msgstr "Wynik Kalibracji Dynamiki Przepływu został zapisany w drukarce" #, c-format, boost-format -msgid "There is already a historical calibration result with the same name: %s. Only one of the results with the same name is saved. Are you sure you want to override the historical result?" -msgstr "W historii kalibracji istnieje już wynik o nazwie: %s. Czy na pewno chcesz zastąpić poprzedni wynik?" +msgid "" +"There is already a historical calibration result with the same name: %s. " +"Only one of the results with the same name is saved. Are you sure you want " +"to override the historical result?" +msgstr "" +"W historii kalibracji istnieje już wynik o nazwie: %s. Czy na pewno chcesz " +"zastąpić poprzedni wynik?" #, c-format, boost-format -msgid "This machine type can only hold %d history results per nozzle. This result will not be saved." -msgstr "To urządzenie może przechowywać tylko %d wyników w historii dla jednej dyszy. Ten wynik nie zostanie zapisany." +msgid "" +"This machine type can only hold %d history results per nozzle. This result " +"will not be saved." +msgstr "" +"To urządzenie może przechowywać tylko %d wyników w historii dla jednej " +"dyszy. Ten wynik nie zostanie zapisany." msgid "Internal Error" msgstr "Błąd wewnętrzny" @@ -11707,15 +14478,24 @@ msgid "When do you need Flow Dynamics Calibration" msgstr "Kiedy potrzebujesz Kalibracji Dynamiki Przepływu" msgid "" -"We now have added the auto-calibration for different filaments, which is fully automated and the result will be saved into the printer for future use. You only need to do the calibration in the following limited cases:\n" -"1. If you introduce a new filament of different brands/models or the filament is damp;\n" +"We now have added the auto-calibration for different filaments, which is " +"fully automated and the result will be saved into the printer for future " +"use. You only need to do the calibration in the following limited cases:\n" +"1. If you introduce a new filament of different brands/models or the " +"filament is damp;\n" "2. if the nozzle is worn out or replaced with a new one;\n" -"3. If the max volumetric speed or print temperature is changed in the filament setting." +"3. If the max volumetric speed or print temperature is changed in the " +"filament setting." msgstr "" -"Teraz dodaliśmy automatyczną kalibrację dla różnych filamentów, która jest w pełni zautomatyzowana, a wynik zostanie zapisany w drukarce do przyszłego użycia. Musisz przeprowadzić kalibrację tylko w następujących ograniczonych przypadkach:\n" -"1. Jeśli wprowadzasz nowy filament innej marki/modelu lub filament jest wilgotny;\n" +"Teraz dodaliśmy automatyczną kalibrację dla różnych filamentów, która jest w " +"pełni zautomatyzowana, a wynik zostanie zapisany w drukarce do przyszłego " +"użycia. Musisz przeprowadzić kalibrację tylko w następujących ograniczonych " +"przypadkach:\n" +"1. Jeśli wprowadzasz nowy filament innej marki/modelu lub filament jest " +"wilgotny;\n" "2. Jeśli dysza jest zużyta lub została wymieniona na nową;\n" -"3. Jeśli maksymalna prędkość przepływu lub temperatura druku zostaną zmienione w ustawieniach filamentu." +"3. Jeśli maksymalna prędkość przepływu lub temperatura druku zostaną " +"zmienione w ustawieniach filamentu." msgid "About this calibration" msgstr "O tej kalibracji" @@ -11723,54 +14503,131 @@ msgstr "O tej kalibracji" msgid "" "Please find the details of Flow Dynamics Calibration from our wiki.\n" "\n" -"Usually the calibration is unnecessary. When you start a single color/material print, with the \"flow dynamics calibration\" option checked in the print start menu, the printer will follow the old way, calibrate the filament before the print; When you start a multi color/material print, the printer will use the default compensation parameter for the filament during every filament switch which will have a good result in most cases.\n" +"Usually the calibration is unnecessary. When you start a single color/" +"material print, with the \"flow dynamics calibration\" option checked in the " +"print start menu, the printer will follow the old way, calibrate the " +"filament before the print; When you start a multi color/material print, the " +"printer will use the default compensation parameter for the filament during " +"every filament switch which will have a good result in most cases.\n" "\n" -"Please note there are a few cases that will make the calibration result not reliable: using a texture plate to do the calibration; the build plate does not have good adhesion (please wash the build plate or apply gluestick!) ...You can find more from our wiki.\n" +"Please note there are a few cases that will make the calibration result not " +"reliable: using a texture plate to do the calibration; the build plate does " +"not have good adhesion (please wash the build plate or apply gluestick!) ..." +"You can find more from our wiki.\n" "\n" -"The calibration results have about 10 percent jitter in our test, which may cause the result not exactly the same in each calibration. We are still investigating the root cause to do improvements with new updates." +"The calibration results have about 10 percent jitter in our test, which may " +"cause the result not exactly the same in each calibration. We are still " +"investigating the root cause to do improvements with new updates." msgstr "" -"Proszę znaleźć szczegóły dotyczące kalibracji dynamiki przepływu w naszej wiki.\n" +"Proszę znaleźć szczegóły dotyczące kalibracji dynamiki przepływu w naszej " +"wiki.\n" "\n" -"Zazwyczaj kalibracja nie jest konieczna. Gdy rozpoczynasz druk w jednym kolorze/materiale i zaznaczasz opcję \"kalibracja dynamiki przepływu\" w menu rozpoczęcia druku. Drukarka będzie postępować w tradycyjny sposób, kalibrując filament przed rozpoczęciem druku. W przypadku druku w wielu kolorach/materiałach drukarka będzie używać domyślnego parametru kompensacji dla filamentu podczas każdej jego zmiany, co w większości przypadków daje dobre rezultaty.\n" +"Zazwyczaj kalibracja nie jest konieczna. Gdy rozpoczynasz druk w jednym " +"kolorze/materiale i zaznaczasz opcję \"kalibracja dynamiki przepływu\" w " +"menu rozpoczęcia druku. Drukarka będzie postępować w tradycyjny sposób, " +"kalibrując filament przed rozpoczęciem druku. W przypadku druku w wielu " +"kolorach/materiałach drukarka będzie używać domyślnego parametru kompensacji " +"dla filamentu podczas każdej jego zmiany, co w większości przypadków daje " +"dobre rezultaty.\n" "\n" -"Proszę jednak zauważyć, że istnieją pewne przypadki, w których wynik kalibracji może być niesolidny: korzystanie z Texture PEI do kalibracji; brak dobrej przyczepności podłoża (proszę umyć płytę lub nałożyć klej!)... Więcej informacji można znaleźć w naszej wiki.\n" +"Proszę jednak zauważyć, że istnieją pewne przypadki, w których wynik " +"kalibracji może być niesolidny: korzystanie z Texture PEI do kalibracji; " +"brak dobrej przyczepności podłoża (proszę umyć płytę lub nałożyć klej!)... " +"Więcej informacji można znaleźć w naszej wiki.\n" "\n" -"Wyniki kalibracji mają około 10 procent fluktuacji w naszych testach, co może powodować, że wynik nie będzie dokładnie taki sam w każdej kalibracji. Wciąż badamy źródło tych fluktuacji i pracujemy nad wprowadzeniem ulepszeń w nowych aktualizacjach." +"Wyniki kalibracji mają około 10 procent fluktuacji w naszych testach, co " +"może powodować, że wynik nie będzie dokładnie taki sam w każdej kalibracji. " +"Wciąż badamy źródło tych fluktuacji i pracujemy nad wprowadzeniem ulepszeń w " +"nowych aktualizacjach." msgid "When to use Flow Rate Calibration" msgstr "Kiedy użyć Kalibracji Natężenia Przepływu" msgid "" -"After using Flow Dynamics Calibration, there might still be some extrusion issues, such as:\n" -"1. Over-Extrusion: Excess material on your printed object, forming blobs or zits, or the layers seem thicker than expected and not uniform.\n" -"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the top layer of the model, even when printing slowly.\n" +"After using Flow Dynamics Calibration, there might still be some extrusion " +"issues, such as:\n" +"1. Over-Extrusion: Excess material on your printed object, forming blobs or " +"zits, or the layers seem thicker than expected and not uniform.\n" +"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " +"top layer of the model, even when printing slowly.\n" "3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" -"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as they should be." +"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " +"they should be." msgstr "" -"Po użyciu kalibracji dynamiki przepływu mogą nadal występować pewne problemy z ekstruzją, takie jak:\n" -"1. Nadmierna ekstruzja: Nadmiar filamentu na twoim wydrukowanym obiekcie, tworzenie grudek i wybrzuszeń, lub warstwy wydają się być grubsze i nierówne niż oczekiwano.\n" -"2. Niedostateczna ekstruzja: Bardzo cienkie warstwy, słaba wytrzymałość wypełnienia, lub przerwy w górnej warstwie modelu, nawet przy wolnym drukowaniu.\n" -"3. Słaba jakość powierzchni: Powierzchnia twoich wydruków wydaje się być szorstka lub nierówna.\n" -"4. Słaba wytrzymałość strukturalna: Wydruki łatwo się łamią lub nie wydają się być tak wytrzymałe, jak powinny." - -msgid "In addition, Flow Rate Calibration is crucial for foaming materials like LW-PLA used in RC planes. These materials expand greatly when heated, and calibration provides a useful reference flow rate." -msgstr "Dodatkowo, kalibracja natężenia przepływu jest kluczowa dla materiałów piankowych, takich jak LW-PLA używane w samolotach RC. Te filamenty znacząco się rozprężają pod wpływem temperatury, a kalibracja zapewnia przydatną referencyjną prędkość przepływu." - -msgid "Flow Rate Calibration measures the ratio of expected to actual extrusion volumes. The default setting works well in Bambu Lab printers and official filaments as they were pre-calibrated and fine-tuned. For a regular filament, you usually won't need to perform a Flow Rate Calibration unless you still see the listed defects after you have done other calibrations. For more details, please check out the wiki article." -msgstr "Kalibracja Natężenie Przepływu mierzy stosunek oczekiwanej do rzeczywistej objętości ekstruzji. Domyślne ustawienie dobrze funkcjonuje w drukarkach Bambu Lab i oficjalnych filamentach, ponieważ były one wcześniej skalibrowane i dokładnie dostrojone. Dla zwykłego filamentu zazwyczaj nie będziesz musiał przeprowadzać kalibracji natężenia przepływu, chyba że nadzieja widoczne wymienione wady po wykonaniu innych kalibracji. Po więcej szczegółów proszę sprawdzić artykuł w naszej stronie Wiki." +"Po użyciu kalibracji dynamiki przepływu mogą nadal występować pewne problemy " +"z ekstruzją, takie jak:\n" +"1. Nadmierna ekstruzja: Nadmiar filamentu na twoim wydrukowanym obiekcie, " +"tworzenie grudek i wybrzuszeń, lub warstwy wydają się być grubsze i nierówne " +"niż oczekiwano.\n" +"2. Niedostateczna ekstruzja: Bardzo cienkie warstwy, słaba wytrzymałość " +"wypełnienia, lub przerwy w górnej warstwie modelu, nawet przy wolnym " +"drukowaniu.\n" +"3. Słaba jakość powierzchni: Powierzchnia twoich wydruków wydaje się być " +"szorstka lub nierówna.\n" +"4. Słaba wytrzymałość strukturalna: Wydruki łatwo się łamią lub nie wydają " +"się być tak wytrzymałe, jak powinny." msgid "" -"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, directly measuring the calibration patterns. However, please be advised that the efficacy and accuracy of this method may be compromised with specific types of materials. Particularly, filaments that are transparent or semi-transparent, sparkling-particled, or have a high-reflective finish may not be suitable for this calibration and can produce less-than-desirable results.\n" -"\n" -"The calibration results may vary between each calibration or filament. We are still improving the accuracy and compatibility of this calibration through firmware updates over time.\n" -"\n" -"Caution: Flow Rate Calibration is an advanced process, to be attempted only by those who fully understand its purpose and implications. Incorrect usage can lead to sub-par prints or printer damage. Please make sure to carefully read and understand the process before doing it." +"In addition, Flow Rate Calibration is crucial for foaming materials like LW-" +"PLA used in RC planes. These materials expand greatly when heated, and " +"calibration provides a useful reference flow rate." msgstr "" -"Automatyczna kalibracja natężenia przepływu wykorzystuje technologię Micro-Lidar firmy Bambu Lab, bezpośrednio mierząc wzorce kalibracyjne. Jednak należy pamiętać, że skuteczność i dokładność tej metody mogą być ograniczone w przypadku konkretnych rodzajów filamentów. Szczególnie filamenty, które są przezroczyste lub półprzezroczyste, z iskrzącymi cząstkami lub o wysokim połysku mogą być nieodpowiednie do tej kalibracji i mogą dawać mniej niż pożądane wyniki.\n" +"Dodatkowo, kalibracja natężenia przepływu jest kluczowa dla materiałów " +"piankowych, takich jak LW-PLA używane w samolotach RC. Te filamenty znacząco " +"się rozprężają pod wpływem temperatury, a kalibracja zapewnia przydatną " +"referencyjną prędkość przepływu." + +msgid "" +"Flow Rate Calibration measures the ratio of expected to actual extrusion " +"volumes. The default setting works well in Bambu Lab printers and official " +"filaments as they were pre-calibrated and fine-tuned. For a regular " +"filament, you usually won't need to perform a Flow Rate Calibration unless " +"you still see the listed defects after you have done other calibrations. For " +"more details, please check out the wiki article." +msgstr "" +"Kalibracja Natężenie Przepływu mierzy stosunek oczekiwanej do rzeczywistej " +"objętości ekstruzji. Domyślne ustawienie dobrze funkcjonuje w drukarkach " +"Bambu Lab i oficjalnych filamentach, ponieważ były one wcześniej " +"skalibrowane i dokładnie dostrojone. Dla zwykłego filamentu zazwyczaj nie " +"będziesz musiał przeprowadzać kalibracji natężenia przepływu, chyba że " +"nadzieja widoczne wymienione wady po wykonaniu innych kalibracji. Po więcej " +"szczegółów proszę sprawdzić artykuł w naszej stronie Wiki." + +msgid "" +"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " +"directly measuring the calibration patterns. However, please be advised that " +"the efficacy and accuracy of this method may be compromised with specific " +"types of materials. Particularly, filaments that are transparent or semi-" +"transparent, sparkling-particled, or have a high-reflective finish may not " +"be suitable for this calibration and can produce less-than-desirable " +"results.\n" "\n" -"Wyniki kalibracji mogą się różnić między poszczególnymi kalibracjami lub filamentami. Nadal pracujemy nad poprawą dokładności i kompatybilności tej kalibracji za pomocą aktualizacji oprogramowania.\n" +"The calibration results may vary between each calibration or filament. We " +"are still improving the accuracy and compatibility of this calibration " +"through firmware updates over time.\n" "\n" -"Ostrzeżenie: Kalibracja przepływu jest zaawansowanym procesem, który powinien być przeprowadzany tylko przez osoby, które w pełni rozumieją jego cel i implikacje. Niewłaściwe użycie może prowadzić do niskiej jakości wydruków lub uszkodzenia drukarki. Przed przystąpieniem do kalibracji upewnij się, że dokładnie przeczytałeś i zrozumiałeś proces." +"Caution: Flow Rate Calibration is an advanced process, to be attempted only " +"by those who fully understand its purpose and implications. Incorrect usage " +"can lead to sub-par prints or printer damage. Please make sure to carefully " +"read and understand the process before doing it." +msgstr "" +"Automatyczna kalibracja natężenia przepływu wykorzystuje technologię Micro-" +"Lidar firmy Bambu Lab, bezpośrednio mierząc wzorce kalibracyjne. Jednak " +"należy pamiętać, że skuteczność i dokładność tej metody mogą być ograniczone " +"w przypadku konkretnych rodzajów filamentów. Szczególnie filamenty, które są " +"przezroczyste lub półprzezroczyste, z iskrzącymi cząstkami lub o wysokim " +"połysku mogą być nieodpowiednie do tej kalibracji i mogą dawać mniej niż " +"pożądane wyniki.\n" +"\n" +"Wyniki kalibracji mogą się różnić między poszczególnymi kalibracjami lub " +"filamentami. Nadal pracujemy nad poprawą dokładności i kompatybilności tej " +"kalibracji za pomocą aktualizacji oprogramowania.\n" +"\n" +"Ostrzeżenie: Kalibracja przepływu jest zaawansowanym procesem, który " +"powinien być przeprowadzany tylko przez osoby, które w pełni rozumieją jego " +"cel i implikacje. Niewłaściwe użycie może prowadzić do niskiej jakości " +"wydruków lub uszkodzenia drukarki. Przed przystąpieniem do kalibracji " +"upewnij się, że dokładnie przeczytałeś i zrozumiałeś proces." msgid "When you need Max Volumetric Speed Calibration" msgstr "Kiedy potrzebujesz kalibracji Maksymalnej Prędkości Przepływu" @@ -11790,11 +14647,19 @@ msgstr "filamentami z niedokładną średnicą" msgid "We found the best Flow Dynamics Calibration Factor" msgstr "Znaleźliśmy najlepszy współczynnik Kalibracji Dynamiki Przepływu" -msgid "Part of the calibration failed! You may clean the plate and retry. The failed test result would be dropped." -msgstr "Część kalibracji nie powiodła się! Możesz oczyścić płytę i spróbować ponownie. Niewłaściwy wynik testu zostanie odrzucony." +msgid "" +"Part of the calibration failed! You may clean the plate and retry. The " +"failed test result would be dropped." +msgstr "" +"Część kalibracji nie powiodła się! Możesz oczyścić płytę i spróbować " +"ponownie. Niewłaściwy wynik testu zostanie odrzucony." -msgid "*We recommend you to add brand, materia, type, and even humidity level in the Name" -msgstr "*Zalecamy dodanie do nazwy marki i typu filamentu, a nawet poziomu wilgotności" +msgid "" +"*We recommend you to add brand, materia, type, and even humidity level in " +"the Name" +msgstr "" +"*Zalecamy dodanie do nazwy marki i typu filamentu, a nawet poziomu " +"wilgotności" msgid "Failed" msgstr "Nieudane" @@ -11805,12 +14670,22 @@ msgstr "Proszę wprowadzić nazwę, którą chcesz zapisać w drukarce." msgid "The name cannot exceed 40 characters." msgstr "Nazwa nie może przekraczać 40 znaków." -msgid "Only one of the results with the same name will be saved. Are you sure you want to overrides the other results?" -msgstr "Tylko jeden z wyników o tej samej nazwie zostanie zapisany. Czy na pewno chcesz zastąpić inne wyniki?" +msgid "" +"Only one of the results with the same name will be saved. Are you sure you " +"want to overrides the other results?" +msgstr "" +"Tylko jeden z wyników o tej samej nazwie zostanie zapisany. Czy na pewno " +"chcesz zastąpić inne wyniki?" #, c-format, boost-format -msgid "There is already a historical calibration result with the same name: %s. Only one of the results with the same name is saved. Are you sure you want to overrides the historical result?" -msgstr "Istnieje już historia wyników kalibracji o tej samej nazwie: %s. Tylko jeden z wyników o tej samej nazwie zostanie zapisany. Czy na pewno chcesz zastąpić ten wynik?" +msgid "" +"There is already a historical calibration result with the same name: %s. " +"Only one of the results with the same name is saved. Are you sure you want " +"to overrides the historical result?" +msgstr "" +"Istnieje już historia wyników kalibracji o tej samej nazwie: %s. Tylko jeden " +"z wyników o tej samej nazwie zostanie zapisany. Czy na pewno chcesz zastąpić " +"ten wynik?" msgid "Please find the best line on your plate" msgstr "Znajdź najlepszą linię na swojej płycie" @@ -11868,7 +14743,8 @@ msgid "Please choose a block with smoothest top surface." msgstr "Wybierz blok z najgładszą górną powierzchnią." msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" -msgstr "Proszę wprowadzić prawidłową wartość (0 <= Max Prędkość Przepływu <= 60)" +msgstr "" +"Proszę wprowadzić prawidłową wartość (0 <= Max Prędkość Przepływu <= 60)" msgid "Calibration Type" msgstr "Typ kalibracji" @@ -11882,8 +14758,12 @@ msgstr "Dokładna kalibracja na podstawie współczynnika przepływu" msgid "Title" msgstr "Tytuł" -msgid "A test model will be printed. Please clear the build plate and place it back to the hot bed before calibration." -msgstr "Będzie wydrukowany model testowy. Przed kalibracją oczyść płytę roboczą i umieść ją z powrotem na stole grzewczym." +msgid "" +"A test model will be printed. Please clear the build plate and place it back " +"to the hot bed before calibration." +msgstr "" +"Będzie wydrukowany model testowy. Przed kalibracją oczyść płytę roboczą i " +"umieść ją z powrotem na stole grzewczym." msgid "Printing Parameters" msgstr "Parametry drukowania" @@ -11920,7 +14800,8 @@ msgid "%s is not compatible with %s" msgstr "%s nie jest kompatybilne z %s" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." -msgstr "TPU nie jest obsługiwane dla automatycznej kalibracji dynamiki przepływu." +msgstr "" +"TPU nie jest obsługiwane dla automatycznej kalibracji dynamiki przepływu." msgid "Connecting to printer" msgstr "Łączenie z drukarką" @@ -11963,7 +14844,8 @@ msgstr "Akcja" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "To urządzenie może przechowywać tylko %d wyników w historii dla jednej dyszy." +msgstr "" +"To urządzenie może przechowywać tylko %d wyników w historii dla jednej dyszy." msgid "Edit Flow Dynamics Calibration" msgstr "Edytuj Kalibrację Dynamiki Przepływu" @@ -12156,14 +15038,17 @@ msgid "Upload to Printer Host with the following filename:" msgstr "Prześlij do serwera druku z następującą nazwą pliku:" msgid "Use forward slashes ( / ) as a directory separator if needed." -msgstr "Użyj prawego ukośnika ( / ) jako separatora katalogów, jeśli jest to potrzebne." +msgstr "" +"Użyj prawego ukośnika ( / ) jako separatora katalogów, jeśli jest to " +"potrzebne." msgid "Upload to storage" msgstr "Prześlij do pamięci" #, c-format, boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" -msgstr "Przesyłana nazwa pliku nie kończy się z \\\"‪%s‬\\\". Czy chcesz kontynuować?" +msgstr "" +"Przesyłana nazwa pliku nie kończy się z \\\"‪%s‬\\\". Czy chcesz kontynuować?" msgid "Upload" msgstr "Załaduj" @@ -12332,10 +15217,14 @@ msgid "Vendor is not selected, please reselect vendor." msgstr "Dostawca nie jest wybrany, proszę ponownie wybrać producenta." msgid "Custom vendor is not input, please input custom vendor." -msgstr "Nie wprowadzono dostawcy, proszę wprowadzić niestandardowego producenta." +msgstr "" +"Nie wprowadzono dostawcy, proszę wprowadzić niestandardowego producenta." -msgid "\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." -msgstr "\"Bambu\" lub \"Generic\" nie mogą być używane jako Dostawca dla niestandardowych filamentów." +msgid "" +"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +msgstr "" +"\"Bambu\" lub \"Generic\" nie mogą być używane jako Dostawca dla " +"niestandardowych filamentów." msgid "Filament type is not selected, please reselect type." msgstr "Typ filamentu nie jest wybrany, proszę ponownie wybrać typ." @@ -12343,25 +15232,36 @@ msgstr "Typ filamentu nie jest wybrany, proszę ponownie wybrać typ." msgid "Filament serial is not inputed, please input serial." msgstr "Seria filamentu nie jest wprowadzona, proszę wprowadzić serie." -msgid "There may be escape characters in the vendor or serial input of filament. Please delete and re-enter." -msgstr "W polu Dostawcy lub Serii filamentu nie mogą występować znaki specjalne. Proszę usunąć i ponownie wprowadzić." +msgid "" +"There may be escape characters in the vendor or serial input of filament. " +"Please delete and re-enter." +msgstr "" +"W polu Dostawcy lub Serii filamentu nie mogą występować znaki specjalne. " +"Proszę usunąć i ponownie wprowadzić." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." -msgstr "Wszystkie wprowadzone dane w niestandardowym dostawcy lub serii to spacje. Proszę wprowadzić ponownie." +msgstr "" +"Wszystkie wprowadzone dane w niestandardowym dostawcy lub serii to spacje. " +"Proszę wprowadzić ponownie." msgid "The vendor can not be a number. Please re-enter." msgstr "Dostawca nie może być liczbą. Proszę wprowadzić ponownie." -msgid "You have not selected a printer or preset yet. Please select at least one." -msgstr "Nie wybrałeś jeszcze żadnej drukarki ani ustawień wstępnych. Proszę wybierz przynajmniej jedno." +msgid "" +"You have not selected a printer or preset yet. Please select at least one." +msgstr "" +"Nie wybrałeś jeszcze żadnej drukarki ani ustawień wstępnych. Proszę wybierz " +"przynajmniej jedno." #, c-format, boost-format msgid "" "The Filament name %s you created already exists. \n" -"If you continue creating, the preset created will be displayed with its full name. Do you want to continue?" +"If you continue creating, the preset created will be displayed with its full " +"name. Do you want to continue?" msgstr "" "Nazwa filamentu %s, którą utworzyłeś, już istnieje. \n" -"Jeśli będziesz kontynuować, utworzony preset będzie wyświetlany pod swoją pełną nazwą. Czy chcesz kontynuować?" +"Jeśli będziesz kontynuować, utworzony preset będzie wyświetlany pod swoją " +"pełną nazwą. Czy chcesz kontynuować?" msgid "Some existing presets have failed to be created, as follows:\n" msgstr "Niektóre istniejące profile nie zostały utworzone:\n" @@ -12374,10 +15274,12 @@ msgstr "" "Czy chcesz go zastąpić?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you selected\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you selected" +"\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" -"Nazwa profilu zostanie zmieniona na \"Dostawca Typ Seria @nazwa drukarki, którą wybrałeś\".\n" +"Nazwa profilu zostanie zmieniona na \"Dostawca Typ Seria @nazwa drukarki, " +"którą wybrałeś\".\n" "Aby dodać profil dla innych drukarek, przejdź do wyboru drukarki." msgid "Create Printer/Nozzle" @@ -12448,10 +15350,13 @@ msgid "The file exceeds %d MB, please import again." msgstr "Plik przekracza %d MB, proszę zaimportuj ponownie." msgid "Exception in obtaining file size, please import again." -msgstr "Wyjątek podczas uzyskiwania rozmiaru pliku, proszę zaimportuj ponownie." +msgstr "" +"Wyjątek podczas uzyskiwania rozmiaru pliku, proszę zaimportuj ponownie." msgid "Preset path is not find, please reselect vendor." -msgstr "Ścieżka ustawień wstępnych nie została znaleziona, proszę wybrać dostawcę ponownie." +msgstr "" +"Ścieżka ustawień wstępnych nie została znaleziona, proszę wybrać dostawcę " +"ponownie." msgid "The printer model was not found, please reselect." msgstr "Model drukarki nie został znaleziony, proszę wybrać ponownie" @@ -12477,19 +15382,30 @@ msgstr "Opracuj Profil Procesu" msgid "Back Page 1" msgstr "Poprzednia Strona 1" -msgid "You have not yet chosen which printer preset to create based on. Please choose the vendor and model of the printer" -msgstr "Jeszcze nie dokonano wyboru, na podstawie którego profilu drukarki ma być utworzony nowy profil. Proszę wybrać dostawce i model drukarki." +msgid "" +"You have not yet chosen which printer preset to create based on. Please " +"choose the vendor and model of the printer" +msgstr "" +"Jeszcze nie dokonano wyboru, na podstawie którego profilu drukarki ma być " +"utworzony nowy profil. Proszę wybrać dostawce i model drukarki." -msgid "You have entered an illegal input in the printable area section on the first page. Please check before creating it." -msgstr "W sekcji \"Obszar drukowania\" na pierwszej stronie wprowadzono nieprawidłową wartość. Sprawdź wprowadzone dane przed utworzeniem." +msgid "" +"You have entered an illegal input in the printable area section on the first " +"page. Please check before creating it." +msgstr "" +"W sekcji \"Obszar drukowania\" na pierwszej stronie wprowadzono " +"nieprawidłową wartość. Sprawdź wprowadzone dane przed utworzeniem." msgid "The custom printer or model is not inputed, place input." msgstr "Brakuje niestandardowej drukarki lub modelu, proszę wprowadzić dane." msgid "" -"The printer preset you created already has a preset with the same name. Do you want to overwrite it?\n" -"\tYes: Overwrite the printer preset with the same name, and filament and process presets with the same preset name will be recreated \n" -"and filament and process presets without the same preset name will be reserve.\n" +"The printer preset you created already has a preset with the same name. Do " +"you want to overwrite it?\n" +"\tYes: Overwrite the printer preset with the same name, and filament and " +"process presets with the same preset name will be recreated \n" +"and filament and process presets without the same preset name will be " +"reserve.\n" "\tCancel: Do not create a preset, return to the creation interface." msgstr "" "Profil drukarki o tej nazwie już istnieje. Czy chcesz go zastąpić?\n" @@ -12515,20 +15431,36 @@ msgstr "Dostawca nie został znaleziony, proszę wybrać ponownie." msgid "Current vendor has no models, please reselect." msgstr "Obecny dostawca nie ma modeli, proszę wybrać ponownie." -msgid "You have not selected the vendor and model or inputed the custom vendor and model." -msgstr "Nie wybrano dostawcy ani modelu lub nie wprowadzono niestandardowego dostawcy i modelu" +msgid "" +"You have not selected the vendor and model or inputed the custom vendor and " +"model." +msgstr "" +"Nie wybrano dostawcy ani modelu lub nie wprowadzono niestandardowego " +"dostawcy i modelu" -msgid "There may be escape characters in the custom printer vendor or model. Please delete and re-enter." -msgstr "W polu Dostawcy lub Modelu drukarki nie mogą występować znaki Specjalne. Proszę usunąć i wprowadzić ponownie." +msgid "" +"There may be escape characters in the custom printer vendor or model. Please " +"delete and re-enter." +msgstr "" +"W polu Dostawcy lub Modelu drukarki nie mogą występować znaki Specjalne. " +"Proszę usunąć i wprowadzić ponownie." -msgid "All inputs in the custom printer vendor or model are spaces. Please re-enter." -msgstr "W polach dotyczących niestandardowego producenta lub modelu drukarki wprowadzono spacje. Proszę ponownie wprowadzić poprawne dane." +msgid "" +"All inputs in the custom printer vendor or model are spaces. Please re-enter." +msgstr "" +"W polach dotyczących niestandardowego producenta lub modelu drukarki " +"wprowadzono spacje. Proszę ponownie wprowadzić poprawne dane." msgid "Please check bed printable shape and origin input." -msgstr "Proszę sprawdzić kształt stołu do druku oraz dane dotyczące jego położenia początkowego" +msgstr "" +"Proszę sprawdzić kształt stołu do druku oraz dane dotyczące jego położenia " +"początkowego" -msgid "You have not yet selected the printer to replace the nozzle, please choose." -msgstr "Nie wybrałeś jeszcze drukarki, do której chcesz zamienić dyszę, proszę dokonaj wyboru." +msgid "" +"You have not yet selected the printer to replace the nozzle, please choose." +msgstr "" +"Nie wybrałeś jeszcze drukarki, do której chcesz zamienić dyszę, proszę " +"dokonaj wyboru." msgid "Create Printer Successful" msgstr "Utworzenie profilu drukarki zakończyło się powodzeniem" @@ -12547,25 +15479,33 @@ msgstr "Utworzono Profil Filamentu" msgid "" "Please go to filament setting to edit your presets if you need.\n" -"Please note that nozzle temperature, hot bed temperature, and maximum volumetric speed has a significant impact on printing quality. Please set them carefully." -msgstr "Jeżeli zajdzie taka potrzeba, przejdź do ustawień filamentu, aby edytować swoje profile. Należy pamiętać, że temperatura dyszy, temperatura stołu i maksymalna prędkość objętościowa mają znaczący wpływ na jakość druku. Proszę ustawiać je ostrożnie." +"Please note that nozzle temperature, hot bed temperature, and maximum " +"volumetric speed has a significant impact on printing quality. Please set " +"them carefully." +msgstr "" +"Jeżeli zajdzie taka potrzeba, przejdź do ustawień filamentu, aby edytować " +"swoje profile. Należy pamiętać, że temperatura dyszy, temperatura stołu i " +"maksymalna prędkość objętościowa mają znaczący wpływ na jakość druku. Proszę " +"ustawiać je ostrożnie." msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not enabled, which may result in unsuccessful Filament settings on the Device page. \n" +"Orca has detected that your user presets synchronization function is not " +"enabled, which may result in unsuccessful Filament settings on the Device " +"page. \n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" "\n" -"Slicer wykrył, że funkcja synchronizacji profili użytkownika nie jest włączona, co może skutkować niepoprawnymi ustawieniami filamentu na stronie Urządzenia. Kliknij \"Synchronizuj profile użytkownika\", aby włączyć funkcję synchronizacji." +"Slicer wykrył, że funkcja synchronizacji profili użytkownika nie jest " +"włączona, co może skutkować niepoprawnymi ustawieniami filamentu na stronie " +"Urządzenia. Kliknij \"Synchronizuj profile użytkownika\", aby włączyć " +"funkcję synchronizacji." msgid "Printer Setting" msgstr "Ustawienia drukarki" -msgid "Export Configs" -msgstr "Eksportuj konfiguracje" - msgid "Printer config bundle(.orca_printer)" msgstr "Zestaw konfiguracji drukarki (.orca_printer)" @@ -12601,8 +15541,10 @@ msgstr "Eksport zakończony sukcesem" #, c-format, boost-format msgid "" -"The '%s' folder already exists in the current directory. Do you want to clear it and rebuild it.\n" -"If not, a time suffix will be added, and you can modify the name after creation." +"The '%s' folder already exists in the current directory. Do you want to " +"clear it and rebuild it.\n" +"If not, a time suffix will be added, and you can modify the name after " +"creation." msgstr "" "Plik '%s' już istnieje w bieżącym katalogu. Czy chcesz go nadpisać?\n" "Jeśli nie, zostanie dodany sufiks czasowy do nazwy pliku." @@ -12611,7 +15553,8 @@ msgid "" "Printer and all the filament&&process presets that belongs to the printer. \n" "Can be shared with others." msgstr "" -"Profil drukarki oraz wszystkie ustawienia filamentu i procesu, które do niej należą. \n" +"Profil drukarki oraz wszystkie ustawienia filamentu i procesu, które do niej " +"należą. \n" "Można je udostępniać innym osobom." msgid "" @@ -12621,27 +15564,42 @@ msgstr "" "Profile filamentu.\n" "Można je udostępniać innym osobom." -msgid "Only display printer names with changes to printer, filament, and process presets." -msgstr "Wyświetlone są jedynie nazwy drukarek, które miały zmienione ustawienia filamentu lub procesu." +msgid "" +"Only display printer names with changes to printer, filament, and process " +"presets." +msgstr "" +"Wyświetlone są jedynie nazwy drukarek, które miały zmienione ustawienia " +"filamentu lub procesu." msgid "Only display the filament names with changes to filament presets." -msgstr "Wyświetlone są jedynie nazwy filamentów, które zostały zmodyfikowane w ustawieniach." +msgstr "" +"Wyświetlone są jedynie nazwy filamentów, które zostały zmodyfikowane w " +"ustawieniach." -msgid "Only printer names with user printer presets will be displayed, and each preset you choose will be exported as a zip." -msgstr "Wyświetlane są tylko nazwy drukarek z ustawieniami użytkownika, wybrany zestaw zostanie wyeksportowany jako plik zip." +msgid "" +"Only printer names with user printer presets will be displayed, and each " +"preset you choose will be exported as a zip." +msgstr "" +"Wyświetlane są tylko nazwy drukarek z ustawieniami użytkownika, wybrany " +"zestaw zostanie wyeksportowany jako plik zip." msgid "" "Only the filament names with user filament presets will be displayed, \n" -"and all user filament presets in each filament name you select will be exported as a zip." +"and all user filament presets in each filament name you select will be " +"exported as a zip." msgstr "" -"Na liście widoczne są tylko nazwy filamentów ze zmodyfikowanymi ustawieniami, \n" -"a dla każdej wybranej nazwy filamentu zostaną wyeksportowane wszystkie ustawienia jako archiwum zip." +"Na liście widoczne są tylko nazwy filamentów ze zmodyfikowanymi " +"ustawieniami, \n" +"a dla każdej wybranej nazwy filamentu zostaną wyeksportowane wszystkie " +"ustawienia jako archiwum zip." msgid "" "Only printer names with changed process presets will be displayed, \n" -"and all user process presets in each printer name you select will be exported as a zip." +"and all user process presets in each printer name you select will be " +"exported as a zip." msgstr "" -"Na liście widoczne są tylko nazwy drukarek ze zmodyfikowanymi ustawieniami procesu, \n" +"Na liście widoczne są tylko nazwy drukarek ze zmodyfikowanymi ustawieniami " +"procesu, \n" "a dla każdej wybranej nazwy drukarki zostaną wyeksportowane wszystkie \n" "ustawienia procesu jako archiwum zip." @@ -12652,7 +15610,9 @@ msgid "Please select a type you want to export" msgstr "Proszę wybierz co chcesz wyeksportować" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "Nie udało się utworzyć tymczasowego folderu. Spróbuj ponownie wyeksportować konfiguracje." +msgstr "" +"Nie udało się utworzyć tymczasowego folderu. Spróbuj ponownie wyeksportować " +"konfiguracje." msgid "Edit Filament" msgstr "Edytuj Filament" @@ -12660,8 +15620,12 @@ msgstr "Edytuj Filament" msgid "Filament presets under this filament" msgstr "Dodaj profil filamentu poniżej" -msgid "Note: If the only preset under this filament is deleted, the filament will be deleted after exiting the dialog." -msgstr "Uwaga: Jeśli ostatni profil tego filamentu zostanie usunięty, wszystkie ustawienia tego filamentu zostaną skasowane po wyjściu z okna dialogowego." +msgid "" +"Note: If the only preset under this filament is deleted, the filament will " +"be deleted after exiting the dialog." +msgstr "" +"Uwaga: Jeśli ostatni profil tego filamentu zostanie usunięty, wszystkie " +"ustawienia tego filamentu zostaną skasowane po wyjściu z okna dialogowego." msgid "Presets inherited by other presets can not be deleted" msgstr "Nie można usunąć profili dziedziczonych przez inne profile" @@ -12689,10 +15653,13 @@ msgstr "Usuń Filament" msgid "" "All the filament presets belong to this filament would be deleted. \n" -"If you are using this filament on your printer, please reset the filament information for that slot." +"If you are using this filament on your printer, please reset the filament " +"information for that slot." msgstr "" -"Wszystkie ustawienia wstępne filamentu przypisane do tego profilu zostaną usunięte.\n" -"Jeśli używasz tego filamentu w swojej drukarce, proszę zresetuj informacje o filamencie dla tego slotu." +"Wszystkie ustawienia wstępne filamentu przypisane do tego profilu zostaną " +"usunięte.\n" +"Jeśli używasz tego filamentu w swojej drukarce, proszę zresetuj informacje o " +"filamencie dla tego slotu." msgid "Delete filament" msgstr "Usuń filament" @@ -12707,7 +15674,9 @@ msgid "Copy preset from filament" msgstr "Skopiuj ustawienie z filamentu" msgid "The filament choice not find filament preset, please reselect it" -msgstr "Nie znaleziono profilu dla wybranego filamentu, proszę dokonać ponownego wyboru" +msgstr "" +"Nie znaleziono profilu dla wybranego filamentu, proszę dokonać ponownego " +"wyboru" msgid "[Delete Required]" msgstr "[Usuń Wymagane]" @@ -12724,12 +15693,17 @@ msgstr "Zwiń" msgid "Daily Tips" msgstr "Porada Dnia" -msgid "Your nozzle diameter in preset is not consistent with memorized nozzle diameter. Did you change your nozzle lately?" -msgstr "Średnica Twojej dyszy w profilu nie jest zgodna ze zapamiętaną średnicą dyszy. Czy ostatnio zmieniałeś swoją dyszę?" +msgid "" +"Your nozzle diameter in preset is not consistent with memorized nozzle " +"diameter. Did you change your nozzle lately?" +msgstr "" +"Średnica Twojej dyszy w profilu nie jest zgodna ze zapamiętaną średnicą " +"dyszy. Czy ostatnio zmieniałeś swoją dyszę?" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" -msgstr "*Drukowanie filamentu %s z użyciem %s może spowodować uszkodzenie dyszy" +msgstr "" +"*Drukowanie filamentu %s z użyciem %s może spowodować uszkodzenie dyszy" msgid "Need select printer" msgstr "Konieczny jest wybór drukarki" @@ -12737,8 +15711,12 @@ msgstr "Konieczny jest wybór drukarki" msgid "The start, end or step is not valid value." msgstr "Wartość początkowa, końcowa lub krokowa jest nieprawidłowa." -msgid "Unable to calibrate: maybe because the set calibration value range is too large, or the step is too small" -msgstr "Nie można skalibrować: być może zakres ustawionych wartości kalibracyjnych jest zbyt duży, lub krok jest zbyt mały" +msgid "" +"Unable to calibrate: maybe because the set calibration value range is too " +"large, or the step is too small" +msgstr "" +"Nie można skalibrować: być może zakres ustawionych wartości kalibracyjnych " +"jest zbyt duży, lub krok jest zbyt mały" msgid "Physical Printer" msgstr "Fizyczna drukarka" @@ -12758,8 +15736,12 @@ msgstr "Czy na pewno chcesz się wylogować?" msgid "Refresh Printers" msgstr "Odśwież drukarki" -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 tylko w przypadku uzycia HTTPS z certyfikatem wlasnego podpisu." +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 tylko w przypadku uzycia HTTPS " +"z certyfikatem wlasnego podpisu." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "Pliki certyfikatów (.crt, .pem)|.crt;.pem|Wszystkie pliki|*.*" @@ -12768,17 +15750,26 @@ msgid "Open CA certificate file" msgstr "Otwórz plik certyfikatu CA" #, c-format, boost-format -msgid "On this system, %s uses HTTPS certificates from the system Certificate Store or Keychain." -msgstr "W tym systemie %s używa certyfikatów HTTPS z systemowego magazynu certyfikatów lub łańcucha kluczy." +msgid "" +"On this system, %s uses HTTPS certificates from the system Certificate Store " +"or Keychain." +msgstr "" +"W tym systemie %s używa certyfikatów HTTPS z systemowego magazynu " +"certyfikatów lub łańcucha kluczy." -msgid "To use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "Aby użyć własnego certyfikatu, zaimportuj plik do magazynu (Certificate Store / Keychain)." +msgid "" +"To use a custom CA file, please import your CA file into Certificate Store / " +"Keychain." +msgstr "" +"Aby użyć własnego certyfikatu, zaimportuj plik do magazynu (Certificate " +"Store / Keychain)." msgid "Login/Test" msgstr "Logowanie/Test" msgid "Connection to printers connected via the print host failed." -msgstr "Połączenie z drukarkami podłączonymi przez hosta drukowania nie powiodło się." +msgstr "" +"Połączenie z drukarkami podłączonymi przez hosta drukowania nie powiodło się." #, c-format, boost-format msgid "Mismatched type of print host: %s" @@ -12817,8 +15808,12 @@ msgstr "Połączenie z FlashAir działa poprawnie, a przesyłanie jest włączon msgid "Could not connect to FlashAir" msgstr "Nie udało się połączyć z FlashAir" -msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required." -msgstr "Uwaga: Wymagany jest FlashAir z oprogramowaniem 2.00.02 lub nowszym oraz aktywowaną funkcją przesyłania." +msgid "" +"Note: FlashAir with firmware 2.00.02 or newer and activated upload function " +"is required." +msgstr "" +"Uwaga: Wymagany jest FlashAir z oprogramowaniem 2.00.02 lub nowszym oraz " +"aktywowaną funkcją przesyłania." msgid "Connection to MKS works correctly." msgstr "Połączenie z MKS działa poprawnie." @@ -12863,7 +15858,8 @@ msgstr "%1% : brak wolnego miejsca" #. TRN %1% = host #, boost-format msgid "Upload has failed. There is no suitable storage found at %1%." -msgstr "Przesyłanie nie powiodło się. Nie znaleziono odpowiedniego nośnika w %1%.." +msgstr "" +"Przesyłanie nie powiodło się. Nie znaleziono odpowiedniego nośnika w %1%.." msgid "Connection to Prusa Connect works correctly." msgstr "Połączenie z Prusa Connect działa poprawnie." @@ -12908,89 +15904,271 @@ msgstr "" "Treść wiadomości: \"%1%\"\n" "Błąd: \"%2%\"" -msgid "It has a small layer height, and results in almost negligible layer lines and high printing quality. It is suitable for most general printing cases." -msgstr "Ta niska wysokość warstwy prowadzi do praktycznie niewidocznych warstw i wysokiej jakości wydruku. Nadaje się do większości standardowych przypadków druku." +msgid "" +"It has a small layer height, and results in almost negligible layer lines " +"and high printing quality. It is suitable for most general printing cases." +msgstr "" +"Ta niska wysokość warstwy prowadzi do praktycznie niewidocznych warstw i " +"wysokiej jakości wydruku. Nadaje się do większości standardowych przypadków " +"druku." -msgid "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in much higher printing quality, but a much longer printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.2 mm, ma niższe prędkości i przyspieszenia, a wzorzec rzadkiego wypełnienia to Gyroidalny. Dlatego daje znacznie lepszą jakość druku, ale znacznie wydłuża czas druku." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " +"much higher printing quality, but a much longer printing time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.2 mm, ma niższe " +"prędkości i przyspieszenia, a wzorzec rzadkiego wypełnienia to Gyroidalny. " +"Dlatego daje znacznie lepszą jakość druku, ale znacznie wydłuża czas druku." -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a slightly bigger layer height, and results in almost negligible layer lines, and slightly shorter printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.2 mm, ma nieznacznie większą wysokość warstwy, co skutkuje praktycznie niezauważalnymi liniami warstw i nieco krótszym czasem druku." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " +"bigger layer height, and results in almost negligible layer lines, and " +"slightly shorter printing time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.2 mm, ma " +"nieznacznie większą wysokość warstwy, co skutkuje praktycznie " +"niezauważalnymi liniami warstw i nieco krótszym czasem druku." -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer height, and results in slightly visible layer lines, but shorter printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.2 mm, ma większą wysokość warstwy, co skutkuje lekko widocznymi liniami warstw, ale krótszym czasem druku." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " +"height, and results in slightly visible layer lines, but shorter printing " +"time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.2 mm, ma większą " +"wysokość warstwy, co skutkuje lekko widocznymi liniami warstw, ale krótszym " +"czasem druku." -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height, and results in almost invisible layer lines and higher printing quality, but shorter printing time." -msgstr "W porównaniu z domyślnym profilem dyszy o średnicy 0.2 mm, ma mniejszą wysokość warstwy, co prowadzi do praktycznie niewidocznych linii warstw i wyższej jakości druku, ale wydłuża czas druku." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height, and results in almost invisible layer lines and higher printing " +"quality, but shorter printing time." +msgstr "" +"W porównaniu z domyślnym profilem dyszy o średnicy 0.2 mm, ma mniejszą " +"wysokość warstwy, co prowadzi do praktycznie niewidocznych linii warstw i " +"wyższej jakości druku, ale wydłuża czas druku." -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer lines, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost invisible layer lines and much higher printing quality, but much longer printing time." -msgstr "W porównaniu z domyślnym profilem dyszy 0.2 mm, ma mniejszą wysokość warstwy, niższe prędkości i przyspieszenie, oraz wzór wypełnienia jest gyroidalny. To prowadzi do praktycznie niewidocznych linii warstw i wyższej jakości druku, ale znacznie wydłuża czasu druku." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. So, it results in almost invisible layer lines and much higher " +"printing quality, but much longer printing time." +msgstr "" +"W porównaniu z domyślnym profilem dyszy 0.2 mm, ma mniejszą wysokość " +"warstwy, niższe prędkości i przyspieszenie, oraz wzór wypełnienia jest " +"gyroidalny. To prowadzi do praktycznie niewidocznych linii warstw i wyższej " +"jakości druku, ale znacznie wydłuża czasu druku." -msgid "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer height, and results in minimal layer lines and higher printing quality, but shorter printing time." -msgstr "W porównaniu ze standardowym profilem dyszy o średnicy 0.2 mm, ten profil ma mniejszą wysokość warstwy, co prowadzi do praktycznie niewidocznych linii warstw i znacznie wyższa jakość wydruku, ale jednocześnie wydłuża jego czas." +msgid "" +"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " +"height, and results in minimal layer lines and higher printing quality, but " +"shorter printing time." +msgstr "" +"W porównaniu ze standardowym profilem dyszy o średnicy 0.2 mm, ten profil ma " +"mniejszą wysokość warstwy, co prowadzi do praktycznie niewidocznych linii " +"warstw i znacznie wyższa jakość wydruku, ale jednocześnie wydłuża jego czas." -msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer lines, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in minimal layer lines and much higher printing quality, but much longer printing time." -msgstr "W porównaniu ze standardowym profilem dyszy o średnicy 0.2 mm, ma on mniejszą wysokość warstwy, niższe prędkości i przyspieszenia, a także zastosowany jest wzór wypełnienia Gyroid. To prowadzi do praktycznie niewidocznych warstw i znacznie lepszej jakości wydruku, ale jednocześnie wydłuża jego czas." +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. So, it results in minimal layer lines and much higher printing " +"quality, but much longer printing time." +msgstr "" +"W porównaniu ze standardowym profilem dyszy o średnicy 0.2 mm, ma on " +"mniejszą wysokość warstwy, niższe prędkości i przyspieszenia, a także " +"zastosowany jest wzór wypełnienia Gyroid. To prowadzi do praktycznie " +"niewidocznych warstw i znacznie lepszej jakości wydruku, ale jednocześnie " +"wydłuża jego czas." -msgid "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases." -msgstr "Ta standardowa wysokość warstwy zapewnia normalną jakość druku, odpowiednią dla większości standardowych przypadków druku." +msgid "" +"It has a general layer height, and results in general layer lines and " +"printing quality. It is suitable for most general printing cases." +msgstr "" +"Ta standardowa wysokość warstwy zapewnia normalną jakość druku, odpowiednią " +"dla większości standardowych przypadków druku." -msgid "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time." -msgstr "W porównaniu ze standardowym profilem dla dyszy o średnicy 0.4 mm, ten profil ma więcej obwodów i większą gęstość wypełnienia. To zwiększa wytrzymałość wydruku, ale prowadzi także do większego zużycia materiału i dłuższego czasu druku." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " +"and a higher sparse infill density. So, it results in higher strength of the " +"prints, but more filament consumption and longer printing time." +msgstr "" +"W porównaniu ze standardowym profilem dla dyszy o średnicy 0.4 mm, ten " +"profil ma więcej obwodów i większą gęstość wypełnienia. To zwiększa " +"wytrzymałość wydruku, ale prowadzi także do większego zużycia materiału i " +"dłuższego czasu druku." -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time." -msgstr "W porównaniu ze standardowym profilem dla dyszy o średnicy 0.4 mm, ten profil ma większą wysokość warstwy. W rezultacie warstwy są bardziej widoczne, co obniża jakość druku, ale jednocześnie delikatnie skraca jego czas." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height, and results in more apparent layer lines and lower printing quality, " +"but slightly shorter printing time." +msgstr "" +"W porównaniu ze standardowym profilem dla dyszy o średnicy 0.4 mm, ten " +"profil ma większą wysokość warstwy. W rezultacie warstwy są bardziej " +"widoczne, co obniża jakość druku, ale jednocześnie delikatnie skraca jego " +"czas." -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time." -msgstr "W porównaniu ze standardowym profilem dla dyszy o średnicy 0.4 mm, ten profil ma większą wysokość warstwy. W rezultacie warstwy są bardziej widoczne, co obniża jakość druku, ale jednocześnie skraca jego czas." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height, and results in more apparent layer lines and lower printing quality, " +"but shorter printing time." +msgstr "" +"W porównaniu ze standardowym profilem dla dyszy o średnicy 0.4 mm, ten " +"profil ma większą wysokość warstwy. W rezultacie warstwy są bardziej " +"widoczne, co obniża jakość druku, ale jednocześnie skraca jego czas." -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma mniejszą wysokość warstwy. W rezultacie warstwy są mniej widoczne, co skutkuje wyższą jakością druku, ale jednocześnie wydłuża się jego czas." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, and results in less apparent layer lines and higher printing " +"quality, but longer printing time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma " +"mniejszą wysokość warstwy. W rezultacie warstwy są mniej widoczne, co " +"skutkuje wyższą jakością druku, ale jednocześnie wydłuża się jego czas." -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma mniejszą wysokość warstwy, niższe prędkości i przyspieszenia, oraz wzór wypełnienia Gyroidalny. W rezultacie warstwy są mniej widoczne, co prowadzi do znacznie wyższej jakości druku, ale zauważalnie dłuższego czasu druku." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. So, it results in less apparent layer lines and much higher printing " +"quality, but much longer printing time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma " +"mniejszą wysokość warstwy, niższe prędkości i przyspieszenia, oraz wzór " +"wypełnienia Gyroidalny. W rezultacie warstwy są mniej widoczne, co prowadzi " +"do znacznie wyższej jakości druku, ale zauważalnie dłuższego czasu druku." -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma mniejszą wysokość warstwy. W rezultacie warstwy są prawie niewidoczne, co prowadzi do wyższej jakości druku, ale wydłużenia jego czas." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, and results in almost negligible layer lines and higher printing " +"quality, but longer printing time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma " +"mniejszą wysokość warstwy. W rezultacie warstwy są prawie niewidoczne, co " +"prowadzi do wyższej jakości druku, ale wydłużenia jego czas." -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma mniejszą wysokość warstwy, niższe prędkości i przyspieszenia, a także zastosowany wzór wypełnienia gyroidalnego. W rezultacie warstwy są prawie niewidoczne, co prowadzi do znacznie wyższej jakości druku, ale wydłuża jego czas." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. So, it results in almost negligible layer lines and much higher " +"printing quality, but much longer printing time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma " +"mniejszą wysokość warstwy, niższe prędkości i przyspieszenia, a także " +"zastosowany wzór wypełnienia gyroidalnego. W rezultacie warstwy są prawie " +"niewidoczne, co prowadzi do znacznie wyższej jakości druku, ale wydłuża jego " +"czas." -msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma mniejszą wysokość warstwy. W rezultacie warstwy są prawie niewidoczne, co prowadzi do wyższej jakości druku, ale wydłużenia jego czas." +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, and results in almost negligible layer lines and longer printing " +"time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma " +"mniejszą wysokość warstwy. W rezultacie warstwy są prawie niewidoczne, co " +"prowadzi do wyższej jakości druku, ale wydłużenia jego czas." -msgid "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time." -msgstr "Ta wyższa wysokość warstwy, skutkuje widocznymi liniami warstw i zwykłą jakością i czasem druku." +msgid "" +"It has a big layer height, and results in apparent layer lines and ordinary " +"printing quality and printing time." +msgstr "" +"Ta wyższa wysokość warstwy, skutkuje widocznymi liniami warstw i zwykłą " +"jakością i czasem druku." -msgid "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma więcej obwodów i większą gęstość wypełnienia. Skutkuje to zwiększeniem wytrzymałości wydrukowanego elementu, ale zwiększa zużycie materiału i czas wydruku." +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " +"and a higher sparse infill density. So, it results in higher strength of the " +"prints, but more filament consumption and longer printing time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma " +"więcej obwodów i większą gęstość wypełnienia. Skutkuje to zwiększeniem " +"wytrzymałości wydrukowanego elementu, ale zwiększa zużycie materiału i czas " +"wydruku." -msgid "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma większą wysokość warstwy. Skutkuje to bardziej zauważalnymi warstwami i obniżeniem jakości druku, chociaż w niektórych przypadkach może skrócić jego czas." +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height, and results in more apparent layer lines and lower printing quality, " +"but shorter printing time in some printing cases." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma " +"większą wysokość warstwy. Skutkuje to bardziej zauważalnymi warstwami i " +"obniżeniem jakości druku, chociaż w niektórych przypadkach może skrócić jego " +"czas." -msgid "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma większą wysokość warstwy. Skutkuje to bardziej zauważalnymi warstwami i znacznym obniżeniem jakości druku, chociaż w niektórych przypadkach może skrócić jego czas." +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height, and results in much more apparent layer lines and much lower " +"printing quality, but shorter printing time in some printing cases." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma " +"większą wysokość warstwy. Skutkuje to bardziej zauważalnymi warstwami i " +"znacznym obniżeniem jakości druku, chociaż w niektórych przypadkach może " +"skrócić jego czas." -msgid "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma mniejszą wysokość warstwy. W rezultacie warstwy są mniej zauważalne, co powoduje nieznaczny wzrost jakości druku, ale jednocześnie zwiększa czas wydruku." +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height, and results in less apparent layer lines and slight higher printing " +"quality, but longer printing time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma " +"mniejszą wysokość warstwy. W rezultacie warstwy są mniej zauważalne, co " +"powoduje nieznaczny wzrost jakości druku, ale jednocześnie zwiększa czas " +"wydruku." -msgid "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma mniejszą wysokość warstwy. W rezultacie warstwy są mniej zauważalne, co prowadzi do wyższej jakości druku, ale wydłuża jego czas." +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height, and results in less apparent layer lines and higher printing " +"quality, but longer printing time." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma " +"mniejszą wysokość warstwy. W rezultacie warstwy są mniej zauważalne, co " +"prowadzi do wyższej jakości druku, ale wydłuża jego czas." -msgid "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time." -msgstr "Ta bardzo duża wysokość warstwy skutkuje wyraźnie widocznymi liniami warstw, niską jakością druku, a także standardowym czasem druku." +msgid "" +"It has a very big layer height, and results in very apparent layer lines, " +"low printing quality and general printing time." +msgstr "" +"Ta bardzo duża wysokość warstwy skutkuje wyraźnie widocznymi liniami warstw, " +"niską jakością druku, a także standardowym czasem druku." -msgid "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.8 mm, ten profil ma nieco większą wysokość warstwy. W rezultacie są to wyraźnie widoczne warstwy i znacznie niższa jakość druku, ale w niektórych przypadkach skraca to czas wydruku." +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " +"height, and results in very apparent layer lines and much lower printing " +"quality, but shorter printing time in some printing cases." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0.8 mm, ten profil ma " +"nieco większą wysokość warstwy. W rezultacie są to wyraźnie widoczne warstwy " +"i znacznie niższa jakość druku, ale w niektórych przypadkach skraca to czas " +"wydruku." -msgid "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger layer height, and results in extremely apparent layer lines and much lower printing quality, but much shorter printing time in some printing cases." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0,8 mm, ten profil ma znacznie większą wysokość warstwy. W rezultacie warstwy są bardzej widoczne, a jakość druku znacznie niższa, ale w niektórych przypadkach znacznie skraca się czas wydruku." +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " +"layer height, and results in extremely apparent layer lines and much lower " +"printing quality, but much shorter printing time in some printing cases." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0,8 mm, ten profil ma " +"znacznie większą wysokość warstwy. W rezultacie warstwy są bardzej widoczne, " +"a jakość druku znacznie niższa, ale w niektórych przypadkach znacznie skraca " +"się czas wydruku." -msgid "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0,8 mm, ten profil ma nieco mniejszą wysokość warstwy. W rezultacie warstwy są nieco mniej widoczne, a jakość druku jest nieco lepsza, ale w niektórych przypadkach czas druku może się nieco wydłużyć." +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " +"smaller layer height, and results in slightly less but still apparent layer " +"lines and slightly higher printing quality, but longer printing time in some " +"printing cases." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0,8 mm, ten profil ma " +"nieco mniejszą wysokość warstwy. W rezultacie warstwy są nieco mniej " +"widoczne, a jakość druku jest nieco lepsza, ale w niektórych przypadkach " +"czas druku może się nieco wydłużyć." -msgid "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases." -msgstr "W porównaniu z domyślnym profilem dla dyszy o średnicy 0,8 mm, ten profil ma mniejszą wysokość warstwy, co prowadzi do mniejszych, ale nadal widocznych warstw i lepszej jakości druku, a w niektórych przypadkach może się wydłużyć czas wydruku." +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " +"height, and results in less but still apparent layer lines and slightly " +"higher printing quality, but longer printing time in some printing cases." +msgstr "" +"W porównaniu z domyślnym profilem dla dyszy o średnicy 0,8 mm, ten profil ma " +"mniejszą wysokość warstwy, co prowadzi do mniejszych, ale nadal widocznych " +"warstw i lepszej jakości druku, a w niektórych przypadkach może się wydłużyć " +"czas wydruku." msgid "Connected to Obico successfully!" msgstr "Pomyślnie połączono z SimplyPrint!" @@ -13005,10 +16183,16 @@ msgid "Could not connect to SimplyPrint" msgstr "Nie można połączyć się z SimplyPrint" msgid "SimplyPrint account not linked. Go to Connect options to set it up." -msgstr "Nie połączono z kontem SimplyPrint. Przejdź do opcji Połącz, aby go skonfigurować." +msgstr "" +"Nie połączono z kontem SimplyPrint. Przejdź do opcji Połącz, aby go " +"skonfigurować." -msgid "File size exceeds the 100MB upload limit. Please upload your file through the panel." -msgstr "Rozmiar pliku przekracza limit przesyłania 100 MB. Proszę przesłać plik za pomocą panelu." +msgid "" +"File size exceeds the 100MB upload limit. Please upload your file through " +"the panel." +msgstr "" +"Rozmiar pliku przekracza limit przesyłania 100 MB. Proszę przesłać plik za " +"pomocą panelu." msgid "Unknown error" msgstr "Nieznany błąd" @@ -13023,7 +16207,8 @@ msgid "The provided state is not correct." msgstr "Podany stan nie jest właściwy" msgid "Please give the required permissions when authorizing this application." -msgstr "Proszę udzielić wymaganych uprawnień podczas autoryzacji tej aplikacji." +msgstr "" +"Proszę udzielić wymaganych uprawnień podczas autoryzacji tej aplikacji." msgid "Something unexpected happened when trying to log in, please try again." msgstr "Wystąpił problem podczas próby logowania, proszę spróbować ponownie." @@ -13034,18 +16219,24 @@ msgstr "Anulowane przez użytkownika." #: resources/data/hints.ini: [hint:Precise wall] msgid "" "Precise wall\n" -"Did you know that turning on precise wall can improve precision and layer consistency?" +"Did you know that turning on precise wall can improve precision and layer " +"consistency?" msgstr "" "Precyzyjna ściana\n" -"Czy wiesz, że włączenie \"ściany o wysokiej precyzji\" może poprawić ich jakość i spójność warstw?" +"Czy wiesz, że włączenie \"ściany o wysokiej precyzji\" może poprawić ich " +"jakość i spójność warstw?" #: resources/data/hints.ini: [hint:Sandwich mode] msgid "" "Sandwich mode\n" -"Did you know that you can use sandwich mode (inner-outer-inner) to improve precision and layer consistency if your model doesn't have very steep overhangs?" +"Did you know that you can use sandwich mode (inner-outer-inner) to improve " +"precision and layer consistency if your model doesn't have very steep " +"overhangs?" msgstr "" "Tryb kanapki\n" -"Czy wiesz, że możesz użyć trybu kanapki (wewnętrzna-zewnętrzna-wewnętrzna) do poprawy precyzji i spójności warstw, jeśli twój model nie ma bardzo stromych występów?" +"Czy wiesz, że możesz użyć trybu kanapki (wewnętrzna-zewnętrzna-wewnętrzna) " +"do poprawy precyzji i spójności warstw, jeśli twój model nie ma bardzo " +"stromych występów?" #: resources/data/hints.ini: [hint:Chamber temperature] msgid "" @@ -13058,10 +16249,12 @@ msgstr "" #: resources/data/hints.ini: [hint:Calibration] msgid "" "Calibration\n" -"Did you know that calibrating your printer can do wonders? Check out our beloved calibration solution in OrcaSlicer." +"Did you know that calibrating your printer can do wonders? Check out our " +"beloved calibration solution in OrcaSlicer." msgstr "" "Kalibracja\n" -"Czy wiesz, że kalibrowanie twojej drukarki może zdziałać cuda? Sprawdź nasze ukochane rozwiązanie kalibracyjne w OrcaSlicer." +"Czy wiesz, że kalibrowanie twojej drukarki może zdziałać cuda? Sprawdź nasze " +"ukochane rozwiązanie kalibracyjne w OrcaSlicer." #: resources/data/hints.ini: [hint:Auxiliary fan] msgid "" @@ -13077,7 +16270,8 @@ msgid "" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?" msgstr "" "Filtracja powietrza/Wentylator wyciągowy\n" -"Czy wiesz, że OrcaSlicer może obsługiwać filtrację powietrza/wentylator wyciągowy?" +"Czy wiesz, że OrcaSlicer może obsługiwać filtrację powietrza/wentylator " +"wyciągowy?" #: resources/data/hints.ini: [hint:G-code window] msgid "" @@ -13090,42 +16284,52 @@ msgstr "" #: resources/data/hints.ini: [hint:Switch workspaces] msgid "" "Switch workspaces\n" -"You can switch between Prepare and Preview workspaces by pressing the Tab key." +"You can switch between Prepare and Preview workspaces by " +"pressing the Tab key." msgstr "" "Przełączanie przestrzeni roboczych\n" -"Możesz przełączać się między przestrzeniami roboczymi Przygotowanie i Podgląd za pomocą klawisza Tab." +"Możesz przełączać się między przestrzeniami roboczymi Przygotowanie i " +"Podgląd za pomocą klawisza Tab." #: resources/data/hints.ini: [hint:How to use keyboard shortcuts] msgid "" "How to use keyboard shortcuts\n" -"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations." +"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " +"3D scene operations." msgstr "" "Jak korzystać ze skrótów klawiszowych\n" -"Czy wiesz, że Orca Slicer oferuje szeroki zakres skrótów klawiszowych i operacji na scenie 3D." +"Czy wiesz, że Orca Slicer oferuje szeroki zakres skrótów klawiszowych i " +"operacji na scenie 3D." #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" "Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve the surface quality of your overhangs?" +"Did you know that Reverse on odd feature can significantly improve " +"the surface quality of your overhangs?" msgstr "" "Odwróć na nieparzystych\n" -"Czy wiesz, że funkcja Odwróć na nieparzystych może znacząco poprawić jakość powierzchni twoich występów?" +"Czy wiesz, że funkcja Odwróć na nieparzystych może znacząco poprawić " +"jakość powierzchni twoich występów?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" "Cut Tool\n" -"Did you know that you can cut a model at any angle and position with the cutting tool?" +"Did you know that you can cut a model at any angle and position with the " +"cutting tool?" msgstr "" "Narzędzie przecinania\n" -"Czy wiesz, że możesz ciąć model pod dowolnym kątem i w dowolnej pozycji za pomocą narzędzia do przecinania?" +"Czy wiesz, że możesz ciąć model pod dowolnym kątem i w dowolnej pozycji za " +"pomocą narzędzia do przecinania?" #: resources/data/hints.ini: [hint:Fix Model] msgid "" "Fix Model\n" -"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing problems on the Windows system?" +"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " +"problems on the Windows system?" msgstr "" "Napraw model\n" -"Czy wiesz, że możesz naprawić uszkodzony model 3D, aby uniknąć wielu problemów z krojeniem w systemie Windows?" +"Czy wiesz, że możesz naprawić uszkodzony model 3D, aby uniknąć wielu " +"problemów z krojeniem w systemie Windows?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" @@ -13141,153 +16345,209 @@ msgid "" "Did you know that you can auto-arrange all objects in your project?" msgstr "" "Automatyczne rozmieszczanie\n" -"Czy wiesz, że możesz automatycznie rozmieścić wszystkie obiekty w swoim projekcie?" +"Czy wiesz, że możesz automatycznie rozmieścić wszystkie obiekty w swoim " +"projekcie?" #: resources/data/hints.ini: [hint:Auto-Orient] msgid "" "Auto-Orient\n" -"Did you know that you can rotate objects to an optimal orientation for printing by a simple click?" +"Did you know that you can rotate objects to an optimal orientation for " +"printing by a simple click?" msgstr "" "Automatyczna orientacja\n" -"Czy wiesz, że możesz obracać obiekty do optymalnej orientacji do druku za pomocą jednego kliknięcia?" +"Czy wiesz, że możesz obracać obiekty do optymalnej orientacji do druku za " +"pomocą jednego kliknięcia?" #: resources/data/hints.ini: [hint:Lay on Face] msgid "" "Lay on Face\n" -"Did you know that you can quickly orient a model so that one of its faces sits on the print bed? Select the \"Place on face\" function or press the F key." +"Did you know that you can quickly orient a model so that one of its faces " +"sits on the print bed? Select the \"Place on face\" function or press the " +"F key." msgstr "" "Połóż na powierzchni\n" -"Czy wiesz, że możesz szybko ułożyć model tak, aby Czy wiesz, że możesz szybko ustawić model tak, aby jedna z jego ścian znajdowała się na stole roboczym? Wybierz funkcję „Umieść na powierzchni” lub naciśnij F." +"Czy wiesz, że możesz szybko ułożyć model tak, aby Czy wiesz, że możesz " +"szybko ustawić model tak, aby jedna z jego ścian znajdowała się na stole " +"roboczym? Wybierz funkcję „Umieść na powierzchni” lub naciśnij F." #: resources/data/hints.ini: [hint:Object List] msgid "" "Object List\n" -"Did you know that you can view all objects/parts in a list and change settings for each object/part?" +"Did you know that you can view all objects/parts in a list and change " +"settings for each object/part?" msgstr "" "Lista obiektów\n" -"Czy wiesz, że możesz wyświetlać wszystkie obiekty/części na liście i zmieniać ustawienia dla każdego obiektu/części?" +"Czy wiesz, że możesz wyświetlać wszystkie obiekty/części na liście i " +"zmieniać ustawienia dla każdego obiektu/części?" #: resources/data/hints.ini: [hint:Search Functionality] msgid "" "Search Functionality\n" -"Did you know that you use the Search tool to quickly find a specific Orca Slicer setting?" +"Did you know that you use the Search tool to quickly find a specific Orca " +"Slicer setting?" msgstr "" "Funkcja wyszukiwania\n" -"Czy wiesz, że możesz użyć narzędzia wyszukiwania, aby szybko znaleźć konkretne ustawienie Orca Slicer?" +"Czy wiesz, że możesz użyć narzędzia wyszukiwania, aby szybko znaleźć " +"konkretne ustawienie Orca Slicer?" #: resources/data/hints.ini: [hint:Simplify Model] msgid "" "Simplify Model\n" -"Did you know that you can reduce the number of triangles in a mesh using the Simplify mesh feature? Right-click the model and select Simplify model." +"Did you know that you can reduce the number of triangles in a mesh using the " +"Simplify mesh feature? Right-click the model and select Simplify model." msgstr "" "Uprość model\n" -"Czy wiesz, że możesz zmniejszyć liczbę trójkątów w siatce za pomocą funkcji upraszczania siatki? Kliknij prawym przyciskiem myszy model i wybierz opcję Uprość model." +"Czy wiesz, że możesz zmniejszyć liczbę trójkątów w siatce za pomocą funkcji " +"upraszczania siatki? Kliknij prawym przyciskiem myszy model i wybierz opcję " +"Uprość model." #: resources/data/hints.ini: [hint:Slicing Parameter Table] msgid "" "Slicing Parameter Table\n" -"Did you know that you can view all objects/parts on a table and change settings for each object/part?" +"Did you know that you can view all objects/parts on a table and change " +"settings for each object/part?" msgstr "" "Tabela Parametrów Cięcia\n" -"Czy wiesz, że możesz wyświetlić wszystkie obiekty/części na tabeli i zmieniać ustawienia dla każdego obiektu/części?" +"Czy wiesz, że możesz wyświetlić wszystkie obiekty/części na tabeli i " +"zmieniać ustawienia dla każdego obiektu/części?" #: resources/data/hints.ini: [hint:Split to Objects/Parts] msgid "" "Split to Objects/Parts\n" -"Did you know that you can split a big object into small ones for easy colorizing or printing?" +"Did you know that you can split a big object into small ones for easy " +"colorizing or printing?" msgstr "" "Podziel na obiekty/części\n" -"Czy wiesz, że możesz podzielić duży obiekt na mniejsze, aby łatwiej je kolorować lub drukować?" +"Czy wiesz, że możesz podzielić duży obiekt na mniejsze, aby łatwiej je " +"kolorować lub drukować?" #: resources/data/hints.ini: [hint:Subtract a Part] msgid "" "Subtract a Part\n" -"Did you know that you can subtract one mesh from another using the Negative part modifier? That way you can, for example, create easily resizable holes directly in Orca Slicer." +"Did you know that you can subtract one mesh from another using the Negative " +"part modifier? That way you can, for example, create easily resizable holes " +"directly in Orca Slicer." msgstr "" "Odejmowanie części\n" -"Czy wiesz, że możesz odjąć jedną siatkę od drugiej, używając modyfikatora części negatywnej? W ten sposób możesz na przykład łatwo tworzyć otwory o zmiennym rozmiarze bezpośrednio w Orca Slicer." +"Czy wiesz, że możesz odjąć jedną siatkę od drugiej, używając modyfikatora " +"części negatywnej? W ten sposób możesz na przykład łatwo tworzyć otwory o " +"zmiennym rozmiarze bezpośrednio w Orca Slicer." #: resources/data/hints.ini: [hint:STEP] msgid "" "STEP\n" -"Did you know that you can improve your print quality by slicing a STEP file instead of an STL?\n" -"Orca Slicer supports slicing STEP files, providing smoother results than a lower resolution STL. Give it a try!" +"Did you know that you can improve your print quality by slicing a STEP file " +"instead of an STL?\n" +"Orca Slicer supports slicing STEP files, providing smoother results than a " +"lower resolution STL. Give it a try!" msgstr "" "STEP\n" -"Czy wiesz, że możesz poprawić jakość swojego druku, krojąc plik STEP zamiast STL?\n" -"Orca Slicer wspiera krojenie plików STEP, oferując lepszą jakość niż STL o niższej rozdzielczości. Wypróbuj to!" +"Czy wiesz, że możesz poprawić jakość swojego druku, krojąc plik STEP zamiast " +"STL?\n" +"Orca Slicer wspiera krojenie plików STEP, oferując lepszą jakość niż STL o " +"niższej rozdzielczości. Wypróbuj to!" #: resources/data/hints.ini: [hint:Z seam location] msgid "" "Z seam location\n" -"Did you know that you can customize the location of the Z seam, and even paint it on your print, to have it in a less visible location? This improves the overall look of your model. Check it out!" +"Did you know that you can customize the location of the Z seam, and even " +"paint it on your print, to have it in a less visible location? This improves " +"the overall look of your model. Check it out!" msgstr "" "Lokalizacja szwu Z\n" -"Czy wiesz, że możesz dostosować lokalizację szwu Z, a nawet namalować go na swoim wydruku, aby był w mniej widocznej lokalizacji? Poprawia to ogólny wygląd twojego modelu. Sprawdź to!" +"Czy wiesz, że możesz dostosować lokalizację szwu Z, a nawet namalować go na " +"swoim wydruku, aby był w mniej widocznej lokalizacji? Poprawia to ogólny " +"wygląd twojego modelu. Sprawdź to!" #: resources/data/hints.ini: [hint:Fine-tuning for flow rate] msgid "" "Fine-tuning for flow rate\n" -"Did you know that flow rate can be fine-tuned for even better-looking prints? Depending on the material, you can improve the overall finish of the printed model by doing some fine-tuning." +"Did you know that flow rate can be fine-tuned for even better-looking " +"prints? Depending on the material, you can improve the overall finish of the " +"printed model by doing some fine-tuning." msgstr "" "Dopasowanie prędkości przepływu\n" -"Czy wiesz, że prędkość przepływu może być dopasowana dla jeszcze lepszego wyglądu wydruków? W zależności od filamentu, możesz poprawić ogólne wykończenie wydrukowanego modelu poprzez dokonanie kilku drobnych regulacji." +"Czy wiesz, że prędkość przepływu może być dopasowana dla jeszcze lepszego " +"wyglądu wydruków? W zależności od filamentu, możesz poprawić ogólne " +"wykończenie wydrukowanego modelu poprzez dokonanie kilku drobnych regulacji." #: resources/data/hints.ini: [hint:Split your prints into plates] msgid "" "Split your prints into plates\n" -"Did you know that you can split a model that has a lot of parts into individual plates ready to print? This will simplify the process of keeping track of all the parts." +"Did you know that you can split a model that has a lot of parts into " +"individual plates ready to print? This will simplify the process of keeping " +"track of all the parts." msgstr "" "Podziel swoje wydruki na płyty\n" -"Czy wiesz, że możesz podzielić model, który ma wiele części, na indywidualne płyty gotowe do druku? Ułatwi to proces śledzenia wszystkich części." +"Czy wiesz, że możesz podzielić model, który ma wiele części, na indywidualne " +"płyty gotowe do druku? Ułatwi to proces śledzenia wszystkich części." -#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer Height] +#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer +#: Height] msgid "" "Speed up your print with Adaptive Layer Height\n" -"Did you know that you can print a model even faster, by using the Adaptive Layer Height option? Check it out!" +"Did you know that you can print a model even faster, by using the Adaptive " +"Layer Height option? Check it out!" msgstr "" "Przyspiesz swój wydruk z adaptacyjną wysokością warstwy\n" -"Czy wiesz, że możesz wydrukować model jeszcze szybciej, używając opcji adaptacyjnej wysokości warstwy? Sprawdź to!" +"Czy wiesz, że możesz wydrukować model jeszcze szybciej, używając opcji " +"adaptacyjnej wysokości warstwy? Sprawdź to!" #: resources/data/hints.ini: [hint:Support painting] msgid "" "Support painting\n" -"Did you know that you can paint the location of your supports? This feature makes it easy to place the support material only on the sections of the model that actually need it." +"Did you know that you can paint the location of your supports? This feature " +"makes it easy to place the support material only on the sections of the " +"model that actually need it." msgstr "" "Namaluj Podpory\n" -"Czy wiesz, że możesz malować lokalizację swoich podpór? Ta funkcja ułatwia umieszczenie filamentu podporowego tylko w tych sekcjach modelu, które go faktycznie potrzebują." +"Czy wiesz, że możesz malować lokalizację swoich podpór? Ta funkcja ułatwia " +"umieszczenie filamentu podporowego tylko w tych sekcjach modelu, które go " +"faktycznie potrzebują." #: resources/data/hints.ini: [hint:Different types of supports] msgid "" "Different types of supports\n" -"Did you know that you can choose from multiple types of supports? Tree supports work great for organic models, while saving filament and improving print speed. Check them out!" +"Did you know that you can choose from multiple types of supports? Tree " +"supports work great for organic models, while saving filament and improving " +"print speed. Check them out!" msgstr "" "Różne rodzaje podpór\n" -"Czy wiesz, że możesz wybierać spośród wielu rodzajów podpór? Podpory drzewiaste świetnie sprawdzają się w modelach organicznych, jednocześnie oszczędzając filament i poprawiając prędkość druku. Sprawdź je!" +"Czy wiesz, że możesz wybierać spośród wielu rodzajów podpór? Podpory " +"drzewiaste świetnie sprawdzają się w modelach organicznych, jednocześnie " +"oszczędzając filament i poprawiając prędkość druku. Sprawdź je!" #: resources/data/hints.ini: [hint:Printing Silk Filament] msgid "" "Printing Silk Filament\n" -"Did you know that Silk filament needs special consideration to print it successfully? Higher temperature and lower speed are always recommended for the best results." +"Did you know that Silk filament needs special consideration to print it " +"successfully? Higher temperature and lower speed are always recommended for " +"the best results." msgstr "" "Drukowanie filamentem jedwabnym (Slik)\n" -"Czy wiesz, że filament jedwabny wymaga szczególnej uwagi, aby go skutecznie wydrukować? Zalecana jest zawsze wyższa temperatura i niższa prędkość, aby osiągnąć najlepsze rezultaty." +"Czy wiesz, że filament jedwabny wymaga szczególnej uwagi, aby go skutecznie " +"wydrukować? Zalecana jest zawsze wyższa temperatura i niższa prędkość, aby " +"osiągnąć najlepsze rezultaty." #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with the printing surface, it's recommended to use a brim?" +"Did you know that when printing models have a small contact interface with " +"the printing surface, it's recommended to use a brim?" msgstr "" "Brim dla lepszej przyczepności\n" -"Czy wiesz, że przy drukowaniu modeli o małej powierzchni styku z powierzchnią druku, zaleca się użycie brimu?" +"Czy wiesz, że przy drukowaniu modeli o małej powierzchni styku z " +"powierzchnią druku, zaleca się użycie brimu?" #: resources/data/hints.ini: [hint:Set parameters for multiple objects] msgid "" "Set parameters for multiple objects\n" -"Did you know that you can set slicing parameters for all selected objects at one time?" +"Did you know that you can set slicing parameters for all selected objects at " +"one time?" msgstr "" "Ustawianie parametrów dla wielu obiektów\n" -"Czy wiesz, że możesz ustawić parametry cięcia dla wszystkich wybranych obiektów jednocześnie?" +"Czy wiesz, że możesz ustawić parametry cięcia dla wszystkich wybranych " +"obiektów jednocześnie?" #: resources/data/hints.ini: [hint:Stack objects] msgid "" @@ -13300,34 +16560,77 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into support/objects/infill during filament change?" +"Did you know that you can save the wasted filament by flushing them into " +"support/objects/infill during filament change?" msgstr "" "Czyszczenie do podpór/obiektów/wypełnienia\n" -"Czy wiesz, że możesz zaoszczędzić marnowany filament, przepłukując go do podpór/obiektów/wypełnienia podczas zmiany filamentu?" +"Czy wiesz, że możesz zaoszczędzić marnowany filament, przepłukując go do " +"podpór/obiektów/wypełnienia podczas zmiany filamentu?" #: resources/data/hints.ini: [hint:Improve strength] msgid "" "Improve strength\n" -"Did you know that you can use more wall loops and higher sparse infill density to improve the strength of the model?" +"Did you know that you can use more wall loops and higher sparse infill " +"density to improve the strength of the model?" msgstr "" "Zwiększanie wytrzymałości\n" -"Czy wiesz, że możesz użyć więcej pętli ścian i większej gęstości wypełnienia, aby zwiększyć wytrzymałość modelu?" +"Czy wiesz, że możesz użyć więcej pętli ścian i większej gęstości " +"wypełnienia, aby zwiększyć wytrzymałość modelu?" -#: resources/data/hints.ini: [hint:When need to print with the printer door opened] +#: resources/data/hints.ini: [hint:When need to print with the printer door +#: opened] msgid "" "When need to print with the printer door opened\n" -"Did you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature. More info about this in the Wiki." +"Did you know that opening the printer door can reduce the probability of " +"extruder/hotend clogging when printing lower temperature filament with a " +"higher enclosure temperature. More info about this in the Wiki." msgstr "" "Kiedy należy drukować przy otwartych drzwiach drukarki? \n" -"Czy wiesz, że otwarcie drzwiczek drukarki może zmniejszyć prawdopodobieństwo zatkania ekstrudera/hotendu podczas drukowania filamentem o niższej temperaturze gdy temperatura obudowy jest wyższa? Więcej informacji na ten temat znajdziesz na Wiki." +"Czy wiesz, że otwarcie drzwiczek drukarki może zmniejszyć prawdopodobieństwo " +"zatkania ekstrudera/hotendu podczas drukowania filamentem o niższej " +"temperaturze gdy temperatura obudowy jest wyższa? Więcej informacji na ten " +"temat znajdziesz na Wiki." #: resources/data/hints.ini: [hint:Avoid warping] msgid "" "Avoid warping\n" -"Did you know that when printing materials that are prone to warping such as ABS, appropriately increasing the heatbed temperature can reduce the probability of warping." +"Did you know that when printing materials that are prone to warping such as " +"ABS, appropriately increasing the heatbed temperature can reduce the " +"probability of warping." msgstr "" "Unikaj odkształceń\n" -"Czy wiesz, że podczas drukowania filamentami podatnymi na odkształcenia, takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może zmniejszyć prawdopodobieństwo odkształceń." +"Czy wiesz, że podczas drukowania filamentami podatnymi na odkształcenia, " +"takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może " +"zmniejszyć prawdopodobieństwo odkształceń." + +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer opiera się na BambuStudio od Bambulab, które wywodzi się z " +#~ "PrusaSlicer od Prusa Research. PrusaSlicer z kolei bazuje na Slic3r od " +#~ "Alessandro Ranellucci i społeczności RepRap" + +#~ msgid "Export &Configs" +#~ msgstr "Eksportuj &konfiguracje" + +#~ msgid "" +#~ "Over 4 systems/handy are using remote access, you can close some and try " +#~ "again." +#~ msgstr "" +#~ "Więcej niż 4 aplikacje Studio/Handy korzystają z dostępu zdalnego, możesz " +#~ "zamknąć kilka z nich i spróbować ponownie." + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Włącz tę opcję, aby uzyskać plik G-code zawierający ruchy G2 i G3. " +#~ "Tolerancja dopasowania jest taka sama jak rozdzielczość" + +#~ msgid "Export Configs" +#~ msgstr "Eksportuj konfiguracje" #~ msgid "Actions For Unsaved Changes" #~ msgstr "Działania dotyczące niezapisanych zmian" @@ -13356,21 +16659,29 @@ msgstr "" #~ msgid "" #~ "\n" -#~ "Would you like to keep these changed settings(modified value) after switching preset?" +#~ "Would you like to keep these changed settings(modified value) after " +#~ "switching preset?" #~ msgstr "" #~ "\n" #~ "\n" -#~ "Czy chciałbyś zachować te zmienione ustawienia (zmodyfikowaną wartość) po przełączeniu profilu?" +#~ "Czy chciałbyś zachować te zmienione ustawienia (zmodyfikowaną wartość) po " +#~ "przełączeniu profilu?" -#~ msgid "You have previously modified your settings and are about to overwrite them with new ones." -#~ msgstr "Wcześniej zmodyfikowałeś swoje ustawienia i masz zamiar nadpisać je nowymi." +#~ msgid "" +#~ "You have previously modified your settings and are about to overwrite " +#~ "them with new ones." +#~ msgstr "" +#~ "Wcześniej zmodyfikowałeś swoje ustawienia i masz zamiar nadpisać je " +#~ "nowymi." #~ msgid "" #~ "\n" -#~ "Do you want to keep your current modified settings, or use preset settings?" +#~ "Do you want to keep your current modified settings, or use preset " +#~ "settings?" #~ msgstr "" #~ "\n" -#~ "Czy chcesz zachować obecnie zmienione ustawienia, czy może chcesz użyć ustawień domyślnych?" +#~ "Czy chcesz zachować obecnie zmienione ustawienia, czy może chcesz użyć " +#~ "ustawień domyślnych?" #~ msgid "" #~ "\n" @@ -13383,7 +16694,8 @@ msgstr "" #~ msgstr "Wyładuj" #~ msgid "A problem occured during calibration. Click to view the solution." -#~ msgstr "Wystąpił problem podczas kalibracji. Kliknij, aby zobaczyć rozwiązanie." +#~ msgstr "" +#~ "Wystąpił problem podczas kalibracji. Kliknij, aby zobaczyć rozwiązanie." #~ msgid "MC" #~ msgstr "MC (Płytka główna)" @@ -13418,20 +16730,42 @@ msgstr "" #~ msgid "Cabin humidity" #~ msgstr "Wilgotność w kabinie" -#~ msgid "Green means that AMS humidity is normal, orange represent humidity is high, red represent humidity is too high.(Hygrometer: lower the better.)" -#~ msgstr "Zielony kolor oznacza, że wilgotność w AMS jest normalna, pomarańczowy oznacza wysoką wilgotność, czerwony oznacza zbyt wysoką wilgotność. (Higrometr: im niższa, tym lepiej.)" +#~ msgid "" +#~ "Green means that AMS humidity is normal, orange represent humidity is " +#~ "high, red represent humidity is too high.(Hygrometer: lower the better.)" +#~ msgstr "" +#~ "Zielony kolor oznacza, że wilgotność w AMS jest normalna, pomarańczowy " +#~ "oznacza wysoką wilgotność, czerwony oznacza zbyt wysoką wilgotność. " +#~ "(Higrometr: im niższa, tym lepiej.)" #~ msgid "Desiccant status" #~ msgstr "Stan wilgotności" -#~ msgid "A desiccant status lower than two bars indicates that desiccant may be inactive. Please change the desiccant.(The bars: higher the better.)" -#~ msgstr "Stan wilgotności poniżej dwóch kresek oznacza, że sorbent może być nieaktywny. Proszę wymień sorbent. (Im więcej kresek, tym lepiej.)" +#~ msgid "" +#~ "A desiccant status lower than two bars indicates that desiccant may be " +#~ "inactive. Please change the desiccant.(The bars: higher the better.)" +#~ msgstr "" +#~ "Stan wilgotności poniżej dwóch kresek oznacza, że sorbent może być " +#~ "nieaktywny. Proszę wymień sorbent. (Im więcej kresek, tym lepiej.)" -#~ msgid "Note: When the lid is open or the desiccant pack is changed, it can take hours or a night to absorb the moisture. Low temperatures also slow down the process. During this time, the indicator may not represent the chamber accurately." -#~ msgstr "Uwaga: gdy pokrywa jest otwarta lub zmieniono pakiet sorbentu, może potrwać kilka godzin lub noc, aby wchłonąć wilgoć. Niska temperatura również spowalnia proces. W tym czasie wskaźnik może nie dokładnie odzwierciedlać stan komory." +#~ msgid "" +#~ "Note: When the lid is open or the desiccant pack is changed, it can take " +#~ "hours or a night to absorb the moisture. Low temperatures also slow down " +#~ "the process. During this time, the indicator may not represent the " +#~ "chamber accurately." +#~ msgstr "" +#~ "Uwaga: gdy pokrywa jest otwarta lub zmieniono pakiet sorbentu, może " +#~ "potrwać kilka godzin lub noc, aby wchłonąć wilgoć. Niska temperatura " +#~ "również spowalnia proces. W tym czasie wskaźnik może nie dokładnie " +#~ "odzwierciedlać stan komory." -#~ msgid "Note: if new filament is inserted during printing, the AMS will not automatically read any information until printing is completed." -#~ msgstr "Uwaga: jeśli podczas drukowania włożony zostanie nowy filament, AMS nie będzie automatycznie odczytywać żadnych informacji do zakończenia drukowania." +#~ msgid "" +#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "automatically read any information until printing is completed." +#~ msgstr "" +#~ "Uwaga: jeśli podczas drukowania włożony zostanie nowy filament, AMS nie " +#~ "będzie automatycznie odczytywać żadnych informacji do zakończenia " +#~ "drukowania." #, boost-format #~ msgid "Succeed to export G-code to %1%" @@ -13443,17 +16777,22 @@ msgstr "" #~ msgid "Initialize failed (No Camera Device)!" #~ msgstr "Inicjalizacja nie powiodła się (Brak urządzenia kamery)!" -#~ msgid "Printer is busy downloading, Please wait for the downloading to finish." -#~ msgstr "Drukarka jest zajęta pobieraniem. Proszę czekać, aż pobieranie zostanie zakończone." +#~ msgid "" +#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ msgstr "" +#~ "Drukarka jest zajęta pobieraniem. Proszę czekać, aż pobieranie zostanie " +#~ "zakończone." #~ msgid "Initialize failed (Not supported on the current printer version)!" -#~ msgstr "Inicjalizacja nie powiodła się (Nieobsługiwane w obecnej wersji drukarki)!" +#~ msgstr "" +#~ "Inicjalizacja nie powiodła się (Nieobsługiwane w obecnej wersji drukarki)!" #~ msgid "Initialize failed (Not accessible in LAN-only mode)!" #~ msgstr "Inicjalizacja nie powiodła się (Niedostępne w trybie tylko LAN)!" #~ msgid "Initialize failed (Missing LAN ip of printer)!" -#~ msgstr "Inicjalizacja nie powiodła się (Brak adresu IP drukarki w sieci LAN)!" +#~ msgstr "" +#~ "Inicjalizacja nie powiodła się (Brak adresu IP drukarki w sieci LAN)!" #, c-format, boost-format #~ msgid "Stopped [%d]!" @@ -13483,33 +16822,46 @@ msgstr "" #~ msgid "File not exists." #~ msgstr "Plik nie istnieje." -#~ msgid "Unable to perform boolean operation on model meshes. Only positive parts will be exported." -#~ msgstr "Nie można wykonywać operacji boolowskich na siatkach modeli. Eksportowane będą tylko części dodatnie." +#~ msgid "" +#~ "Unable to perform boolean operation on model meshes. Only positive parts " +#~ "will be exported." +#~ msgstr "" +#~ "Nie można wykonywać operacji boolowskich na siatkach modeli. Eksportowane " +#~ "będą tylko części dodatnie." #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" -#~ "Would you like to keep these changed settings (new value) after switching preset?" +#~ "Would you like to keep these changed settings (new value) after switching " +#~ "preset?" #~ msgstr "" #~ "Zmieniłeś niektóre ustawienia profilu \"%1%\". \n" -#~ "Czy chciałbyś zachować te zmienione ustawienia (nowa wartość) po zmianie profilu?" +#~ "Czy chciałbyś zachować te zmienione ustawienia (nowa wartość) po zmianie " +#~ "profilu?" #~ msgid "" #~ "You have changed some preset settings. \n" -#~ "Would you like to keep these changed settings (new value) after switching preset?" +#~ "Would you like to keep these changed settings (new value) after switching " +#~ "preset?" #~ msgstr "" #~ "Zmieniłeś niektóre ustawienia profilu. \n" -#~ "Czy chciałbyś zachować te zmienione ustawienia (nowa wartość) po zmianie profilu?" +#~ "Czy chciałbyś zachować te zmienione ustawienia (nowa wartość) po zmianie " +#~ "profilu?" #~ msgid " ℃" #~ msgstr " ℃" #~ msgid "" #~ "Please go to filament setting to edit your presets if you need.\n" -#~ "Please note that nozzle temperature, hot bed temperature, and maximum volumetric speed have a significant impact on printing quality. Please set them carefully." +#~ "Please note that nozzle temperature, hot bed temperature, and maximum " +#~ "volumetric speed have a significant impact on printing quality. Please " +#~ "set them carefully." #~ msgstr "" -#~ "Jeśli zajdzie taka potrzeba, proszę przejść do ustawień filamentu, aby edytować swoje zmiany.\n" -#~ "Zwróć uwagę, że temperatura dyszy, temperatura podgrzewanego stołu oraz maksymalna prędkość przepływu mają znaczący wpływ na jakość druku 3D. Proszę ustawić je z rozwagą." +#~ "Jeśli zajdzie taka potrzeba, proszę przejść do ustawień filamentu, aby " +#~ "edytować swoje zmiany.\n" +#~ "Zwróć uwagę, że temperatura dyszy, temperatura podgrzewanego stołu oraz " +#~ "maksymalna prędkość przepływu mają znaczący wpływ na jakość druku 3D. " +#~ "Proszę ustawić je z rozwagą." #~ msgid "Timeout when authenticating with the account server." #~ msgstr "Przekroczono limit czasu serwera podczas uwierzytelniania." @@ -13519,7 +16871,8 @@ msgstr "" #~ "Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" #~ msgstr "" #~ "Filtracja powietrza/Wentylator wyciągowy\n" -#~ "Czy wiesz, że OrcaSlicer może obsługiwać filtrację powietrza/wentylator wyciągowy?" +#~ "Czy wiesz, że OrcaSlicer może obsługiwać filtrację powietrza/wentylator " +#~ "wyciągowy?" #~ msgid "Studio Version:" #~ msgstr "Wersja Studio:" @@ -13564,19 +16917,29 @@ msgstr "" #~ msgstr "Test załadunku przechowywania" #~ msgid "" -#~ "The speed setting exceeds the printer's maximum speed (machine_max_speed_x/machine_max_speed_y).\n" -#~ "Orca will automatically cap the print speed to ensure it doesn't surpass the printer's capabilities.\n" -#~ "You can adjust the maximum speed setting in your printer's configuration to get higher speeds." +#~ "The speed setting exceeds the printer's maximum speed " +#~ "(machine_max_speed_x/machine_max_speed_y).\n" +#~ "Orca will automatically cap the print speed to ensure it doesn't surpass " +#~ "the printer's capabilities.\n" +#~ "You can adjust the maximum speed setting in your printer's configuration " +#~ "to get higher speeds." #~ msgstr "" -#~ "Ustawienie prędkości przekracza maksymalną prędkość drukarki (machine_max_speed_x/machine_max_speed_y).\n" -#~ "Orca automatycznie ograniczy prędkość druku, aby nie przekroczyć zdolności drukarki.\n" -#~ "Możesz dostosować ustawienie maksymalnej prędkości w konfiguracji swojej drukarki, aby uzyskać wyższe prędkości." +#~ "Ustawienie prędkości przekracza maksymalną prędkość drukarki " +#~ "(machine_max_speed_x/machine_max_speed_y).\n" +#~ "Orca automatycznie ograniczy prędkość druku, aby nie przekroczyć " +#~ "zdolności drukarki.\n" +#~ "Możesz dostosować ustawienie maksymalnej prędkości w konfiguracji swojej " +#~ "drukarki, aby uzyskać wyższe prędkości." #~ msgid "Choose ZIP file" #~ msgstr "Wybierz plik ZIP" -#~ msgid "Could not start URL download. Destination folder is not set. Please choose destination folder in Configuration Wizard." -#~ msgstr "Nie można rozpocząć pobierania pliku z adresu URL. Folder docelowy nie jest ustawiony. Proszę wybrać folder docelowy w Kreatorze Konfiguracji" +#~ msgid "" +#~ "Could not start URL download. Destination folder is not set. Please " +#~ "choose destination folder in Configuration Wizard." +#~ msgstr "" +#~ "Nie można rozpocząć pobierania pliku z adresu URL. Folder docelowy nie " +#~ "jest ustawiony. Proszę wybrać folder docelowy w Kreatorze Konfiguracji" #~ msgid "Import Zip Archive" #~ msgstr "Importuj archiwum ZIP" @@ -13594,46 +16957,68 @@ msgstr "" #, boost-format #~ msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." -#~ msgstr "Nie udało się znaleźć rozpakowanego pliku pod adresem %1%. Rozpakowywanie pliku nie powiodło się." +#~ msgstr "" +#~ "Nie udało się znaleźć rozpakowanego pliku pod adresem %1%. Rozpakowywanie " +#~ "pliku nie powiodło się." #~ msgid "Allow downloads from Printables.com" #~ msgstr "Zezwól na pobieranie modeli z Printables.com" #~ msgid "" #~ "When using scarf joint, we recommend the following settings:\n" -#~ "print outer wall first, disable wipe before external loop, reduce outer wall speed to no greater than 50mm/s, and don't use random or nearest seam position" +#~ "print outer wall first, disable wipe before external loop, reduce outer " +#~ "wall speed to no greater than 50mm/s, and don't use random or nearest " +#~ "seam position" #~ msgstr "" #~ "Przy korzystaniu ze szwu szalikowego zalecamy następujące ustawienia: \n" -#~ "drukuj zewnętrzną ściane jako pierwszą, wyłączenie czyszczenia przed zewnętrzną pętlą, ograniczenie prędkości zewnętrznej ściany do maksymalnie 50 mm/s oraz unikanie stosowania pozycji szwu \"losowo\" lub \"najbliższy\"." +#~ "drukuj zewnętrzną ściane jako pierwszą, wyłączenie czyszczenia przed " +#~ "zewnętrzną pętlą, ograniczenie prędkości zewnętrznej ściany do " +#~ "maksymalnie 50 mm/s oraz unikanie stosowania pozycji szwu \"losowo\" lub " +#~ "\"najbliższy\"." -#~ msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)" -#~ msgstr "Dodaj pełne wypełnienie w pobliżu nachylonych powierzchni, aby zagwarantować pionową grubość powłoki (górne+ dolne pełne warstwy)" +#~ msgid "" +#~ "Add solid infill near sloping surfaces to guarantee the vertical shell " +#~ "thickness (top+bottom solid layers)" +#~ msgstr "" +#~ "Dodaj pełne wypełnienie w pobliżu nachylonych powierzchni, aby " +#~ "zagwarantować pionową grubość powłoki (górne+ dolne pełne warstwy)" #~ msgid "Further reduce solid infill on walls (beta)" #~ msgstr "Dodatkowe zmniejszenie gęstości wypełnienia na obwodzie (beta)" #~ msgid "" -#~ "Further reduces any solid infill applied to walls. As there will be very limited infill supporting solid surfaces, make sure that you are using adequate number of walls to support the part on sloping surfaces.\n" +#~ "Further reduces any solid infill applied to walls. As there will be very " +#~ "limited infill supporting solid surfaces, make sure that you are using " +#~ "adequate number of walls to support the part on sloping surfaces.\n" #~ "\n" -#~ "For heavily sloped surfaces this option is not suitable as it will generate too thin of a top layer and should be disabled." +#~ "For heavily sloped surfaces this option is not suitable as it will " +#~ "generate too thin of a top layer and should be disabled." #~ msgstr "" #~ "Dodatkowo redukuje ilość stałego wypełnienia aplikowanego na ściany. \n" #~ "\n" -#~ "Ponieważ ilość wypełnienia podpory powierzchni stałych będzie bardzo ograniczona, upewnij się, że używasz odpowiedniej liczby ścian do podparcia części na nachylonych powierzchniach." +#~ "Ponieważ ilość wypełnienia podpory powierzchni stałych będzie bardzo " +#~ "ograniczona, upewnij się, że używasz odpowiedniej liczby ścian do " +#~ "podparcia części na nachylonych powierzchniach." #~ msgid "Scarf joint seam" #~ msgstr "Szew szalikowy (beta)" #~ msgid "" #~ "Start height of the scarf.\n" -#~ "This amount can be specified in millimeters or as a percentage of the current layer height. The default value for this parameter is 0.05mm." +#~ "This amount can be specified in millimeters or as a percentage of the " +#~ "current layer height. The default value for this parameter is 0.05mm." #~ msgstr "" #~ "Początkowa wysokość szwu szalikowego.\n" #~ "\n" -#~ "Ta wartość może być określona w milimetrach lub jako procent bieżącej wysokości warstwy. Domyślna wartość tego parametru to 0,05 mm." +#~ "Ta wartość może być określona w milimetrach lub jako procent bieżącej " +#~ "wysokości warstwy. Domyślna wartość tego parametru to 0,05 mm." -#~ msgid "Speed of exhuast fan during printing.This speed will overwrite the speed in filament custom gcode" -#~ msgstr "Prędkość wentylatora wyciągowego podczas druku. Ta prędkość zastąpi prędkość w niestandardowym gcode filamentu" +#~ msgid "" +#~ "Speed of exhuast fan during printing.This speed will overwrite the speed " +#~ "in filament custom gcode" +#~ msgstr "" +#~ "Prędkość wentylatora wyciągowego podczas druku. Ta prędkość zastąpi " +#~ "prędkość w niestandardowym gcode filamentu" #~ msgid "Speed of exhuast fan after printing completes" #~ msgstr "Prędkość wentylatora wyciągowego po zakończeniu druku" @@ -13695,14 +17080,22 @@ msgstr "" #~ msgstr "Witam" #, c-format, boost-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" +#~ 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" #~ msgid "Remove user profiles (a snapshot will be taken beforehand)" #~ msgstr "Usuń profile użytkownika (zostanie wykonany zrzut)" -#~ msgid "Perform desktop integration (Sets this binary to be searchable by the system)." -#~ msgstr "Wykonaj integrację z pulpitem (ustawia ten plik binarny tak, aby był możliwy do wyszukania przez system)." +#~ msgid "" +#~ "Perform desktop integration (Sets this binary to be searchable by the " +#~ "system)." +#~ msgstr "" +#~ "Wykonaj integrację z pulpitem (ustawia ten plik binarny tak, aby był " +#~ "możliwy do wyszukania przez system)." #, c-format, boost-format #~ msgid "%s Family" @@ -13721,8 +17114,12 @@ msgstr "" #~ msgstr "(Wszystko)" #, boost-format -#~ msgid "%1% marked with * are not compatible with some installed printers." -#~ msgstr "%1% oznaczone symbolem *niekompatybilne z niektórymi zainstalowanymi drukarkami." +#~ msgid "" +#~ "%1% marked with * are not compatible with some installed " +#~ "printers." +#~ msgstr "" +#~ "%1% oznaczone symbolem *niekompatybilne z niektórymi " +#~ "zainstalowanymi drukarkami." #~ msgid "SLA materials" #~ msgstr "Materiał rozpuszczalny" @@ -13737,11 +17134,19 @@ msgstr "" #~ msgid "SLA material" #~ msgstr "Materiał rozpuszczalny" -#~ msgid "Only the following installed printers are compatible with the selected filaments" -#~ msgstr "Tylko następujące zainstalowane drukarki są kompatybilne z wybranymi filamentami" +#~ msgid "" +#~ "Only the following installed printers are compatible with the selected " +#~ "filaments" +#~ msgstr "" +#~ "Tylko następujące zainstalowane drukarki są kompatybilne z wybranymi " +#~ "filamentami" -#~ msgid "Only the following installed printers are compatible with the selected SLA materials" -#~ msgstr "Tylko następujące zainstalowane drukarki są kompatybilne z wybranymi materiałami SLA" +#~ msgid "" +#~ "Only the following installed printers are compatible with the selected " +#~ "SLA materials" +#~ msgstr "" +#~ "Tylko następujące zainstalowane drukarki są kompatybilne z wybranymi " +#~ "materiałami SLA" #~ msgid "Custom Printer Setup" #~ msgstr "Ustawienie Własnej Drukarki" @@ -13788,8 +17193,12 @@ msgstr "" #~ msgid "Enter the diameter of your filament." #~ msgstr "Wprowadź średnicę filamentu." -#~ 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, przeprowadź kilka pomiarów w sporych odstępach od siebie i oblicz średnią." +#~ 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, przeprowadź kilka " +#~ "pomiarów w sporych odstępach od siebie i oblicz średnią." #~ msgid "Filament Diameter:" #~ msgstr "Średnica filamentu:" @@ -13801,16 +17210,25 @@ msgstr "" #~ msgstr "Wprowadź temperaturę dyszy potrzebną do ekstruzji filamentu." #~ 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." +#~ msgstr "" +#~ "Generalną zasadą jest 160 do 230 °C dla PLA i 215 do 250 °C dla ABS." #~ msgid "Extrusion Temperature:" #~ msgstr "Temperatura ekstrudera:" -#~ 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." +#~ 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." -#~ 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." +#~ 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." #~ msgid "Bed Temperature:" #~ msgstr "Temperatura stołu" @@ -13825,17 +17243,26 @@ msgstr "" #~ msgstr "Technologia druku SLA" #, boost-format -#~ msgid "Following printer profiles has no default filament: %1%Please select one manually." -#~ msgstr "Następujące profile druku nie mają domyślnego filamentu: %1% Wybierz jeden ręcznie." +#~ msgid "" +#~ "Following printer profiles has no default filament: %1%Please select one " +#~ "manually." +#~ msgstr "" +#~ "Następujące profile druku nie mają domyślnego filamentu: %1% Wybierz " +#~ "jeden ręcznie." #, boost-format -#~ msgid "Following printer profiles has no default material: %1%Please select one manually." -#~ msgstr "Następujące profile druku nie mają domyślnego materiału: %1% Wybierz jeden ręcznie." +#~ msgid "" +#~ "Following printer profiles has no default material: %1%Please select one " +#~ "manually." +#~ msgstr "" +#~ "Następujące profile druku nie mają domyślnego materiału: %1% Wybierz " +#~ "jeden ręcznie." #~ msgid "The following FFF printer models have no filament selected:" #~ msgstr "Następujące modele drukarek FFF nie mają przypisanych filamentów:" -#~ msgid "Do you want to select default filaments for these FFF printer models?" +#~ msgid "" +#~ "Do you want to select default filaments for these FFF printer models?" #~ msgstr "Czy chcesz ustawić domyślne filamenty dla tych modeli drukarek FFF?" #~ msgid "Configuration is edited in ConfigWizard" @@ -13845,10 +17272,17 @@ msgstr "" #~ msgstr "Wszystkie profile ustawień użytkownika zostaną usunięte." #~ msgid "A new vendor was installed and one of its printers will be activated" -#~ msgid_plural "New vendors were installed and one of theirs printers will be activated" -#~ msgstr[0] "Nowy producent drukarki został dodany i jedna z jego drukarek zostanie aktywowana" -#~ msgstr[1] "Nowych producentów drukarek zostało dodanych i jedna z ich drukarek zostanie aktywowana." -#~ msgstr[2] "Nowych producentów drukarek zostało dodanych i jedna z ich drukarek zostanie aktywowana." +#~ msgid_plural "" +#~ "New vendors were installed and one of theirs printers will be activated" +#~ msgstr[0] "" +#~ "Nowy producent drukarki został dodany i jedna z jego drukarek zostanie " +#~ "aktywowana" +#~ msgstr[1] "" +#~ "Nowych producentów drukarek zostało dodanych i jedna z ich drukarek " +#~ "zostanie aktywowana." +#~ msgstr[2] "" +#~ "Nowych producentów drukarek zostało dodanych i jedna z ich drukarek " +#~ "zostanie aktywowana." #~ msgid "A new Printer was installed and it will be activated." #~ msgstr "Zainstalowano nową drukarkę i zostanie ona aktywowana." @@ -13866,7 +17300,8 @@ msgstr "" #~ msgstr "Niektóre filamenty zostały odinstalowane." #~ msgid "Custom printer was installed and it will be activated." -#~ msgstr "Niestandardowa drukarka została zainstalowana i zostanie aktywowana." +#~ msgstr "" +#~ "Niestandardowa drukarka została zainstalowana i zostanie aktywowana." #~ msgid " Extruder -> Layer height limits, this may cause printing quality issues." -#~ msgstr "Wysokość warstwy przekracza limit w Ustawieniach Drukarki -> Extruder -> Limity wysokości warstwy, co może powodować problemy z jakością druku." +#~ msgid "" +#~ "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " +#~ "height limits, this may cause printing quality issues." +#~ msgstr "" +#~ "Wysokość warstwy przekracza limit w Ustawieniach Drukarki -> Extruder -> " +#~ "Limity wysokości warstwy, co może powodować problemy z jakością druku." #~ msgid "Delete objects, parts, modifiers " #~ msgstr "Usuń obiekty, części, modyfikatory " -#~ msgid "Connection failed! If your IP and Access Code is correct, please move to step 3 for troubleshooting network issues" -#~ msgstr "Połączenie nieudane! Jeśli twój IP i kod dostępu są poprawne, przejdź do kroku 3, aby rozwiązać problemy z siecią" +#~ msgid "" +#~ "Connection failed! If your IP and Access Code is correct, please move to " +#~ "step 3 for troubleshooting network issues" +#~ msgstr "" +#~ "Połączenie nieudane! Jeśli twój IP i kod dostępu są poprawne, przejdź do " +#~ "kroku 3, aby rozwiązać problemy z siecią" #, c-format -#~ msgid "Force cooling fan to be specific speed when overhang degree of printed part exceeds this value.Expressed as percentage which indicides how much width of the line without support from lower layer. 0% means forcing cooling for all outer wall no matter how much overhang degree" -#~ msgstr "Wymuś pracę wentylatora chłodzącego na określoną prędkość, gdy stopień nawisu drukowanej części przekracza tę wartość. Wyrażone w procentach, co wskazuje, jak duża jest szerokość linii bez podpór z niższej warstwy. 0%% oznacza wymuszanie chłodzenia dla całej zewnętrznej ściany, bez względu na stopień nawisu" +#~ msgid "" +#~ "Force cooling fan to be specific speed when overhang degree of printed " +#~ "part exceeds this value.Expressed as percentage which indicides how much " +#~ "width of the line without support from lower layer. 0% means forcing " +#~ "cooling for all outer wall no matter how much overhang degree" +#~ msgstr "" +#~ "Wymuś pracę wentylatora chłodzącego na określoną prędkość, gdy stopień " +#~ "nawisu drukowanej części przekracza tę wartość. Wyrażone w procentach, co " +#~ "wskazuje, jak duża jest szerokość linii bez podpór z niższej warstwy. 0%% " +#~ "oznacza wymuszanie chłodzenia dla całej zewnętrznej ściany, bez względu " +#~ "na stopień nawisu" #, c-format, boost-format #~ msgid "" -#~ "Number of mm the overhang need to be for the reversal to be considered useful. Can be a %% of the perimeter width.\n" +#~ "Number of mm the overhang need to be for the reversal to be considered " +#~ "useful. Can be a %% of the perimeter width.\n" #~ "Value 0 enables reversal on every odd layers regardless." #~ msgstr "" -#~ "Ilość mm, jaką musi mieć nawis, aby odwrócenie było uznane za użyteczne. Może być to %% szerokości obryski.\n" -#~ "Wartość 0 umożliwia odwrócenie na każdej nieparzystej warstwie, niezależnie od wszystkiego." +#~ "Ilość mm, jaką musi mieć nawis, aby odwrócenie było uznane za użyteczne. " +#~ "Może być to %% szerokości obryski.\n" +#~ "Wartość 0 umożliwia odwrócenie na każdej nieparzystej warstwie, " +#~ "niezależnie od wszystkiego." -#~ msgid "Smooth Spiral smoothes out X and Y moves as well resulting in no visible seam at all, even in the XY directions on walls that are not vertical" -#~ msgstr "Smooth Spiral wygładza również ruchy w osiach X i Y, co skutkuje brakiem widocznych szwów, nawet w kierunkach XY na ścianach, które nie są pionowe" +#~ msgid "" +#~ "Smooth Spiral smoothes out X and Y moves as well resulting in no visible " +#~ "seam at all, even in the XY directions on walls that are not vertical" +#~ msgstr "" +#~ "Smooth Spiral wygładza również ruchy w osiach X i Y, co skutkuje brakiem " +#~ "widocznych szwów, nawet w kierunkach XY na ścianach, które nie są pionowe" -#~ msgid "Maximum distance to move points in XY to try to achieve a smooth spiral. If expressed as a %, it will be computed over nozzle diameter" -#~ msgstr "Maksymalna odległość przesuwania punktów w XY, aby osiągnąć gładką spiralę. Jeśli wyrażona w procentach, będzie obliczona na podstawie średnicy dyszy" +#~ msgid "" +#~ "Maximum distance to move points in XY to try to achieve a smooth spiral. " +#~ "If expressed as a %, it will be computed over nozzle diameter" +#~ msgstr "" +#~ "Maksymalna odległość przesuwania punktów w XY, aby osiągnąć gładką " +#~ "spiralę. Jeśli wyrażona w procentach, będzie obliczona na podstawie " +#~ "średnicy dyszy" #, c-format, boost-format #~ msgid "" #~ "Maximum defection of a point to the estimated radius of the circle.\n" -#~ "As cylinders are often exported as triangles of varying size, points may not be on the circle circumference. This setting allows you some leway to broaden the detection.\n" +#~ "As cylinders are often exported as triangles of varying size, points may " +#~ "not be on the circle circumference. This setting allows you some leway to " +#~ "broaden the detection.\n" #~ "In mm or in %% of the radius." #~ msgstr "" #~ "Maksymalne odchylenie punktu od szacowanego promienia koła.\n" -#~ "Ponieważ cylindry często eksportowane są jako trójkąty o różnej wielkości, punkty mogą nie znajdować się na obwodzie koła. To ustawienie pozwala na pewną swobodę w poszerzaniu wykrywania.\n" +#~ "Ponieważ cylindry często eksportowane są jako trójkąty o różnej " +#~ "wielkości, punkty mogą nie znajdować się na obwodzie koła. To ustawienie " +#~ "pozwala na pewną swobodę w poszerzaniu wykrywania.\n" #~ "W mm lub w %% promienia." #~ msgid "Certificate files (.crt, .pem)|.crt;.pem|All files|." #~ msgstr "Pliki certyfikatów (.crt, .pem)|.crt;.pem|Wszystkie pliki|." -#~ msgid "Relative extrusion is recommended when using \"label_objects\" option.Some extruders work better with this option unchecked (absolute extrusion mode). Wipe tower is only compatible with relative mode. It is always enabled on BambuLab printers. Default is checked" -#~ msgstr "Przy użyciu opcji \"label_objects\" zaleca się ekstruzję względną. Niektóre ekstrudery działają lepiej, gdy ta opcja jest odznaczona (tryb ekstruzji absolutnej). Wieża czyszcząca jest kompatybilna tylko z trybem względnym. Jest zawsze włączona w drukarkach BambuLab. Domyślnie zaznaczone" +#~ msgid "" +#~ "Relative extrusion is recommended when using \"label_objects\" option." +#~ "Some extruders work better with this option unchecked (absolute extrusion " +#~ "mode). Wipe tower is only compatible with relative mode. It is always " +#~ "enabled on BambuLab printers. Default is checked" +#~ msgstr "" +#~ "Przy użyciu opcji \"label_objects\" zaleca się ekstruzję względną. " +#~ "Niektóre ekstrudery działają lepiej, gdy ta opcja jest odznaczona (tryb " +#~ "ekstruzji absolutnej). Wieża czyszcząca jest kompatybilna tylko z trybem " +#~ "względnym. Jest zawsze włączona w drukarkach BambuLab. Domyślnie " +#~ "zaznaczone" #~ msgid "Error! Unable to create thread!" #~ msgstr "Błąd! Nie można utworzyć wątku!" @@ -14667,22 +18439,34 @@ msgstr "" #~ msgid "Exception" #~ msgstr "Wyjątek" -#~ msgid "Discribe how long the nozzle will move along the last path when retracting" -#~ msgstr "Opisz, jak długo dysza będzie się poruszać wzdłuż ostatniej ścieżki podczas retrakcji" +#~ msgid "" +#~ "Discribe how long the nozzle will move along the last path when retracting" +#~ msgstr "" +#~ "Opisz, jak długo dysza będzie się poruszać wzdłuż ostatniej ścieżki " +#~ "podczas retrakcji" #~ msgid "" #~ "Simplify Model\n" -#~ "Did you know that you can reduce the number of triangles in a mesh using the Simplify mesh feature? Right-click the model and select Simplify model. Read more in the documentation." +#~ "Did you know that you can reduce the number of triangles in a mesh using " +#~ "the Simplify mesh feature? Right-click the model and select Simplify " +#~ "model. Read more in the documentation." #~ msgstr "" #~ "Uprość model\n" -#~ "Czy wiedziałeś, że możesz zmniejszyć liczbę trójkątów w siatce za pomocą funkcji Uprość siatkę? Kliknij prawym przyciskiem myszy na model i wybierz Uprość model. Więcej informacji znajdziesz w dokumentacji." +#~ "Czy wiedziałeś, że możesz zmniejszyć liczbę trójkątów w siatce za pomocą " +#~ "funkcji Uprość siatkę? Kliknij prawym przyciskiem myszy na model i " +#~ "wybierz Uprość model. Więcej informacji znajdziesz w dokumentacji." #~ msgid "" #~ "Subtract a Part\n" -#~ "Did you know that you can subtract one mesh from another using the Negative part modifier? That way you can, for example, create easily resizable holes directly in Orca Slicer. Read more in the documentation." +#~ "Did you know that you can subtract one mesh from another using the " +#~ "Negative part modifier? That way you can, for example, create easily " +#~ "resizable holes directly in Orca Slicer. Read more in the documentation." #~ msgstr "" #~ "Odejmowanie części\n" -#~ "Czy wiedziałeś, że możesz odjąć jedną siatkę od drugiej, używając modyfikatora negatywnej części? W ten sposób na przykład możesz łatwo tworzyć otwory o zmiennej wielkości bezpośrednio w Orca Slicer. Przeczytaj więcej w dokumentacji." +#~ "Czy wiedziałeś, że możesz odjąć jedną siatkę od drugiej, używając " +#~ "modyfikatora negatywnej części? W ten sposób na przykład możesz łatwo " +#~ "tworzyć otwory o zmiennej wielkości bezpośrednio w Orca Slicer. " +#~ "Przeczytaj więcej w dokumentacji." #~ msgid "Filling bed " #~ msgstr "Wypełnianie podłoża " @@ -14701,7 +18485,8 @@ msgstr "" #~ "Nie - automatycznie zresetuj gęstość do domyślnej wartości nie 100%" #~ msgid "Please heat the nozzle to above 170 degree before loading filament." -#~ msgstr "Proszę podgrzać dyszę do ponad 170 stopni przed załadowaniem filamentu." +#~ msgstr "" +#~ "Proszę podgrzać dyszę do ponad 170 stopni przed załadowaniem filamentu." #~ msgid "Show g-code window" #~ msgstr "Pokaż okno G-kodu" @@ -14711,7 +18496,9 @@ msgstr "" #, fuzzy, c-format #~ msgid "Density of internal sparse infill, 100% means solid throughout" -#~ msgstr "Gęstość wewnętrznego rzadkiego wypełnienia, 100% oznacza pełne w całym zakresie" +#~ msgstr "" +#~ "Gęstość wewnętrznego rzadkiego wypełnienia, 100% oznacza pełne w całym " +#~ "zakresie" #~ msgid "Tree support wall loops" #~ msgstr "Pętle ścienne podpory drzewnej" @@ -14739,7 +18526,9 @@ msgstr "" #~ msgstr "Proszę wprowadzić prawidłową wartość (K w zakresie 0~0,5)" #~ msgid "Please input a valid value (K in 0~0.5, N in 0.6~2.0)" -#~ msgstr "Proszę wprowadzić prawidłową wartość (K w zakresie 0~0,5, N w zakresie 0,6~2,0)" +#~ msgstr "" +#~ "Proszę wprowadzić prawidłową wartość (K w zakresie 0~0,5, N w zakresie " +#~ "0,6~2,0)" #~ msgid "Export all objects as STL" #~ msgstr "Eksportuj wszystkie obiekty jako STL" @@ -14753,8 +18542,12 @@ msgstr "" #~ msgid "Add/Remove printers" #~ msgstr "Dodaj/Usuń drukarki" -#~ msgid "When print by object, machines with I3 structure will not generate timelapse videos." -#~ msgstr "Podczas drukowania według obiektu, maszyny ze strukturą I3 nie będą tworzyć filmów poklatkowych." +#~ msgid "" +#~ "When print by object, machines with I3 structure will not generate " +#~ "timelapse videos." +#~ msgstr "" +#~ "Podczas drukowania według obiektu, maszyny ze strukturą I3 nie będą " +#~ "tworzyć filmów poklatkowych." #, c-format, boost-format #~ msgid "%s is not supported by AMS." @@ -14766,14 +18559,21 @@ msgstr "" #~ msgid "Error: IP or Access Code are not correct" #~ msgstr "Błąd: IP lub kod dostępu są niepoprawne" -#~ msgid "Extrude perimeters that have a part over an overhang in the reverse direction on odd layers. This alternating pattern can drastically improve steep overhang." -#~ msgstr "Ekstruduj obwody, które mają część nad występem w przeciwnym kierunku na nieparzystych warstwach. Ten naprzemienny wzór może drastycznie poprawić strome nawisy." +#~ msgid "" +#~ "Extrude perimeters that have a part over an overhang in the reverse " +#~ "direction on odd layers. This alternating pattern can drastically improve " +#~ "steep overhang." +#~ msgstr "" +#~ "Ekstruduj obwody, które mają część nad występem w przeciwnym kierunku na " +#~ "nieparzystych warstwach. Ten naprzemienny wzór może drastycznie poprawić " +#~ "strome nawisy." #~ msgid "Order of inner wall/outer wall/infil" #~ msgstr "Kolejność wewnętrznej ściany/zewnętrznej ściany/wypełnienia" #~ msgid "Print sequence of inner wall, outer wall and infill. " -#~ msgstr "Sekwencja druku wewnętrznej ściany, zewnętrznej ściany i wypełnienia. " +#~ msgstr "" +#~ "Sekwencja druku wewnętrznej ściany, zewnętrznej ściany i wypełnienia. " #~ msgid "inner/outer/infill" #~ msgstr "wewnętrzna/zewnętrzna/wypełnienie" @@ -14834,7 +18634,9 @@ msgstr "" #~ msgstr "Załaduj domyślne filamenty" #~ msgid "Load first filament as default for those not loaded" -#~ msgstr "Załaduj pierwszy filament jako domyślny dla tych, które nie zostały załadowane" +#~ msgstr "" +#~ "Załaduj pierwszy filament jako domyślny dla tych, które nie zostały " +#~ "załadowane" #~ msgid "mtcpp" #~ msgstr "mtcpp" @@ -14918,10 +18720,16 @@ msgstr "" #~ msgstr "Pomiń niektóre obiekty w tym druku" #~ msgid "load uptodate process/machine settings when using uptodate" -#~ msgstr "załaduj aktualne ustawienia procesu/maszyny podczas korzystania z aktualizacji" +#~ msgstr "" +#~ "załaduj aktualne ustawienia procesu/maszyny podczas korzystania z " +#~ "aktualizacji" -#~ msgid "load uptodate process/machine settings from the specified file when using uptodate" -#~ msgstr "załaduj aktualne ustawienia procesu/maszyny z określonego pliku podczas korzystania z aktualizacji" +#~ msgid "" +#~ "load uptodate process/machine settings from the specified file when using " +#~ "uptodate" +#~ msgstr "" +#~ "załaduj aktualne ustawienia procesu/maszyny z określonego pliku podczas " +#~ "korzystania z aktualizacji" #~ msgid "Output directory" #~ msgstr "Katalog wyjściowy" @@ -14932,31 +18740,43 @@ msgstr "" #~ msgid "Debug level" #~ msgstr "Poziom debugowania" -#~ msgid "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" -#~ msgstr "Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n" +#~ msgid "" +#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" +#~ "trace\n" +#~ msgstr "" +#~ "Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:" +#~ "info, 4:debug, 5:trace\n" #~ msgid "The selected preset: %1% is not found." #~ msgstr "Wybrana przędło: %1% nie została znaleziona." #~ msgid "" #~ "3D Scene Operations\n" -#~ "Did you know how to control view and object/part selection with mouse and touchpanel in the 3D scene?" +#~ "Did you know how to control view and object/part selection with mouse and " +#~ "touchpanel in the 3D scene?" #~ msgstr "" #~ "Operacje w scenie 3D\n" -#~ "Czy wiesz, jak kontrolować widok i wybór obiektów/części za pomocą myszy i panelu dotykowego w scenie 3D?" +#~ "Czy wiesz, jak kontrolować widok i wybór obiektów/części za pomocą myszy " +#~ "i panelu dotykowego w scenie 3D?" #~ msgid "" #~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of slicing problems?" +#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " +#~ "slicing problems?" #~ msgstr "" #~ "Napraw model\n" -#~ "Czy wiesz, że możesz naprawić uszkodzony model 3D, aby uniknąć wielu problemów z krojeniem?" +#~ "Czy wiesz, że możesz naprawić uszkodzony model 3D, aby uniknąć wielu " +#~ "problemów z krojeniem?" #~ msgid "Embeded" #~ msgstr "Osadzone" -#~ msgid "OrcaSlicer configuration file may be corrupted and is not abled to be parsed.Please delete the file and try again." -#~ msgstr "Plik konfiguracyjny OrcaSlicer może być uszkodzony i nie można go przeanalizować. Proszę usunąć plik i spróbować ponownie." +#~ msgid "" +#~ "OrcaSlicer configuration file may be corrupted and is not abled to be " +#~ "parsed.Please delete the file and try again." +#~ msgstr "" +#~ "Plik konfiguracyjny OrcaSlicer może być uszkodzony i nie można go " +#~ "przeanalizować. Proszę usunąć plik i spróbować ponownie." #~ msgid "Online Models" #~ msgstr "Modele online" @@ -14968,41 +18788,70 @@ msgstr "" #~ msgstr "Minimalna prędkość drukowania przy zwolnieniu do chłodzenia" #~ msgid "" -#~ "There are currently no identical spare consumables available, and automatic replenishment is currently not possible. \n" -#~ "(Currently supporting automatic supply of consumables with the same brand, material type, and color)" +#~ "There are currently no identical spare consumables available, and " +#~ "automatic replenishment is currently not possible. \n" +#~ "(Currently supporting automatic supply of consumables with the same " +#~ "brand, material type, and color)" #~ msgstr "" -#~ "Obecnie nie ma dostępnych identycznych zapasowych materiałów eksploatacyjnych, i automatyczne uzupełnianie nie jest obecnie możliwe. \n" -#~ "(Obecnie obsługiwane jest automatyczne zaopatrzenie w materiały eksploatacyjne tej samej marki, typu materiału i koloru)" +#~ "Obecnie nie ma dostępnych identycznych zapasowych materiałów " +#~ "eksploatacyjnych, i automatyczne uzupełnianie nie jest obecnie możliwe. \n" +#~ "(Obecnie obsługiwane jest automatyczne zaopatrzenie w materiały " +#~ "eksploatacyjne tej samej marki, typu materiału i koloru)" #~ msgid "Invalid nozzle diameter" #~ msgstr "Nieprawidłowa średnica dyszy" -#~ msgid "The bed temperature exceeds filament's vitrification temperature. Please open the front door of printer before printing to avoid nozzle clog." -#~ msgstr "Temperatura łóżka przekracza temperaturę witrifikacji filamentu. Proszę otworzyć przednie drzwi drukarki przed drukowaniem, aby uniknąć zatkania dyszy." +#~ msgid "" +#~ "The bed temperature exceeds filament's vitrification temperature. Please " +#~ "open the front door of printer before printing to avoid nozzle clog." +#~ msgstr "" +#~ "Temperatura łóżka przekracza temperaturę witrifikacji filamentu. Proszę " +#~ "otworzyć przednie drzwi drukarki przed drukowaniem, aby uniknąć zatkania " +#~ "dyszy." #~ msgid "Temperature of vitrificaiton" #~ msgstr "Temperatura witrifikacji" -#~ msgid "Material becomes soft at this temperature. Thus the heatbed cannot be hotter than this tempature" -#~ msgstr "Materiał staje się miękki w tej temperaturze. Dlatego podgrzewane łóżko nie może być gorętsze niż ta temperatura" +#~ msgid "" +#~ "Material becomes soft at this temperature. Thus the heatbed cannot be " +#~ "hotter than this tempature" +#~ msgstr "" +#~ "Materiał staje się miękki w tej temperaturze. Dlatego podgrzewane łóżko " +#~ "nie może być gorętsze niż ta temperatura" #~ msgid "Enable this option if machine has auxiliary part cooling fan" -#~ msgstr "Włącz tę opcję, jeśli maszyna ma dodatkowy wentylator chłodzenia części" +#~ msgstr "" +#~ "Włącz tę opcję, jeśli maszyna ma dodatkowy wentylator chłodzenia części" -#~ msgid "This option is enabled if machine support controlling chamber temperature" -#~ msgstr "Ta opcja jest włączona, jeśli maszyna obsługuje kontrolę temperatury komory" +#~ msgid "" +#~ "This option is enabled if machine support controlling chamber temperature" +#~ msgstr "" +#~ "Ta opcja jest włączona, jeśli maszyna obsługuje kontrolę temperatury " +#~ "komory" #~ msgid "Enable this if printer support air filtration" #~ msgstr "Włącz to, jeśli drukarka obsługuje filtrację powietrza" -#~ msgid "Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed during printing except the first several layers which is defined by no cooling layers" -#~ msgstr "Prędkość wentylatora chłodzenia pomocniczej części. Wentylator pomocniczy będzie pracować z tą prędkością podczas drukowania, z wyjątkiem pierwszych kilku warstw, które są zdefiniowane jako warstwy bez chłodzenia" +#~ msgid "" +#~ "Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed " +#~ "during printing except the first several layers which is defined by no " +#~ "cooling layers" +#~ msgstr "" +#~ "Prędkość wentylatora chłodzenia pomocniczej części. Wentylator pomocniczy " +#~ "będzie pracować z tą prędkością podczas drukowania, z wyjątkiem " +#~ "pierwszych kilku warstw, które są zdefiniowane jako warstwy bez chłodzenia" -#~ msgid "Filter out gaps smaller than the threshold specified. This setting won't affect top/bottom layers" -#~ msgstr "Filtruj przerwy mniejsze niż określony próg. To ustawienie nie wpłynie na warstwy górne/dolne" +#~ msgid "" +#~ "Filter out gaps smaller than the threshold specified. This setting won't " +#~ "affect top/bottom layers" +#~ msgstr "" +#~ "Filtruj przerwy mniejsze niż określony próg. To ustawienie nie wpłynie na " +#~ "warstwy górne/dolne" #~ msgid "Empty layers around bottom are replaced by nearest normal layers." -#~ msgstr "Puste warstwy wokół dolnej części są zastępowane najbliższymi normalnymi warstwami." +#~ msgstr "" +#~ "Puste warstwy wokół dolnej części są zastępowane najbliższymi normalnymi " +#~ "warstwami." #~ msgid "The model has too many empty layers." #~ msgstr "Model ma zbyt wiele pustych warstw." @@ -15018,20 +18867,26 @@ msgstr "" #, c-format, boost-format #~ msgid "" -#~ "Bed temperature of other layer is lower than bed temperature of initial layer for more than %d degree centigrade.\n" +#~ "Bed temperature of other layer is lower than bed temperature of initial " +#~ "layer for more than %d degree centigrade.\n" #~ "This may cause model broken free from build plate during printing" #~ msgstr "" -#~ "Temperatura podłoża innych warstw jest niższa niż temperatura podłoża pierwszej warstwy o więcej niż %d stopni Celsjusza.\n" +#~ "Temperatura podłoża innych warstw jest niższa niż temperatura podłoża " +#~ "pierwszej warstwy o więcej niż %d stopni Celsjusza.\n" #~ "Może to spowodować oderwanie modelu od płyty budowlanej podczas drukowania" #~ msgid "" -#~ "Bed temperature is higher than vitrification temperature of this filament.\n" +#~ "Bed temperature is higher than vitrification temperature of this " +#~ "filament.\n" #~ "This may cause nozzle blocked and printing failure\n" -#~ "Please keep the printer open during the printing process to ensure air circulation or reduce the temperature of the hot bed" +#~ "Please keep the printer open during the printing process to ensure air " +#~ "circulation or reduce the temperature of the hot bed" #~ msgstr "" -#~ "Temperatura podłoża jest wyższa niż temperatura witrifikacji tego filamentu.\n" +#~ "Temperatura podłoża jest wyższa niż temperatura witrifikacji tego " +#~ "filamentu.\n" #~ "Może to spowodować zablokowanie dyszy i niepowodzenie drukowania\n" -#~ "Proszę pozostawić drukarkę otwartą podczas procesu drukowania, aby zapewnić cyrkulację powietrza lub obniżyć temperaturę podgrzewanego łóżka" +#~ "Proszę pozostawić drukarkę otwartą podczas procesu drukowania, aby " +#~ "zapewnić cyrkulację powietrza lub obniżyć temperaturę podgrzewanego łóżka" #~ msgid "Total Time Estimation" #~ msgstr "Całkowity szacowany czas" @@ -15060,25 +18915,53 @@ msgstr "" #~ msgid "High Temp Plate" #~ msgstr "Płyta wysokotemperaturowa" -#~ msgid "Bed temperature when high temperature plate is installed. Value 0 means the filament does not support to print on the High Temp Plate" -#~ msgstr "Temperatura podłoża, gdy jest zainstalowana płyta wysokotemperaturowa. Wartość 0 oznacza, że filament nie obsługuje drukowania na Płycie Wysokotemperaturowej" +#~ msgid "" +#~ "Bed temperature when high temperature plate is installed. Value 0 means " +#~ "the filament does not support to print on the High Temp Plate" +#~ msgstr "" +#~ "Temperatura podłoża, gdy jest zainstalowana płyta wysokotemperaturowa. " +#~ "Wartość 0 oznacza, że filament nie obsługuje drukowania na Płycie " +#~ "Wysokotemperaturowej" #~ msgid "Internal bridge support thickness" #~ msgstr "Grubość wewnętrznej podpory mostu" -#~ msgid "If enabled, support loops will be generated under the contours of internal bridges.These support loops could prevent internal bridges from extruding over the air and improve the top surface quality, especially when the sparse infill density is low. This value determines the thickness of the support loops. 0 means disable this feature" -#~ msgstr "Jeśli włączone, pętle podpory zostaną wygenerowane pod konturami wewnętrznych mostów. Te pętle podpory mogą zapobiec wyciskaniu mostów do powietrza i poprawić jakość górnej powierzchni, szczególnie gdy gęstość wypełnienia jest niska. Ta wartość określa grubość pętli podpory. 0 oznacza wyłączenie tej funkcji" +#~ msgid "" +#~ "If enabled, support loops will be generated under the contours of " +#~ "internal bridges.These support loops could prevent internal bridges from " +#~ "extruding over the air and improve the top surface quality, especially " +#~ "when the sparse infill density is low. This value determines the " +#~ "thickness of the support loops. 0 means disable this feature" +#~ msgstr "" +#~ "Jeśli włączone, pętle podpory zostaną wygenerowane pod konturami " +#~ "wewnętrznych mostów. Te pętle podpory mogą zapobiec wyciskaniu mostów do " +#~ "powietrza i poprawić jakość górnej powierzchni, szczególnie gdy gęstość " +#~ "wypełnienia jest niska. Ta wartość określa grubość pętli podpory. 0 " +#~ "oznacza wyłączenie tej funkcji" #, fuzzy, c-format, boost-format -#~ msgid "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" -#~ msgstr "Maksymalne przyspieszenie Klippera max_accel_to_decel zostanie dostosowane do tego % przyspieszenia" +#~ msgid "" +#~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" +#~ msgstr "" +#~ "Maksymalne przyspieszenie Klippera max_accel_to_decel zostanie " +#~ "dostosowane do tego % przyspieszenia" #~ msgid "" -#~ "Style and shape of the support. For normal support, projecting the supports into a regular grid will create more stable supports (default), while snug support towers will save material and reduce object scarring.\n" -#~ "For tree support, slim style will merge branches more aggressively and save a lot of material (default), while hybrid style will create similar structure to normal support under large flat overhangs." +#~ "Style and shape of the support. For normal support, projecting the " +#~ "supports into a regular grid will create more stable supports (default), " +#~ "while snug support towers will save material and reduce object scarring.\n" +#~ "For tree support, slim style will merge branches more aggressively and " +#~ "save a lot of material (default), while hybrid style will create similar " +#~ "structure to normal support under large flat overhangs." #~ msgstr "" -#~ "Styl i kształt podpory. Dla normalnej podpory, rzutowanie podpór na regularną siatkę stworzy stabilniejsze podpory (domyślnie), podczas gdy ciasne wieże podpory zaoszczędzą materiał i zmniejszą blizny na obiekcie.\n" -#~ "Dla podpory drzewa, szczupły styl połączy gałęzie agresywniej i zaoszczędzi dużo materiału (domyślnie), podczas gdy styl hybrydowy stworzy podobną strukturę do normalnej podpory pod dużymi płaskimi zwisami." +#~ "Styl i kształt podpory. Dla normalnej podpory, rzutowanie podpór na " +#~ "regularną siatkę stworzy stabilniejsze podpory (domyślnie), podczas gdy " +#~ "ciasne wieże podpory zaoszczędzą materiał i zmniejszą blizny na " +#~ "obiekcie.\n" +#~ "Dla podpory drzewa, szczupły styl połączy gałęzie agresywniej i " +#~ "zaoszczędzi dużo materiału (domyślnie), podczas gdy styl hybrydowy " +#~ "stworzy podobną strukturę do normalnej podpory pod dużymi płaskimi " +#~ "zwisami." #~ msgid "Target chamber temperature" #~ msgstr "Docelowa temperatura komory" @@ -15086,8 +18969,14 @@ msgstr "" #~ msgid "Bed temperature difference" #~ msgstr "Różnica temperatury podłoża" -#~ msgid "Do not recommend bed temperature of other layer to be lower than initial layer for more than this threshold. Too low bed temperature of other layer may cause the model broken free from build plate" -#~ msgstr "Nie zaleca się, aby temperatura łóżka innej warstwy była niższa niż początkowa warstwa o więcej niż ten próg. Zbyt niska temperatura podłoża innej warstwy może spowodować oderwanie modelu od blatu budowlanego" +#~ msgid "" +#~ "Do not recommend bed temperature of other layer to be lower than initial " +#~ "layer for more than this threshold. Too low bed temperature of other " +#~ "layer may cause the model broken free from build plate" +#~ msgstr "" +#~ "Nie zaleca się, aby temperatura łóżka innej warstwy była niższa niż " +#~ "początkowa warstwa o więcej niż ten próg. Zbyt niska temperatura podłoża " +#~ "innej warstwy może spowodować oderwanie modelu od blatu budowlanego" #~ msgid "Orient the model" #~ msgstr "Zorientuj model" diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index f84e1d99c5..d54c590411 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: 2024-04-16 11:17-0300\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" @@ -1906,6 +1906,9 @@ msgstr "Adicionar Primitivo" msgid "Add Handy models" msgstr "Adicionar Modelos Úteis" +msgid "Add Models" +msgstr "Adicionar Modelos" + msgid "Show Labels" msgstr "Mostrar Etiquetas" @@ -2400,7 +2403,7 @@ msgstr "Falha ao conectar à impressora" msgid "Connection to printer failed" msgstr "Falha na conexão com a impressora" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "Por favor, verifique a conexão de rede da impressora e do Studio." msgid "Connecting..." @@ -2761,14 +2764,8 @@ msgstr "O Orca Slicer é licenciado sob " msgid "GNU Affero General Public License, version 3" msgstr "Licença Pública Geral Affero GNU, versão 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"O Orca Slicer é baseado no BambuStudio da Bambulab, que é derivado do " -"PrusaSlicer da Prusa Research. O PrusaSlicer vem do Slic3r de Alessandro " -"Ranellucci e da comunidade RepRap" msgid "Libraries" msgstr "Bibliotecas" @@ -3272,6 +3269,210 @@ msgstr "" "Agendando o envio para `%1%`. Veja Janela -> Fila de Envio do Anfitrião de " "Impressão" +msgid "Device" +msgstr "Dispositivo" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Desconectado" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Visualizar" + +msgid "N/A" +msgstr "N/D" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Adicionar" + +msgid "Idle" +msgstr "Inativo" + +msgid "Printing" +msgstr "Imprimindo" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Incompatível" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Preparar" + +msgid "Slicing" +msgstr "Fatiando" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Continuar" + +msgid "Stop" +msgstr "Parar" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Carregando..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Preparando trabalho de impressão" + +msgid "Abnormal print file data. Please slice again" +msgstr "Dados de arquivo de impressão anormais. Por favor, fatie novamente" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Enviar" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "O nome é inválido;" + +msgid "illegal characters:" +msgstr "caracteres ilegais:" + +msgid "illegal suffix:" +msgstr "sufixo ilegal:" + +msgid "The name is not allowed to be empty." +msgstr "O nome não pode ficar vazio." + +msgid "The name is not allowed to start with space character." +msgstr "O nome não pode começar com um espaço." + +msgid "The name is not allowed to end with space character." +msgstr "O nome não pode terminar com um espaço." + +msgid "The name length exceeds the limit." +msgstr "O comprimento do nome excede o limite." + msgid "Origin" msgstr "Origem" @@ -3803,9 +4004,6 @@ msgstr "Configurações da Impressora" msgid "parameter name" msgstr "nome do parâmetro" -msgid "N/A" -msgstr "N/D" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s não pode ser percentagem" @@ -4123,9 +4321,6 @@ msgstr "Evitar a região de calibração da extrusão" msgid "Align to Y axis" msgstr "Alinhar com o eixo Y" -msgid "Add" -msgstr "Adicionar" - msgid "Add plate" msgstr "Adicionar mesa" @@ -4312,15 +4507,9 @@ msgstr "Fechando o aplicativo enquanto alguns perfis estão sendo modificados." msgid "Logging" msgstr "Registro" -msgid "Prepare" -msgstr "Preparar" - msgid "Preview" msgstr "Pré-visualizar" -msgid "Device" -msgstr "Dispositivo" - msgid "Multi-device" msgstr "" @@ -4348,9 +4537,6 @@ msgstr "Fatiar Tudo" msgid "Export G-code file" msgstr "Exportar arquivo G-code" -msgid "Send" -msgstr "Enviar" - msgid "Export plate sliced file" msgstr "Exportar arquivo de mesa fatiada" @@ -4363,9 +4549,6 @@ msgstr "Imprimir tudo" msgid "Send all" msgstr "Enviar tudo" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Atalhos de Teclado" @@ -4507,8 +4690,8 @@ msgstr "Exportar G-code" msgid "Export current plate as G-code" msgstr "Exportar a mesa atual como G-code" -msgid "Export &Configs" -msgstr "Exportar &Configurações" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Exportar configuração atual para arquivos" @@ -4609,9 +4792,6 @@ msgstr "Mostrar destaque de sobrecarga de objeto na cena 3D" msgid "Preferences" msgstr "Preferências" -msgid "View" -msgstr "Visualizar" - msgid "Help" msgstr "Ajuda" @@ -4678,10 +4858,10 @@ msgstr "Exportar &Trilhas de Ferramentas como OBJ" msgid "Export toolpaths as OBJ" msgstr "Exportar trilhas de ferramentas como OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Abrir &Estúdio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Abrir Estúdio" msgid "&Quit" @@ -4877,9 +5057,6 @@ msgstr "Informação" msgid "Playing..." msgstr "Reproduzindo..." -msgid "Loading..." -msgstr "Carregando..." - msgid "Year" msgstr "Ano" @@ -5045,11 +5222,6 @@ msgstr "" "Reconectando a impressora, a operação não pôde ser concluída imediatamente, " "por favor, tente novamente mais tarde." -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "O arquivo não existe." @@ -5108,12 +5280,6 @@ msgstr "Inverter eixo de rotação" msgid "Printing Progress" msgstr "Progresso da Impressão" -msgid "Resume" -msgstr "Continuar" - -msgid "Stop" -msgstr "Parar" - msgid "0" msgstr "0" @@ -5888,6 +6054,9 @@ msgstr "" msgid "The name may show garbage characters!" msgstr "O nome pode exibir caracteres inválidos!" +msgid "Remember my choice." +msgstr "Lembrar minha escolha." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -6017,9 +6186,6 @@ msgstr "Não é possível recarregar:" msgid "Error during reload" msgstr "Erro durante a recarga" -msgid "Slicing" -msgstr "Fatiando" - msgid "There are warnings after slicing models:" msgstr "Existem avisos após o fatiamento dos modelos:" @@ -6095,9 +6261,11 @@ msgid "Project downloaded %d%%" msgstr "Projeto baixado %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" +"A importação para o Orca Slicer falhou. Por favor, baixe o arquivo e importe " +"manualmente." msgid "Import SLA archive" msgstr "Importar arquivo SLA" @@ -6135,18 +6303,12 @@ msgstr "Arquivos de G-code não podem ser carregados junto com modelos!" msgid "Can not add models when in preview mode!" msgstr "Não é possível adicionar modelos no modo de visualização!" -msgid "Add Models" -msgstr "Adicionar Modelos" - msgid "All objects will be removed, continue?" msgstr "Todos os objetos serão removidos, continuar?" msgid "The current project has unsaved changes, save it before continue?" msgstr "O projeto atual tem alterações não salvas, salvar antes de continuar?" -msgid "Remember my choice." -msgstr "Lembrar minha escolha." - msgid "Number of copies:" msgstr "Número de cópias:" @@ -6358,6 +6520,11 @@ msgstr "Região de Login" msgid "Stealth Mode" msgstr "Modo Oculto" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "Ativar plugin de rede" @@ -6470,7 +6637,7 @@ msgstr "" "Se ativo, Orca vai lembrar e alternar a configuração de filamento/processo " "para cada impressora automaticamente." -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6693,9 +6860,6 @@ msgstr "Selecionar/Remover impressoras (presets do sistema)" msgid "Create printer" msgstr "Criar impressora" -msgid "Incompatible" -msgstr "Incompatível" - msgid "The selected preset is null!" msgstr "O preset selecionada é nulo!" @@ -6791,15 +6955,6 @@ msgstr "Preset do usuário" msgid "Preset Inside Project" msgstr "Preset dentro do projeto" -msgid "Name is invalid;" -msgstr "O nome é inválido;" - -msgid "illegal characters:" -msgstr "caracteres ilegais:" - -msgid "illegal suffix:" -msgstr "sufixo ilegal:" - msgid "Name is unavailable." msgstr "O nome não está disponível." @@ -6817,15 +6972,6 @@ msgstr "O perfil \"%1%\" já existe e é incompatível com a impressora atual." msgid "Please note that saving action will replace this preset" msgstr "Por favor, note que a ação de salvar substituirá este perfil" -msgid "The name is not allowed to be empty." -msgstr "O nome não pode ficar vazio." - -msgid "The name is not allowed to start with space character." -msgstr "O nome não pode começar com um espaço." - -msgid "The name is not allowed to end with space character." -msgstr "O nome não pode terminar com um espaço." - msgid "The name cannot be the same as a preset alias name." msgstr "O nome não pode ser o mesmo que um nome de alias de perfil." @@ -6883,9 +7029,6 @@ msgstr "Não consegue encontrar meus dispositivos?" msgid "Log out successful." msgstr "Sessão encerrada com sucesso." -msgid "Offline" -msgstr "Desconectado" - msgid "Busy" msgstr "Ocupado" @@ -7111,15 +7254,6 @@ msgstr "" "Conectando à impressora. Não é possível cancelar durante o processo de " "conexão." -msgid "Preparing print job" -msgstr "Preparando trabalho de impressão" - -msgid "Abnormal print file data. Please slice again" -msgstr "Dados de arquivo de impressão anormais. Por favor, fatie novamente" - -msgid "The name length exceeds the limit." -msgstr "O comprimento do nome excede o limite." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7519,6 +7653,9 @@ msgstr "Filamento de suporte" msgid "Tree supports" msgstr "Suportes de árvore" +msgid "Skirt" +msgstr "Saia" + msgid "Prime tower" msgstr "Torre de purga" @@ -8431,6 +8568,12 @@ msgstr "Mover o controle deslizante 5 vezes mais rápido" msgid "Shift+Mouse wheel" msgstr "Shift+Roda do mouse" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Nota de lançamento" @@ -8556,12 +8699,6 @@ msgstr "Versão:" msgid "Update firmware" msgstr "Atualizar firmware" -msgid "Printing" -msgstr "Imprimindo" - -msgid "Idle" -msgstr "Inativo" - msgid "Beta version" msgstr "Versão beta" @@ -8596,7 +8733,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "A versão do firmware está anormal. É necessário reparar e atualizar antes de " "imprimir. Deseja atualizar agora? Você também pode atualizar mais tarde na " @@ -8738,9 +8875,6 @@ msgstr "Ponte interna" msgid "Gap infill" msgstr "Preenchimento de vão" -msgid "Skirt" -msgstr "Saia" - msgid "Support interface" msgstr "Interface de suporte" @@ -10759,8 +10893,8 @@ msgstr "Fornecedor do filamento. Apenas para mostrar" msgid "(Undefined)" msgstr "(Indefinido)" -msgid "Infill direction" -msgstr "Direção de preenchimento" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10769,6 +10903,20 @@ msgstr "" "Ângulo para o padrão de preenchimento não sólido, que controla o início ou a " "direção principal da linha" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Densidade do preenchimento" @@ -11127,11 +11275,15 @@ msgid "Arc fitting" msgstr "Ajuste de arco (Arc fitting)" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Habilitar isso para obter um arquivo G-code que tenha movimentos G2 e G3. E " -"a tolerância de ajuste é a mesma que a resolução" msgid "Add line number" msgstr "Adicionar número da linha" @@ -11367,13 +11519,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Sobreposição de preenchimento/perímetro" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"A área de preenchimento é ligeiramente ampliada para se sobrepor ao " -"perímetro para melhor aderência. O valor percentual é relativo à largura da " -"linha do preenchimento não sólido" msgid "Speed of internal sparse infill" msgstr "Velocidade do preenchimento" @@ -12459,6 +12623,23 @@ msgstr "Altura da saia" msgid "How many layers of skirt. Usually only one layer" msgstr "Quantas camadas de saia. Geralmente apenas uma camada" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Voltas da saia" @@ -12473,6 +12654,17 @@ msgstr "" "Velocidade da saia, em mm/s. Zero significa usar a velocidade padrão de " "extrusão da camada." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -13242,6 +13434,19 @@ msgstr "Espaçamento das linhas de purga da torre de limpeza" msgid "Spacing of purge lines on the wipe tower." msgstr "Espaçamento das linhas de purga na torre de limpeza." +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "Extrusor da torre de limpeza" @@ -15196,7 +15401,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -15212,9 +15417,6 @@ msgstr "" msgid "Printer Setting" msgstr "Configuração da Impressora" -msgid "Export Configs" -msgstr "Exportar Configurações" - msgid "Printer config bundle(.orca_printer)" msgstr "Pacote de configuração da impressora (.orca_printer)" @@ -16216,6 +16418,39 @@ msgstr "" "aumentar adequadamente a temperatura da mesa aquecida pode reduzir a " "probabilidade de empenamento?" +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "O Orca Slicer é baseado no BambuStudio da Bambulab, que é derivado do " +#~ "PrusaSlicer da Prusa Research. O PrusaSlicer vem do Slic3r de Alessandro " +#~ "Ranellucci e da comunidade RepRap" + +#~ msgid "Export &Configs" +#~ msgstr "Exportar &Configurações" + +#~ msgid "Infill direction" +#~ msgstr "Direção de preenchimento" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Habilitar isso para obter um arquivo G-code que tenha movimentos G2 e G3. " +#~ "E a tolerância de ajuste é a mesma que a resolução" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "A área de preenchimento é ligeiramente ampliada para se sobrepor ao " +#~ "perímetro para melhor aderência. O valor percentual é relativo à largura " +#~ "da linha do preenchimento não sólido" + +#~ msgid "Export Configs" +#~ msgstr "Exportar Configurações" + #~ msgid "Actions For Unsaved Changes" #~ msgstr "Ações para Alterações Não Salvas" @@ -16318,13 +16553,6 @@ msgstr "" #~ "Atualizar seu Bambu Studio pode habilitar todas as funcionalidades do " #~ "arquivo 3mf." -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "" -#~ "A importação para o Orca Slicer falhou. Por favor, baixe o arquivo e " -#~ "importe manualmente." - #~ msgid "- ℃" #~ msgstr "- °C" diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index ea2a0c0088..e3e164ba42 100644 --- a/localization/i18n/ru/OrcaSlicer_ru.po +++ b/localization/i18n/ru/OrcaSlicer_ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer V2.0.0 Official Release\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: 2024-04-12 13:49+0700\n" "Last-Translator: \n" "Language-Team: andylg@yandex.ru\n" @@ -1906,6 +1906,9 @@ msgstr "Добавить примитив" msgid "Add Handy models" msgstr "Добавьте тестовую модель" +msgid "Add Models" +msgstr "Добавить модель" + msgid "Show Labels" msgstr "Показать имена файлов" @@ -2408,7 +2411,7 @@ msgstr "Не удалось подключиться к принтеру." msgid "Connection to printer failed" msgstr "Не удалось подключиться к принтеру" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "Пожалуйста, проверьте сетевое подключение принтера с BambuStudio." msgid "Connecting..." @@ -2768,14 +2771,8 @@ msgstr "Orca Slicer распространяется под лицензией " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public третьей версии" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer основан на BambuStudio от компании Bambulab, которая взяла за " -"основу PrusaSlicer от компании Prusa Research. PrusaSlicer же основан на " -"Slic3r от Alessandro Ranellucci и разработках сообщества RepRap." msgid "Libraries" msgstr "Библиотеки" @@ -3278,6 +3275,210 @@ msgstr "" "Планирование загрузки на `%1%`. Смотрите Окна -> Очередь загрузки на хост " "печати" +msgid "Device" +msgstr "Принтер" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Не в сети" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Вид" + +msgid "N/A" +msgstr "Н/Д" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Добавить" + +msgid "Idle" +msgstr "Простой" + +msgid "Printing" +msgstr "Печать" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Несовместимы" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Подготовка" + +msgid "Slicing" +msgstr "Нарезка" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Продолжить" + +msgid "Stop" +msgstr "Остановить" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Загрузка..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Подготовка задания на печать" + +msgid "Abnormal print file data. Please slice again" +msgstr "Неправильные данные файла печати. Пожалуйста, нарежьте ещё раз." + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Отправить G-код стола на SD-карту" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "Некорректное имя;" + +msgid "illegal characters:" +msgstr "недопустимые символы:" + +msgid "illegal suffix:" +msgstr "недопустимый суффикс:" + +msgid "The name is not allowed to be empty." +msgstr "Имя не может быть пустым." + +msgid "The name is not allowed to start with space character." +msgstr "Имя не должно начитаться с пробела." + +msgid "The name is not allowed to end with space character." +msgstr "Имя не должно заканчиваться пробелом." + +msgid "The name length exceeds the limit." +msgstr "Длина имени превышает установленное ограничение." + msgid "Origin" msgstr "Начало координат" @@ -3810,9 +4011,6 @@ msgstr "Настройки принтера" msgid "parameter name" msgstr "Имя параметра" -msgid "N/A" -msgstr "Н/Д" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s не может быть в процентах" @@ -4130,9 +4328,6 @@ msgstr "Избегать зону калибровки экструзии" msgid "Align to Y axis" msgstr "Выравнивать по оси Y" -msgid "Add" -msgstr "Добавить" - msgid "Add plate" msgstr "Добавить стол" @@ -4321,15 +4516,9 @@ msgstr "Закрытие приложения, при имеющихся изм msgid "Logging" msgstr "Авторизация" -msgid "Prepare" -msgstr "Подготовка" - msgid "Preview" msgstr "Предпросмотр нарезки" -msgid "Device" -msgstr "Принтер" - msgid "Multi-device" msgstr "" @@ -4357,9 +4546,6 @@ msgstr "Нарезать все столы" msgid "Export G-code file" msgstr "Экспорт в G-код" -msgid "Send" -msgstr "Отправить G-код стола на SD-карту" - msgid "Export plate sliced file" msgstr "Экспорт стола в файл проекта" @@ -4372,9 +4558,6 @@ msgstr "Распечатать все столы" msgid "Send all" msgstr "Отправить G-код всех столов на SD-карту" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Горячие клавиши" @@ -4516,8 +4699,8 @@ msgstr "Экспорт в G-код" msgid "Export current plate as G-code" msgstr "Экспортировать текущие модели со стола в G-код" -msgid "Export &Configs" -msgstr "Экспорт конфигурации" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Экспортировать текущую конфигурацию в файл" @@ -4619,9 +4802,6 @@ msgstr "Подсвечивать нависания у модели в 3D-сце msgid "Preferences" msgstr "Параметры" -msgid "View" -msgstr "Вид" - msgid "Help" msgstr "Помощь" @@ -4689,10 +4869,10 @@ msgstr "Экспорт траектории &инструмента в OBJ" msgid "Export toolpaths as OBJ" msgstr "Экспортировать траекторию инструмента в OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Открыть &Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Открыть Studio" msgid "&Quit" @@ -4875,9 +5055,6 @@ msgstr "Информация" msgid "Playing..." msgstr "Воспроизведение..." -msgid "Loading..." -msgstr "Загрузка..." - msgid "Year" msgstr "Год" @@ -5040,11 +5217,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -5103,12 +5275,6 @@ msgstr "Инвертировать ось крена (Z)" msgid "Printing Progress" msgstr "Прогресс печати" -msgid "Resume" -msgstr "Продолжить" - -msgid "Stop" -msgstr "Остановить" - msgid "0" msgstr "0" @@ -5884,6 +6050,9 @@ msgstr "Имена компонентов внутри step файла не в msgid "The name may show garbage characters!" msgstr "В названии могут присутствовать ненужные символы!" +msgid "Remember my choice." +msgstr "Запомнить выбор" + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -6014,9 +6183,6 @@ msgstr "Не удалось перезагрузить:" msgid "Error during reload" msgstr "Ошибка во время перезагрузки" -msgid "Slicing" -msgstr "Нарезка" - msgid "There are warnings after slicing models:" msgstr "Предупреждение о нарезке моделей:" @@ -6089,9 +6255,11 @@ msgid "Project downloaded %d%%" msgstr "Проект загружен %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" +"Не удалось импортировать в Orca Slicer. Загрузите файл и импортируйте его " +"вручную." msgid "Import SLA archive" msgstr "Импорт SLA архива" @@ -6129,9 +6297,6 @@ msgstr "Одновременная загрузка файла G-кода и м msgid "Can not add models when in preview mode!" msgstr "В режиме предпросмотра добавление моделей недоступно!" -msgid "Add Models" -msgstr "Добавить модель" - msgid "All objects will be removed, continue?" msgstr "Все модели будут удалены, продолжить?" @@ -6140,9 +6305,6 @@ msgstr "" "В текущем проекте имеются несохранённые изменения. \n" "Сохранить их перед продолжением?" -msgid "Remember my choice." -msgstr "Запомнить выбор" - msgid "Number of copies:" msgstr "Количество копий:" @@ -6349,6 +6511,11 @@ msgstr "Регион входа" msgid "Stealth Mode" msgstr "Режим конфиденциальности (отключение телеметрии Bambulab)" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "Включить сетевой плагин" @@ -6465,7 +6632,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6690,9 +6857,6 @@ msgstr "Выбор/удаление принтеров (системные пр msgid "Create printer" msgstr "Создать принтер" -msgid "Incompatible" -msgstr "Несовместимы" - msgid "The selected preset is null!" msgstr "Выбранный профиль пуст!" @@ -6791,15 +6955,6 @@ msgstr "Пользовательский профиль" msgid "Preset Inside Project" msgstr "Внутрипроектный профиль" -msgid "Name is invalid;" -msgstr "Некорректное имя;" - -msgid "illegal characters:" -msgstr "недопустимые символы:" - -msgid "illegal suffix:" -msgstr "недопустимый суффикс:" - msgid "Name is unavailable." msgstr "Имя недоступно." @@ -6818,15 +6973,6 @@ msgid "Please note that saving action will replace this preset" msgstr "" "Обратите внимание, что при сохранении произойдёт замена текущего профиля." -msgid "The name is not allowed to be empty." -msgstr "Имя не может быть пустым." - -msgid "The name is not allowed to start with space character." -msgstr "Имя не должно начитаться с пробела." - -msgid "The name is not allowed to end with space character." -msgstr "Имя не должно заканчиваться пробелом." - msgid "The name cannot be the same as a preset alias name." msgstr "Имя не должно совпадать с именем предустановленного профиля." @@ -6884,9 +7030,6 @@ msgstr "Не удаётся найти свои принтеры?" msgid "Log out successful." msgstr "Выход выполнен успешно." -msgid "Offline" -msgstr "Не в сети" - msgid "Busy" msgstr "Занят" @@ -7107,15 +7250,6 @@ msgid "" msgstr "" "Подключение к принтеру. Невозможно отменить во время процесса подключения." -msgid "Preparing print job" -msgstr "Подготовка задания на печать" - -msgid "Abnormal print file data. Please slice again" -msgstr "Неправильные данные файла печати. Пожалуйста, нарежьте ещё раз." - -msgid "The name length exceeds the limit." -msgstr "Длина имени превышает установленное ограничение." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7501,6 +7635,9 @@ msgstr "Пруток для поддержки" msgid "Tree supports" msgstr "Древовидная поддержка" +msgid "Skirt" +msgstr "Юбка" + msgid "Prime tower" msgstr "Черновая башня" @@ -8427,6 +8564,12 @@ msgstr "Перемещение ползунка быстрее в 5 раз" msgid "Shift+Mouse wheel" msgstr "Shift + Колесо мыши" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Информация о версии" @@ -8552,12 +8695,6 @@ msgstr "Версия:" msgid "Update firmware" msgstr "Обновить прошивку" -msgid "Printing" -msgstr "Печать" - -msgid "Idle" -msgstr "Простой" - msgid "Beta version" msgstr "Бета-версия" @@ -8592,7 +8729,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "Ошибка в версии прошивки. Перед печатью её необходимо исправить и обновить. " "Хотите обновить сейчас? Вы можете сделать это позже с принтера или при " @@ -8734,9 +8871,6 @@ msgstr "Внутренний мост" msgid "Gap infill" msgstr "Заполнение пробелов" -msgid "Skirt" -msgstr "Юбка" - msgid "Support interface" msgstr "Связующий слой" @@ -10757,8 +10891,8 @@ msgstr "Производитель пластиковой нити (только msgid "(Undefined)" msgstr "(Не указано)" -msgid "Infill direction" -msgstr "Угол печати заполнения" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10767,6 +10901,20 @@ msgstr "" "Базовый угол для ориентации шаблона заполнения, который определяет начало " "или основное направление линий." +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Плотность заполнения" @@ -11125,12 +11273,15 @@ msgid "Arc fitting" msgstr "Поддержка движения по дуге окружности" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Включите, если хотите использовать в G-коде команды перемещения по дуге " -"окружности G2/G3. Значение допуска траектории такое же как разрешение G-кода " -"выше." msgid "Add line number" msgstr "Добавить номер строки" @@ -11364,12 +11515,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Перекрытие линий заполнения с линиями периметра" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"Параметр указывает на сколько процентов заполнение будет перекрываться с " -"периметром для лучшего соединения друг с другом." msgid "Speed of internal sparse infill" msgstr "Скорость заполнения" @@ -12459,6 +12623,23 @@ msgstr "Слоёв юбки" msgid "How many layers of skirt. Usually only one layer" msgstr "Количество слоёв юбки. Обычно только один слой." +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Юбок вокруг модели" @@ -12471,6 +12652,17 @@ msgstr "Скорость печати юбки" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "Скорость печати юбки (мм/с). 0 - скорость экструзии слоя по умолчанию." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -13266,6 +13458,19 @@ msgstr "Расстояние между линиями очистки черно msgid "Spacing of purge lines on the wipe tower." msgstr "Расстояние между линиями очистки на черновой башне." +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "Экструдер черновой башни" @@ -15218,7 +15423,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -15227,9 +15432,6 @@ msgstr "" msgid "Printer Setting" msgstr "Настройка принтера" -msgid "Export Configs" -msgstr "Экспорт конфигураций" - msgid "Printer config bundle(.orca_printer)" msgstr "Printer config bundle(.orca_printer) - Пакет конфигурации принтеров" @@ -16221,6 +16423,39 @@ msgstr "" "ABS, повышение температуры подогреваемого стола может снизить эту " "вероятность?" +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer основан на BambuStudio от компании Bambulab, которая взяла за " +#~ "основу PrusaSlicer от компании Prusa Research. PrusaSlicer же основан на " +#~ "Slic3r от Alessandro Ranellucci и разработках сообщества RepRap." + +#~ msgid "Export &Configs" +#~ msgstr "Экспорт конфигурации" + +#~ msgid "Infill direction" +#~ msgstr "Угол печати заполнения" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Включите, если хотите использовать в G-коде команды перемещения по дуге " +#~ "окружности G2/G3. Значение допуска траектории такое же как разрешение G-" +#~ "кода выше." + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "Параметр указывает на сколько процентов заполнение будет перекрываться с " +#~ "периметром для лучшего соединения друг с другом." + +#~ msgid "Export Configs" +#~ msgstr "Экспорт конфигураций" + #~ msgid "Unload Filament" #~ msgstr "Выгрузить" @@ -16246,13 +16481,6 @@ msgstr "" #~ msgid "HMS" #~ msgstr "Здоровье принтера" -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "" -#~ "Не удалось импортировать в Orca Slicer. Загрузите файл и импортируйте его " -#~ "вручную." - #~ msgid "- ℃" #~ msgstr "- ℃" diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index edc30815c7..10d28d6075 100644 --- a/localization/i18n/sv/OrcaSlicer_sv.po +++ b/localization/i18n/sv/OrcaSlicer_sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1841,6 +1841,9 @@ msgstr "Lägg till Primitiv" msgid "Add Handy models" msgstr "" +msgid "Add Models" +msgstr "Lägg till modeller" + msgid "Show Labels" msgstr "Visa Etiketter" @@ -2336,7 +2339,7 @@ msgstr "Uppkoppling till printern misslyckades" msgid "Connection to printer failed" msgstr "Anslutning till skrivaren misslyckades" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "Kontrollera nätverksanslutningen för skrivaren och Studio." msgid "Connecting..." @@ -2690,10 +2693,7 @@ msgstr "Orca Slicer är licensierad under " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, version 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" msgid "Libraries" @@ -3177,6 +3177,210 @@ msgstr "" "Planerar uppladdning till `%1%`. Se fönster -> Kö för uppladdning av " "utskriftsvärd" +msgid "Device" +msgstr "Enhet" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Offline" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Vy" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Lägg till" + +msgid "Idle" +msgstr "Inaktiv" + +msgid "Printing" +msgstr "Utskrift pågår" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Inkompatibel" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Förbered" + +msgid "Slicing" +msgstr "Bereder" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Återuppta" + +msgid "Stop" +msgstr "Stopp" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Laddar..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Förbereder utskriftsjobb" + +msgid "Abnormal print file data. Please slice again" +msgstr "Onormal utskrifts fil data. Vänligen bered igen" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Skicka" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "Namnet är ogiltligt;" + +msgid "illegal characters:" +msgstr "Ogiltliga tecken:" + +msgid "illegal suffix:" +msgstr "Ogiltlig ändelse:" + +msgid "The name is not allowed to be empty." +msgstr "Namn fältet får inte vara tomt." + +msgid "The name is not allowed to start with space character." +msgstr "Namnet får inte börja med mellanrum." + +msgid "The name is not allowed to end with space character." +msgstr "Namnet får inte avslutas med mellanrum." + +msgid "The name length exceeds the limit." +msgstr "Namnlängden överskrider gränsen." + msgid "Origin" msgstr "Ursprung" @@ -3670,9 +3874,6 @@ msgstr "Skrivarens inställningar" msgid "parameter name" msgstr "Parameter namn" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s kan inte vara procent" @@ -3990,9 +4191,6 @@ msgstr "Undvik kalibrerings området" msgid "Align to Y axis" msgstr "" -msgid "Add" -msgstr "Lägg till" - msgid "Add plate" msgstr "Lägg till byggplata" @@ -4177,15 +4375,9 @@ msgstr "Stänger Begäran medans vissa inställningar ändrats." msgid "Logging" msgstr "Loggar" -msgid "Prepare" -msgstr "Förbered" - msgid "Preview" msgstr "Förhandsvisning" -msgid "Device" -msgstr "Enhet" - msgid "Multi-device" msgstr "" @@ -4213,9 +4405,6 @@ msgstr "Bered allt" msgid "Export G-code file" msgstr "Exportera G-kod filen" -msgid "Send" -msgstr "Skicka" - msgid "Export plate sliced file" msgstr "Exportera byggplattans beredda fil" @@ -4228,9 +4417,6 @@ msgstr "Skriv ut allt" msgid "Send all" msgstr "Skicka alla" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Kortkommando" @@ -4372,8 +4558,8 @@ msgstr "Exportera G-kod" msgid "Export current plate as G-code" msgstr "Exportera aktuell byggplatta som G-kod" -msgid "Export &Configs" -msgstr "Exportera konfiguration" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Exportera aktuell konfiguration till filer" @@ -4474,9 +4660,6 @@ msgstr "Visa objektets överhäng i 3D-scen" msgid "Preferences" msgstr "Inställningar" -msgid "View" -msgstr "Vy" - msgid "Help" msgstr "Hjälp" @@ -4543,10 +4726,10 @@ msgstr "Exportera &Toolpaths som OBJ" msgid "Export toolpaths as OBJ" msgstr "Exportera toolpaths som OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Öppna &Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Öppna Studio" msgid "&Quit" @@ -4720,9 +4903,6 @@ msgstr "information" msgid "Playing..." msgstr "Spelar..." -msgid "Loading..." -msgstr "Laddar..." - msgid "Year" msgstr "År" @@ -4876,11 +5056,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -4939,12 +5114,6 @@ msgstr "" msgid "Printing Progress" msgstr "Utskriftsförlopp" -msgid "Resume" -msgstr "Återuppta" - -msgid "Stop" -msgstr "Stopp" - msgid "0" msgstr "0" @@ -5678,6 +5847,9 @@ msgstr "Komponent namnet i step filen är inte UTF8 format!" msgid "The name may show garbage characters!" msgstr "På grund av textkodning som inte stöds så kan skräptecken visas!" +msgid "Remember my choice." +msgstr "Kom ihåg mitt val." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -5803,9 +5975,6 @@ msgstr "" msgid "Error during reload" msgstr "" -msgid "Slicing" -msgstr "Bereder" - msgid "There are warnings after slicing models:" msgstr "Varningar efter beredning:" @@ -5881,7 +6050,7 @@ msgid "Project downloaded %d%%" msgstr "Projektet har laddats ned %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" @@ -5921,18 +6090,12 @@ msgstr "G-kod filer och modeller kan inte laddas tillsammans!!" msgid "Can not add models when in preview mode!" msgstr "Det gick inte att lägga till modeller i förhandsvisningsläge" -msgid "Add Models" -msgstr "Lägg till modeller" - msgid "All objects will be removed, continue?" msgstr "Alla objekt kommer att raderas, fortsätta?" msgid "The current project has unsaved changes, save it before continue?" msgstr "Nuvarande projekt har ej sparade ändringar, spara innan du går vidare?" -msgid "Remember my choice." -msgstr "Kom ihåg mitt val." - msgid "Number of copies:" msgstr "Antal kopior:" @@ -6131,6 +6294,11 @@ msgstr "Logga in Region" msgid "Stealth Mode" msgstr "" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "" @@ -6237,7 +6405,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6457,9 +6625,6 @@ msgstr "" msgid "Create printer" msgstr "" -msgid "Incompatible" -msgstr "Inkompatibel" - msgid "The selected preset is null!" msgstr "" @@ -6554,15 +6719,6 @@ msgstr "Användar förinställning" msgid "Preset Inside Project" msgstr "Projekt förinställning" -msgid "Name is invalid;" -msgstr "Namnet är ogiltligt;" - -msgid "illegal characters:" -msgstr "Ogiltliga tecken:" - -msgid "illegal suffix:" -msgstr "Ogiltlig ändelse:" - msgid "Name is unavailable." msgstr "Namnet ej tillgängligt." @@ -6583,15 +6739,6 @@ msgstr "" "Observera att om du sparar kommer den aktuella förinställningen att skrivas " "över" -msgid "The name is not allowed to be empty." -msgstr "Namn fältet får inte vara tomt." - -msgid "The name is not allowed to start with space character." -msgstr "Namnet får inte börja med mellanrum." - -msgid "The name is not allowed to end with space character." -msgstr "Namnet får inte avslutas med mellanrum." - msgid "The name cannot be the same as a preset alias name." msgstr "Namnet får inte vara samma som förinställt namn." @@ -6649,9 +6796,6 @@ msgstr "Hittar du inte enheter?" msgid "Log out successful." msgstr "Utloggning lyckades." -msgid "Offline" -msgstr "Offline" - msgid "Busy" msgstr "Upptagen" @@ -6860,15 +7004,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" -msgid "Preparing print job" -msgstr "Förbereder utskriftsjobb" - -msgid "Abnormal print file data. Please slice again" -msgstr "Onormal utskrifts fil data. Vänligen bered igen" - -msgid "The name length exceeds the limit." -msgstr "Namnlängden överskrider gränsen." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7238,6 +7373,9 @@ msgstr "Support filament" msgid "Tree supports" msgstr "" +msgid "Skirt" +msgstr "" + msgid "Prime tower" msgstr "Prime torn" @@ -8122,6 +8260,12 @@ msgstr "Flytta reglage 5x snabbare" msgid "Shift+Mouse wheel" msgstr "Shift+Mushjulet" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Meddelande om utgåvan" @@ -8242,12 +8386,6 @@ msgstr "Version:" msgid "Update firmware" msgstr "Uppdatera programvara" -msgid "Printing" -msgstr "Utskrift pågår" - -msgid "Idle" -msgstr "Inaktiv" - msgid "Beta version" msgstr "" @@ -8282,7 +8420,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "Firmware versionen är onormal. Reparation och uppdatering krävs före " "utskrift. Vill du uppdatera nu? Du kan också uppdatera senare på skrivaren " @@ -8421,9 +8559,6 @@ msgstr "" msgid "Gap infill" msgstr "Mellanrums ifyllnad" -msgid "Skirt" -msgstr "" - msgid "Support interface" msgstr "Support kontaktyta" @@ -10113,8 +10248,8 @@ msgstr "" msgid "(Undefined)" msgstr "(Oidentifierad)" -msgid "Infill direction" -msgstr "Ifyllnads riktning" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10123,6 +10258,20 @@ msgstr "" "Vinkeln för sparsam ifyllnads mönster, som styr start- eller huvudriktningen " "för linjer" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Sparsam ifyllnads densitet" @@ -10427,11 +10576,15 @@ msgid "Arc fitting" msgstr "Arc passning" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Aktivera detta för att få en G-kod med G2 och G3 drag. Passnings toleransen " -"är densamma som upplösningen" msgid "Add line number" msgstr "Lägg till rad nummer" @@ -10630,13 +10783,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Ifyllnad/Vägg överlapp" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"Detta gör att ifyllnads området kan förstoras något för att överlappa " -"väggarna för bättre vidhäftning.Det procentuella värdet är i förhållande " -"till linjebredden för sparsam ifyllnad" msgid "Speed of internal sparse infill" msgstr "Hastighet för sparsam ifyllnad" @@ -11544,6 +11709,23 @@ msgstr "Skirt höjd" msgid "How many layers of skirt. Usually only one layer" msgstr "Antal skirt lager: vanligtvis bara en" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Skirt varv" @@ -11556,6 +11738,17 @@ msgstr "" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "" +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -12242,6 +12435,19 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "" @@ -13954,7 +14160,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -13963,9 +14169,6 @@ msgstr "" msgid "Printer Setting" msgstr "" -msgid "Export Configs" -msgstr "" - msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -14850,6 +15053,27 @@ msgid "" "probability of warping." msgstr "" +#~ msgid "Export &Configs" +#~ msgstr "Exportera konfiguration" + +#~ msgid "Infill direction" +#~ msgstr "Ifyllnads riktning" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Aktivera detta för att få en G-kod med G2 och G3 drag. Passnings " +#~ "toleransen är densamma som upplösningen" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "Detta gör att ifyllnads området kan förstoras något för att överlappa " +#~ "väggarna för bättre vidhäftning.Det procentuella värdet är i förhållande " +#~ "till linjebredden för sparsam ifyllnad" + #~ msgid "Unload Filament" #~ msgstr "Mata ut" diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index 65a60b1c71..385a411fd9 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: 2024-05-02 19:55+0300\n" "Last-Translator: Olcay ÖREN\n" "Language-Team: \n" @@ -727,8 +727,8 @@ msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." msgstr "" -"Metin seçilen yazı tipi kullanılarak yazılamıyor. Lütfen farklı bir yazı tipi " -"seçmeyi deneyin." +"Metin seçilen yazı tipi kullanılarak yazılamıyor. Lütfen farklı bir yazı " +"tipi seçmeyi deneyin." msgid "Embossed text cannot contain only white spaces." msgstr "Kabartmalı metin yalnızca beyaz boşluklardan oluşamaz." @@ -1009,12 +1009,12 @@ msgstr "Metni kameraya doğru yönlendirin." #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Aplication selected a similar one(\"%2%" -"\"). You have to specify font for enable edit text." +"Can't load exactly same font(\"%1%\"). Aplication selected a similar " +"one(\"%2%\"). You have to specify font for enable edit text." msgstr "" -"Tam olarak aynı yazı tipi yüklenemiyor(\"%1%\"). Uygulama benzer bir uygulama " -"seçti(\"%2%\"). Metni düzenlemeyi etkinleştirmek için yazı tipini belirtmeniz " -"gerekir." +"Tam olarak aynı yazı tipi yüklenemiyor(\"%1%\"). Uygulama benzer bir " +"uygulama seçti(\"%2%\"). Metni düzenlemeyi etkinleştirmek için yazı tipini " +"belirtmeniz gerekir." msgid "No symbol" msgstr "Sembol yok" @@ -1469,8 +1469,8 @@ msgstr "Bilgi" msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" -"Please note, application settings will be lost, but printer profiles will not " -"be affected." +"Please note, application settings will be lost, but printer profiles will " +"not be affected." msgstr "" "OrcaSlicer konfigürasyon dosyası bozulmuş olabilir ve ayrıştırılamayabilir.\n" "OrcaSlicer, konfigürasyon dosyasını yeniden oluşturmayı denedi.\n" @@ -1891,6 +1891,9 @@ msgstr "Şekil Ekle" msgid "Add Handy models" msgstr "Pratik Modeller Ekle" +msgid "Add Models" +msgstr "Model Ekle" + msgid "Show Labels" msgstr "Etiketleri Göster" @@ -2086,8 +2089,8 @@ msgid "" "This action will break a cut correspondence.\n" "After that model consistency can't be guaranteed .\n" "\n" -"To manipulate with solid parts or negative volumes you have to invalidate cut " -"infornation first." +"To manipulate with solid parts or negative volumes you have to invalidate " +"cut infornation first." msgstr "" "Bu eylem kesilmiş bir yazışmayı bozacaktır.\n" "Bundan sonra model tutarlılığı garanti edilemez.\n" @@ -2150,7 +2153,8 @@ msgstr "İlk seçilen öğe bir nesne ise ikincisi de nesne olmalıdır." msgid "" "If first selected item is a part, the second one should be part in the same " "object." -msgstr "İlk seçilen öğe bir parça ise ikincisi aynı nesnenin parçası olmalıdır." +msgstr "" +"İlk seçilen öğe bir parça ise ikincisi aynı nesnenin parçası olmalıdır." msgid "The type of the last solid object part is not to be changed." msgstr "Son katı nesne parçasının tipi değiştirilNozullidir." @@ -2377,7 +2381,7 @@ msgstr "Yazıcıya bağlanılamadı" msgid "Connection to printer failed" msgstr "Yazıcıya bağlantı başarısız oldu" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "Lütfen yazıcının ve Studio'nun ağ bağlantısını kontrol edin." msgid "Connecting..." @@ -2507,14 +2511,16 @@ msgstr "" msgid "Arranging done." msgstr "Hizalama tamamlandı." -msgid "Arrange failed. Found some exceptions when processing object geometries." +msgid "" +"Arrange failed. Found some exceptions when processing object geometries." msgstr "" "Hizalama başarısız oldu. Nesne geometrilerini işlerken bazı istisnalar " "bulundu." #, c-format, boost-format msgid "" -"Arrangement ignored the following objects which can't fit into a single bed:\n" +"Arrangement ignored the following objects which can't fit into a single " +"bed:\n" "%s" msgstr "" "Hizalama tek tablaya sığmayan aşağıdaki nesneler göz ardı edildi:\n" @@ -2614,7 +2620,8 @@ msgstr "" "deneyin." msgid "Print file not found, Please slice it again and send it for printing." -msgstr "Yazdırma dosyası bulunamadı. Lütfen tekrar dilimleyip baskıya gönderin." +msgstr "" +"Yazdırma dosyası bulunamadı. Lütfen tekrar dilimleyip baskıya gönderin." msgid "" "Failed to upload print file to FTP. Please check the network status and try " @@ -2670,8 +2677,8 @@ msgid "Importing SLA archive" msgstr "SLA arşivi içe aktarılıyor" msgid "" -"The SLA archive doesn't contain any presets. Please activate some SLA printer " -"preset first before importing that SLA archive." +"The SLA archive doesn't contain any presets. Please activate some SLA " +"printer preset first before importing that SLA archive." msgstr "" "SLA arşivi herhangi bir ön ayar içermez. Lütfen SLA arşivini içe aktarmadan " "önce bazı SLA yazıcı ön ayarlarını etkinleştirin." @@ -2683,8 +2690,8 @@ msgid "Importing done." msgstr "İçe aktarma tamamlandı." msgid "" -"The imported SLA archive did not contain any presets. The current SLA presets " -"were used as fallback." +"The imported SLA archive did not contain any presets. The current SLA " +"presets were used as fallback." msgstr "" "İçe aktarılan SLA arşivi herhangi bir ön ayar içermiyordu. Geçerli SLA ön " "ayarları geri dönüş olarak kullanıldı." @@ -2731,14 +2738,8 @@ msgstr "Orca Dilimleyici şu lisansa sahiptir: " msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero Genel Kamu Lisansı, sürüm 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer by " -"Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and the " -"RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer, Prusa Research'ün PrusaSlicer'ından Bambulab'ın BambuStudio'sunu " -"temel alıyor. PrusaSlicer, Alessandro Ranellucci ve RepRap topluluğu " -"tarafından hazırlanan Slic3r'dendir" msgid "Libraries" msgstr "Kütüphaneler" @@ -2747,8 +2748,8 @@ msgid "" "This software uses open source components whose copyright and other " "proprietary rights belong to their respective owners" msgstr "" -"Bu yazılım, telif hakkı ve diğer mülkiyet hakları ilgili sahiplerine ait olan " -"açık kaynaklı bileşenleri kullanır" +"Bu yazılım, telif hakkı ve diğer mülkiyet hakları ilgili sahiplerine ait " +"olan açık kaynaklı bileşenleri kullanır" #, c-format, boost-format msgid "About %s" @@ -2762,7 +2763,8 @@ msgstr "OrcaSlicer, BambuStudio, PrusaSlicer ve SuperSlicer'ı temel alır." msgid "BambuStudio is originally based on PrusaSlicer by PrusaResearch." msgstr "" -"BambuStudio orijinal olarak PrusaResearch'ün PrusaSlicer'ını temel almaktadır." +"BambuStudio orijinal olarak PrusaResearch'ün PrusaSlicer'ını temel " +"almaktadır." msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci." msgstr "" @@ -2851,9 +2853,9 @@ msgid "Dynamic flow calibration" msgstr "Dinamik akış kalibrasyonu" msgid "" -"The nozzle temp and max volumetric speed will affect the calibration results. " -"Please fill in the same values as the actual printing. They can be auto-" -"filled by selecting a filament preset." +"The nozzle temp and max volumetric speed will affect the calibration " +"results. Please fill in the same values as the actual printing. They can be " +"auto-filled by selecting a filament preset." msgstr "" "Nozul sıcaklığı ve maksimum hacimsel hız kalibrasyon sonuçlarını " "etkileyecektir. Lütfen gerçek yazdırmayla aynı değerleri girin. Bir filament " @@ -2988,7 +2990,8 @@ msgid "" "When the current material run out, the printer will continue to print in the " "following order." msgstr "" -"Mevcut malzeme bittiğinde yazıcı aşağıdaki sırayla yazdırmaya devam edecektir." +"Mevcut malzeme bittiğinde yazıcı aşağıdaki sırayla yazdırmaya devam " +"edecektir." msgid "Group" msgstr "Grup" @@ -3026,8 +3029,8 @@ msgid "Insertion update" msgstr "Ekleme güncellemesi" msgid "" -"The AMS will automatically read the filament information when inserting a new " -"Bambu Lab filament. This takes about 20 seconds." +"The AMS will automatically read the filament information when inserting a " +"new Bambu Lab filament. This takes about 20 seconds." msgstr "" "AMS, yeni bir Bambu Lab filamenti takıldığında filament bilgilerini otomatik " "olarak okuyacaktır. Bu yaklaşık 20 saniye sürer." @@ -3050,16 +3053,17 @@ msgid "Power on update" msgstr "Güncellemeyi aç" msgid "" -"The AMS will automatically read the information of inserted filament on start-" -"up. It will take about 1 minute.The reading process will roll filament spools." +"The AMS will automatically read the information of inserted filament on " +"start-up. It will take about 1 minute.The reading process will roll filament " +"spools." msgstr "" "AMS, başlangıçta takılan filamentin bilgilerini otomatik olarak okuyacaktır. " "Yaklaşık 1 dakika sürecektir. Okuma işlemi filament makaralarını saracaktır." msgid "" -"The AMS will not automatically read information from inserted filament during " -"startup and will continue to use the information recorded before the last " -"shutdown." +"The AMS will not automatically read information from inserted filament " +"during startup and will continue to use the information recorded before the " +"last shutdown." msgstr "" "AMS, başlatma sırasında takılan filamentden bilgileri otomatik olarak okumaz " "ve son kapatmadan önce kaydedilen bilgileri kullanmaya devam eder." @@ -3073,8 +3077,8 @@ msgid "" "automatically." msgstr "" "AMS, filament bilgisi güncellendikten sonra Bambu filamentin kalan " -"kapasitesini tahmin edecek. Yazdırma sırasında kalan kapasite otomatik olarak " -"güncellenecektir." +"kapasitesini tahmin edecek. Yazdırma sırasında kalan kapasite otomatik " +"olarak güncellenecektir." msgid "AMS filament backup" msgstr "AMS filament yedeklemesi" @@ -3106,8 +3110,8 @@ msgid "" "Failed to download the plug-in. Please check your firewall settings and vpn " "software, check and retry." msgstr "" -"Eklenti indirilemedi. Lütfen güvenlik duvarı ayarlarınızı ve vpn yazılımınızı " -"kontrol edin, kontrol edip yeniden deneyin." +"Eklenti indirilemedi. Lütfen güvenlik duvarı ayarlarınızı ve vpn " +"yazılımınızı kontrol edin, kontrol edip yeniden deneyin." msgid "" "Failed to install the plug-in. Please check whether it is blocked or deleted " @@ -3195,8 +3199,8 @@ msgid "" "device. The corrupted output G-code is at %1%.tmp." msgstr "" "Geçici G kodunun çıkış G koduna kopyalanması başarısız oldu. Hedef cihazda " -"sorun olabilir, lütfen tekrar dışa aktarmayı veya farklı bir cihaz kullanmayı " -"deneyin. Bozuk çıktı G kodu %1%.tmp konumunda." +"sorun olabilir, lütfen tekrar dışa aktarmayı veya farklı bir cihaz " +"kullanmayı deneyin. Bozuk çıktı G kodu %1%.tmp konumunda." #, boost-format msgid "" @@ -3248,6 +3252,210 @@ msgstr "" "\"%1%\" hedefine yükleme planlanıyor. Bkz. Pencere -> Ana Bilgisayar Yükleme " "Sırasını Yazdır" +msgid "Device" +msgstr "Cihaz" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Çevrimdışı" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Görünüm" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Ekle" + +msgid "Idle" +msgstr "Boşta" + +msgid "Printing" +msgstr "Baskı" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "Uyumsuz" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Hazırlık" + +msgid "Slicing" +msgstr "Dilimleniyor" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Sürdür" + +msgid "Stop" +msgstr "Durdur" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Yükleniyor..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "Çoklu cihaza gönder" + +msgid "Preparing print job" +msgstr "Yazdırma için hazırlanıyor" + +msgid "Abnormal print file data. Please slice again" +msgstr "Anormal yazdırma dosyası verileri. Lütfen tekrar dilimleyin" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Gönder" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "Geçersiz isim;" + +msgid "illegal characters:" +msgstr "yasadışı karakterler:" + +msgid "illegal suffix:" +msgstr "yasadışı sonek:" + +msgid "The name is not allowed to be empty." +msgstr "Ad alanı boş bırakılamaz." + +msgid "The name is not allowed to start with space character." +msgstr "Adın boşluk karakteriyle başlamasına izin verilmez." + +msgid "The name is not allowed to end with space character." +msgstr "Adın boşluk karakteriyle bitmesine izin verilmez." + +msgid "The name length exceeds the limit." +msgstr "Ad uzunluğu sınırı aşıyor." + msgid "Origin" msgstr "Konum" @@ -3317,8 +3525,8 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" -"Önerilen minimum sıcaklık 190 dereceden azdır veya önerilen maksimum sıcaklık " -"300 dereceden yüksektir.\n" +"Önerilen minimum sıcaklık 190 dereceden azdır veya önerilen maksimum " +"sıcaklık 300 dereceden yüksektir.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " @@ -3355,13 +3563,13 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe temperature,it " -"may result in material softening and clogging.The maximum safe temperature " -"for the material is %d" +"Current chamber temperature is higher than the material's safe temperature," +"it may result in material softening and clogging.The maximum safe " +"temperature for the material is %d" msgstr "" -"Mevcut hazne sıcaklığı malzemenin güvenli sıcaklığından yüksektir, malzemenin " -"yumuşamasına ve tıkanmasına neden olabilir Malzeme için maksimum güvenli " -"sıcaklık %d'dir" +"Mevcut hazne sıcaklığı malzemenin güvenli sıcaklığından yüksektir, " +"malzemenin yumuşamasına ve tıkanmasına neden olabilir Malzeme için maksimum " +"güvenli sıcaklık %d'dir" msgid "" "Too small layer height.\n" @@ -3415,16 +3623,16 @@ msgstr "" "Değer 0'a sıfırlanacaktır." msgid "" -"Alternate extra wall does't work well when ensure vertical shell thickness is " -"set to All. " +"Alternate extra wall does't work well when ensure vertical shell thickness " +"is set to All. " msgstr "" -"Alternatif ekstra duvar, dikey kabuk kalınlığının Tümü olarak ayarlandığından " -"emin olunduğunda iyi çalışmaz. " +"Alternatif ekstra duvar, dikey kabuk kalınlığının Tümü olarak " +"ayarlandığından emin olunduğunda iyi çalışmaz. " msgid "" "Change these settings automatically? \n" -"Yes - Change ensure vertical shell thickness to Moderate and enable alternate " -"extra wall\n" +"Yes - Change ensure vertical shell thickness to Moderate and enable " +"alternate extra wall\n" "No - Dont use alternate extra wall" msgstr "" "Bu ayarlar otomatik olarak değiştirilsin mi? \n" @@ -3501,7 +3709,8 @@ msgid "" "No - Give up using spiral mode this time" msgstr "" "Bu ayarlar otomatik olarak değiştirilsin mi?\n" -"Evet - Bu ayarları değiştirin ve spiral modunu otomatik olarak etkinleştirin\n" +"Evet - Bu ayarları değiştirin ve spiral modunu otomatik olarak " +"etkinleştirin\n" "Hayır - Bu sefer spiral modunu kullanmaktan vazgeçin" msgid "Auto bed leveling" @@ -3634,9 +3843,9 @@ msgid "Update failed." msgstr "Güncelleme başarısız." msgid "" -"The current chamber temperature or the target chamber temperature exceeds 45℃." -"In order to avoid extruder clogging,low temperature filament(PLA/PETG/TPU) is " -"not allowed to be loaded." +"The current chamber temperature or the target chamber temperature exceeds " +"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"TPU) is not allowed to be loaded." msgstr "" "Mevcut hazne sıcaklığı veya hedef hazne sıcaklığı 45 ° C'yi aşıyor Ekstruder " "tıkanmasını önlemek için düşük sıcaklıkta filament (PLA / PETG / TPU) " @@ -3663,7 +3872,8 @@ msgstr "" msgid "Failed to start printing job" msgstr "Yazdırma işi başlatılamadı" -msgid "This calibration does not support the currently selected nozzle diameter" +msgid "" +"This calibration does not support the currently selected nozzle diameter" msgstr "Bu kalibrasyon, şu anda seçilen nozzle çapını desteklememektedir" msgid "Current flowrate cali param is invalid" @@ -3688,12 +3898,12 @@ msgid "" "Damp PVA will become flexible and get stuck inside AMS,please take care to " "dry it before use." msgstr "" -"Nemli PVA esnekleşecek ve AMS'nin içine sıkışacaktır, lütfen kullanmadan önce " -"kurutmaya dikkat edin." +"Nemli PVA esnekleşecek ve AMS'nin içine sıkışacaktır, lütfen kullanmadan " +"önce kurutmaya dikkat edin." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in AMS, " -"please use with caution." +"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"AMS, please use with caution." msgstr "" "CF/GF filamentleri sert ve kırılgandır. AMS'de kırılması veya sıkışması " "kolaydır, lütfen dikkatli kullanın." @@ -3766,9 +3976,6 @@ msgstr "Yazıcı Ayarları" msgid "parameter name" msgstr "parametre adı" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s yüzde olamaz" @@ -4086,9 +4293,6 @@ msgstr "Ekstrüzyon kalibrasyon bölgesinden kaçın" msgid "Align to Y axis" msgstr "Y eksenine hizala" -msgid "Add" -msgstr "Ekle" - msgid "Add plate" msgstr "Plaka ekle" @@ -4275,15 +4479,9 @@ msgstr "Bazı ön ayarlar değiştirilirken Uygulama kapatılıyor." msgid "Logging" msgstr "Günlük kaydı" -msgid "Prepare" -msgstr "Hazırlık" - msgid "Preview" msgstr "Ön İzleme" -msgid "Device" -msgstr "Cihaz" - msgid "Multi-device" msgstr "Çoklu cihaz" @@ -4312,9 +4510,6 @@ msgstr "Hepsini dilimle" msgid "Export G-code file" msgstr "G-kod dosyasını dışa aktar" -msgid "Send" -msgstr "Gönder" - msgid "Export plate sliced file" msgstr "Dilimlenmiş plaka dosyasını dışa aktar" @@ -4327,9 +4522,6 @@ msgstr "Tümünü yazdır" msgid "Send all" msgstr "Hepsini gönder" -msgid "Send to Multi-device" -msgstr "Çoklu cihaza gönder" - msgid "Keyboard Shortcuts" msgstr "Klavye kısayolları" @@ -4471,8 +4663,8 @@ msgstr "G-kodunu dışa aktar" msgid "Export current plate as G-code" msgstr "Geçerli plakayı G kodu olarak dışa aktar" -msgid "Export &Configs" -msgstr "Yapılandırmaları Dışa Aktar" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Geçerli yapılandırmayı dosyalara aktar" @@ -4573,9 +4765,6 @@ msgstr "3B sahnede nesne çıkıntısı vurgusunu göster" msgid "Preferences" msgstr "Tercihler" -msgid "View" -msgstr "Görünüm" - msgid "Help" msgstr "Yardım" @@ -4642,10 +4831,10 @@ msgstr "&Takımyollarını OBJ olarak dışa aktar" msgid "Export toolpaths as OBJ" msgstr "Takımyollarını OBJ olarak dışa aktar" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "&Stüdyo'yu aç" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Stüdyoyu Aç" msgid "&Quit" @@ -4711,8 +4900,8 @@ msgstr[1] "" msgid "" "\n" -"Hint: Make sure you have added the corresponding printer before importing the " -"configs." +"Hint: Make sure you have added the corresponding printer before importing " +"the configs." msgstr "" "\n" "İpucu: Yapılandırmaları içe aktarmadan önce ilgili yazıcıyı eklediğinizden " @@ -4761,7 +4950,8 @@ msgid "Please confirm if the printer is connected." msgstr "Lütfen yazıcının bağlı olup olmadığını onaylayın." msgid "" -"The printer is currently busy downloading. Please try again after it finishes." +"The printer is currently busy downloading. Please try again after it " +"finishes." msgstr "" "Yazıcı şu anda indirmeyle meşgul. Lütfen bittikten sonra tekrar deneyin." @@ -4772,7 +4962,8 @@ msgid "Problem occured. Please update the printer firmware and try again." msgstr "" "Sorun oluştu. Lütfen yazıcının ürün yazılımını güncelleyin ve tekrar deneyin." -msgid "LAN Only Liveview is off. Please turn on the liveview on printer screen." +msgid "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" "Yalnızca LAN Canlı İzleme kapalı. Lütfen yazıcı ekranındaki canlı " "görüntülemeyi açın." @@ -4787,8 +4978,8 @@ msgid "Connection Failed. Please check the network and try again" msgstr "Bağlantı Başarısız. Lütfen ağı kontrol edip tekrar deneyin" msgid "" -"Please check the network and try again, You can restart or update the printer " -"if the issue persists." +"Please check the network and try again, You can restart or update the " +"printer if the issue persists." msgstr "" "Lütfen ağı kontrol edip tekrar deneyin. Sorun devam ederse yazıcıyı yeniden " "başlatabilir veya güncelleyebilirsiniz." @@ -4834,9 +5025,6 @@ msgstr "Bilgi" msgid "Playing..." msgstr "Oynatılıyor..." -msgid "Loading..." -msgstr "Yükleniyor..." - msgid "Year" msgstr "Yıl" @@ -4937,7 +5125,8 @@ msgid_plural "" "You are going to delete %u files from printer. Are you sure to continue?" msgstr[0] "" "%u dosyasını yazıcıdan sileceksiniz. Devam edeceğinizden emin misiniz?" -msgstr[1] "%u dosyayı yazıcıdan sileceksiniz. Devam edeceğinizden emin misiniz?" +msgstr[1] "" +"%u dosyayı yazıcıdan sileceksiniz. Devam edeceğinizden emin misiniz?" msgid "Delete files" msgstr "Dosyaları sil" @@ -4997,15 +5186,8 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" -"Yazıcıyı yeniden bağladığınızda işlem hemen tamamlanamıyor, lütfen daha sonra " -"tekrar deneyin." - -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" -"4’ten fazla sistem/kullanışlı uzaktan erişimi kullanıyor, bazılarını kapatıp " -"tekrar deneyebilirsiniz." +"Yazıcıyı yeniden bağladığınızda işlem hemen tamamlanamıyor, lütfen daha " +"sonra tekrar deneyin." msgid "File does not exist." msgstr "Dosya bulunmuyor." @@ -5065,12 +5247,6 @@ msgstr "Silindir eksenini ters çevir" msgid "Printing Progress" msgstr "Yazdırma İlerlemesi" -msgid "Resume" -msgstr "Sürdür" - -msgid "Stop" -msgstr "Durdur" - msgid "0" msgstr "0" @@ -5094,8 +5270,8 @@ msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" msgstr "" -"(Model zaten derecelendirilmiştir. Derecelendirmeniz önceki derecelendirmenin " -"üzerine yazılacaktır)" +"(Model zaten derecelendirilmiştir. Derecelendirmeniz önceki " +"derecelendirmenin üzerine yazılacaktır)" msgid "Rate" msgstr "Derecelendir" @@ -5685,8 +5861,8 @@ msgstr "Arama plakası, nesne ve parça." msgid "" "No AMS filaments. Please select a printer in 'Device' page to load AMS info." msgstr "" -"AMS filamentleri yok. AMS bilgilerini yüklemek için lütfen 'Cihaz' sayfasında " -"bir yazıcı seçin." +"AMS filamentleri yok. AMS bilgilerini yüklemek için lütfen 'Cihaz' " +"sayfasında bir yazıcı seçin." msgid "Sync filaments with AMS" msgstr "Filamentleri AMS ile senkronize et" @@ -5699,7 +5875,8 @@ msgstr "" "ayarlarını ve renklerini kaldıracaktır. Devam etmek istiyor musun?" msgid "" -"Already did a synchronization, do you want to sync only changes or resync all?" +"Already did a synchronization, do you want to sync only changes or resync " +"all?" msgstr "" "Zaten bir senkronizasyon yaptınız. Yalnızca değişiklikleri senkronize etmek " "mi yoksa tümünü yeniden senkronize etmek mi istiyorsunuz?" @@ -5714,13 +5891,13 @@ msgid "There are no compatible filaments, and sync is not performed." msgstr "Uyumlu filament yok ve senkronizasyon gerçekleştirilmiyor." msgid "" -"There are some unknown filaments mapped to generic preset. Please update Orca " -"Slicer or restart Orca Slicer to check if there is an update to system " +"There are some unknown filaments mapped to generic preset. Please update " +"Orca Slicer or restart Orca Slicer to check if there is an update to system " "presets." msgstr "" -"Genel ön ayara eşlenen bazı bilinmeyen filamentler var. Sistem ön ayarlarında " -"bir güncelleme olup olmadığını kontrol etmek için lütfen Orca Slicer'ı " -"güncelleyin veya Orca Slicer'ı yeniden başlatın." +"Genel ön ayara eşlenen bazı bilinmeyen filamentler var. Sistem ön " +"ayarlarında bir güncelleme olup olmadığını kontrol etmek için lütfen Orca " +"Slicer'ı güncelleyin veya Orca Slicer'ı yeniden başlatın." #, boost-format msgid "Do you want to save changes to \"%1%\"?" @@ -5745,13 +5922,13 @@ msgid "Restore" msgstr "Geri Yükleme" msgid "" -"The current hot bed temperature is relatively high. The nozzle may be clogged " -"when printing this filament in a closed enclosure. Please open the front door " -"and/or remove the upper glass." +"The current hot bed temperature is relatively high. The nozzle may be " +"clogged when printing this filament in a closed enclosure. Please open the " +"front door and/or remove the upper glass." msgstr "" -"Mevcut sıcak yatak sıcaklığı oldukça yüksek. Bu filamenti kapalı bir muhafaza " -"içinde bastırırken nozzle tıkanabilir. Lütfen ön kapağı açın ve/veya üst camı " -"çıkarın." +"Mevcut sıcak yatak sıcaklığı oldukça yüksek. Bu filamenti kapalı bir " +"muhafaza içinde bastırırken nozzle tıkanabilir. Lütfen ön kapağı açın ve/" +"veya üst camı çıkarın." msgid "" "The nozzle hardness required by the filament is higher than the default " @@ -5814,8 +5991,8 @@ msgstr "Lütfen bunları parametre sekmelerinde düzeltin" msgid "The 3mf has following modified G-codes in filament or printer presets:" msgstr "" -"3mf dosyasında filament veya yazıcı ön ayarlarında şu değiştirilmiş G-kodları " -"bulunmaktadır:" +"3mf dosyasında filament veya yazıcı ön ayarlarında şu değiştirilmiş G-" +"kodları bulunmaktadır:" msgid "" "Please confirm that these modified G-codes are safe to prevent any damage to " @@ -5846,6 +6023,9 @@ msgstr "Adım dosyasındaki bileşenlerin adı UTF8 formatında değil!" msgid "The name may show garbage characters!" msgstr "İsimde çöp karakterler görünebilir!" +msgid "Remember my choice." +msgstr "Seçimimi hatırla." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "\"%1%\" dosyası yüklenemedi. Geçersiz bir yapılandırma bulundu." @@ -5973,9 +6153,6 @@ msgstr "Yeniden yüklenemiyor:" msgid "Error during reload" msgstr "Yeniden yükleme sırasında hata oluştu" -msgid "Slicing" -msgstr "Dilimleniyor" - msgid "There are warnings after slicing models:" msgstr "Modellerin dilimlenmesinden sonra uyarılar vardır:" @@ -6044,14 +6221,16 @@ msgstr "İndirme başarısız oldu, Dosya boyutu sorunlu." #, c-format, boost-format msgid "Project downloaded %d%%" -msgstr "Proje %d%% indirildi" +msgstr "" +"Proje %d%% indirildiBambu Studio’ya içe aktarma başarısız oldu. Lütfen " +"dosyayı indirin ve manuel olarak içe aktarın." msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" -"Bambu Studio’ya içe aktarma başarısız oldu. Lütfen dosyayı indirin ve manuel " -"olarak içe aktarın." +"Orca Slicer'ya aktarma başarısız oldu. Lütfen dosyayı indirin ve manuel " +"olarak İçe aktarın." msgid "Import SLA archive" msgstr "SLA arşivini içe aktar" @@ -6089,9 +6268,6 @@ msgstr "G kodu dosyaları modellerle birlikte yüklenemez!" msgid "Can not add models when in preview mode!" msgstr "Önizleme modundayken model eklenemiyor!" -msgid "Add Models" -msgstr "Model Ekle" - msgid "All objects will be removed, continue?" msgstr "Tüm nesneler kaldırılacak, devam edilsin mi?" @@ -6100,9 +6276,6 @@ msgstr "" "Mevcut projede kaydedilmemiş değişiklikler var. Devam etmeden önce " "kaydedilsin mi?" -msgid "Remember my choice." -msgstr "Seçimimi hatırla." - msgid "Number of copies:" msgstr "Kopya sayısı:" @@ -6126,15 +6299,15 @@ msgstr "Dilimlenmiş dosyayı şu şekilde kaydedin:" #, c-format, boost-format msgid "" -"The file %s has been sent to the printer's storage space and can be viewed on " -"the printer." +"The file %s has been sent to the printer's storage space and can be viewed " +"on the printer." msgstr "" "%s dosyası yazıcının depolama alanına gönderildi ve yazıcıda " "görüntülenebiliyor." msgid "" -"Unable to perform boolean operation on model meshes. Only positive parts will " -"be kept. You may fix the meshes and try agian." +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try agian." msgstr "" "Model ağlarında boole işlemi gerçekleştirilemiyor. Yalnızca olumlu kısımlar " "tutulacaktır. Kafesleri düzeltip tekrar deneyebilirsiniz." @@ -6248,8 +6421,8 @@ msgstr "" #, c-format, boost-format msgid "" "Plate% d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature to " -"non zero." +"still want to do this printing, please set this filament's bed temperature " +"to non zero." msgstr "" "Plaka% d: %s'nin %s(%s) filamentinı yazdırmak için kullanılması önerilmez. " "Eğer yine de bu baskıyı yapmak istiyorsanız, lütfen bu filamentin yatak " @@ -6309,6 +6482,11 @@ msgstr "Giriş Bölgesi" msgid "Stealth Mode" msgstr "Gizli mod" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "Ağ eklentisini etkinleştir" @@ -6329,8 +6507,8 @@ msgstr "Yalnızca bir OrcaSlicer örneğine izin ver" msgid "" "On OSX there is always only one instance of app running by default. However " -"it is allowed to run multiple instances of same app from the command line. In " -"such case this settings will allow only one instance." +"it is allowed to run multiple instances of same app from the command line. " +"In such case this settings will allow only one instance." msgstr "" "OSX’te her zaman varsayılan olarak çalışan tek bir uygulama örneği vardır. " "Ancak aynı uygulamanın birden fazla örneğinin komut satırından " @@ -6338,8 +6516,9 @@ msgstr "" "örneğe izin verecektir." msgid "" -"If this is enabled, when starting OrcaSlicer and another instance of the same " -"OrcaSlicer is already running, that instance will be reactivated instead." +"If this is enabled, when starting OrcaSlicer and another instance of the " +"same OrcaSlicer is already running, that instance will be reactivated " +"instead." msgstr "" "Bu etkinleştirilirse, OrcaSlicer başlatıldığında ve aynı OrcaSlicer’ın başka " "bir örneği zaten çalışıyorken, bunun yerine bu örnek yeniden " @@ -6430,12 +6609,13 @@ msgstr "" "Etkinleştirilirse, Orca her yazıcı için filament/işlem yapılandırmasını " "hatırlayacak ve otomatik olarak değiştirecektir." -msgid "Multi-device Management(Take effect after restarting Studio)." -msgstr "Çoklu Cihaz Yönetimi(Studio yeniden başlatıldıktan sonra geçerli olur)." +msgid "Multi-device Management(Take effect after restarting Orca)." +msgstr "" +"Çoklu Cihaz Yönetimi(Studio yeniden başlatıldıktan sonra geçerli olur)." msgid "" -"With this option enabled, you can send a task to multiple devices at the same " -"time and manage multiple devices." +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." msgstr "" "Bu seçenek etkinleştirildiğinde, aynı anda birden fazla cihaza bir görev " "gönderebilir ve birden fazla cihazı yönetebilirsiniz." @@ -6503,8 +6683,8 @@ msgstr "Otomatik yedekleme" msgid "" "Backup your project periodically for restoring from the occasional crash." msgstr "" -"Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi düzenli " -"aralıklarla yedekleyin." +"Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi " +"düzenli aralıklarla yedekleyin." msgid "every" msgstr "her" @@ -6656,9 +6836,6 @@ msgstr "Yazıcıları Seç/Kaldır (sistem ön ayarları)" msgid "Create printer" msgstr "Yazıcı oluştur" -msgid "Incompatible" -msgstr "Uyumsuz" - msgid "The selected preset is null!" msgstr "Seçilen ön ayar boş!" @@ -6753,15 +6930,6 @@ msgstr "Kullanıcı Ön Ayarı" msgid "Preset Inside Project" msgstr "Ön ayar içerisinde proje" -msgid "Name is invalid;" -msgstr "Geçersiz isim;" - -msgid "illegal characters:" -msgstr "yasadışı karakterler:" - -msgid "illegal suffix:" -msgstr "yasadışı sonek:" - msgid "Name is unavailable." msgstr "Ad kullanılamıyor." @@ -6779,15 +6947,6 @@ msgstr "\"%1%\" ön ayarı zaten mevcut ve mevcut yazıcıyla uyumlu değil." msgid "Please note that saving action will replace this preset" msgstr "Kaydetme eyleminin bu ön ayarın yerini alacağını lütfen unutmayın" -msgid "The name is not allowed to be empty." -msgstr "Ad alanı boş bırakılamaz." - -msgid "The name is not allowed to start with space character." -msgstr "Adın boşluk karakteriyle başlamasına izin verilmez." - -msgid "The name is not allowed to end with space character." -msgstr "Adın boşluk karakteriyle bitmesine izin verilmez." - msgid "The name cannot be the same as a preset alias name." msgstr "Ad, önceden ayarlanmış bir takma adla aynı olamaz." @@ -6845,9 +7004,6 @@ msgstr "Cihazlarımı bulamıyor musunuz?" msgid "Log out successful." msgstr "Çıkış Başarılı." -msgid "Offline" -msgstr "Çevrimdışı" - msgid "Busy" msgstr "Meşgul" @@ -6891,7 +7047,8 @@ msgid "Printer local connection failed, please try again." msgstr "Yazıcının yerel bağlantısı başarısız oldu, lütfen tekrar deneyin." msgid "No login account, only printers in LAN mode are displayed" -msgstr "Oturum açma hesabı yok, yalnızca LAN modundaki yazıcılar görüntüleniyor" +msgstr "" +"Oturum açma hesabı yok, yalnızca LAN modundaki yazıcılar görüntüleniyor" msgid "Connecting to server" msgstr "Sunucuya baglanıyor" @@ -6959,7 +7116,8 @@ msgstr "" "desteklemek için lütfen yazıcının ürün yazılımını güncelleyin." msgid "" -"The printer firmware only supports sequential mapping of filament => AMS slot." +"The printer firmware only supports sequential mapping of filament => AMS " +"slot." msgstr "" "Yazıcı ürün yazılımı yalnızca filament => AMS yuvasının sıralı eşlemesini " "destekler." @@ -7020,8 +7178,8 @@ msgstr "" msgid "" "There are some unknown filaments in the AMS mappings. Please check whether " -"they are the required filaments. If they are okay, press \"Confirm\" to start " -"printing." +"they are the required filaments. If they are okay, press \"Confirm\" to " +"start printing." msgstr "" "AMS eşlemelerinde bazı bilinmeyen filamentler var. Lütfen bunların gerekli " "filamentler olup olmadığını kontrol edin. Sorun yoksa, yazdırmayı başlatmak " @@ -7053,7 +7211,8 @@ msgstr "" "hasarına neden olabilir" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "Lütfen yukarıdaki hatayı düzeltin, aksi takdirde yazdırma devam edemez." +msgstr "" +"Lütfen yukarıdaki hatayı düzeltin, aksi takdirde yazdırma devam edemez." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7065,15 +7224,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "Yazıcıya bağlanılıyor. Bağlantı işlemi sırasında iptal edilemiyor." -msgid "Preparing print job" -msgstr "Yazdırma için hazırlanıyor" - -msgid "Abnormal print file data. Please slice again" -msgstr "Anormal yazdırma dosyası verileri. Lütfen tekrar dilimleyin" - -msgid "The name length exceeds the limit." -msgstr "Ad uzunluğu sınırı aşıyor." - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7213,11 +7363,11 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will not " -"collect any Personal Data by which an individual can be identified directly " -"or indirectly, including without limitation names, addresses, payment " -"information, or phone numbers. By enabling this service, you agree to these " -"terms and the statement about Privacy Policy." +"logs, which may include information described in Privacy Policy. We will " +"not collect any Personal Data by which an individual can be identified " +"directly or indirectly, including without limitation names, addresses, " +"payment information, or phone numbers. By enabling this service, you agree " +"to these terms and the statement about Privacy Policy." msgstr "" "3D Baskı topluluğunda, kendi dilimleme parametrelerimizi ve ayarlarımızı " "düzenlerken birbirimizin başarılarından ve başarısızlıklarından öğreniyoruz. " @@ -7268,16 +7418,16 @@ msgid "Click to reset all settings to the last saved preset." msgstr "Tüm ayarları en son kaydedilen ön ayara sıfırlamak için tıklayın." msgid "" -"Prime tower is required for smooth timeplase. There may be flaws on the model " -"without prime tower. Are you sure you want to disable prime tower?" +"Prime tower is required for smooth timeplase. There may be flaws on the " +"model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "Sorunsuz timeplace için Prime Tower gereklidir. Prime tower olmayan modelde " "kusurlar olabilir. Prime tower'ı devre dışı bırakmak istediğinizden emin " "misiniz?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the model " -"without prime tower. Do you want to enable prime tower?" +"Prime tower is required for smooth timelapse. There may be flaws on the " +"model without prime tower. Do you want to enable prime tower?" msgstr "" "Sorunsuz hızlandırılmış çekim için Prime Tower gereklidir. Prime tower " "olmayan modelde kusurlar olabilir. Prime tower'ı etkinleştirmek istiyor " @@ -7306,11 +7456,11 @@ msgstr "" msgid "" "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the following " -"settings: at least 2 interface layers, at least 0.1mm top z distance or using " -"support materials on interface." +"settings: at least 2 interface layers, at least 0.1mm top z distance or " +"using support materials on interface." msgstr "" -"\"Güçlü Ağaç\" ve \"Ağaç Hibrit\" stilleri için şu ayarları öneriyoruz: en az " -"2 arayüz katmanı, en az 0,1 mm üst z mesafesi veya arayüzde destek " +"\"Güçlü Ağaç\" ve \"Ağaç Hibrit\" stilleri için şu ayarları öneriyoruz: en " +"az 2 arayüz katmanı, en az 0,1 mm üst z mesafesi veya arayüzde destek " "malzemeleri kullanılması." msgid "" @@ -7349,8 +7499,8 @@ msgid "" "height limits ,this may cause printing quality issues." msgstr "" "Katman yüksekliği, Yazıcı Ayarları -> Ekstruder -> Katman yüksekliği " -"sınırları bölümündeki sınırı aşıyor bu durum baskı kalitesi sorunlarına neden " -"olabilir." +"sınırları bölümündeki sınırı aşıyor bu durum baskı kalitesi sorunlarına " +"neden olabilir." msgid "Adjust to the set range automatically? \n" msgstr "Ayarlanan aralığa otomatik olarak ayarlansın mı? \n" @@ -7364,8 +7514,8 @@ msgstr "Atla" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " "distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications." +"reduce flush, it may also elevate the risk of nozzle clogs or other " +"printing complications." msgstr "" "Deneysel özellik: Filament değişiklikleri sırasında, floşu en aza indirmek " "için filamanı daha büyük bir mesafeden geri çekmek ve kesmek. Flush’u önemli " @@ -7387,8 +7537,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add Primitive\"-" -">\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add Primitive" +"\"->\"Timelapse Wipe Tower\"." msgstr "" "Araç başlığı olmadan timelapse kaydederken, bir \"Timelapse Wipe Tower\" " "eklenmesi önerilir.\n" @@ -7437,8 +7587,8 @@ msgid "" "the overhang degree range and wall speed is used" msgstr "" "Bu, çeşitli sarkma dereceleri için hızdır. Çıkıntı dereceleri çizgi " -"genişliğinin yüzdesi olarak ifade edilir. 0 hız, sarkma derecesi aralığı için " -"yavaşlamanın olmadığı anlamına gelir ve duvar hızı kullanılır" +"genişliğinin yüzdesi olarak ifade edilir. 0 hız, sarkma derecesi aralığı " +"için yavaşlamanın olmadığı anlamına gelir ve duvar hızı kullanılır" msgid "Bridge" msgstr "Köprü" @@ -7464,6 +7614,9 @@ msgstr "Destek Filamenti" msgid "Tree supports" msgstr "Ağaç destekler" +msgid "Skirt" +msgstr "Etek" + msgid "Prime tower" msgstr "Prime Kulesi" @@ -7535,11 +7688,11 @@ msgid "Cool plate" msgstr "Soğuk plaka" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament does " -"not support to print on the Cool Plate" +"Bed temperature when cool plate is installed. Value 0 means the filament " +"does not support to print on the Cool Plate" msgstr "" -"Soğutma plakası takıldığında yatak sıcaklığı. 0 değeri, filamentin Cool Plate " -"üzerine yazdırmayı desteklemediği anlamına gelir" +"Soğutma plakası takıldığında yatak sıcaklığı. 0 değeri, filamentin Cool " +"Plate üzerine yazdırmayı desteklemediği anlamına gelir" msgid "Engineering plate" msgstr "Mühendislik plakası" @@ -7860,16 +8013,16 @@ msgstr "\"%1%\" ön ayarı aşağıdaki kaydedilmemiş değişiklikleri içeriyo #, boost-format msgid "" -"Preset \"%1%\" is not compatible with the new printer profile and it contains " -"the following unsaved changes:" +"Preset \"%1%\" is not compatible with the new printer profile and it " +"contains the following unsaved changes:" msgstr "" "Ön ayar \"%1%\", yeni yazıcı profiliyle uyumlu değil ve aşağıdaki " "kaydedilmemiş değişiklikleri içeriyor:" #, boost-format msgid "" -"Preset \"%1%\" is not compatible with the new process profile and it contains " -"the following unsaved changes:" +"Preset \"%1%\" is not compatible with the new process profile and it " +"contains the following unsaved changes:" msgstr "" "Ön ayar \"%1%\", yeni işlem profiliyle uyumlu değil ve aşağıdaki " "kaydedilmemiş değişiklikleri içeriyor:" @@ -7903,8 +8056,8 @@ msgid "" "the modified values to the new project" msgstr "" "\n" -"Değiştirdiğiniz ön ayar değerlerini atabilir veya değiştirilen değerleri yeni " -"projeye aktarmayı seçebilirsiniz." +"Değiştirdiğiniz ön ayar değerlerini atabilir veya değiştirilen değerleri " +"yeni projeye aktarmayı seçebilirsiniz." msgid "Extruders count" msgstr "Ekstruder sayısı" @@ -7928,19 +8081,19 @@ msgstr "" msgid "" "Transfer the selected options from left preset to the right.\n" -"Note: New modified presets will be selected in settings tabs after close this " -"dialog." +"Note: New modified presets will be selected in settings tabs after close " +"this dialog." msgstr "" "Seçilen seçenekleri sol ön ayardan sağa aktarın.\n" -"Not: Bu iletişim kutusunu kapattıktan sonra ayarlar sekmelerinde değiştirilen " -"yeni ön ayarlar seçilecektir." +"Not: Bu iletişim kutusunu kapattıktan sonra ayarlar sekmelerinde " +"değiştirilen yeni ön ayarlar seçilecektir." msgid "Transfer values from left to right" msgstr "Değerleri soldan sağa aktarın" msgid "" -"If enabled, this dialog can be used for transfer selected values from left to " -"right preset." +"If enabled, this dialog can be used for transfer selected values from left " +"to right preset." msgstr "" "Etkinleştirilirse, bu iletişim kutusu seçilen değerleri soldan sağa ön ayara " "aktarmak için kullanılabilir." @@ -8027,11 +8180,11 @@ msgstr "Sıkıştırma özelleştirme" 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" +"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." @@ -8378,6 +8531,12 @@ msgstr "Kaydırıcıyı 5 kat daha hızlı hareket ettirin" msgid "Shift+Mouse wheel" msgstr "Shift+Fare tekerleği" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Sürüm notu" @@ -8391,8 +8550,8 @@ msgstr "Ağ eklentisi güncellemesi" msgid "" "Click OK to update the Network plug-in when Orca Slicer launches next time." msgstr "" -"Orca Slicer bir sonraki sefer başlatıldığında Ağ eklentisini güncellemek için " -"Tamam'a tıklayın." +"Orca Slicer bir sonraki sefer başlatıldığında Ağ eklentisini güncellemek " +"için Tamam'a tıklayın." #, c-format, boost-format msgid "A new Network plug-in(%s) available, Do you want to install it?" @@ -8449,7 +8608,8 @@ msgstr "Nozulu Onaylayın ve Güncelleyin" msgid "LAN Connection Failed (Sending print file)" msgstr "LAN Bağlantısı Başarısız (Yazdırma dosyası gönderiliyor)" -msgid "Step 1, please confirm Orca Slicer and your printer are in the same LAN." +msgid "" +"Step 1, please confirm Orca Slicer and your printer are in the same LAN." msgstr "" "Adım 1, lütfen Orca Slicer ile yazıcınızın aynı LAN'da olduğunu doğrulayın." @@ -8502,12 +8662,6 @@ msgstr "Sürüm:" msgid "Update firmware" msgstr "Ürün yazılımını güncelle" -msgid "Printing" -msgstr "Baskı" - -msgid "Idle" -msgstr "Boşta" - msgid "Beta version" msgstr "Beta sürüm" @@ -8524,8 +8678,8 @@ msgid "Updating successful" msgstr "Güncelleme başarılı" msgid "" -"Are you sure you want to update? This will take about 10 minutes. Do not turn " -"off the power while the printer is updating." +"Are you sure you want to update? This will take about 10 minutes. Do not " +"turn off the power while the printer is updating." msgstr "" "Güncellemek istediğinizden emin misiniz? Bu yaklaşık 10 dakika sürecektir. " "Yazıcı güncellenirken gücü kapatmayın." @@ -8542,11 +8696,12 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" -"Ürün yazılımı sürümü anormal. Yazdırmadan önce onarım ve güncelleme yapılması " -"gerekir. Şimdi güncellemek istiyor musunuz? Ayrıca daha sonra yazıcıda " -"güncelleyebilir veya stüdyoyu bir sonraki başlatışınızda güncelleyebilirsiniz." +"Ürün yazılımı sürümü anormal. Yazdırmadan önce onarım ve güncelleme " +"yapılması gerekir. Şimdi güncellemek istiyor musunuz? Ayrıca daha sonra " +"yazıcıda güncelleyebilir veya stüdyoyu bir sonraki başlatışınızda " +"güncelleyebilirsiniz." msgid "Extension Board" msgstr "Uzatma Kartı" @@ -8684,9 +8839,6 @@ msgstr "İç Köprü" msgid "Gap infill" msgstr "Boşluk doldurma" -msgid "Skirt" -msgstr "Etek" - msgid "Support interface" msgstr "Destek arayüzü" @@ -8701,8 +8853,8 @@ msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " msgstr "%1% çizgi genişliği hesaplanamadı. \"%2%\" değeri alınamıyor " msgid "" -"Invalid spacing supplied to Flow::with_spacing(), check your layer height and " -"extrusion width" +"Invalid spacing supplied to Flow::with_spacing(), check your layer height " +"and extrusion width" msgstr "" "Flow::with_spacing()'e sağlanan geçersiz boşluk, kat yüksekliğinizi ve " "ekstrüzyon genişliğinizi kontrol edin" @@ -8835,8 +8987,8 @@ msgstr " dışlama alanına çok yakın ve çarpışmalara neden olacak.\n" msgid "" "Can not print multiple filaments which have large difference of temperature " -"together. Otherwise, the extruder and nozzle may be blocked or damaged during " -"printing" +"together. Otherwise, the extruder and nozzle may be blocked or damaged " +"during printing" msgstr "" "Birlikte büyük sıcaklık farkına sahip birden fazla filament basılamaz. Aksi " "takdirde baskı sırasında ekstruder ve nozul tıkanabilir veya hasar görebilir" @@ -8855,8 +9007,8 @@ msgid "" "Please select \"By object\" print sequence to print multiple objects in " "spiral vase mode." msgstr "" -"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye " -"göre\" yazdırma sırasını seçin." +"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye göre" +"\" yazdırma sırasını seçin." msgid "" "The spiral vase mode does not work when an object contains more than one " @@ -8869,8 +9021,8 @@ msgstr "%1% nesnesi maksimum yapı hacmi yüksekliğini aşıyor." #, boost-format msgid "" -"While the object %1% itself fits the build volume, its last layer exceeds the " -"maximum build volume height." +"While the object %1% itself fits the build volume, its last layer exceeds " +"the maximum build volume height." msgstr "" "%1% nesnesinin kendisi yapı hacmine uysa da, son katmanı maksimum yapı hacmi " "yüksekliğini aşıyor." @@ -8899,7 +9051,8 @@ msgstr "" "Temizleme Kulesi şu anda yalnızca ilgili ekstruder adreslemesiyle " "desteklenmektedir (use_relative_e_distances=1)." -msgid "Ooze prevention is currently not supported with the prime tower enabled." +msgid "" +"Ooze prevention is currently not supported with the prime tower enabled." msgstr "Sızıntı önleme şu anda ana kule etkinken desteklenmemektedir." msgid "" @@ -8916,8 +9069,8 @@ msgid "" "The prime tower is not supported when adaptive layer height is on. It " "requires that all objects have the same layer height." msgstr "" -"Uyarlanabilir katman yüksekliği açıkken ana kule desteklenmez. Tüm nesnelerin " -"aynı katman yüksekliğine sahip olmasını gerektirir." +"Uyarlanabilir katman yüksekliği açıkken ana kule desteklenmez. Tüm " +"nesnelerin aynı katman yüksekliğine sahip olmasını gerektirir." msgid "The prime tower requires \"support gap\" to be multiple of layer height" msgstr "" @@ -8925,11 +9078,12 @@ msgstr "" msgid "The prime tower requires that all objects have the same layer heights" msgstr "" -"Prime tower, tüm nesnelerin aynı katman yüksekliğine sahip olmasını gerektirir" +"Prime tower, tüm nesnelerin aynı katman yüksekliğine sahip olmasını " +"gerektirir" msgid "" -"The prime tower requires that all objects are printed over the same number of " -"raft layers" +"The prime tower requires that all objects are printed over the same number " +"of raft layers" msgstr "" "Ana kule, tüm nesnelerin aynı sayıda sal katmanı üzerine yazdırılmasını " "gerektirir" @@ -8942,8 +9096,8 @@ msgstr "" "gerektirir." msgid "" -"The prime tower is only supported if all objects have the same variable layer " -"height" +"The prime tower is only supported if all objects have the same variable " +"layer height" msgstr "" "Prime tower yalnızca tüm nesnelerin aynı değişken katman yüksekliğine sahip " "olması durumunda desteklenir" @@ -8957,7 +9111,8 @@ msgstr "Çok büyük çizgi genişliği" msgid "" "The prime tower requires that support has the same layer height with object." msgstr "" -"Prime kulesi için, destek, nesne ile aynı katman yüksekliğine sahip olmalıdır." +"Prime kulesi için, destek, nesne ile aynı katman yüksekliğine sahip " +"olmalıdır." msgid "" "Organic support tree tip diameter must not be smaller than support material " @@ -8970,8 +9125,8 @@ msgid "" "Organic support branch diameter must not be smaller than 2x support material " "extrusion width." msgstr "" -"Organik destek dalı çapı, destek malzemesi ekstrüzyon genişliğinin 2 katından " -"daha küçük olamaz." +"Organik destek dalı çapı, destek malzemesi ekstrüzyon genişliğinin 2 " +"katından daha küçük olamaz." msgid "" "Organic support branch diameter must not be smaller than support tree tip " @@ -8988,20 +9143,20 @@ msgid "Layer height cannot exceed nozzle diameter" msgstr "Katman yüksekliği nozul çapını aşamaz" msgid "" -"Relative extruder addressing requires resetting the extruder position at each " -"layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " "layer_gcode." msgstr "" -"Göreceli ekstruder adreslemesi, kayan nokta doğruluğunun kaybını önlemek için " -"her katmandaki ekstruder konumunun sıfırlanmasını gerektirir. Layer_gcode'a " -"\"G92 E0\" ekleyin." +"Göreceli ekstruder adreslemesi, kayan nokta doğruluğunun kaybını önlemek " +"için her katmandaki ekstruder konumunun sıfırlanmasını gerektirir. " +"Layer_gcode'a \"G92 E0\" ekleyin." msgid "" "\"G92 E0\" was found in before_layer_gcode, which is incompatible with " "absolute extruder addressing." msgstr "" -"Before_layer_gcode'da \"G92 E0\" bulundu ve bu, mutlak ekstruder adreslemeyle " -"uyumsuzdu." +"Before_layer_gcode'da \"G92 E0\" bulundu ve bu, mutlak ekstruder " +"adreslemeyle uyumsuzdu." msgid "" "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " @@ -9040,8 +9195,8 @@ msgid "" "(machine_max_acceleration_extruding).\n" "Orca will automatically cap the acceleration speed to ensure it doesn't " "surpass the printer's capabilities.\n" -"You can adjust the machine_max_acceleration_extruding value in your printer's " -"configuration to get higher speeds." +"You can adjust the machine_max_acceleration_extruding value in your " +"printer's configuration to get higher speeds." msgstr "" "Hızlanma ayarı yazıcının maksimum hızlanmasını aşıyor " "(machine_max_acceleration_extruding).\n" @@ -9102,7 +9257,8 @@ msgid "Elephant foot compensation" msgstr "Fil ayağı telafi oranı" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot effect" +"Shrink the initial layer on build plate to compensate for elephant foot " +"effect" msgstr "" "Fil ayağı etkisini telafi etmek için baskı plakasındaki ilk katmanı küçültün" @@ -9161,15 +9317,15 @@ msgid "" "Orca Slicer can upload G-code files to a printer host. This field should " "contain the hostname, IP address or URL of the printer host instance. Print " "host behind HAProxy with basic auth enabled can be accessed by putting the " -"user name and password into the URL in the following format: https://username:" -"password@your-octopi-address/" +"user name and password into the URL in the following format: https://" +"username:password@your-octopi-address/" msgstr "" -"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu " -"alan, yazıcı ana bilgisayar örneğinin ana bilgisayar adını, IP adresini veya " -"URL'sini içermelidir. Temel kimlik doğrulamanın etkin olduğu HAProxy'nin " -"arkasındaki yazdırma ana bilgisayarına, kullanıcı adı ve parolanın aşağıdaki " -"biçimdeki URL'ye girilmesiyle erişilebilir: https://username:password@your-" -"octopi-address/" +"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. " +"Bu alan, yazıcı ana bilgisayar örneğinin ana bilgisayar adını, IP adresini " +"veya URL'sini içermelidir. Temel kimlik doğrulamanın etkin olduğu " +"HAProxy'nin arkasındaki yazdırma ana bilgisayarına, kullanıcı adı ve " +"parolanın aşağıdaki biçimdeki URL'ye girilmesiyle erişilebilir: https://" +"username:password@your-octopi-address/" msgid "Device UI" msgstr "Cihaz kullanıcı arayüzü" @@ -9177,7 +9333,8 @@ msgstr "Cihaz kullanıcı arayüzü" msgid "" "Specify the URL of your device user interface if it's not same as print_host" msgstr "" -"Print_Host ile aynı değilse cihazınızın kullanıcı arayüzünün URL'sini belirtin" +"Print_Host ile aynı değilse cihazınızın kullanıcı arayüzünün URL'sini " +"belirtin" msgid "API Key / Password" msgstr "API Anahtarı / Şifre" @@ -9186,8 +9343,9 @@ msgid "" "Orca Slicer can upload G-code files to a printer host. This field should " "contain the API Key or the password required for authentication." msgstr "" -"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu " -"alan, kimlik doğrulama için gereken API Anahtarını veya şifreyi içermelidir." +"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. " +"Bu alan, kimlik doğrulama için gereken API Anahtarını veya şifreyi " +"içermelidir." msgid "Name of the printer" msgstr "Yazıcı adı" @@ -9197,8 +9355,8 @@ msgstr "HTTPS CA Dosyası" 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." +"in crt/pem format. If left blank, the default OS CA certificate repository " +"is used." msgstr "" "HTTPS OctoPrint bağlantıları için crt/pem formatında özel CA sertifika " "dosyası belirtilebilir. Boş bırakılırsa varsayılan OS CA sertifika deposu " @@ -9249,10 +9407,10 @@ msgid "" "either as an absolute value or as percentage (for example 50%) of a direct " "travel path. Zero to disable" msgstr "" -"Duvarı geçmekten kaçınmak için maksimum sapma mesafesi. Yoldan sapma mesafesi " -"bu değerden büyükse yoldan sapmayın. Yol uzunluğu, mutlak bir değer olarak " -"veya doğrudan seyahat yolunun yüzdesi (örneğin %50) olarak belirtilebilir. " -"Devre dışı bırakmak için sıfır" +"Duvarı geçmekten kaçınmak için maksimum sapma mesafesi. Yoldan sapma " +"mesafesi bu değerden büyükse yoldan sapmayın. Yol uzunluğu, mutlak bir değer " +"olarak veya doğrudan seyahat yolunun yüzdesi (örneğin %50) olarak " +"belirtilebilir. Devre dışı bırakmak için sıfır" msgid "mm or %" msgstr "mm veya %" @@ -9261,8 +9419,8 @@ msgid "Other layers" msgstr "Diğer katmanlar" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. Value 0 means the " +"filament does not support to print on the Cool Plate" msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 değeri, filamentin " "Cool Plate üzerine yazdırmayı desteklemediği anlamına gelir" @@ -9271,22 +9429,22 @@ msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the filament " -"does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. Value 0 means the " +"filament does not support to print on the Engineering Plate" msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. Değer 0, filamentin " "Mühendislik Plakasına yazdırmayı desteklemediği anlamına gelir" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the filament " -"does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. Value 0 means the " +"filament does not support to print on the High Temp Plate" msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 değeri, filamentin " "Yüksek Sıcaklık Plakasına yazdırmayı desteklemediği anlamına gelir" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the filament " -"does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. Value 0 means the " +"filament does not support to print on the Textured PEI Plate" msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 Değeri, filamentin " "Dokulu PEI Plaka üzerine yazdırmayı desteklemediği anlamına gelir" @@ -9368,11 +9526,11 @@ msgid "" "The number of bottom solid layers is increased when slicing if the thickness " "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " -"is disabled and thickness of bottom shell is absolutely determained by bottom " -"shell layers" +"is disabled and thickness of bottom shell is absolutely determained by " +"bottom shell layers" msgstr "" -"Alt kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince ise " -"dilimleme sırasında alt katı katmanların sayısı arttırılır. Bu, katman " +"Alt kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince " +"ise dilimleme sırasında alt katı katmanların sayısı arttırılır. Bu, katman " "yüksekliği küçük olduğunda kabuğun çok ince olmasını önleyebilir. 0, bu " "ayarın devre dışı olduğu ve alt kabuğun kalınlığının mutlaka alt kabuk " "katmanları tarafından belirlendiği anlamına gelir" @@ -9386,7 +9544,8 @@ msgid "" "\n" "Options:\n" "1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces\n" -"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces only\n" +"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " +"only\n" "3. Nowhere: Disables gap fill\n" msgstr "" "Seçilen yüzeyler için boşluk doldurmayı etkinleştirir. Doldurulacak minimum " @@ -9412,19 +9571,19 @@ msgid "Force cooling for overhang and bridge" msgstr "Çıkıntı ve köprüler için soğutmayı zorla" msgid "" -"Enable this option to optimize part cooling fan speed for overhang and bridge " -"to get better cooling" +"Enable this option to optimize part cooling fan speed for overhang and " +"bridge to get better cooling" msgstr "" -"Daha iyi soğutma elde etmek amacıyla çıkıntı ve köprü için parça soğutma fanı " -"hızını optimize etmek amacıyla bu seçeneği etkinleştirin" +"Daha iyi soğutma elde etmek amacıyla çıkıntı ve köprü için parça soğutma " +"fanı hızını optimize etmek amacıyla bu seçeneği etkinleştirin" msgid "Fan speed for overhang" msgstr "Çıkıntılar için fan hızı" msgid "" -"Force part cooling fan to be this speed when printing bridge or overhang wall " -"which has large overhang degree. Forcing cooling for overhang and bridge can " -"get better quality for these part" +"Force part cooling fan to be this speed when printing bridge or overhang " +"wall which has large overhang degree. Forcing cooling for overhang and " +"bridge can get better quality for these part" msgstr "" "Çıkıntı derecesi büyük olan köprü veya çıkıntılı duvara baskı yaparken parça " "soğutma fanını bu hızda olmaya zorlayın. Çıkıntı ve köprü için soğutmayı " @@ -9436,9 +9595,9 @@ msgstr "Çıkıntı soğutması" #, c-format msgid "" "Force cooling fan to be specific speed when overhang degree of printed part " -"exceeds this value. Expressed as percentage which indicides how much width of " -"the line without support from lower layer. 0% means forcing cooling for all " -"outer wall no matter how much overhang degree" +"exceeds this value. Expressed as percentage which indicides how much width " +"of the line without support from lower layer. 0% means forcing cooling for " +"all outer wall no matter how much overhang degree" msgstr "" "Yazdırılan parçanın çıkıntı derecesi bu değeri aştığında soğutma fanını " "belirli bir hıza zorlar. Alt katmandan destek almadan çizginin ne kadar " @@ -9472,8 +9631,8 @@ msgid "" "Decrease this value slightly(for example 0.9) to reduce the amount of " "material for bridge, to improve sag" msgstr "" -"Köprü için malzeme miktarını azaltmak ve sarkmayı iyileştirmek için bu değeri " -"biraz azaltın (örneğin 0,9)" +"Köprü için malzeme miktarını azaltmak ve sarkmayı iyileştirmek için bu " +"değeri biraz azaltın (örneğin 0,9)" msgid "Internal bridge flow ratio" msgstr "İç köprü akış oranı" @@ -9541,11 +9700,11 @@ msgid "" "on the next layer, like letters. Set this setting to 0 to remove these " "artifacts." msgstr "" -"Eğer bir üst yüzey basılacaksa ve kısmen başka bir katman tarafından kaplıysa " -"layer genişliği bu değerin altında olan bir üst katman olarak " +"Eğer bir üst yüzey basılacaksa ve kısmen başka bir katman tarafından " +"kaplıysa layer genişliği bu değerin altında olan bir üst katman olarak " "değerlendirilmeyecek. Yalnızca çevrelerle kaplanması gereken yüzeyde 'bir " -"çevre üstte' tetiklemesine izin vermemek yararlı olabilir. Bu değer mm veya a " -"% çevre ekstrüzyon genişliğinin bir yüzdesi olabilir.\n" +"çevre üstte' tetiklemesine izin vermemek yararlı olabilir. Bu değer mm veya " +"a % çevre ekstrüzyon genişliğinin bir yüzdesi olabilir.\n" "Uyarı: Etkinleştirilirse bir sonraki katmanda harfler gibi bazı ince " "özelliklerin olması durumunda yapay yapılar oluşturulabilir. Bu yapıları " "kaldırmak için bu ayarı 0 olarak ayarlayın." @@ -9577,9 +9736,9 @@ msgid "Overhang reversal" msgstr "Çıkıntıyı tersine çevir" msgid "" -"Extrude perimeters that have a part over an overhang in the reverse direction " -"on odd layers. This alternating pattern can drastically improve steep " -"overhangs.\n" +"Extrude perimeters that have a part over an overhang in the reverse " +"direction on odd layers. This alternating pattern can drastically improve " +"steep overhangs.\n" "\n" "This setting can also help reduce part warping due to the reduction of " "stresses in the part walls." @@ -9601,7 +9760,8 @@ msgid "" "alternating directions. This should reduce part warping while also " "maintaining external wall quality. This feature can be very useful for warp " "prone material, like ABS/ASA, and also for elastic filaments, like TPU and " -"Silk PLA. It can also help reduce warping on floating regions over supports.\n" +"Silk PLA. It can also help reduce warping on floating regions over " +"supports.\n" "\n" "For this setting to be the most effective, it is recomended to set the " "Reverse Threshold to 0 so that all internal walls print in alternating " @@ -9633,7 +9793,8 @@ msgstr "" "Bu seçenek, havşa delikleri için köprüler oluşturarak bunların desteksiz " "yazdırılmasına olanak tanır. Mevcut modlar şunları içerir:\n" "1. Yok: Köprü oluşturulmaz.\n" -"2. Kısmen Köprülendi: Desteklenmeyen alanın yalnızca bir kısmı köprülenecek.\n" +"2. Kısmen Köprülendi: Desteklenmeyen alanın yalnızca bir kısmı " +"köprülenecek.\n" "3. Feda Katman: Tam bir feda köprü katmanı oluşturulur." msgid "Partially bridged" @@ -9753,8 +9914,8 @@ msgid "Brim ear detection radius" msgstr "Kenar kulak algılama yarıçapı" msgid "" -"The geometry will be decimated before dectecting sharp angles. This parameter " -"indicates the minimum length of the deviation for the decimation.\n" +"The geometry will be decimated before dectecting sharp angles. This " +"parameter indicates the minimum length of the deviation for the decimation.\n" "0 to deactivate" msgstr "" "Keskin açılar tespit edilmeden önce geometrinin büyük bir kısmı yok " @@ -9803,10 +9964,10 @@ msgid "" "that layer can be cooled for longer time. This can improve the cooling " "quality for needle and small details" msgstr "" -"Son katman süresinin \"Maksimum fan hızı eşiği\"ndeki katman süresi eşiğinden " -"kısa olmamasını sağlamak amacıyla yazdırma hızını yavaşlatmak için bu " -"seçeneği etkinleştirin, böylece katman daha uzun süre soğutulabilir. Bu, iğne " -"ve küçük detaylar için soğutma kalitesini artırabilir" +"Son katman süresinin \"Maksimum fan hızı eşiği\"ndeki katman süresi " +"eşiğinden kısa olmamasını sağlamak amacıyla yazdırma hızını yavaşlatmak için " +"bu seçeneği etkinleştirin, böylece katman daha uzun süre soğutulabilir. Bu, " +"iğne ve küçük detaylar için soğutma kalitesini artırabilir" msgid "Normal printing" msgstr "Normal baskı" @@ -9815,7 +9976,8 @@ msgid "" "The default acceleration of both normal printing and travel except initial " "layer" msgstr "" -"İlk katman dışında hem normal yazdırmanın hem de ilerlemenin varsayılan ivmesi" +"İlk katman dışında hem normal yazdırmanın hem de ilerlemenin varsayılan " +"ivmesi" msgid "mm/s²" msgstr "mm/s²" @@ -9859,8 +10021,8 @@ msgid "" "Close all cooling fan for the first certain layers. Cooling fan of the first " "layer used to be closed to get better build plate adhesion" msgstr "" -"İlk belirli katmanlar için tüm soğutma fanını kapatın. Daha iyi baskı plakası " -"yapışması sağlamak için ilk katmanın soğutma fanı kapatılırdı" +"İlk belirli katmanlar için tüm soğutma fanını kapatın. Daha iyi baskı " +"plakası yapışması sağlamak için ilk katmanın soğutma fanı kapatılırdı" msgid "Don't support bridges" msgstr "Köprülerde destek olmasın" @@ -9901,8 +10063,8 @@ msgid "Don't filter out small internal bridges (beta)" msgstr "Küçük iç köprüleri filtrelemeyin (deneysel)" msgid "" -"This option can help reducing pillowing on top surfaces in heavily slanted or " -"curved models.\n" +"This option can help reducing pillowing on top surfaces in heavily slanted " +"or curved models.\n" "\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " @@ -9917,16 +10079,16 @@ msgid "" "unsupported internal solid infill. The options below control the amount of " "filtering, i.e. the amount of internal bridges created.\n" "\n" -"Disabled - Disables this option. This is the default behaviour and works well " -"in most cases.\n" +"Disabled - Disables this option. This is the default behaviour and works " +"well in most cases.\n" "\n" "Limited filtering - Creates internal bridges on heavily slanted surfaces, " -"while avoiding creating uncessesary interal bridges. This works well for most " -"difficult models.\n" +"while avoiding creating uncessesary interal bridges. This works well for " +"most difficult models.\n" "\n" -"No filtering - Creates internal bridges on every potential internal overhang. " -"This option is useful for heavily slanted top surface models. However, in " -"most cases it creates too many unecessary bridges." +"No filtering - Creates internal bridges on every potential internal " +"overhang. This option is useful for heavily slanted top surface models. " +"However, in most cases it creates too many unecessary bridges." msgstr "" "Bu seçenek, aşırı eğimli veya kavisli modellerde üst yüzeylerdeki " "yastıklamanın azaltılmasına yardımcı olabilir.\n" @@ -10078,8 +10240,8 @@ msgid "" "Speed of outer wall which is outermost and visible. It's used to be slower " "than inner wall speed to get better quality." msgstr "" -"En dışta görünen ve görünen dış duvarın hızı. Daha iyi kalite elde etmek için " -"iç duvar hızından daha yavaş olması kullanılır." +"En dışta görünen ve görünen dış duvarın hızı. Daha iyi kalite elde etmek " +"için iç duvar hızından daha yavaş olması kullanılır." msgid "Small perimeters" msgstr "Küçük çevre (perimeter)" @@ -10108,8 +10270,8 @@ msgstr "Duvar baskı sırası" msgid "" "Print sequence of the internal (inner) and external (outer) walls. \n" "\n" -"Use Inner/Outer for best overhangs. This is because the overhanging walls can " -"adhere to a neighouring perimeter while printing. However, this option " +"Use Inner/Outer for best overhangs. This is because the overhanging walls " +"can adhere to a neighouring perimeter while printing. However, this option " "results in slightly reduced surface quality as the external perimeter is " "deformed by being squashed to the internal perimeter.\n" "\n" @@ -10140,14 +10302,14 @@ msgstr "" "kalitesi ve boyutsal doğruluk için İç/Dış/İç seçeneğini kullanın. Ancak, dış " "duvarın üzerine baskı yapılacak bir iç çevre olmadığından sarkma performansı " "düşecektir. Bu seçenek, önce 3. çevreden itibaren iç duvarları, ardından dış " -"çevreyi ve son olarak da birinci iç çevreyi yazdırdığından etkili olması için " -"en az 3 duvar gerektirir. Bu seçenek çoğu durumda Dış/İç seçeneğine karşı " -"önerilir. \n" +"çevreyi ve son olarak da birinci iç çevreyi yazdırdığından etkili olması " +"için en az 3 duvar gerektirir. Bu seçenek çoğu durumda Dış/İç seçeneğine " +"karşı önerilir. \n" "\n" "İç/Dış/İç seçeneğinin aynı dış duvar kalitesi ve boyutsal doğruluk " "avantajları için Dış/İç seçeneğini kullanın. Bununla birlikte, yeni bir " -"katmanın ilk ekstrüzyonu görünür bir yüzey üzerinde başladığından z dikişleri " -"daha az tutarlı görünecektir.\n" +"katmanın ilk ekstrüzyonu görünür bir yüzey üzerinde başladığından z " +"dikişleri daha az tutarlı görünecektir.\n" "\n" " " @@ -10169,9 +10331,9 @@ msgid "" "\n" "Printing walls first may help with extreme overhangs as the walls have the " "neighbouring infill to adhere to. However, the infill will slighly push out " -"the printed walls where it is attached to them, resulting in a worse external " -"surface finish. It can also cause the infill to shine through the external " -"surfaces of the part." +"the printed walls where it is attached to them, resulting in a worse " +"external surface finish. It can also cause the infill to shine through the " +"external surfaces of the part." msgstr "" "Duvar/dolgu sırası. Onay kutusunun işareti kaldırıldığında ilk olarak " "duvarlar yazdırılır ve bu çoğu durumda en iyi sonucu verir.\n" @@ -10189,8 +10351,8 @@ msgid "" "The direction which the wall loops are extruded when looking down from the " "top.\n" "\n" -"By default all walls are extruded in counter-clockwise, unless Reverse on odd " -"is enabled. Set this to any option other than Auto will force the wall " +"By default all walls are extruded in counter-clockwise, unless Reverse on " +"odd is enabled. Set this to any option other than Auto will force the wall " "direction regardless of the Reverse on odd.\n" "\n" "This option will be disabled if sprial vase mode is enabled." @@ -10198,8 +10360,8 @@ msgstr "" "Yukarıdan aşağıya bakıldığında duvar döngülerinin ekstrüzyona uğradığı yön.\n" "\n" "Tek sayıyı ters çevir seçeneği etkinleştirilmedikçe, varsayılan olarak tüm " -"duvarlar saat yönünün tersine ekstrüde edilir. Bunu Otomatik dışında herhangi " -"bir seçeneğe ayarlayın, Ters açıklığa bakılmaksızın duvar yönünü " +"duvarlar saat yönünün tersine ekstrüde edilir. Bunu Otomatik dışında " +"herhangi bir seçeneğe ayarlayın, Ters açıklığa bakılmaksızın duvar yönünü " "zorlayacaktır.\n" "\n" "Spiral vazo modu etkinse bu seçenek devre dışı bırakılacaktır." @@ -10227,8 +10389,8 @@ msgid "" "Distance of the nozzle tip to the lid. Used for collision avoidance in by-" "object printing." msgstr "" -"Nozul ucunun kapağa olan mesafesi. Nesneye göre yazdırmada çarpışmayı önlemek " -"için kullanılır." +"Nozul ucunun kapağa olan mesafesi. Nesneye göre yazdırmada çarpışmayı " +"önlemek için kullanılır." msgid "" "Clearance radius around extruder. Used for collision avoidance in by-object " @@ -10251,19 +10413,20 @@ msgid "" "probe's XY offset, most printers are unable to probe the entire bed. To " "ensure the probe point does not go outside the bed area, the minimum and " "maximum points of the bed mesh should be set appropriately. OrcaSlicer " -"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed " -"these min/max points. This information can usually be obtained from your " -"printer manufacturer. The default setting is (-99999, -99999), which means " -"there are no limits, thus allowing probing across the entire bed." +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " +"exceed these min/max points. This information can usually be obtained from " +"your printer manufacturer. The default setting is (-99999, -99999), which " +"means there are no limits, thus allowing probing across the entire bed." msgstr "" -"Bu seçenek, izin verilen yatak ağ alanı için minimum noktayı ayarlar. Prob XY " -"ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. Prob noktasının " -"yatak alanı dışına çıkmamasını sağlamak için yatak ağının minimum ve maksimum " -"noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, adaptive_bed_mesh_min/" -"adaptive_bed_mesh_max değerlerinin bu min/maks noktalarını aşmamasını sağlar. " -"Bu bilgi genellikle yazıcınızın üreticisinden edinilebilir. Varsayılan ayar " -"(-99999, -99999) şeklindedir; bu, herhangi bir sınırın olmadığı anlamına " -"gelir, dolayısıyla yatağın tamamında problamaya izin verilir." +"Bu seçenek, izin verilen yatak ağ alanı için minimum noktayı ayarlar. Prob " +"XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. Prob noktasının " +"yatak alanı dışına çıkmamasını sağlamak için yatak ağının minimum ve " +"maksimum noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, " +"adaptive_bed_mesh_min/adaptive_bed_mesh_max değerlerinin bu min/maks " +"noktalarını aşmamasını sağlar. Bu bilgi genellikle yazıcınızın üreticisinden " +"edinilebilir. Varsayılan ayar (-99999, -99999) şeklindedir; bu, herhangi bir " +"sınırın olmadığı anlamına gelir, dolayısıyla yatağın tamamında problamaya " +"izin verilir." msgid "Bed mesh max" msgstr "Maksimum yatak ağı" @@ -10273,19 +10436,20 @@ msgid "" "probe's XY offset, most printers are unable to probe the entire bed. To " "ensure the probe point does not go outside the bed area, the minimum and " "maximum points of the bed mesh should be set appropriately. OrcaSlicer " -"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed " -"these min/max points. This information can usually be obtained from your " -"printer manufacturer. The default setting is (99999, 99999), which means " -"there are no limits, thus allowing probing across the entire bed." +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " +"exceed these min/max points. This information can usually be obtained from " +"your printer manufacturer. The default setting is (99999, 99999), which " +"means there are no limits, thus allowing probing across the entire bed." msgstr "" -"Bu seçenek, izin verilen yatak ağ alanı için maksimum noktayı ayarlar. Probun " -"XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. Prob noktasının " -"yatak alanı dışına çıkmamasını sağlamak için yatak ağının minimum ve maksimum " -"noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, adaptive_bed_mesh_min/" -"adaptive_bed_mesh_max değerlerinin bu min/maks noktalarını aşmamasını sağlar. " -"Bu bilgi genellikle yazıcınızın üreticisinden edinilebilir. Varsayılan ayar " -"(99999, 99999) şeklindedir; bu, herhangi bir sınırın olmadığı anlamına gelir, " -"dolayısıyla yatağın tamamında problamaya izin verilir." +"Bu seçenek, izin verilen yatak ağ alanı için maksimum noktayı ayarlar. " +"Probun XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. Prob " +"noktasının yatak alanı dışına çıkmamasını sağlamak için yatak ağının minimum " +"ve maksimum noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, " +"adaptive_bed_mesh_min/adaptive_bed_mesh_max değerlerinin bu min/maks " +"noktalarını aşmamasını sağlar. Bu bilgi genellikle yazıcınızın üreticisinden " +"edinilebilir. Varsayılan ayar (99999, 99999) şeklindedir; bu, herhangi bir " +"sınırın olmadığı anlamına gelir, dolayısıyla yatağın tamamında problamaya " +"izin verilir." msgid "Probe point distance" msgstr "Prob noktası mesafesi" @@ -10302,8 +10466,8 @@ msgid "Mesh margin" msgstr "Yatak ağı boşluğu" msgid "" -"This option determines the additional distance by which the adaptive bed mesh " -"area should be expanded in the XY directions." +"This option determines the additional distance by which the adaptive bed " +"mesh area should be expanded in the XY directions." msgstr "" "Bu seçenek, uyarlanabilir yatak ağ alanının XY yönlerinde genişletilmesi " "gereken ek mesafeyi belirler." @@ -10323,9 +10487,9 @@ msgstr "Akış oranı" msgid "" "The material may have volumetric change after switching between molten state " "and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 and " -"1.05. Maybe you can tune this value to get nice flat surface when there has " -"slight overflow or underflow" +"filament in gcode proportionally. Recommended value range is between 0.95 " +"and 1.05. Maybe you can tune this value to get nice flat surface when there " +"has slight overflow or underflow" msgstr "" "Malzeme, erimiş hal ile kristal hal arasında geçiş yaptıktan sonra hacimsel " "değişime sahip olabilir. Bu ayar, bu filamentin gcode'daki tüm ekstrüzyon " @@ -10347,8 +10511,8 @@ msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" msgstr "Basınç avansı (Klipper) Doğrusal ilerleme faktörü (Marlin)" msgid "" -"Default line width if other line widths are set to 0. If expressed as a %, it " -"will be computed over the nozzle diameter." +"Default line width if other line widths are set to 0. If expressed as a %, " +"it will be computed over the nozzle diameter." msgstr "" "Diğer çizgi genişlikleri 0'a ayarlanmışsa varsayılan çizgi genişliği. % " "olarak ifade edilirse nozul çapı üzerinden hesaplanacaktır." @@ -10357,8 +10521,8 @@ msgid "Keep fan always on" msgstr "Fanı her zaman açık tut" msgid "" -"If enable this setting, part cooling fan will never be stoped and will run at " -"least at minimum speed to reduce the frequency of starting and stoping" +"If enable this setting, part cooling fan will never be stoped and will run " +"at least at minimum speed to reduce the frequency of starting and stoping" msgstr "" "Bu ayarı etkinleştirirseniz, parça soğutma fanı hiçbir zaman durdurulmayacak " "ve başlatma ve durdurma sıklığını azaltmak için en azından minimum hızda " @@ -10444,11 +10608,11 @@ msgid "" "Be sure to allow enough space between objects, as this compensation is done " "after the checks." msgstr "" -"Filamentin soğuduktan sonra alacağı büzülme yüzdesini girin (100 mm yerine 94 " -"mm ölçerseniz 94%). Parça, telafi etmek için xy'de ölçeklendirilecektir. " +"Filamentin soğuduktan sonra alacağı büzülme yüzdesini girin (100 mm yerine " +"94 mm ölçerseniz 94%). Parça, telafi etmek için xy'de ölçeklendirilecektir. " "Yalnızca çevre için kullanılan filament dikkate alınır.\n" -"Bu telafi kontrollerden sonra yapıldığından, nesneler arasında yeterli boşluk " -"bıraktığınızdan emin olun." +"Bu telafi kontrollerden sonra yapıldığından, nesneler arasında yeterli " +"boşluk bıraktığınızdan emin olun." msgid "Loading speed" msgstr "Yükleme hızı" @@ -10499,8 +10663,8 @@ msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " "Specify desired number of these moves." msgstr "" -"Filament, soğutma tüpleri içinde ileri geri hareket ettirilerek soğutulur. Bu " -"sayısını belirtin." +"Filament, soğutma tüpleri içinde ileri geri hareket ettirilerek soğutulur. " +"Bu sayısını belirtin." msgid "Speed of the first cooling move" msgstr "İlk soğutma hareketi hızı" @@ -10514,9 +10678,9 @@ msgstr "Silme kulesi üzerinde minimum boşaltım" 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, " -"Orca Slicer will always prime this amount of material into the wipe tower to " -"produce successive infill or sacrificial object extrusions reliably." +"stable. Before purging the print head into an infill or a sacrificial " +"object, Orca Slicer will always prime this amount of material into the wipe " +"tower to produce successive infill or sacrificial object extrusions reliably." msgstr "" "Bir takım değişiminden sonra, yeni yüklenen filamentin nozul içindeki kesin " "konumu bilinmeyebilir ve filament basıncı muhtemelen henüz stabil değildir. " @@ -10533,12 +10697,13 @@ msgstr "Soğutma hareketleri bu hıza doğru giderek hızlanır." 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." +"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 "" "Yazıcı donanım yazılımının (veya Çoklu Malzeme Ünitesi 2.0'ın) takım " -"değişikliği sırasında (T kodu yürütülürken) yeni bir filament yükleme süresi. " -"Bu süre, G kodu zaman tahmincisi tarafından toplam baskı süresine eklenir." +"değişikliği sırasında (T kodu yürütülürken) yeni bir filament yükleme " +"süresi. Bu süre, G kodu zaman tahmincisi tarafından toplam baskı süresine " +"eklenir." msgid "Ramming parameters" msgstr "Sıkıştırma parametreleri" @@ -10552,8 +10717,8 @@ msgstr "" 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." +"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 "" "Yazıcı ürün yazılımının (veya Çoklu Malzeme Ünitesi 2.0'ın) takım değişimi " "sırasında (T kodu yürütülürken) filamenti boşaltma süresi. Bu süre, G kodu " @@ -10601,7 +10766,8 @@ msgstr "Filament malzeme türü" msgid "Soluble material" msgstr "Çözünür malzeme" -msgid "Soluble material is commonly used to print support and support interface" +msgid "" +"Soluble material is commonly used to print support and support interface" msgstr "" "Çözünür malzeme genellikle destek ve destek arayüzünü yazdırmak için " "kullanılır" @@ -10609,7 +10775,8 @@ msgstr "" msgid "Support material" msgstr "Destek malzemesi" -msgid "Support material is commonly used to print support and support interface" +msgid "" +"Support material is commonly used to print support and support interface" msgstr "" "Destek malzemesi yaygın olarak destek ve destek arayüzünü yazdırmak için " "kullanılır" @@ -10644,8 +10811,8 @@ msgstr "Filament satıcısı. Yalnızca gösteri için" msgid "(Undefined)" msgstr "(Tanımsız)" -msgid "Infill direction" -msgstr "Dolgu açısı" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10653,6 +10820,20 @@ msgid "" msgstr "" "Hattın başlangıcını veya ana yönünü kontrol eden seyrek dolgu deseni açısı" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Dolgu yoğunluğu" @@ -10661,8 +10842,8 @@ msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " "infill and internal solid infill pattern will be used" msgstr "" -"İç seyrek dolgunun yoğunluğu, %100 tüm seyrek dolguyu katı dolguya dönüştürür " -"ve iç katı dolgu modeli kullanılacaktır" +"İç seyrek dolgunun yoğunluğu, %100 tüm seyrek dolguyu katı dolguya " +"dönüştürür ve iç katı dolgu modeli kullanılacaktır" msgid "Sparse infill pattern" msgstr "Dolgu deseni" @@ -10710,22 +10891,23 @@ msgid "" "Connect an infill line to an internal perimeter with a short segment of an " "additional perimeter. If expressed as percentage (example: 15%) it is " "calculated over infill extrusion width. Orca Slicer tries to connect two " -"close infill lines to a short perimeter segment. If no such perimeter segment " -"shorter than infill_anchor_max is found, the infill line is connected to a " -"perimeter segment at just one side and the length of the perimeter segment " -"taken is limited to this parameter, but no longer than anchor_length_max. \n" +"close infill lines to a short perimeter segment. If no such perimeter " +"segment shorter than infill_anchor_max is found, the infill line is " +"connected to a perimeter segment at just one side and the length of the " +"perimeter segment taken is limited to this parameter, but no longer than " +"anchor_length_max. \n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" "Bir dolgu hattını, ek bir çevrenin kısa bir bölümü ile bir iç çevreye " -"bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon genişliği " -"üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir çevre " -"segmentine bağlamaya çalışıyor. infill_anchor_max'tan daha kısa böyle bir " -"çevre segmenti bulunamazsa, dolgu hattı yalnızca bir taraftaki bir çevre " +"bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon " +"genişliği üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir " +"çevre segmentine bağlamaya çalışıyor. infill_anchor_max'tan daha kısa böyle " +"bir çevre segmenti bulunamazsa, dolgu hattı yalnızca bir taraftaki bir çevre " "segmentine bağlanır ve alınan çevre segmentinin uzunluğu bu parametreyle " "sınırlıdır, ancak çapa_uzunluk_max'tan uzun olamaz.\n" -"Tek bir dolgu hattına bağlı sabitleme çevrelerini devre dışı bırakmak için bu " -"parametreyi sıfıra ayarlayın." +"Tek bir dolgu hattına bağlı sabitleme çevrelerini devre dışı bırakmak için " +"bu parametreyi sıfıra ayarlayın." msgid "0 (no open anchors)" msgstr "0 (açık bağlantı yok)" @@ -10740,22 +10922,23 @@ msgid "" "Connect an infill line to an internal perimeter with a short segment of an " "additional perimeter. If expressed as percentage (example: 15%) it is " "calculated over infill extrusion width. Orca Slicer tries to connect two " -"close infill lines to a short perimeter segment. If no such perimeter segment " -"shorter than this parameter is found, the infill line is connected to a " -"perimeter segment at just one side and the length of the perimeter segment " -"taken is limited to infill_anchor, but no longer than this parameter. \n" +"close infill lines to a short perimeter segment. If no such perimeter " +"segment shorter than this parameter is found, the infill line is connected " +"to a perimeter segment at just one side and the length of the perimeter " +"segment taken is limited to infill_anchor, but no longer than this " +"parameter. \n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" "Bir dolgu hattını, ek bir çevrenin kısa bir bölümü ile bir iç çevreye " -"bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon genişliği " -"üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir çevre " -"segmentine bağlamaya çalışıyor. Bu parametreden daha kısa bir çevre segmenti " -"bulunamazsa, dolgu hattı sadece bir kenardaki bir çevre segmentine bağlanır " -"ve alınan çevre segmentinin uzunluğu infill_anchor ile sınırlıdır ancak bu " -"parametreden daha uzun olamaz.\n" -"0'a ayarlanırsa dolgu bağlantısı için eski algoritma kullanılacaktır; 1000 ve " -"0 ile aynı sonucu oluşturmalıdır." +"bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon " +"genişliği üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir " +"çevre segmentine bağlamaya çalışıyor. Bu parametreden daha kısa bir çevre " +"segmenti bulunamazsa, dolgu hattı sadece bir kenardaki bir çevre segmentine " +"bağlanır ve alınan çevre segmentinin uzunluğu infill_anchor ile sınırlıdır " +"ancak bu parametreden daha uzun olamaz.\n" +"0'a ayarlanırsa dolgu bağlantısı için eski algoritma kullanılacaktır; 1000 " +"ve 0 ile aynı sonucu oluşturmalıdır." msgid "0 (Simple connect)" msgstr "0 (Basit bağlantı)" @@ -10773,8 +10956,8 @@ msgid "" "Acceleration of top surface infill. Using a lower value may improve top " "surface quality" msgstr "" -"Üst yüzey dolgusunun hızlandırılması. Daha düşük bir değerin kullanılması üst " -"yüzey kalitesini iyileştirebilir" +"Üst yüzey dolgusunun hızlandırılması. Daha düşük bir değerin kullanılması " +"üst yüzey kalitesini iyileştirebilir" msgid "Acceleration of outer wall. Using a lower value can improve quality" msgstr "" @@ -10784,8 +10967,8 @@ msgid "" "Acceleration of bridges. If the value is expressed as a percentage (e.g. " "50%), it will be calculated based on the outer wall acceleration." msgstr "" -"Köprülerin hızlandırılması. Değer yüzde olarak ifade edilirse (örn. %50), dış " -"duvar ivmesine göre hesaplanacaktır." +"Köprülerin hızlandırılması. Değer yüzde olarak ifade edilirse (örn. %50), " +"dış duvar ivmesine göre hesaplanacaktır." msgid "mm/s² or %" msgstr "mm/s² veya %" @@ -10822,7 +11005,8 @@ msgid "accel_to_decel" msgstr "Accel_to_decel" #, c-format, boost-format -msgid "Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +msgid "" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" msgstr "" "Klipper'ın max_accel_to_decel değeri ivmenin bu %%'sine göre ayarlanacak" @@ -10855,8 +11039,8 @@ msgid "Initial layer height" msgstr "Başlangıç katman yüksekliği" msgid "" -"Height of initial layer. Making initial layer height to be thick slightly can " -"improve build plate adhension" +"Height of initial layer. Making initial layer height to be thick slightly " +"can improve build plate adhension" msgstr "" "İlk katmanın yüksekliği. İlk katman yüksekliğini biraz kalın yapmak, baskı " "plakasının yapışmasını iyileştirebilir" @@ -10897,16 +11081,16 @@ msgstr "Maksimum fan hızı" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer " -"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " -"than \"close_fan_the_first_x_layers\", in which case the fan will be running " -"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" +"\". \"full_fan_speed_layer\" will be ignored if lower than " +"\"close_fan_the_first_x_layers\", in which case the fan will be running at " +"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan " "\"ful_fan_speed_layer\" katmanında maksimuma doğrusal olarak artırılacaktır. " -"\"full_fan_speed_layer\", \"close_fan_the_first_x_layers\" değerinden düşükse " -"göz ardı edilecektir; bu durumda fan, \"close_fan_the_first_x_layers\" + 1 " -"katmanında izin verilen maksimum hızda çalışacaktır." +"\"full_fan_speed_layer\", \"close_fan_the_first_x_layers\" değerinden " +"düşükse göz ardı edilecektir; bu durumda fan, \"close_fan_the_first_x_layers" +"\" + 1 katmanında izin verilen maksimum hızda çalışacaktır." msgid "Support interface fan speed" msgstr "Destekler için fan hızı" @@ -10996,11 +11180,15 @@ msgid "Arc fitting" msgstr "Ark" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"G2 ve G3 hareketlerine sahip bir G kodu dosyası elde etmek için bunu " -"etkinleştirin. Ve montaj toleransı çözünürlükle aynıdır" msgid "Add line number" msgstr "Satır numarası ekle" @@ -11027,8 +11215,8 @@ msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " "nozzle, and what kind of filament can be printed" msgstr "" -"Nozulnin metalik malzemesi. Bu, nozulun aşınma direncini ve ne tür filamentin " -"basılabileceğini belirler" +"Nozulnin metalik malzemesi. Bu, nozulun aşınma direncini ve ne tür " +"filamentin basılabileceğini belirler" msgid "Undefine" msgstr "Tanımsız" @@ -11080,8 +11268,8 @@ msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." msgstr "Yatak şekline göre [0,1] aralığında en iyi otomatik düzenleme konumu." msgid "" -"Enable this option if machine has auxiliary part cooling fan. G-code command: " -"M106 P2 S(0-255)." +"Enable this option if machine has auxiliary part cooling fan. G-code " +"command: M106 P2 S(0-255)." msgstr "" "Makinede yardımcı parça soğutma fanı varsa bu seçeneği etkinleştirin. G-code " "komut: M106 P2 S(0-255)." @@ -11124,8 +11312,8 @@ msgid "" msgstr "" "Soğutma fanını başlatmak için hedef hıza düşmeden önce bu süre boyunca " "maksimum fan hızı komutunu verin.\n" -"Bu, düşük PWM/gücün fanın durma noktasından dönmeye başlaması veya fanın daha " -"hızlı hızlanması için yetersiz olabileceği fanlar için kullanışlıdır.\n" +"Bu, düşük PWM/gücün fanın durma noktasından dönmeye başlaması veya fanın " +"daha hızlı hızlanması için yetersiz olabileceği fanlar için kullanışlıdır.\n" "Devre dışı bırakmak için 0'a ayarlayın." msgid "Time cost" @@ -11179,20 +11367,21 @@ msgstr "Nesneleri etiketle" 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." +"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-Code etiketleme yazdırma hareketlerine ait oldukları nesneyle ilgili " "yorumlar eklemek için bunu etkinleştirin; bu, Octoprint CancelObject " -"eklentisi için kullanışlıdır. Bu ayarlar Tek Ekstruder Çoklu Malzeme kurulumu " -"ve Nesneye Temizleme / Dolguya Temizleme ile uyumlu DEĞİLDİR." +"eklentisi için kullanışlıdır. Bu ayarlar Tek Ekstruder Çoklu Malzeme " +"kurulumu ve Nesneye Temizleme / Dolguya Temizleme ile uyumlu DEĞİLDİR." msgid "Exclude objects" msgstr "Nesneleri hariç tut" msgid "Enable this option to add EXCLUDE OBJECT command in g-code" -msgstr "G koduna EXCLUDE OBJECT komutunu eklemek için bu seçeneği etkinleştirin" +msgstr "" +"G koduna EXCLUDE OBJECT komutunu eklemek için bu seçeneği etkinleştirin" msgid "Verbose G-code" msgstr "Ayrıntılı G kodu" @@ -11230,12 +11419,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Dolgu/Duvar örtüşmesi" +#, no-c-format, no-boost-format msgid "" -"Infill area is enlarged slightly to overlap with wall for better bonding. The " -"percentage value is relative to line width of sparse infill" +"Infill area is enlarged slightly to overlap with wall for better bonding. " +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"Daha iyi yapışma için dolgu alanı duvarla örtüşecek şekilde hafifçe " -"genişletilir. Yüzde değeri seyrek dolgunun çizgi genişliğine göredir" msgid "Speed of internal sparse infill" msgstr "İç seyrek dolgunun hızı" @@ -11245,12 +11447,12 @@ msgstr "Arayüz kabukları" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " -"Useful for multi-extruder prints with translucent materials or manual soluble " -"support material" +"Useful for multi-extruder prints with translucent materials or manual " +"soluble support material" msgstr "" "Bitişik malzemeler/hacimler arasında katı kabuk oluşumunu zorlayın. Yarı " -"saydam malzemelerle veya elle çözülebilen destek malzemesiyle çoklu ekstruder " -"baskıları için kullanışlıdır" +"saydam malzemelerle veya elle çözülebilen destek malzemesiyle çoklu " +"ekstruder baskıları için kullanışlıdır" msgid "Maximum width of a segmented region" msgstr "Bölümlere ayrılmış bir bölgenin maksimum genişliği" @@ -11265,8 +11467,8 @@ msgstr "Bölümlere ayrılmış bir bölgenin birbirine kenetlenen derinliği" msgid "Interlocking depth of a segmented region. Zero disables this feature." msgstr "" -"Bölümlere ayrılmış bir bölgenin birbirine kenetlenen derinliği. 0 bu özelliği " -"devre dışı bırakır." +"Bölümlere ayrılmış bir bölgenin birbirine kenetlenen derinliği. 0 bu " +"özelliği devre dışı bırakır." msgid "Ironing Type" msgstr "Ütüleme tipi" @@ -11357,8 +11559,8 @@ msgstr "" "G kodu tadı Klipper olarak ayarlandığında bu seçenek göz ardı edilecektir." msgid "" -"This G-code will be used as a code for the pause print. User can insert pause " -"G-code in gcode viewer" +"This G-code will be used as a code for the pause print. User can insert " +"pause G-code in gcode viewer" msgstr "" "Bu G kodu duraklatma yazdırması için bir kod olarak kullanılacaktır. " "Kullanıcı gcode görüntüleyiciye duraklatma G kodunu ekleyebilir" @@ -11489,8 +11691,8 @@ msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" msgstr "Seyahat için maksimum ivme (M204 T), yalnızca Marlin 2 için geçerlidir" msgid "" -"Part cooling fan speed may be increased when auto cooling is enabled. This is " -"the maximum speed limitation of part cooling fan" +"Part cooling fan speed may be increased when auto cooling is enabled. This " +"is the maximum speed limitation of part cooling fan" msgstr "" "Otomatik soğutma etkinleştirildiğinde parça soğutma fanı hızı artırılabilir. " "Bu, parça soğutma fanının maksimum hız sınırlamasıdır" @@ -11510,8 +11712,8 @@ msgid "Extrusion rate smoothing" msgstr "Ekstrüzyon hızını yumuşatma" msgid "" -"This parameter smooths out sudden extrusion rate changes that happen when the " -"printer transitions from printing a high flow (high speed/larger width) " +"This parameter smooths out sudden extrusion rate changes that happen when " +"the printer transitions from printing a high flow (high speed/larger width) " "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" @@ -11522,11 +11724,12 @@ msgid "" "A value of 0 disables the feature. \n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " -"Voron) this value is usually not needed. However it can provide some marginal " -"benefit in certain cases where feature speeds vary greatly. For example, when " -"there are aggressive slowdowns due to overhangs. In these cases a high value " -"of around 300-350mm3/s2 is recommended as this allows for just enough " -"smoothing to assist pressure advance achieve a smoother flow transition.\n" +"Voron) this value is usually not needed. However it can provide some " +"marginal benefit in certain cases where feature speeds vary greatly. For " +"example, when there are aggressive slowdowns due to overhangs. In these " +"cases a high value of around 300-350mm3/s2 is recommended as this allows for " +"just enough smoothing to assist pressure advance achieve a smoother flow " +"transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " "lower. A value of 10-15mm3/s2 is a good starting point for direct drive " @@ -11548,13 +11751,13 @@ msgstr "" "\n" "0 değeri özelliği devre dışı bırakır. \n" "\n" -"Yüksek hızlı, yüksek akışlı doğrudan tahrikli bir yazıcı için (Bambu lab veya " -"Voron gibi) bu değer genellikle gerekli değildir. Ancak özellik hızlarının " -"büyük ölçüde değiştiği bazı durumlarda marjinal bir fayda sağlayabilir. " -"Örneğin, çıkıntılar nedeniyle agresif yavaşlamalar olduğunda. Bu durumlarda " -"300-350mm3/s2 civarında yüksek bir değer önerilir çünkü bu, basınç " -"ilerlemesinin daha yumuşak bir akış geçişi elde etmesine yardımcı olmak için " -"yeterli yumuşatmaya izin verir.\n" +"Yüksek hızlı, yüksek akışlı doğrudan tahrikli bir yazıcı için (Bambu lab " +"veya Voron gibi) bu değer genellikle gerekli değildir. Ancak özellik " +"hızlarının büyük ölçüde değiştiği bazı durumlarda marjinal bir fayda " +"sağlayabilir. Örneğin, çıkıntılar nedeniyle agresif yavaşlamalar olduğunda. " +"Bu durumlarda 300-350mm3/s2 civarında yüksek bir değer önerilir çünkü bu, " +"basınç ilerlemesinin daha yumuşak bir akış geçişi elde etmesine yardımcı " +"olmak için yeterli yumuşatmaya izin verir.\n" "\n" "Basınç avansı olmayan daha yavaş yazıcılar için değer çok daha düşük " "ayarlanmalıdır. Doğrudan tahrikli ekstruderler için 10-15mm3/s2 ve Bowden " @@ -11651,8 +11854,8 @@ msgid "" "Orca Slicer can upload G-code files to a printer host. This field must " "contain the kind of the host." msgstr "" -"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu " -"alan ana bilgisayarın türünü içermelidir." +"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. " +"Bu alan ana bilgisayarın türünü içermelidir." msgid "Nozzle volume" msgstr "Nozul hacmi" @@ -11693,8 +11896,8 @@ 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 "" -"Ekstruder ucunun, boşaltıldığında filamentin park edildiği konumdan uzaklığı. " -"Bu ayar yazıcı ürün yazılımındaki değerle eşleşmelidir." +"Ekstruder ucunun, boşaltıldığında filamentin park edildiği konumdan " +"uzaklığı. Bu ayar yazıcı ürün yazılımındaki değerle eşleşmelidir." msgid "Extra loading distance" msgstr "Ekstra yükleme mesafesi" @@ -11721,8 +11924,8 @@ msgstr "Dolguda geri çekmeyi azalt" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " -"oozing can't been seen. This can reduce times of retraction for complex model " -"and save printing time, but make slicing and G-code generating slower" +"oozing can't been seen. This can reduce times of retraction for complex " +"model and save printing time, but make slicing and G-code generating slower" msgstr "" "Hareket kesinlikle dolgu alanına girdiğinde geri çekilmeyin. Bu, sızıntının " "görülemeyeceği anlamına gelir. Bu, karmaşık model için geri çekme sürelerini " @@ -11759,11 +11962,11 @@ msgid "Make overhangs printable - Hole area" msgstr "Yazdırılabilir çıkıntı delik alanı oluşturun" msgid "" -"Maximum area of a hole in the base of the model before it's filled by conical " -"material.A value of 0 will fill all the holes in the model base." +"Maximum area of a hole in the base of the model before it's filled by " +"conical material.A value of 0 will fill all the holes in the model base." msgstr "" -"Modelin tabanındaki bir deliğin, konik malzemeyle doldurulmadan önce maksimum " -"alanı. 0 değeri, model tabanındaki tüm delikleri dolduracaktır." +"Modelin tabanındaki bir deliğin, konik malzemeyle doldurulmadan önce " +"maksimum alanı. 0 değeri, model tabanındaki tüm delikleri dolduracaktır." msgid "mm²" msgstr "mm²" @@ -11773,11 +11976,11 @@ msgstr "Çıkıntılı duvarı algıla" #, c-format, boost-format msgid "" -"Detect the overhang percentage relative to line width and use different speed " -"to print. For 100%% overhang, bridge speed is used." +"Detect the overhang percentage relative to line width and use different " +"speed to print. For 100%% overhang, bridge speed is used." msgstr "" -"Çizgi genişliğine göre çıkıntı yüzdesini tespit edin ve yazdırmak için farklı " -"hızlar kullanın. %%100 çıkıntı için köprü hızı kullanılır." +"Çizgi genişliğine göre çıkıntı yüzdesini tespit edin ve yazdırmak için " +"farklı hızlar kullanın. %%100 çıkıntı için köprü hızı kullanılır." msgid "" "Line width of inner wall. If expressed as a %, it will be computed over the " @@ -11799,8 +12002,8 @@ msgid "" "This setting adds an extra wall to every other layer. This way the infill " "gets wedged vertically between the walls, resulting in stronger prints. \n" "\n" -"When this option is enabled, the ensure vertical shell thickness option needs " -"to be disabled. \n" +"When this option is enabled, the ensure vertical shell thickness option " +"needs to be disabled. \n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -11821,10 +12024,11 @@ msgid "" "argument, and they can access the Orca Slicer config settings by reading " "environment variables." msgstr "" -"Çıktı G-kodunu özel komut dosyaları aracılığıyla işlemek istiyorsanız, mutlak " -"yollarını burada listeleyin. Birden fazla betiği noktalı virgülle ayırın. " -"Betiklere ilk argüman olarak G-code dosyasının mutlak yolu aktarılır ve ortam " -"değişkenlerini okuyarak Orca Slicer yapılandırma ayarlarına erişebilirler." +"Çıktı G-kodunu özel komut dosyaları aracılığıyla işlemek istiyorsanız, " +"mutlak yollarını burada listeleyin. Birden fazla betiği noktalı virgülle " +"ayırın. Betiklere ilk argüman olarak G-code dosyasının mutlak yolu aktarılır " +"ve ortam değişkenlerini okuyarak Orca Slicer yapılandırma ayarlarına " +"erişebilirler." msgid "Printer notes" msgstr "Yazıcı notları" @@ -11836,7 +12040,8 @@ msgid "Raft contact Z distance" msgstr "Raft kontak Z mesafesi" msgid "Z gap between object and raft. Ignored for soluble interface" -msgstr "Nesne ve raft arasındaki Z boşluğu. Çözünür arayüz için göz ardı edildi" +msgstr "" +"Nesne ve raft arasındaki Z boşluğu. Çözünür arayüz için göz ardı edildi" msgid "Raft expansion" msgstr "Raft genişletme" @@ -11865,8 +12070,8 @@ msgid "" "Object will be raised by this number of support layers. Use this function to " "avoid wrapping when print ABS" msgstr "" -"Nesne bu sayıdaki destek katmanı tarafından yükseltilecektir. ABS yazdırırken " -"sarmayı önlemek için bu işlevi kullanın" +"Nesne bu sayıdaki destek katmanı tarafından yükseltilecektir. ABS " +"yazdırırken sarmayı önlemek için bu işlevi kullanın" msgid "" "G-code path is genereated after simplifing the contour of model to avoid too " @@ -11881,7 +12086,8 @@ msgid "Travel distance threshold" msgstr "Seyahat mesafesi" msgid "" -"Only trigger retraction when the travel distance is longer than this threshold" +"Only trigger retraction when the travel distance is longer than this " +"threshold" msgstr "" "Geri çekmeyi yalnızca hareket mesafesi bu eşikten daha uzun olduğunda " "tetikleyin" @@ -11889,7 +12095,8 @@ msgstr "" msgid "Retract amount before wipe" msgstr "Temizleme işlemi öncesi geri çekme miktarı" -msgid "The length of fast retraction before wipe, relative to retraction length" +msgid "" +"The length of fast retraction before wipe, relative to retraction length" msgstr "" "Geri çekme uzunluğuna göre, temizlemeden önce hızlı geri çekilmenin uzunluğu" @@ -12106,13 +12313,13 @@ msgid "Seam gap" msgstr "Dikiş boşluğu" msgid "" -"In order to reduce the visibility of the seam in a closed loop extrusion, the " -"loop is interrupted and shortened by a specified amount.\n" -"This amount can be specified in millimeters or as a percentage of the current " -"extruder diameter. The default value for this parameter is 10%." +"In order to reduce the visibility of the seam in a closed loop extrusion, " +"the loop is interrupted and shortened by a specified amount.\n" +"This amount can be specified in millimeters or as a percentage of the " +"current extruder diameter. The default value for this parameter is 10%." msgstr "" -"Kapalı döngü ekstrüzyonda dikişin görünürlüğünü azaltmak için döngü kesintiye " -"uğrar ve belirli bir miktarda kısaltılır.\n" +"Kapalı döngü ekstrüzyonda dikişin görünürlüğünü azaltmak için döngü " +"kesintiye uğrar ve belirli bir miktarda kısaltılır.\n" "Bu miktar milimetre cinsinden veya mevcut ekstruder çapının yüzdesi olarak " "belirtilebilir. Bu parametrenin varsayılan değeri %10'dur." @@ -12121,8 +12328,8 @@ msgstr "Atkı birleşim dikişi (beta)" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" -"Dikiş görünürlüğünü en aza indirmek ve dikiş mukavemetini arttırmak için atkı " -"birleşimini kullanın." +"Dikiş görünürlüğünü en aza indirmek ve dikiş mukavemetini arttırmak için " +"atkı birleşimini kullanın." msgid "Conditional scarf joint" msgstr "Koşullu atkı birleşimi" @@ -12140,9 +12347,9 @@ msgstr "Koşullu açı eşiği" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " "seam.\n" -"If the maximum angle within the perimeter loop exceeds this value (indicating " -"the absence of sharp corners), a scarf joint seam will be used. The default " -"value is 155°." +"If the maximum angle within the perimeter loop exceeds this value " +"(indicating the absence of sharp corners), a scarf joint seam will be used. " +"The default value is 155°." msgstr "" "Bu seçenek, koşullu bir atkı eklem dikişi uygulamak için eşik açısını " "ayarlar.\n" @@ -12157,8 +12364,8 @@ msgstr "Koşullu çıkıntı eşiği" msgid "" "This option determines the overhang threshold for the application of scarf " "joint seams. If the unsupported portion of the perimeter is less than this " -"threshold, scarf joint seams will be applied. The default threshold is set at " -"40% of the external wall's width. Due to performance considerations, the " +"threshold, scarf joint seams will be applied. The default threshold is set " +"at 40% of the external wall's width. Due to performance considerations, the " "degree of overhang is estimated." msgstr "" "Bu seçenek, atkı bağlantı dikişlerinin uygulanması için sarkma eşiğini " @@ -12172,22 +12379,22 @@ msgstr "Atkı birleşim hızı" msgid "" "This option sets the printing speed for scarf joints. It is recommended to " -"print scarf joints at a slow speed (less than 100 mm/s). It's also advisable " -"to enable 'Extrusion rate smoothing' if the set speed varies significantly " -"from the speed of the outer or inner walls. If the speed specified here is " -"higher than the speed of the outer or inner walls, the printer will default " -"to the slower of the two speeds. When specified as a percentage (e.g., 80%), " -"the speed is calculated based on the respective outer or inner wall speed. " -"The default value is set to 100%." +"print scarf joints at a slow speed (less than 100 mm/s). It's also " +"advisable to enable 'Extrusion rate smoothing' if the set speed varies " +"significantly from the speed of the outer or inner walls. If the speed " +"specified here is higher than the speed of the outer or inner walls, the " +"printer will default to the slower of the two speeds. When specified as a " +"percentage (e.g., 80%), the speed is calculated based on the respective " +"outer or inner wall speed. The default value is set to 100%." msgstr "" "Bu seçenek, atkı bağlantılarının yazdırma hızını ayarlar. Atkı " "bağlantılarının yavaş bir hızda (100 mm/s'den az) yazdırılması tavsiye " "edilir. Ayarlanan hızın dış veya iç duvarların hızından önemli ölçüde farklı " -"olması durumunda 'Ekstrüzyon hızı yumuşatma' seçeneğinin etkinleştirilmesi de " -"tavsiye edilir. Burada belirtilen hız, dış veya iç duvarların hızından daha " -"yüksekse, yazıcı varsayılan olarak iki hızdan daha yavaş olanı seçecektir. " -"Yüzde olarak belirtildiğinde (örn. %80), hız, ilgili dış veya iç duvar hızına " -"göre hesaplanır. Varsayılan değer %100 olarak ayarlanmıştır." +"olması durumunda 'Ekstrüzyon hızı yumuşatma' seçeneğinin etkinleştirilmesi " +"de tavsiye edilir. Burada belirtilen hız, dış veya iç duvarların hızından " +"daha yüksekse, yazıcı varsayılan olarak iki hızdan daha yavaş olanı " +"seçecektir. Yüzde olarak belirtildiğinde (örn. %80), hız, ilgili dış veya iç " +"duvar hızına göre hesaplanır. Varsayılan değer %100 olarak ayarlanmıştır." msgid "Scarf joint flow ratio" msgstr "Atkı birleşimi akış oranı" @@ -12201,8 +12408,8 @@ msgstr "Atkı başlangıç ​​yüksekliği" msgid "" "Start height of the scarf.\n" -"This amount can be specified in millimeters or as a percentage of the current " -"layer height. The default value for this parameter is 0." +"This amount can be specified in millimeters or as a percentage of the " +"current layer height. The default value for this parameter is 0." msgstr "" "Atkı başlangıç yüksekliği.\n" "Bu miktar milimetre cinsinden veya geçerli katman yüksekliğinin yüzdesi " @@ -12221,8 +12428,8 @@ msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" -"Atkının uzunluğu. Bu parametrenin 0 a ayarlanması atkıyı dolaylı yoldan devre " -"dışı bırakır." +"Atkının uzunluğu. Bu parametrenin 0 a ayarlanması atkıyı dolaylı yoldan " +"devre dışı bırakır." msgid "Scarf steps" msgstr "Atkı kademesi" @@ -12263,15 +12470,15 @@ msgid "Wipe before external loop" msgstr "Harici döngüden önce silin" msgid "" -"To minimise visibility of potential overextrusion at the start of an external " -"perimeter when printing with Outer/Inner or Inner/Outer/Inner wall print " -"order, the deretraction is performed slightly on the inside from the start of " -"the external perimeter. That way any potential over extrusion is hidden from " -"the outside surface. \n" +"To minimise visibility of potential overextrusion at the start of an " +"external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " +"print order, the deretraction is performed slightly on the inside from the " +"start of the external perimeter. That way any potential over extrusion is " +"hidden from the outside surface. \n" "\n" -"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall print " -"order as in these modes it is more likely an external perimeter is printed " -"immediately after a deretraction move." +"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " +"print order as in these modes it is more likely an external perimeter is " +"printed immediately after a deretraction move." msgstr "" "Dış/İç veya İç/Dış/İç duvar baskı sırası ile yazdırırken, dış çevrenin " "başlangıcında olası aşırı çıkıntının görünürlüğünü en aza indirmek için, " @@ -12280,8 +12487,8 @@ msgstr "" "yüzeyden gizlenir. \n" "\n" "Bu, Dış/İç veya İç/Dış/İç duvar yazdırma sırası ile yazdırırken " -"kullanışlıdır, çünkü bu modlarda, bir geri çekilme hareketinin hemen ardından " -"bir dış çevrenin yazdırılması daha olasıdır." +"kullanışlıdır, çünkü bu modlarda, bir geri çekilme hareketinin hemen " +"ardından bir dış çevrenin yazdırılması daha olasıdır." msgid "Wipe speed" msgstr "Temizleme hızı" @@ -12308,11 +12515,29 @@ msgstr "Etek yüksekliği" msgid "How many layers of skirt. Usually only one layer" msgstr "Etek katman sayısı. Genellikle tek katman" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Etek sayısı" msgid "Number of loops for the skirt. Zero means disabling skirt" -msgstr "Etek için ilmek sayısı. Sıfır, eteği devre dışı bırakmak anlamına gelir" +msgstr "" +"Etek için ilmek sayısı. Sıfır, eteği devre dışı bırakmak anlamına gelir" msgid "Skirt speed" msgstr "Etek hızı" @@ -12322,6 +12547,17 @@ msgstr "" "Eteğin hızı, mm/s cinsinden. Sıfır, varsayılan katman ekstrüzyon hızının " "kullanılması anlamına gelir." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -12341,8 +12577,8 @@ msgstr "" "bırakmıştır" msgid "" -"Line width of internal solid infill. If expressed as a %, it will be computed " -"over the nozzle diameter." +"Line width of internal solid infill. If expressed as a %, it will be " +"computed over the nozzle diameter." msgstr "" "İç katı dolgunun çizgi genişliği. % olarak ifade edilirse Nozul çapı " "üzerinden hesaplanacaktır." @@ -12356,8 +12592,8 @@ msgid "" "generated model has no seam" msgstr "" "Spiralleştirme, dış konturun z hareketlerini yumuşatır. Ve katı bir modeli, " -"katı alt katmanlara sahip tek duvarlı bir baskıya dönüştürür. Oluşturulan son " -"modelde dikiş yok." +"katı alt katmanlara sahip tek duvarlı bir baskıya dönüştürür. Oluşturulan " +"son modelde dikiş yok." msgid "Smooth Spiral" msgstr "Pürüzsüz spiral" @@ -12382,11 +12618,12 @@ msgstr "" msgid "" "If smooth or traditional mode is selected, a timelapse video will be " "generated for each print. After each layer is printed, a snapshot is taken " -"with the chamber camera. All of these snapshots are composed into a timelapse " -"video when printing completes. If smooth mode is selected, the toolhead will " -"move to the excess chute after each layer is printed and then take a " -"snapshot. Since the melt filament may leak from the nozzle during the process " -"of taking a snapshot, prime tower is required for smooth mode to wipe nozzle." +"with the chamber camera. All of these snapshots are composed into a " +"timelapse video when printing completes. If smooth mode is selected, the " +"toolhead will move to the excess chute after each layer is printed and then " +"take a snapshot. Since the melt filament may leak from the nozzle during the " +"process of taking a snapshot, prime tower is required for smooth mode to " +"wipe nozzle." msgstr "" "Düzgün veya geleneksel mod seçilirse her baskı için bir hızlandırılmış video " "oluşturulacaktır. Her katman basıldıktan sonra oda kamerasıyla anlık görüntü " @@ -12447,9 +12684,10 @@ msgid "No sparse layers (beta)" msgstr "Seyrek katman yok (beta)" 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." +"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 "" "Etkinleştirilirse, silme kulesi araç değişimi olmayan katmanlarda " "yazdırılmayacaktır. Araç değişimi olan katmanlarda, ekstruder silme kulesini " @@ -12474,16 +12712,16 @@ msgid "" "triangle mesh slicing. The gap closing operation may reduce the final print " "resolution, therefore it is advisable to keep the value reasonably low." msgstr "" -"Üçgen mesh dilimleme sırasında 2x boşluk kapatma yarıçapından küçük çatlaklar " -"doldurulmaktadır. Boşluk kapatma işlemi son yazdırma çözünürlüğünü " +"Üçgen mesh dilimleme sırasında 2x boşluk kapatma yarıçapından küçük " +"çatlaklar doldurulmaktadır. Boşluk kapatma işlemi son yazdırma çözünürlüğünü " "düşürebilir, bu nedenle değerin oldukça düşük tutulması tavsiye edilir." msgid "Slicing Mode" msgstr "Dilimleme modu" msgid "" -"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close " -"all holes in the model." +"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " +"close all holes in the model." msgstr "" "3DLabPrint uçak modelleri için \"Çift-tek\" seçeneğini kullanın. Modeldeki " "tüm delikleri kapatmak için \"Delikleri kapat\"ı kullanın." @@ -12507,9 +12745,10 @@ msgid "" "print bed, set this to -0.3 (or fix your endstop)." msgstr "" "Bu değer, çıkış G-kodu içindeki tüm Z koordinatlarına eklenir (veya " -"çıkarılır).Bu, kötü Z endstop konumunu telafi etmek için kullanılır: örneğin, " -"endstop sıfır noktanız aslında nozulu baskı tablasından 0.3mm uzakta " -"bırakıyorsa, bu değeri -0.3 olarak ayarlayın (veya endstop'unuzu düzeltin)." +"çıkarılır).Bu, kötü Z endstop konumunu telafi etmek için kullanılır: " +"örneğin, endstop sıfır noktanız aslında nozulu baskı tablasından 0.3mm " +"uzakta bırakıyorsa, bu değeri -0.3 olarak ayarlayın (veya endstop'unuzu " +"düzeltin)." msgid "Enable support" msgstr "Desteği etkinleştir" @@ -12563,7 +12802,8 @@ msgid "" "Only create support for critical regions including sharp tail, cantilever, " "etc." msgstr "" -"Yalnızca keskin kuyruk, konsol vb. gibi kritik bölgeler için destek oluşturun." +"Yalnızca keskin kuyruk, konsol vb. gibi kritik bölgeler için destek " +"oluşturun." msgid "Remove small overhangs" msgstr "Küçük çıkıntıları kaldır" @@ -12600,7 +12840,8 @@ msgstr "Taban için arayüz filamentini azaltın" msgid "" "Avoid using support interface filament to print support base if possible." msgstr "" -"Destek tabanını yazdırmak için destek arayüzü filamentini kullanmaktan kaçının" +"Destek tabanını yazdırmak için destek arayüzü filamentini kullanmaktan " +"kaçının" msgid "" "Line width of support. If expressed as a %, it will be computed over the " @@ -12675,8 +12916,8 @@ msgstr "Arayüz deseni" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " -"interface is Rectilinear, while default pattern for soluble support interface " -"is Concentric" +"interface is Rectilinear, while default pattern for soluble support " +"interface is Concentric" msgstr "" "Destek arayüzünün çizgi deseni. Çözünmeyen destek arayüzü için varsayılan " "model Doğrusaldır, çözünebilir destek arayüzü için varsayılan model ise " @@ -12705,11 +12946,12 @@ msgid "" "into a regular grid will create more stable supports (default), while snug " "support towers will save material and reduce object scarring.\n" "For tree support, slim and organic style will merge branches more " -"aggressively and save a lot of material (default organic), while hybrid style " -"will create similar structure to normal support under large flat overhangs." +"aggressively and save a lot of material (default organic), while hybrid " +"style will create similar structure to normal support under large flat " +"overhangs." msgstr "" -"Destek stil ve şekli. Normal destek için, destekleri düzenli bir ızgara içine " -"projelendirmek daha stabil destekler oluşturacaktır (varsayılan), aynı " +"Destek stil ve şekli. Normal destek için, destekleri düzenli bir ızgara " +"içine projelendirmek daha stabil destekler oluşturacaktır (varsayılan), aynı " "zamanda sıkı destek kuleleri malzeme tasarrufu sağlar ve nesne üzerindeki " "izleri azaltır.\n" "Ağaç destek için, ince ve organik tarz, dalları daha etkili bir şekilde " @@ -12758,8 +13000,8 @@ msgid "Tree support branch angle" msgstr "Ağaç desteği dal açısı" msgid "" -"This setting determines the maximum overhang angle that t he branches of tree " -"support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that t he branches of " +"tree support allowed to make.If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Bu ayar, ağaç desteğinin dallarının oluşmasına izin verilen maksimum çıkıntı " @@ -12791,10 +13033,11 @@ msgstr "Dal Yoğunluğu" #. TRN PrintSettings: "Organic supports" > "Branch Density" msgid "" -"Adjusts the density of the support structure used to generate the tips of the " -"branches. A higher value results in better overhangs but the supports are " -"harder to remove, thus it is recommended to enable top support interfaces " -"instead of a high branch density value if dense interfaces are needed." +"Adjusts the density of the support structure used to generate the tips of " +"the branches. A higher value results in better overhangs but the supports " +"are harder to remove, thus it is recommended to enable top support " +"interfaces instead of a high branch density value if dense interfaces are " +"needed." msgstr "" "Dalların uçlarını oluşturmak için kullanılan destek yapısının yoğunluğunu " "ayarlar. Daha yüksek bir değer daha iyi çıkıntılarla sonuçlanır, ancak " @@ -12806,8 +13049,8 @@ msgid "Adaptive layer height" msgstr "Uyarlanabilir katman yüksekliği" msgid "" -"Enabling this option means the height of tree support layer except the first " -"will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated " msgstr "" "Bu seçeneğin etkinleştirilmesi, ilki hariç ağaç destek katmanının " "yüksekliğinin otomatik olarak hesaplanacağı anlamına gelir " @@ -12862,8 +13105,8 @@ msgstr "Çift duvarlı dal çapı" #. TRN PrintSettings: "Organic supports" > "Branch Diameter" msgid "" "Branches with area larger than the area of a circle of this diameter will be " -"printed with double walls for stability. Set this value to zero for no double " -"walls." +"printed with double walls for stability. Set this value to zero for no " +"double walls." msgstr "" "Bu çaptaki bir dairenin alanından daha büyük alana sahip dallar, stabilite " "için çift duvarlı olarak basılacaktır. Çift duvar olmaması için bu değeri " @@ -12893,8 +13136,8 @@ msgid "" "added before \"machine_start_gcode\"\n" "G-code commands: M141/M191 S(0-255)" msgstr "" -"Hazne sıcaklığı kontrolü için bu seçeneği etkinleştirin. Önce bir M191 komutu " -"eklenecek \"machine_start_gcode\"\n" +"Hazne sıcaklığı kontrolü için bu seçeneği etkinleştirin. Önce bir M191 " +"komutu eklenecek \"machine_start_gcode\"\n" "G-code komut: M141/M191 S(0-255)" msgid "Chamber temperature" @@ -12972,11 +13215,11 @@ msgid "" "The number of top solid layers is increased when slicing if the thickness " "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " -"is disabled and thickness of top shell is absolutely determained by top shell " -"layers" +"is disabled and thickness of top shell is absolutely determained by top " +"shell layers" msgstr "" -"Üst kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince ise " -"dilimleme sırasında üst katı katmanların sayısı artırılır. Bu, katman " +"Üst kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince " +"ise dilimleme sırasında üst katı katmanların sayısı artırılır. Bu, katman " "yüksekliği küçük olduğunda kabuğun çok ince olmasını önleyebilir. 0, bu " "ayarın devre dışı olduğu ve üst kabuğun kalınlığının kesinlikle üst kabuk " "katmanları tarafından belirlendiği anlamına gelir" @@ -12999,11 +13242,12 @@ msgid "Wipe Distance" msgstr "Temizleme mesafesi" msgid "" -"Discribe how long the nozzle will move along the last path when retracting. \n" +"Discribe how long the nozzle will move along the last path when " +"retracting. \n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " -"extruder/filament retraction settings are, a retraction move may be needed to " -"retract the remaining filament. \n" +"extruder/filament retraction settings are, a retraction move may be needed " +"to retract the remaining filament. \n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -13011,9 +13255,9 @@ msgstr "" "Geri çekilirken nozulun son yol boyunca ne kadar süre hareket edeceğini " "açıklayın. \n" "\n" -"Silme işleminin ne kadar sürdüğüne, ekstruder/filament geri çekme ayarlarının " -"ne kadar hızlı ve uzun olduğuna bağlı olarak, kalan filamanı geri çekmek için " -"bir geri çekme hareketine ihtiyaç duyulabilir. \n" +"Silme işleminin ne kadar sürdüğüne, ekstruder/filament geri çekme " +"ayarlarının ne kadar hızlı ve uzun olduğuna bağlı olarak, kalan filamanı " +"geri çekmek için bir geri çekme hareketine ihtiyaç duyulabilir. \n" "\n" "Aşağıdaki silme ayarından önce geri çekme miktarına bir değer ayarlamak, " "silme işleminden önce aşırı geri çekme işlemini gerçekleştirecektir, aksi " @@ -13063,8 +13307,8 @@ msgid "" "Angle at the apex of the cone that is used to stabilize the wipe tower. " "Larger angle means wider base." msgstr "" -"Silme kulesini stabilize etmek için kullanılan koninin tepe noktasındaki açı. " -"Daha büyük açı daha geniş taban anlamına gelir." +"Silme kulesini stabilize etmek için kullanılan koninin tepe noktasındaki " +"açı. Daha büyük açı daha geniş taban anlamına gelir." msgid "Wipe tower purge lines spacing" msgstr "Silme kulesi temizleme hatları aralığı" @@ -13072,6 +13316,19 @@ msgstr "Silme kulesi temizleme hatları aralığı" msgid "Spacing of purge lines on the wipe tower." msgstr "Silme kulesindeki boşaltma hatlarının aralığı." +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "Silme kulesi ekstruderi" @@ -13091,8 +13348,8 @@ msgid "" "volumes below." msgstr "" "Bu vektör, silme kulesinde kullanılan her bir araçtan/araca geçiş için " -"gerekli hacimleri kaydeder. Bu değerler, aşağıdaki tam temizleme hacimlerinin " -"oluşturulmasını basitleştirmek için kullanılır." +"gerekli hacimleri kaydeder. Bu değerler, aşağıdaki tam temizleme " +"hacimlerinin oluşturulmasını basitleştirmek için kullanılır." msgid "" "Purging after filament change will be done inside objects' infills. This may " @@ -13116,13 +13373,13 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed as " -"a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colours of the objects will be mixed " +"as a result. It will not take effect, unless the prime tower is enabled." msgstr "" -"Bu nesne, filamentten tasarruf etmek ve baskı süresini azaltmak için filament " -"değişiminden sonra nozulu temizlemek için kullanılacaktır. Sonuç olarak " -"nesnelerin renkleri karıştırılacaktır. Prime tower etkinleştirilmediği sürece " -"etkili olmayacaktır." +"Bu nesne, filamentten tasarruf etmek ve baskı süresini azaltmak için " +"filament değişiminden sonra nozulu temizlemek için kullanılacaktır. Sonuç " +"olarak nesnelerin renkleri karıştırılacaktır. Prime tower " +"etkinleştirilmediği sürece etkili olmayacaktır." msgid "Maximal bridging distance" msgstr "Maksimum köprüleme mesafesi" @@ -13131,8 +13388,8 @@ msgid "Maximal distance between supports on sparse infill sections." msgstr "" "Bu nesne, filamentten tasarruf etmek ve baskı süresini azaltmak için bir " "filament değişiminden sonra nozulu temizlemek için kullanılacaktır. Sonuç " -"olarak nesnelerin renkleri karıştırılacaktır. Prime tower etkinleştirilmediği " -"sürece etkili olmayacaktır." +"olarak nesnelerin renkleri karıştırılacaktır. Prime tower " +"etkinleştirilmediği sürece etkili olmayacaktır." msgid "X-Y hole compensation" msgstr "X-Y delik dengeleme" @@ -13157,8 +13414,8 @@ msgid "" "assembling issue" msgstr "" "Nesnenin konturu XY düzleminde yapılandırılan değer kadar büyütülür veya " -"küçültülür. Pozitif değer konturu büyütür. Negatif değer konturu küçültür. Bu " -"fonksiyon, nesnenin montaj sorunu olduğunda boyutu hafifçe ayarlamak için " +"küçültülür. Pozitif değer konturu büyütür. Negatif değer konturu küçültür. " +"Bu fonksiyon, nesnenin montaj sorunu olduğunda boyutu hafifçe ayarlamak için " "kullanılır" msgid "Convert holes to polyholes" @@ -13182,14 +13439,14 @@ msgstr "Çokgen delik tespiti marjı" msgid "" "Maximum defection of a point to the estimated radius of the circle.\n" "As cylinders are often exported as triangles of varying size, points may not " -"be on the circle circumference. This setting allows you some leway to broaden " -"the detection.\n" +"be on the circle circumference. This setting allows you some leway to " +"broaden the detection.\n" "In mm or in % of the radius." msgstr "" "Bir noktanın dairenin tahmini yarıçapına göre maksimum sapması.\n" "Silindirler genellikle farklı boyutlarda üçgenler olarak ihraç edildiğinden, " -"noktalar daire çevresinde olmayabilir. Bu ayar, algılamayı genişletmeniz için " -"size biraz alan sağlar.\n" +"noktalar daire çevresinde olmayabilir. Bu ayar, algılamayı genişletmeniz " +"için size biraz alan sağlar.\n" "inc mm cinsinden veya yarıçapın %'si cinsinden." msgid "Polyhole twist" @@ -13212,8 +13469,8 @@ msgid "Format of G-code thumbnails" msgstr "G kodu küçük resimlerinin formatı" msgid "" -"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, QOI " -"for low memory firmware" +"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " +"QOI for low memory firmware" msgstr "" "G kodu küçük resimlerinin formatı: En iyi kalite için PNG, en küçük boyut " "için JPG, düşük bellekli donanım yazılımı için QOI" @@ -13234,11 +13491,11 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " -"very thin areas is used gap-fill. Arachne engine produces walls with variable " -"extrusion width" +"very thin areas is used gap-fill. Arachne engine produces walls with " +"variable extrusion width" msgstr "" -"Klasik duvar oluşturucu sabit ekstrüzyon genişliğine sahip duvarlar üretir ve " -"çok ince alanlar için boşluk doldurma kullanılır. Arachne motoru değişken " +"Klasik duvar oluşturucu sabit ekstrüzyon genişliğine sahip duvarlar üretir " +"ve çok ince alanlar için boşluk doldurma kullanılır. Arachne motoru değişken " "ekstrüzyon genişliğine sahip duvarlar üretir" msgid "Classic" @@ -13265,19 +13522,20 @@ msgstr "Duvar geçiş filtresi oranı" msgid "" "Prevent transitioning back and forth between one extra wall and one less. " "This margin extends the range of extrusion widths which follow to [Minimum " -"wall width - margin, 2 * Minimum wall width + margin]. Increasing this margin " -"reduces the number of transitions, which reduces the number of extrusion " -"starts/stops and travel time. However, large extrusion width variation can " -"lead to under- or overextrusion problems. It's expressed as a percentage over " -"nozzle diameter" +"wall width - margin, 2 * Minimum wall width + margin]. Increasing this " +"margin reduces the number of transitions, which reduces the number of " +"extrusion starts/stops and travel time. However, large extrusion width " +"variation can lead to under- or overextrusion problems. It's expressed as a " +"percentage over nozzle diameter" msgstr "" -"Fazladan bir duvar ile bir eksik arasında ileri geri geçişi önleyin. Bu kenar " -"boşluğu, [Minimum duvar genişliği - kenar boşluğu, 2 * Minimum duvar " +"Fazladan bir duvar ile bir eksik arasında ileri geri geçişi önleyin. Bu " +"kenar boşluğu, [Minimum duvar genişliği - kenar boşluğu, 2 * Minimum duvar " "genişliği + kenar boşluğu] şeklinde takip eden ekstrüzyon genişlikleri " "aralığını genişletir. Bu marjın arttırılması geçiş sayısını azaltır, bu da " "ekstrüzyonun başlama/durma sayısını ve seyahat süresini azaltır. Bununla " -"birlikte, büyük ekstrüzyon genişliği değişimi, yetersiz veya aşırı ekstrüzyon " -"sorunlarına yol açabilir. Nozul çapına göre yüzde olarak ifade edilir" +"birlikte, büyük ekstrüzyon genişliği değişimi, yetersiz veya aşırı " +"ekstrüzyon sorunlarına yol açabilir. Nozul çapına göre yüzde olarak ifade " +"edilir" msgid "Wall transitioning threshold angle" msgstr "Duvar geçiş açısı" @@ -13289,11 +13547,11 @@ msgid "" "this setting reduces the number and length of these center walls, but may " "leave gaps or overextrude" msgstr "" -"Çift ve tek sayıdaki duvarlar arasında geçişler ne zaman oluşturulmalıdır? Bu " -"ayardan daha büyük bir açıya sahip bir kama şeklinin geçişleri olmayacak ve " -"kalan alanı dolduracak şekilde ortada hiçbir duvar basılmayacaktır. Bu ayarın " -"düşürülmesi, bu merkez duvarların sayısını ve uzunluğunu azaltır ancak " -"boşluklara veya aşırı çıkıntıya neden olabilir" +"Çift ve tek sayıdaki duvarlar arasında geçişler ne zaman oluşturulmalıdır? " +"Bu ayardan daha büyük bir açıya sahip bir kama şeklinin geçişleri olmayacak " +"ve kalan alanı dolduracak şekilde ortada hiçbir duvar basılmayacaktır. Bu " +"ayarın düşürülmesi, bu merkez duvarların sayısını ve uzunluğunu azaltır " +"ancak boşluklara veya aşırı çıkıntıya neden olabilir" msgid "Wall distribution count" msgstr "Duvar dağılım sayısı" @@ -13309,9 +13567,9 @@ msgid "Minimum feature size" msgstr "Minimum özellik boyutu" msgid "" -"Minimum thickness of thin features. Model features that are thinner than this " -"value will not be printed, while features thicker than the Minimum feature " -"size will be widened to the Minimum wall width. It's expressed as a " +"Minimum thickness of thin features. Model features that are thinner than " +"this value will not be printed, while features thicker than the Minimum " +"feature size will be widened to the Minimum wall width. It's expressed as a " "percentage over nozzle diameter" msgstr "" "İnce özellikler için minimum kalınlık. Bu değerden daha ince olan model " @@ -13328,27 +13586,28 @@ msgid "" "\n" "NOTE: Bottom and top surfaces will not be affected by this value to prevent " "visual gaps on the ouside of the model. Adjust 'One wall threshold' in the " -"Advanced settings below to adjust the sensitivity of what is considered a top-" -"surface. 'One wall threshold' is only visibile if this setting is set above " -"the default value of 0.5, or if single-wall top surfaces is enabled." +"Advanced settings below to adjust the sensitivity of what is considered a " +"top-surface. 'One wall threshold' is only visibile if this setting is set " +"above the default value of 0.5, or if single-wall top surfaces is enabled." msgstr "" "Yazdırma süresini artırabilecek kısa, kapatılmamış duvarların yazdırılmasını " "önlemek için bu değeri ayarlayın. Daha yüksek değerler daha fazla ve daha " "uzun duvarları kaldırır.\n" "\n" -"NOT: Modelin dış kısmında görsel boşluk kalmaması için alt ve üst yüzeyler bu " -"değerden etkilenmeyecektir. Üst yüzey olarak kabul edilen şeyin hassasiyetini " -"ayarlamak için aşağıdaki Gelişmiş ayarlarda 'Tek duvar eşiği'ni ayarlayın. " -"'Tek duvar eşiği' yalnızca bu ayar varsayılan değer olan 0,5'in üzerine " -"ayarlandığında veya tek duvarlı üst yüzeyler etkinleştirildiğinde görünür." +"NOT: Modelin dış kısmında görsel boşluk kalmaması için alt ve üst yüzeyler " +"bu değerden etkilenmeyecektir. Üst yüzey olarak kabul edilen şeyin " +"hassasiyetini ayarlamak için aşağıdaki Gelişmiş ayarlarda 'Tek duvar " +"eşiği'ni ayarlayın. 'Tek duvar eşiği' yalnızca bu ayar varsayılan değer olan " +"0,5'in üzerine ayarlandığında veya tek duvarlı üst yüzeyler " +"etkinleştirildiğinde görünür." msgid "First layer minimum wall width" msgstr "İlk katman minimum duvar genişliği" msgid "" -"The minimum wall width that should be used for the first layer is recommended " -"to be set to the same size as the nozzle. This adjustment is expected to " -"enhance adhesion." +"The minimum wall width that should be used for the first layer is " +"recommended to be set to the same size as the nozzle. This adjustment is " +"expected to enhance adhesion." msgstr "" "İlk katman için kullanılması gereken minimum duvar genişliğinin nozul ile " "aynı boyuta ayarlanması tavsiye edilir. Bu ayarlamanın yapışmayı artırması " @@ -13373,8 +13632,8 @@ msgstr "Dar iç katı dolguyu tespit et" msgid "" "This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. Otherwise, " -"rectilinear pattern is used defaultly." +"concentric pattern will be used for the area to speed printing up. " +"Otherwise, rectilinear pattern is used defaultly." msgstr "" "Bu seçenek dar dahili katı dolgu alanını otomatik olarak algılayacaktır. " "Etkinleştirilirse, yazdırmayı hızlandırmak amacıyla alanda eşmerkezli desen " @@ -13420,7 +13679,8 @@ msgstr "Yönlendirme Seçenekleri" msgid "Orient options: 0-disable, 1-enable, others-auto" msgstr "" -"Yönlendirme seçenekleri: 0-devre dışı bırak, 1-etkinleştir, diğerleri-otomatik" +"Yönlendirme seçenekleri: 0-devre dışı bırak, 1-etkinleştir, diğerleri-" +"otomatik" msgid "Rotation angle around the Z axis in degrees." msgstr "Z ekseni etrafında derece cinsinden dönüş açısı." @@ -13465,13 +13725,13 @@ msgstr "" "ettiğini bilmesi için bu değişkene yazması gerekir." msgid "" -"Retraction state at the beginning of the custom G-code block. If the custom G-" -"code moves the extruder axis, it should write to this variable so PrusaSlicer " -"deretracts correctly when it gets control back." +"Retraction state at the beginning of the custom G-code block. If the custom " +"G-code moves the extruder axis, it should write to this variable so " +"PrusaSlicer deretracts correctly when it gets control back." msgstr "" "Özel G kodu bloğunun başlangıcındaki geri çekilme durumu. Özel G kodu " -"ekstruder eksenini hareket ettirirse, Slicer'ın kontrolü geri aldığında doğru " -"şekilde geri çekme yapması için bu değişkene yazması gerekir." +"ekstruder eksenini hareket ettirirse, Slicer'ın kontrolü geri aldığında " +"doğru şekilde geri çekme yapması için bu değişkene yazması gerekir." msgid "Extra deretraction" msgstr "Ekstra deretraksiyon" @@ -13556,18 +13816,18 @@ msgid "" "Weight per extruder extruded during the entire print. Calculated from " "filament_density value in Filament Settings." msgstr "" -"Baskının tamamı boyunca ekstrüzyon yapılan ekstruder başına ağırlık. Filament " -"Ayarlarındaki filaman yoğunluğu değerinden hesaplanır." +"Baskının tamamı boyunca ekstrüzyon yapılan ekstruder başına ağırlık. " +"Filament Ayarlarındaki filaman yoğunluğu değerinden hesaplanır." msgid "Total weight" msgstr "Toplam ağırlık" msgid "" -"Total weight of the print. Calculated from filament_density value in Filament " -"Settings." +"Total weight of the print. Calculated from filament_density value in " +"Filament Settings." msgstr "" -"Baskının toplam ağırlığı. Filament Ayarlarındaki filaman yoğunluğu değerinden " -"hesaplanır." +"Baskının toplam ağırlığı. Filament Ayarlarındaki filaman yoğunluğu " +"değerinden hesaplanır." msgid "Total layer count" msgstr "Toplam katman sayısı" @@ -13616,8 +13876,8 @@ msgstr "" "cinsindendir." msgid "" -"The vector has two elements: x and y dimension of the bounding box. Values in " -"mm." +"The vector has two elements: x and y dimension of the bounding box. Values " +"in mm." msgstr "" "Vektörün iki öğesi vardır: sınırlayıcı kutunun x ve y boyutu. Değerler mm " "cinsindendir." @@ -13629,8 +13889,8 @@ msgid "" "Vector of points of the first layer convex hull. Each element has the " "following format:'[x, y]' (x and y are floating-point numbers in mm)." msgstr "" -"Birinci katmanın dışbükey gövdesinin noktalarının vektörü. Her öğe şu formata " -"sahiptir:'[x, y]' (x ve y, mm cinsinden kayan noktalı sayılardır)." +"Birinci katmanın dışbükey gövdesinin noktalarının vektörü. Her öğe şu " +"formata sahiptir:'[x, y]' (x ve y, mm cinsinden kayan noktalı sayılardır)." msgid "Bottom-left corner of first layer bounding box" msgstr "İlk katman sınırlayıcı kutusunun sol alt köşesi" @@ -13826,7 +14086,8 @@ msgstr "Sağlanan dosya boş olduğundan okunamadı" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Bilinmeyen dosya formatı. Giriş dosyası .3mf veya .zip.amf uzantılı olmalıdır." +"Bilinmeyen dosya formatı. Giriş dosyası .3mf veya .zip.amf uzantılı " +"olmalıdır." msgid "Canceled" msgstr "İptal edildi" @@ -13948,7 +14209,8 @@ msgstr "yeni ön ayar oluşturma başarısız oldu." msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" -"Mevcut kalibrasyonu iptal edip ana sayfaya dönmek istediğinizden emin misiniz?" +"Mevcut kalibrasyonu iptal edip ana sayfaya dönmek istediğinizden emin " +"misiniz?" msgid "No Printer Connected!" msgstr "Yazıcı Bağlı Değil!" @@ -13963,16 +14225,16 @@ msgid "The input value size must be 3." msgstr "Giriş değeri boyutu 3 olmalıdır." msgid "" -"This machine type can only hold 16 history results per nozzle. You can delete " -"the existing historical results and then start calibration. Or you can " -"continue the calibration, but you cannot create new calibration historical " -"results. \n" +"This machine type can only hold 16 history results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results. \n" "Do you still want to continue the calibration?" msgstr "" "Bu makine tipi, püskürtme ucu başına yalnızca 16 geçmiş sonucu tutabilir. " -"Mevcut geçmiş sonuçları silebilir ve ardından kalibrasyona başlayabilirsiniz. " -"Veya kalibrasyona devam edebilirsiniz ancak yeni kalibrasyon geçmişi " -"sonuçları oluşturamazsınız.\n" +"Mevcut geçmiş sonuçları silebilir ve ardından kalibrasyona " +"başlayabilirsiniz. Veya kalibrasyona devam edebilirsiniz ancak yeni " +"kalibrasyon geçmişi sonuçları oluşturamazsınız.\n" "Hala kalibrasyona devam etmek istiyor musunuz?" msgid "Connecting to printer..." @@ -13986,9 +14248,9 @@ msgstr "Akış Dinamiği Kalibrasyonu sonucu yazıcıya kaydedildi" #, c-format, boost-format msgid "" -"There is already a historical calibration result with the same name: %s. Only " -"one of the results with the same name is saved. Are you sure you want to " -"override the historical result?" +"There is already a historical calibration result with the same name: %s. " +"Only one of the results with the same name is saved. Are you sure you want " +"to override the historical result?" msgstr "" "Aynı ada sahip geçmiş bir kalibrasyon sonucu zaten var: %s. Aynı ada sahip " "sonuçlardan yalnızca biri kaydedilir. Geçmiş sonucu geçersiz kılmak " @@ -13999,8 +14261,8 @@ msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" -"Bu makine türü püskürtme ucu başına yalnızca %d geçmiş sonucunu tutabilir. Bu " -"sonuç kaydedilmeyecek." +"Bu makine türü püskürtme ucu başına yalnızca %d geçmiş sonucunu tutabilir. " +"Bu sonuç kaydedilmeyecek." msgid "Internal Error" msgstr "İç hata" @@ -14019,10 +14281,10 @@ msgstr "Akış Dinamiği Kalibrasyonuna ne zaman ihtiyacınız olur" msgid "" "We now have added the auto-calibration for different filaments, which is " -"fully automated and the result will be saved into the printer for future use. " -"You only need to do the calibration in the following limited cases:\n" -"1. If you introduce a new filament of different brands/models or the filament " -"is damp;\n" +"fully automated and the result will be saved into the printer for future " +"use. You only need to do the calibration in the following limited cases:\n" +"1. If you introduce a new filament of different brands/models or the " +"filament is damp;\n" "2. if the nozzle is worn out or replaced with a new one;\n" "3. If the max volumetric speed or print temperature is changed in the " "filament setting." @@ -14044,10 +14306,10 @@ msgid "" "\n" "Usually the calibration is unnecessary. When you start a single color/" "material print, with the \"flow dynamics calibration\" option checked in the " -"print start menu, the printer will follow the old way, calibrate the filament " -"before the print; When you start a multi color/material print, the printer " -"will use the default compensation parameter for the filament during every " -"filament switch which will have a good result in most cases.\n" +"print start menu, the printer will follow the old way, calibrate the " +"filament before the print; When you start a multi color/material print, the " +"printer will use the default compensation parameter for the filament during " +"every filament switch which will have a good result in most cases.\n" "\n" "Please note there are a few cases that will make the calibration result not " "reliable: using a texture plate to do the calibration; the build plate does " @@ -14073,9 +14335,9 @@ msgstr "" "plakasının yapışması iyi değil (lütfen baskı plakasını yıkayın veya " "yapıştırıcı uygulayın!) ...Daha fazlasını wiki'mizden bulabilirsiniz.\n" "\n" -"Testimizde kalibrasyon sonuçlarında yaklaşık yüzde 10'luk bir titreşim var ve " -"bu da sonucun her kalibrasyonda tam olarak aynı olmamasına neden olabilir. " -"Yeni güncellemelerle iyileştirmeler yapmak için hâlâ temel nedeni " +"Testimizde kalibrasyon sonuçlarında yaklaşık yüzde 10'luk bir titreşim var " +"ve bu da sonucun her kalibrasyonda tam olarak aynı olmamasına neden " +"olabilir. Yeni güncellemelerle iyileştirmeler yapmak için hâlâ temel nedeni " "araştırıyoruz." msgid "When to use Flow Rate Calibration" @@ -14116,10 +14378,10 @@ msgstr "" msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " "volumes. The default setting works well in Bambu Lab printers and official " -"filaments as they were pre-calibrated and fine-tuned. For a regular filament, " -"you usually won't need to perform a Flow Rate Calibration unless you still " -"see the listed defects after you have done other calibrations. For more " -"details, please check out the wiki article." +"filaments as they were pre-calibrated and fine-tuned. For a regular " +"filament, you usually won't need to perform a Flow Rate Calibration unless " +"you still see the listed defects after you have done other calibrations. For " +"more details, please check out the wiki article." msgstr "" "Akış Hızı Kalibrasyonu, beklenen ekstrüzyon hacimlerinin gerçek ekstrüzyon " "hacimlerine oranını ölçer. Varsayılan ayar, önceden kalibre edilmiş ve ince " @@ -14134,12 +14396,13 @@ msgid "" "directly measuring the calibration patterns. However, please be advised that " "the efficacy and accuracy of this method may be compromised with specific " "types of materials. Particularly, filaments that are transparent or semi-" -"transparent, sparkling-particled, or have a high-reflective finish may not be " -"suitable for this calibration and can produce less-than-desirable results.\n" +"transparent, sparkling-particled, or have a high-reflective finish may not " +"be suitable for this calibration and can produce less-than-desirable " +"results.\n" "\n" -"The calibration results may vary between each calibration or filament. We are " -"still improving the accuracy and compatibility of this calibration through " -"firmware updates over time.\n" +"The calibration results may vary between each calibration or filament. We " +"are still improving the accuracy and compatibility of this calibration " +"through firmware updates over time.\n" "\n" "Caution: Flow Rate Calibration is an advanced process, to be attempted only " "by those who fully understand its purpose and implications. Incorrect usage " @@ -14150,8 +14413,8 @@ msgstr "" "kullanarak kalibrasyon modellerini doğrudan ölçer. Ancak, bu yöntemin " "etkinliğinin ve doğruluğunun belirli malzeme türleriyle tehlikeye " "girebileceğini lütfen unutmayın. Özellikle şeffaf veya yarı şeffaf, parlak " -"parçacıklı veya yüksek yansıtıcı yüzeye sahip filamentler bu kalibrasyon için " -"uygun olmayabilir ve arzu edilenden daha az sonuçlar üretebilir.\n" +"parçacıklı veya yüksek yansıtıcı yüzeye sahip filamentler bu kalibrasyon " +"için uygun olmayabilir ve arzu edilenden daha az sonuçlar üretebilir.\n" "\n" "Kalibrasyon sonuçları her kalibrasyon veya filament arasında farklılık " "gösterebilir. Zaman içinde ürün yazılımı güncellemeleriyle bu kalibrasyonun " @@ -14160,8 +14423,8 @@ msgstr "" "Dikkat: Akış Hızı Kalibrasyonu, yalnızca amacını ve sonuçlarını tam olarak " "anlayan kişiler tarafından denenmesi gereken gelişmiş bir işlemdir. Yanlış " "kullanım, ortalamanın altında baskılara veya yazıcının zarar görmesine neden " -"olabilir. Lütfen işlemi yapmadan önce işlemi dikkatlice okuyup anladığınızdan " -"emin olun." +"olabilir. Lütfen işlemi yapmadan önce işlemi dikkatlice okuyup " +"anladığınızdan emin olun." msgid "When you need Max Volumetric Speed Calibration" msgstr "Maksimum Hacimsel Hız Kalibrasyonuna ihtiyaç duyduğunuzda" @@ -14183,15 +14446,15 @@ msgid "We found the best Flow Dynamics Calibration Factor" msgstr "En iyi Akış Dinamiği Kalibrasyon Faktörünü bulduk" msgid "" -"Part of the calibration failed! You may clean the plate and retry. The failed " -"test result would be dropped." +"Part of the calibration failed! You may clean the plate and retry. The " +"failed test result would be dropped." msgstr "" "Kalibrasyonun bir kısmı başarısız oldu! Plakayı temizleyip tekrar " "deneyebilirsiniz. Başarısız olan test sonucu görmezden gelinir." msgid "" -"*We recommend you to add brand, materia, type, and even humidity level in the " -"Name" +"*We recommend you to add brand, materia, type, and even humidity level in " +"the Name" msgstr "*İsme marka, malzeme, tür ve hatta nem seviyesini eklemenizi öneririz" msgid "Failed" @@ -14212,9 +14475,9 @@ msgstr "" #, c-format, boost-format msgid "" -"There is already a historical calibration result with the same name: %s. Only " -"one of the results with the same name is saved. Are you sure you want to " -"overrides the historical result?" +"There is already a historical calibration result with the same name: %s. " +"Only one of the results with the same name is saved. Are you sure you want " +"to overrides the historical result?" msgstr "" "Aynı ada sahip geçmiş bir kalibrasyon sonucu zaten var: %s. Aynı ada sahip " "sonuçlardan yalnızca biri kaydedilir. Geçmiş sonucu geçersiz kılmak " @@ -14784,8 +15047,8 @@ msgid "" "name. Do you want to continue?" msgstr "" "Oluşturduğunuz %s Filament adı zaten mevcut.\n" -"Oluşturmaya devam ederseniz oluşturulan ön ayar tam adıyla görüntülenecektir. " -"Devam etmek istiyor musun?" +"Oluşturmaya devam ederseniz oluşturulan ön ayar tam adıyla " +"görüntülenecektir. Devam etmek istiyor musun?" msgid "Some existing presets have failed to be created, as follows:\n" msgstr "Aşağıdaki gibi bazı mevcut ön ayarlar oluşturulamadı:\n" @@ -14798,8 +15061,8 @@ msgstr "" "Yeniden yazmak ister misin?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you selected" +"\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri " @@ -14907,15 +15170,15 @@ msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" msgstr "" -"Hangi yazıcı ön ayarının temel alınacağını henüz seçmediniz. Lütfen yazıcının " -"satıcısını ve modelini seçin" +"Hangi yazıcı ön ayarının temel alınacağını henüz seçmediniz. Lütfen " +"yazıcının satıcısını ve modelini seçin" msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." msgstr "" -"İlk sayfadaki yazdırılabilir alan kısmına geçersiz bir giriş yaptınız. Lütfen " -"oluşturmadan önce kontrol edin." +"İlk sayfadaki yazdırılabilir alan kısmına geçersiz bir giriş yaptınız. " +"Lütfen oluşturmadan önce kontrol edin." msgid "The custom printer or model is not inputed, place input." msgstr "Özel yazıcı veya model girilmedi lütfen giriş yapın." @@ -14932,7 +15195,8 @@ msgstr "" "Oluşturduğunuz yazıcı ön ayarının zaten aynı ada sahip bir ön ayarı var. " "Üzerine yazmak istiyor musunuz?\n" "\tEvet: Aynı adı taşıyan yazıcı ön ayarının üzerine yazın; aynı ön ayar adı " -"taşıyan filaman ve proses ön ayarları yeniden oluşturulacak ve aynı ön ayar \n" +"taşıyan filaman ve proses ön ayarları yeniden oluşturulacak ve aynı ön " +"ayar \n" "adı olmayan filament ve işlem ön ayarları rezerve edilecektir.\n" "\tİptal: Ön ayar oluşturmayın, oluşturma arayüzüne dönün." @@ -14978,7 +15242,8 @@ msgstr "" msgid "" "You have not yet selected the printer to replace the nozzle, please choose." -msgstr "Hala nozulu değiştirmek için yazıcı seçmediniz, lütfen bir seçim yapın." +msgstr "" +"Hala nozulu değiştirmek için yazıcı seçmediniz, lütfen bir seçim yapın." msgid "Create Printer Successful" msgstr "Yazıcı Oluşturma Başarılı" @@ -15010,7 +15275,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -15026,9 +15291,6 @@ msgstr "" msgid "Printer Setting" msgstr "Yazıcı Ayarı" -msgid "Export Configs" -msgstr "Yapılandırmaları Dışa Aktar" - msgid "Printer config bundle(.orca_printer)" msgstr "Yazıcı yapılandırma paketi(.orca_printer)" @@ -15064,8 +15326,8 @@ msgstr "Dışa aktarma başarılı" #, c-format, boost-format msgid "" -"The '%s' folder already exists in the current directory. Do you want to clear " -"it and rebuild it.\n" +"The '%s' folder already exists in the current directory. Do you want to " +"clear it and rebuild it.\n" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" @@ -15104,8 +15366,8 @@ msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" -"Yalnızca kullanıcı yazıcı ön ayarlarına sahip yazıcı adları görüntülenecek ve " -"seçtiğiniz her ön ayar zip olarak dışa aktarılacaktır." +"Yalnızca kullanıcı yazıcı ön ayarlarına sahip yazıcı adları görüntülenecek " +"ve seçtiğiniz her ön ayar zip olarak dışa aktarılacaktır." msgid "" "Only the filament names with user filament presets will be displayed, \n" @@ -15113,13 +15375,13 @@ msgid "" "exported as a zip." msgstr "" "Yalnızca kullanıcı filamenti ön ayarlarına sahip filament adları \n" -"görüntülenecek ve seçtiğiniz her filament adındaki tüm kullanıcı filamenti ön " -"ayarları zip olarak dışa aktarılacaktır." +"görüntülenecek ve seçtiğiniz her filament adındaki tüm kullanıcı filamenti " +"ön ayarları zip olarak dışa aktarılacaktır." msgid "" "Only printer names with changed process presets will be displayed, \n" -"and all user process presets in each printer name you select will be exported " -"as a zip." +"and all user process presets in each printer name you select will be " +"exported as a zip." msgstr "" "Yalnızca işlem ön ayarları değiştirilen yazıcı adları görüntülenecek \n" "ve seçtiğiniz her yazıcı adındaki tüm kullanıcı işlem ön ayarları zip olarak " @@ -15143,8 +15405,8 @@ msgid "Filament presets under this filament" msgstr "Bu filamentin altındaki filament ön ayarları" msgid "" -"Note: If the only preset under this filament is deleted, the filament will be " -"deleted after exiting the dialog." +"Note: If the only preset under this filament is deleted, the filament will " +"be deleted after exiting the dialog." msgstr "" "Not: Bu filamentin altındaki tek ön ayar silinirse, diyalogdan çıkıldıktan " "sonra filament silinecektir." @@ -15271,8 +15533,8 @@ msgid "" "On this system, %s uses HTTPS certificates from the system Certificate Store " "or Keychain." msgstr "" -"Bu sistemde %s, sistem Sertifika Deposu veya Anahtar Zincirinden alınan HTTPS " -"sertifikalarını kullanıyor." +"Bu sistemde %s, sistem Sertifika Deposu veya Anahtar Zincirinden alınan " +"HTTPS sertifikalarını kullanıyor." msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " @@ -15422,30 +15684,31 @@ msgstr "" "Hata: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines and " -"high printing quality. It is suitable for most general printing cases." +"It has a small layer height, and results in almost negligible layer lines " +"and high printing quality. It is suitable for most general printing cases." msgstr "" "Küçük bir katman yüksekliğine sahiptir ve neredeyse ihmal edilebilir katman " "çizgileri ve yüksek baskı kalitesi sağlar. Çoğu genel yazdırma durumu için " "uygundur." msgid "" -"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds and " -"acceleration, and the sparse infill pattern is Gyroid. So, it results in much " -"higher printing quality, but a much longer printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " +"much higher printing quality, but a much longer printing time." msgstr "" "0,2 mm’lik nozülün varsayılan profiliyle karşılaştırıldığında daha düşük hız " -"ve ivmeye sahiptir ve seyrek dolgu deseni Gyroid’dir. Böylece çok daha yüksek " -"baskı kalitesi elde edilir, ancak çok daha uzun baskı süresi elde edilir." +"ve ivmeye sahiptir ve seyrek dolgu deseni Gyroid’dir. Böylece çok daha " +"yüksek baskı kalitesi elde edilir, ancak çok daha uzun baskı süresi elde " +"edilir." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" -"0,2 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, biraz " -"daha büyük katman yüksekliğine sahiptir ve neredeyse ihmal edilebilir düzeyde " -"katman çizgileri ve biraz daha kısa yazdırma süresi sağlar." +"0,2 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " +"biraz daha büyük katman yüksekliğine sahiptir ve neredeyse ihmal edilebilir " +"düzeyde katman çizgileri ve biraz daha kısa yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " @@ -15483,8 +15746,8 @@ msgid "" "shorter printing time." msgstr "" "Varsayılan 0,2 mm püskürtme ucu profiliyle karşılaştırıldığında, daha küçük " -"katman yüksekliğine sahiptir ve minimum katman çizgileri ve daha yüksek baskı " -"kalitesi sağlar, ancak daha kısa yazdırma süresi sağlar." +"katman yüksekliğine sahiptir ve minimum katman çizgileri ve daha yüksek " +"baskı kalitesi sağlar, ancak daha kısa yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15535,12 +15798,12 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing quality, " -"but longer printing time." +"height, and results in less apparent layer lines and higher printing " +"quality, but longer printing time." msgstr "" "0,4 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " -"küçük bir katman yüksekliğine sahiptir ve daha az görünür katman çizgileri ve " -"daha yüksek baskı kalitesi sağlar, ancak daha uzun yazdırma süresi sağlar." +"küçük bir katman yüksekliğine sahiptir ve daha az görünür katman çizgileri " +"ve daha yüksek baskı kalitesi sağlar, ancak daha uzun yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15578,7 +15841,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing time." +"height, and results in almost negligible layer lines and longer printing " +"time." msgstr "" "0,4 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " "katman yüksekliği daha küçüktür ve neredeyse göz ardı edilebilecek düzeyde " @@ -15613,8 +15877,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height, and results in much more apparent layer lines and much lower " +"printing quality, but shorter printing time in some printing cases." msgstr "" "0,6 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "büyük bir katman yüksekliğine sahiptir ve çok daha belirgin katman çizgileri " @@ -15633,16 +15897,16 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing quality, " -"but longer printing time." +"height, and results in less apparent layer lines and higher printing " +"quality, but longer printing time." msgstr "" "0,6 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " -"küçük bir katman yüksekliğine sahiptir ve daha az görünür katman çizgileri ve " -"daha yüksek baskı kalitesi sağlar, ancak daha uzun yazdırma süresi sağlar." +"küçük bir katman yüksekliğine sahiptir ve daha az görünür katman çizgileri " +"ve daha yüksek baskı kalitesi sağlar, ancak daha uzun yazdırma süresi sağlar." msgid "" -"It has a very big layer height, and results in very apparent layer lines, low " -"printing quality and general printing time." +"It has a very big layer height, and results in very apparent layer lines, " +"low printing quality and general printing time." msgstr "" "Çok büyük bir katman yüksekliğine sahiptir ve çok belirgin katman " "çizgilerine, düşük baskı kalitesine ve genel yazdırma süresine neden olur." @@ -15654,8 +15918,8 @@ msgid "" msgstr "" "0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "büyük bir katman yüksekliğine sahiptir ve çok belirgin katman çizgileri ve " -"çok daha düşük baskı kalitesiyle sonuçlanır, ancak bazı yazdırma durumlarında " -"daha kısa yazdırma süresi sağlar." +"çok daha düşük baskı kalitesiyle sonuçlanır, ancak bazı yazdırma " +"durumlarında daha kısa yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " @@ -15664,8 +15928,8 @@ msgid "" msgstr "" "0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, çok " "daha büyük bir katman yüksekliğine sahiptir ve son derece belirgin katman " -"çizgileri ve çok daha düşük baskı kalitesiyle sonuçlanır, ancak bazı yazdırma " -"durumlarında çok daha kısa yazdırma süresi sağlar." +"çizgileri ve çok daha düşük baskı kalitesiyle sonuçlanır, ancak bazı " +"yazdırma durumlarında çok daha kısa yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -15673,10 +15937,10 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" -"0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, biraz " -"daha küçük bir katman yüksekliğine sahiptir ve biraz daha az ama yine de " -"görünür katman çizgileri ve biraz daha yüksek baskı kalitesi sağlar, ancak " -"bazı yazdırma durumlarında daha uzun yazdırma süresi sağlar." +"0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " +"biraz daha küçük bir katman yüksekliğine sahiptir ve biraz daha az ama yine " +"de görünür katman çizgileri ve biraz daha yüksek baskı kalitesi sağlar, " +"ancak bazı yazdırma durumlarında daha uzun yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " @@ -15705,11 +15969,11 @@ msgstr "" "SimplyPrint hesabı bağlı değil. Ayarlamak için Bağlantı seçeneklerine gidin." msgid "" -"File size exceeds the 100MB upload limit. Please upload your file through the " -"panel." +"File size exceeds the 100MB upload limit. Please upload your file through " +"the panel." msgstr "" -"Dosya boyutu 100 MB yükleme sınırını aşıyor. Lütfen dosyanızı panel üzerinden " -"yükleyiniz." +"Dosya boyutu 100 MB yükleme sınırını aşıyor. Lütfen dosyanızı panel " +"üzerinden yükleyiniz." msgid "Unknown error" msgstr "Bilinmeyen hata" @@ -15752,7 +16016,8 @@ msgid "" msgstr "" "Sandviç modu\n" "Modelinizde çok dik çıkıntılar yoksa hassasiyeti ve katman tutarlılığını " -"artırmak için sandviç modunu (iç-dış-iç) kullanabileceğinizi biliyor muydunuz?" +"artırmak için sandviç modunu (iç-dış-iç) kullanabileceğinizi biliyor " +"muydunuz?" #: resources/data/hints.ini: [hint:Chamber temperature] msgid "" @@ -15814,14 +16079,14 @@ msgid "" "3D scene operations." msgstr "" "Klavye kısayolları nasıl kullanılır?\n" -"Orca Slicer'ın çok çeşitli klavye kısayolları ve 3B sahne işlemleri sunduğunu " -"biliyor muydunuz?" +"Orca Slicer'ın çok çeşitli klavye kısayolları ve 3B sahne işlemleri " +"sunduğunu biliyor muydunuz?" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" "Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve the " -"surface quality of your overhangs?" +"Did you know that Reverse on odd feature can significantly improve " +"the surface quality of your overhangs?" msgstr "" "Tek sayıyı tersine çevir\n" "Tek sayıyı ters çevir özelliğinin çıkıntılarınızın yüzey kalitesini " @@ -15844,8 +16109,8 @@ msgid "" "problems on the Windows system?" msgstr "" "Modeli Düzelt\n" -"Windows sisteminde birçok dilimleme sorununu önlemek için bozuk bir 3D modeli " -"düzeltebileceğinizi biliyor muydunuz?" +"Windows sisteminde birçok dilimleme sorununu önlemek için bozuk bir 3D " +"modeli düzeltebileceğinizi biliyor muydunuz?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" @@ -15978,9 +16243,9 @@ msgstr "" #: resources/data/hints.ini: [hint:Fine-tuning for flow rate] msgid "" "Fine-tuning for flow rate\n" -"Did you know that flow rate can be fine-tuned for even better-looking prints? " -"Depending on the material, you can improve the overall finish of the printed " -"model by doing some fine-tuning." +"Did you know that flow rate can be fine-tuned for even better-looking " +"prints? Depending on the material, you can improve the overall finish of the " +"printed model by doing some fine-tuning." msgstr "" "Akış hızı için ince ayar\n" "Baskıların daha da iyi görünmesi için akış hızına ince ayar yapılabileceğini " @@ -16014,8 +16279,8 @@ msgstr "" msgid "" "Support painting\n" "Did you know that you can paint the location of your supports? This feature " -"makes it easy to place the support material only on the sections of the model " -"that actually need it." +"makes it easy to place the support material only on the sections of the " +"model that actually need it." msgstr "" "Destek boyama\n" "Desteklerinizin yerini boyayabileceğinizi biliyor muydunuz? Bu özellik, " @@ -16120,6 +16385,45 @@ msgstr "" "sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını " "azaltabileceğini biliyor muydunuz?" +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer, Prusa Research'ün PrusaSlicer'ından Bambulab'ın " +#~ "BambuStudio'sunu temel alıyor. PrusaSlicer, Alessandro Ranellucci ve " +#~ "RepRap topluluğu tarafından hazırlanan Slic3r'dendir" + +#~ msgid "Export &Configs" +#~ msgstr "Yapılandırmaları Dışa Aktar" + +#~ msgid "" +#~ "Over 4 systems/handy are using remote access, you can close some and try " +#~ "again." +#~ msgstr "" +#~ "4’ten fazla sistem/kullanışlı uzaktan erişimi kullanıyor, bazılarını " +#~ "kapatıp tekrar deneyebilirsiniz." + +#~ msgid "Infill direction" +#~ msgstr "Dolgu açısı" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "G2 ve G3 hareketlerine sahip bir G kodu dosyası elde etmek için bunu " +#~ "etkinleştirin. Ve montaj toleransı çözünürlükle aynıdır" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "Daha iyi yapışma için dolgu alanı duvarla örtüşecek şekilde hafifçe " +#~ "genişletilir. Yüzde değeri seyrek dolgunun çizgi genişliğine göredir" + +#~ msgid "Export Configs" +#~ msgstr "Yapılandırmaları Dışa Aktar" + #~ msgid "Actions For Unsaved Changes" #~ msgstr "Kaydedilmemiş Değişikliklere İlişkin İşlemler" @@ -16155,15 +16459,16 @@ msgstr "" #~ "değer) korumak ister misiniz?" #~ msgid "" -#~ "You have previously modified your settings and are about to overwrite them " -#~ "with new ones." +#~ "You have previously modified your settings and are about to overwrite " +#~ "them with new ones." #~ msgstr "" -#~ "Ayarlarınızı daha önce değiştirdiniz ve bunların üzerine yenilerini yazmak " -#~ "üzeresiniz." +#~ "Ayarlarınızı daha önce değiştirdiniz ve bunların üzerine yenilerini " +#~ "yazmak üzeresiniz." #~ msgid "" #~ "\n" -#~ "Do you want to keep your current modified settings, or use preset settings?" +#~ "Do you want to keep your current modified settings, or use preset " +#~ "settings?" #~ msgstr "" #~ "\n" #~ "Geçerli değiştirilen ayarlarınızı korumak mı yoksa önceden ayarlanmış " @@ -16183,8 +16488,8 @@ msgstr "" #~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " #~ "automatically load or unload filiament." #~ msgstr "" -#~ "Filamenti otomatik olarak yüklemek veya çıkarmak için bir AMS yuvası seçin " -#~ "ve ardından \"Yükle\" veya \"Boşalt\" düğmesine basın." +#~ "Filamenti otomatik olarak yüklemek veya çıkarmak için bir AMS yuvası " +#~ "seçin ve ardından \"Yükle\" veya \"Boşalt\" düğmesine basın." #~ msgid "MC" #~ msgstr "MC" @@ -16201,13 +16506,6 @@ msgstr "" #~ msgid "HMS" #~ msgstr "HMS" -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "" -#~ "Orca Slicer'ya aktarma başarısız oldu. Lütfen dosyayı indirin ve manuel " -#~ "olarak İçe aktarın." - #~ msgid "- ℃" #~ msgstr "- °C" @@ -16231,8 +16529,8 @@ msgstr "" #~ "The 3mf file version is in Beta and it is newer than the current Bambu " #~ "Studio version." #~ msgstr "" -#~ "3mf dosya sürümü Beta aşamasındadır ve mevcut Bambu Studio sürümünden daha " -#~ "yenidir." +#~ "3mf dosya sürümü Beta aşamasındadır ve mevcut Bambu Studio sürümünden " +#~ "daha yenidir." #~ msgid "If you would like to try Bambu Studio Beta, you may click to" #~ msgstr "Bambu Studio Beta’yı denemek isterseniz tıklayabilirsiniz." @@ -16259,9 +16557,9 @@ msgstr "" #~ "Green means that AMS humidity is normal, orange represent humidity is " #~ "high, red represent humidity is too high.(Hygrometer: lower the better.)" #~ msgstr "" -#~ "Yeşil, AMS neminin normal olduğunu, turuncu nemin yüksek olduğunu, kırmızı " -#~ "ise nemin çok yüksek olduğunu gösterir.(Higrometre: ne kadar düşükse o " -#~ "kadar iyidir.)" +#~ "Yeşil, AMS neminin normal olduğunu, turuncu nemin yüksek olduğunu, " +#~ "kırmızı ise nemin çok yüksek olduğunu gösterir.(Higrometre: ne kadar " +#~ "düşükse o kadar iyidir.)" #~ msgid "Desiccant status" #~ msgstr "Kurutucu durumu" @@ -16271,14 +16569,14 @@ msgstr "" #~ "inactive. Please change the desiccant.(The bars: higher the better.)" #~ msgstr "" #~ "İki çubuktan daha düşük bir kurutucu durumu, kurutucunun etkin olmadığını " -#~ "gösterir. Lütfen kurutucuyu değiştirin.(Çubuklar: ne kadar yüksek olursa o " -#~ "kadar iyidir.)" +#~ "gösterir. Lütfen kurutucuyu değiştirin.(Çubuklar: ne kadar yüksek olursa " +#~ "o kadar iyidir.)" #~ msgid "" #~ "Note: When the lid is open or the desiccant pack is changed, it can take " #~ "hours or a night to absorb the moisture. Low temperatures also slow down " -#~ "the process. During this time, the indicator may not represent the chamber " -#~ "accurately." +#~ "the process. During this time, the indicator may not represent the " +#~ "chamber accurately." #~ msgstr "" #~ "Not: Kapak açıkken veya kurutucu paketi değiştirildiğinde, nemin emilmesi " #~ "saatler veya bir gece sürebilir. Düşük sıcaklıklar da süreci yavaşlatır. " @@ -16376,14 +16674,14 @@ msgstr "" #~ msgid "" #~ "Please go to filament setting to edit your presets if you need.\n" #~ "Please note that nozzle temperature, hot bed temperature, and maximum " -#~ "volumetric speed have a significant impact on printing quality. Please set " -#~ "them carefully." +#~ "volumetric speed have a significant impact on printing quality. Please " +#~ "set them carefully." #~ msgstr "" -#~ "İhtiyacınız olursa ön ayarlarınızı düzenlemek için lütfen filament ayarına " -#~ "gidin.\n" +#~ "İhtiyacınız olursa ön ayarlarınızı düzenlemek için lütfen filament " +#~ "ayarına gidin.\n" #~ "Lütfen püskürtme ucu sıcaklığının, sıcak yatak sıcaklığının ve maksimum " -#~ "hacimsel hızın yazdırma kalitesi üzerinde önemli bir etkiye sahip olduğunu " -#~ "unutmayın. Lütfen bunları dikkatlice ayarlayın." +#~ "hacimsel hızın yazdırma kalitesi üzerinde önemli bir etkiye sahip " +#~ "olduğunu unutmayın. Lütfen bunları dikkatlice ayarlayın." #~ msgid "Studio Version:" #~ msgstr "Stüdyo Sürümü:" @@ -16428,8 +16726,8 @@ msgstr "" #~ msgstr "Depolama Yüklemesini Test Etme" #~ msgid "" -#~ "The speed setting exceeds the printer's maximum speed (machine_max_speed_x/" -#~ "machine_max_speed_y).\n" +#~ "The speed setting exceeds the printer's maximum speed " +#~ "(machine_max_speed_x/machine_max_speed_y).\n" #~ "Orca will automatically cap the print speed to ensure it doesn't surpass " #~ "the printer's capabilities.\n" #~ "You can adjust the maximum speed setting in your printer's configuration " @@ -16437,8 +16735,8 @@ msgstr "" #~ msgstr "" #~ "Hız ayarı yazıcının maksimum hızını aşıyor (machine_max_speed_x/" #~ "machine_max_speed_y).\n" -#~ "Orca, yazıcının yeteneklerini aşmadığından emin olmak için yazdırma hızını " -#~ "otomatik olarak sınırlayacaktır.\n" +#~ "Orca, yazıcının yeteneklerini aşmadığından emin olmak için yazdırma " +#~ "hızını otomatik olarak sınırlayacaktır.\n" #~ "Daha yüksek hızlar elde etmek için yazıcınızın yapılandırmasındaki " #~ "maksimum hız ayarını yapabilirsiniz." @@ -16464,8 +16762,8 @@ msgstr "" #~ "Add solid infill near sloping surfaces to guarantee the vertical shell " #~ "thickness (top+bottom solid layers)" #~ msgstr "" -#~ "Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına katı " -#~ "dolgu ekleyin (üst + alt katı katmanlar)" +#~ "Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına " +#~ "katı dolgu ekleyin (üst + alt katı katmanlar)" #~ msgid "Further reduce solid infill on walls (beta)" #~ msgstr "Duvarlardaki katı dolguyu daha da azaltın (deneysel)" @@ -16519,19 +16817,19 @@ msgstr "" #~ "are not specified explicitly." #~ msgstr "" #~ "Daha iyi katman soğutması için yavaşlama etkinleştirildiğinde, yazdırma " -#~ "çıkıntıları olduğunda ve özellik hızları açıkça belirtilmediğinde filament " -#~ "için minimum yazdırma hızı." +#~ "çıkıntıları olduğunda ve özellik hızları açıkça belirtilmediğinde " +#~ "filament için minimum yazdırma hızı." #~ msgid "No sparse layers (EXPERIMENTAL)" #~ msgstr "Seyrek katman yok (DENEYSEL)" #~ msgid "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" +#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" +#~ "\". \n" #~ "To add preset for more prinetrs, Please go to printer selection" #~ msgstr "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" +#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" +#~ "\". \n" #~ "To add preset for more prinetrs, Please go to printer selection" #~ msgid "The Config can not be loaded." @@ -16546,8 +16844,8 @@ msgstr "" #~ msgstr "wiki" #~ msgid "" -#~ "Relative extrusion is recommended when using \"label_objects\" option.Some " -#~ "extruders work better with this option unckecked (absolute extrusion " +#~ "Relative extrusion is recommended when using \"label_objects\" option." +#~ "Some extruders work better with this option unckecked (absolute extrusion " #~ "mode). Wipe tower is only compatible with relative mode. It is always " #~ "enabled on BambuLab printers. Default is checked" #~ msgstr "" @@ -16677,8 +16975,8 @@ msgstr "" #~ "Bir Parçayı Çıkar\n" #~ "Negatif parça değiştiriciyi kullanarak bir ağı diğerinden " #~ "çıkarabileceğinizi biliyor muydunuz? Bu şekilde örneğin doğrudan Orca " -#~ "Slicer'da kolayca yeniden boyutlandırılabilen delikler oluşturabilirsiniz. " -#~ "Daha fazlasını belgelerde okuyun." +#~ "Slicer'da kolayca yeniden boyutlandırılabilen delikler " +#~ "oluşturabilirsiniz. Daha fazlasını belgelerde okuyun." #~ msgid "Filling bed " #~ msgstr "Yatak doldurma " @@ -16694,7 +16992,8 @@ msgstr "" #~ msgstr "" #~ "Doğrusal desene geçilsin mi?\n" #~ "Evet - otomatik olarak doğrusal desene geçin\n" -#~ "Hayır - yoğunluğu otomatik olarak %100 olmayan varsayılan değere sıfırlayın" +#~ "Hayır - yoğunluğu otomatik olarak %100 olmayan varsayılan değere " +#~ "sıfırlayın" #~ msgid "Please heat the nozzle to above 170 degree before loading filament." #~ msgstr "" @@ -16935,8 +17234,8 @@ msgstr "" #~ "load uptodate process/machine settings from the specified file when using " #~ "uptodate" #~ msgstr "" -#~ "güncellemeyi kullanırken belirtilen dosyadan güncel işlem/yazıcıayarlarını " -#~ "yükle" +#~ "güncellemeyi kullanırken belirtilen dosyadan güncel işlem/" +#~ "yazıcıayarlarını yükle" #~ msgid "Output directory" #~ msgstr "Çıkış dizini" @@ -16983,8 +17282,8 @@ msgstr "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " #~ "parsed.Please delete the file and try again." #~ msgstr "" -#~ "OrcaSlicer yapılandırma dosyası bozulmuş olabilir ve ayrıştırılması mümkün " -#~ "olmayabilir. Lütfen dosyayı silin ve tekrar deneyin." +#~ "OrcaSlicer yapılandırma dosyası bozulmuş olabilir ve ayrıştırılması " +#~ "mümkün olmayabilir. Lütfen dosyayı silin ve tekrar deneyin." #~ msgid "Online Models" #~ msgstr "Çevrimiçi Modeller" @@ -16998,8 +17297,8 @@ msgstr "" #~ msgid "" #~ "There are currently no identical spare consumables available, and " #~ "automatic replenishment is currently not possible. \n" -#~ "(Currently supporting automatic supply of consumables with the same brand, " -#~ "material type, and color)" +#~ "(Currently supporting automatic supply of consumables with the same " +#~ "brand, material type, and color)" #~ msgstr "" #~ "Şu anda aynı yedek sarf malzemesi mevcut değildir ve otomatik yenileme şu " #~ "anda mümkün değildir.\n" @@ -17031,7 +17330,8 @@ msgstr "" #~ "daha sıcak olamaz" #~ msgid "Enable this option if machine has auxiliary part cooling fan" -#~ msgstr "Makinede yardımcı parça soğutma fanı varsa bu seçeneği etkinleştirin" +#~ msgstr "" +#~ "Makinede yardımcı parça soğutma fanı varsa bu seçeneği etkinleştirin" #~ msgid "" #~ "This option is enabled if machine support controlling chamber temperature" @@ -17059,7 +17359,8 @@ msgstr "" #~ "katmanları etkilemez" #~ msgid "Empty layers around bottom are replaced by nearest normal layers." -#~ msgstr "Alt kısımdaki boş katmanların yerini en yakın normal katmanlar alır." +#~ msgstr "" +#~ "Alt kısımdaki boş katmanların yerini en yakın normal katmanlar alır." #~ msgid "The model has too many empty layers." #~ msgstr "Modelde çok fazla boş katman var." @@ -17077,8 +17378,9 @@ msgstr "" #~ "Bed temperature when high temperature plate is installed. Value 0 means " #~ "the filament does not support to print on the High Temp Plate" #~ msgstr "" -#~ "Yüksek sıcaklık plakası takıldığında yatak sıcaklığı. 0 değeri, filamentin " -#~ "Yüksek Sıcaklık Plakasına yazdırmayı desteklemediği anlamına gelir" +#~ "Yüksek sıcaklık plakası takıldığında yatak sıcaklığı. 0 değeri, " +#~ "filamentin Yüksek Sıcaklık Plakasına yazdırmayı desteklemediği anlamına " +#~ "gelir" #~ msgid "" #~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" @@ -17098,7 +17400,8 @@ msgstr "" #~ msgstr "" #~ "Desteğin stili ve şekli. Normal destek için, desteklerin düzenli bir " #~ "ızgaraya yansıtılması daha sağlam destekler oluşturur (varsayılan), rahat " -#~ "destek kuleleri ise malzemeden tasarruf sağlar ve nesne izlerini azaltır.\n" +#~ "destek kuleleri ise malzemeden tasarruf sağlar ve nesne izlerini " +#~ "azaltır.\n" #~ "Ağaç desteği için, ince stil, dalları daha agresif bir şekilde " #~ "birleştirecek ve çok fazla malzeme tasarrufu sağlayacak (varsayılan), " #~ "hibrit stil ise büyük düz çıkıntılar altında normal desteğe benzer yapı " diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index 4e60a4526c..83dd2df5f8 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: 2023-08-10 20:25-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -1853,6 +1853,9 @@ msgstr "Додати примітив" msgid "Add Handy models" msgstr "" +msgid "Add Models" +msgstr "Додати моделі" + msgid "Show Labels" msgstr "Показати ярлики" @@ -2353,7 +2356,7 @@ msgstr "Не вдалося підключитися до принтера" msgid "Connection to printer failed" msgstr "" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "" msgid "Connecting..." @@ -2701,15 +2704,8 @@ msgstr "Orca Slicer знаходиться під ліцензією " msgid "GNU Affero General Public License, version 3" msgstr "Стандартна громадська ліцензія GNU Affero, версія 3" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer заснований на BambuStudio від Bambulab, який належить " -"PrusaSlicer.\n" -"Prusa Research. PrusaSlicer від Slic3r Алессандро Ранеллуччі і\n" -"спільнота RepRap" msgid "Libraries" msgstr "Бібліотеки" @@ -3201,6 +3197,210 @@ msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "" "Планування завантаження в `%1%`. Див. вікно -> Черга завантаження вузла друку" +msgid "Device" +msgstr "Пристрій" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "Не в мережі" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "Вигляд" + +msgid "N/A" +msgstr "Н/Д" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "Додати" + +msgid "Idle" +msgstr "Холостий хід" + +msgid "Printing" +msgstr "Друк" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "Підготувати" + +msgid "Slicing" +msgstr "Нарізка" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "Продовжити" + +msgid "Stop" +msgstr "Стоп" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "Завантаження..." + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "Підготовка завдання друку" + +msgid "Abnormal print file data. Please slice again" +msgstr "Неправильні дані файлу друку. Будь ласка, наріжте знову" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "Надіслати" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "Ім'я недійсне;" + +msgid "illegal characters:" +msgstr "неприпустимі символи:" + +msgid "illegal suffix:" +msgstr "неприпустимий суфікс:" + +msgid "The name is not allowed to be empty." +msgstr "Ім'я не може бути порожнім." + +msgid "The name is not allowed to start with space character." +msgstr "Ім'я не може починатися з пробілу." + +msgid "The name is not allowed to end with space character." +msgstr "Ім'я не може закінчуватися пробілом." + +msgid "The name length exceeds the limit." +msgstr "" + msgid "Origin" msgstr "Джерело" @@ -3696,9 +3896,6 @@ msgstr "Налаштування принтера" msgid "parameter name" msgstr "ім'я параметра" -msgid "N/A" -msgstr "Н/Д" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s не може бути відсотком" @@ -4016,9 +4213,6 @@ msgstr "Уникайте області калібрування екструз msgid "Align to Y axis" msgstr "" -msgid "Add" -msgstr "Додати" - msgid "Add plate" msgstr "Додати плату" @@ -4205,15 +4399,9 @@ msgstr "Закриття програми під чвс зміни деяких msgid "Logging" msgstr "Ведення журналу" -msgid "Prepare" -msgstr "Підготувати" - msgid "Preview" msgstr "Попередній перегляд" -msgid "Device" -msgstr "Пристрій" - msgid "Multi-device" msgstr "" @@ -4241,9 +4429,6 @@ msgstr "Нарізати все" msgid "Export G-code file" msgstr "Експорт файлу G-коду" -msgid "Send" -msgstr "Надіслати" - msgid "Export plate sliced file" msgstr "Експорт файлу зрізів планшета" @@ -4256,9 +4441,6 @@ msgstr "Роздрукувати все" msgid "Send all" msgstr "Надіслати все" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "Гарячі клавіші" @@ -4400,8 +4582,8 @@ msgstr "Експорт G-коду" msgid "Export current plate as G-code" msgstr "Експортувати поточну пластину як G-код" -msgid "Export &Configs" -msgstr "Експорт &конфігурації" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "Експорт поточної конфігурації до файлів" @@ -4502,9 +4684,6 @@ msgstr "" msgid "Preferences" msgstr "Налаштування" -msgid "View" -msgstr "Вигляд" - msgid "Help" msgstr "Допомога" @@ -4571,10 +4750,10 @@ msgstr "Експорт траєкторій як OBJ" msgid "Export toolpaths as OBJ" msgstr "Експортувати траєкторії як OBJ" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "Відкрити &студію" -msgid "Open Studio" +msgid "Open Slicer" msgstr "Відкрита студія" msgid "&Quit" @@ -4762,9 +4941,6 @@ msgstr "Інформація" msgid "Playing..." msgstr "Гра..." -msgid "Loading..." -msgstr "Завантаження..." - msgid "Year" msgstr "Рік" @@ -4919,11 +5095,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -4982,12 +5153,6 @@ msgstr "" msgid "Printing Progress" msgstr "Хід друку" -msgid "Resume" -msgstr "Продовжити" - -msgid "Stop" -msgstr "Стоп" - msgid "0" msgstr "0" @@ -5726,6 +5891,9 @@ msgstr "Ім'я компонентів всередині крокового ф msgid "The name may show garbage characters!" msgstr "Ім'я може містити символи для сміття!" +msgid "Remember my choice." +msgstr "Запам'ятай мій вибір." + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "" @@ -5852,9 +6020,6 @@ msgstr "" msgid "Error during reload" msgstr "" -msgid "Slicing" -msgstr "Нарізка" - msgid "There are warnings after slicing models:" msgstr "Є попередження після нарізки моделей:" @@ -5929,7 +6094,7 @@ msgid "Project downloaded %d%%" msgstr "Проект завантажено %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" @@ -5969,9 +6134,6 @@ msgstr "Файли G-коду не можна завантажувати раз msgid "Can not add models when in preview mode!" msgstr "Неможливо додати моделі у режимі попереднього перегляду!" -msgid "Add Models" -msgstr "Додати моделі" - msgid "All objects will be removed, continue?" msgstr "Усі об'єкти будуть видалені, продовжити?" @@ -5979,9 +6141,6 @@ msgid "The current project has unsaved changes, save it before continue?" msgstr "" "У поточному проекті є незбережені зміни, зберегти їх, перш ніжпродовжити?" -msgid "Remember my choice." -msgstr "Запам'ятай мій вибір." - msgid "Number of copies:" msgstr "Кількість копій:" @@ -6184,6 +6343,11 @@ msgstr "Регіон входу" msgid "Stealth Mode" msgstr "" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "" @@ -6289,7 +6453,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6514,9 +6678,6 @@ msgstr "" msgid "Create printer" msgstr "" -msgid "Incompatible" -msgstr "" - msgid "The selected preset is null!" msgstr "" @@ -6612,15 +6773,6 @@ msgstr "Установка користувача" msgid "Preset Inside Project" msgstr "Налаштування проекту всередині" -msgid "Name is invalid;" -msgstr "Ім'я недійсне;" - -msgid "illegal characters:" -msgstr "неприпустимі символи:" - -msgid "illegal suffix:" -msgstr "неприпустимий суфікс:" - msgid "Name is unavailable." msgstr "Ім'я недоступне." @@ -6638,15 +6790,6 @@ msgstr "Предустановка \\%1%\\ вже існує і несумісн msgid "Please note that saving action will replace this preset" msgstr "Зверніть увагу, що дія збереження замінить цей пресет" -msgid "The name is not allowed to be empty." -msgstr "Ім'я не може бути порожнім." - -msgid "The name is not allowed to start with space character." -msgstr "Ім'я не може починатися з пробілу." - -msgid "The name is not allowed to end with space character." -msgstr "Ім'я не може закінчуватися пробілом." - msgid "The name cannot be the same as a preset alias name." msgstr "Ім'я не може збігатися з встановленим псевдонімом." @@ -6704,9 +6847,6 @@ msgstr "Не можу знайти пристрої?" msgid "Log out successful." msgstr "Вийти успішно." -msgid "Offline" -msgstr "Не в мережі" - msgid "Busy" msgstr "Зайнятий" @@ -6914,15 +7054,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" -msgid "Preparing print job" -msgstr "Підготовка завдання друку" - -msgid "Abnormal print file data. Please slice again" -msgstr "Неправильні дані файлу друку. Будь ласка, наріжте знову" - -msgid "The name length exceeds the limit." -msgstr "" - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7274,6 +7405,9 @@ msgstr "Філамент підтримки" msgid "Tree supports" msgstr "" +msgid "Skirt" +msgstr "" + msgid "Prime tower" msgstr "Вежа Очищення" @@ -8161,6 +8295,12 @@ msgstr "Переміщення повзунка в 5 разів швидше" msgid "Shift+Mouse wheel" msgstr "Shift+колесо миші" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "Примітка до випуску" @@ -8280,12 +8420,6 @@ msgstr "Версія:" msgid "Update firmware" msgstr "Оновити прошивку" -msgid "Printing" -msgstr "Друк" - -msgid "Idle" -msgstr "Холостий хід" - msgid "Beta version" msgstr "" @@ -8320,7 +8454,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "Версія прошивки незвичайна. Потрібно виправити та оновити перед друком. Ви " "хочете оновити зараз? Ви також можете оновити пізніше на принтері або " @@ -8461,9 +8595,6 @@ msgstr "" msgid "Gap infill" msgstr "Заповнення пропусків" -msgid "Skirt" -msgstr "" - msgid "Support interface" msgstr "Інтерфейс підтримки" @@ -10192,8 +10323,8 @@ msgstr "" msgid "(Undefined)" msgstr "(Невизначений)" -msgid "Infill direction" -msgstr "Напрям заповнення" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10202,6 +10333,20 @@ msgstr "" "Angle for sparse infill pattern, which controls the start or main direction " "of line" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "Щільність заповнення" @@ -10548,11 +10693,15 @@ msgid "Arc fitting" msgstr "Дуговий фітинг" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"Увімкніть цей параметр, щоб отримати файл G-коду з переміщеннями G2 та G3. А " -"допуск припасування однаковим дозволом" msgid "Add line number" msgstr "Додати номер рядка" @@ -10773,12 +10922,25 @@ msgstr "" msgid "Infill/Wall overlap" msgstr "Заповнення/перекриття периметрів" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"Область заповнення трохи збільшена для перекриття периметром для " -"кращогоскріплення. Відсоткове значення щодо ширини лінії заповнення" msgid "Speed of internal sparse infill" msgstr "Швидкість внутрішнього заповнення" @@ -11714,6 +11876,23 @@ msgstr "Шари спідниці" msgid "How many layers of skirt. Usually only one layer" msgstr "Скільки шарів спідниці. Зазвичай лише один шар" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Спідниця навколо моделі" @@ -11728,6 +11907,17 @@ msgstr "" "Швидкість спідниці, у мм/с. Нуль означає використання стандартної швидкості " "екструзії шару." +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -12416,6 +12606,19 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "" @@ -14119,7 +14322,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -14128,9 +14331,6 @@ msgstr "" msgid "Printer Setting" msgstr "" -msgid "Export Configs" -msgstr "" - msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -15022,6 +15222,36 @@ msgid "" "probability of warping." msgstr "" +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer заснований на BambuStudio від Bambulab, який належить " +#~ "PrusaSlicer.\n" +#~ "Prusa Research. PrusaSlicer від Slic3r Алессандро Ранеллуччі і\n" +#~ "спільнота RepRap" + +#~ msgid "Export &Configs" +#~ msgstr "Експорт &конфігурації" + +#~ msgid "Infill direction" +#~ msgstr "Напрям заповнення" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "Увімкніть цей параметр, щоб отримати файл G-коду з переміщеннями G2 та " +#~ "G3. А допуск припасування однаковим дозволом" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "Область заповнення трохи збільшена для перекриття периметром для " +#~ "кращогоскріплення. Відсоткове значення щодо ширини лінії заповнення" + #~ msgid "Unload Filament" #~ msgstr "Вивантажте філамент" diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index 64e4251179..5bbe0a4743 100644 --- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po +++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Slic3rPE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: 2023-04-01 13:21+0800\n" "Last-Translator: SoftFever \n" "Language-Team: \n" @@ -1836,6 +1836,9 @@ msgstr "添加标准模型" msgid "Add Handy models" msgstr "添加实用模型" +msgid "Add Models" +msgstr "添加模型" + msgid "Show Labels" msgstr "显示标签" @@ -2309,7 +2312,7 @@ msgstr "无法连接打印机" msgid "Connection to printer failed" msgstr "连接打印机失败" -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "请检查打印机和工作室的网络连接" msgid "Connecting..." @@ -2642,10 +2645,7 @@ msgstr "逆戟鲸是在" msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero 通用公共许可证,版本 3下授权的" -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" msgid "Libraries" @@ -3104,6 +3104,210 @@ msgstr "将临时 G 代码复制到输出 G 代码失败" msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "计划上传到 `%1%`。请参阅窗口-> 打印主机上传队列" +msgid "Device" +msgstr "设备" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "离线" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "视图" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "添加" + +msgid "Idle" +msgstr "空闲" + +msgid "Printing" +msgstr "打印中" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "不兼容的预设" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "准备" + +msgid "Slicing" +msgstr "正在切片" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "继续" + +msgid "Stop" +msgstr "停止" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "正在加载视频……" + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "正在准备打印任务" + +msgid "Abnormal print file data. Please slice again" +msgstr "打印文件数据异常,请重新切片" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "发送" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "无效名称;" + +msgid "illegal characters:" +msgstr "非法字符:" + +msgid "illegal suffix:" +msgstr "非法后缀:" + +msgid "The name is not allowed to be empty." +msgstr "名称不允许为空。" + +msgid "The name is not allowed to start with space character." +msgstr "名称不允许以空格开头。" + +msgid "The name is not allowed to end with space character." +msgstr "名称不允许以空格结尾。" + +msgid "The name length exceeds the limit." +msgstr "名称长度超过限制。" + msgid "Origin" msgstr "原点" @@ -3593,9 +3797,6 @@ msgstr "打印机设置" msgid "parameter name" msgstr "参数名称" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s 不可以是百分比" @@ -3914,9 +4115,6 @@ msgstr "避开挤出标定区域" msgid "Align to Y axis" msgstr "对齐到Y轴" -msgid "Add" -msgstr "添加" - msgid "Add plate" msgstr "添加新盘" @@ -4101,15 +4299,9 @@ msgstr "正在关闭应用程序,部分预设已修改。" msgid "Logging" msgstr "日志" -msgid "Prepare" -msgstr "准备" - msgid "Preview" msgstr "预览" -msgid "Device" -msgstr "设备" - msgid "Multi-device" msgstr "" @@ -4137,9 +4329,6 @@ msgstr "切片所有盘" msgid "Export G-code file" msgstr "导出G-code文件" -msgid "Send" -msgstr "发送" - msgid "Export plate sliced file" msgstr "导出单盘切片文件" @@ -4152,9 +4341,6 @@ msgstr "打印所有盘" msgid "Send all" msgstr "发送所有盘" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "快捷键" @@ -4296,8 +4482,8 @@ msgstr "导出 G-code" msgid "Export current plate as G-code" msgstr "导出当前盘的G-code" -msgid "Export &Configs" -msgstr "导出预设" +msgid "Export Preset Bundle" +msgstr "" msgid "Export current configuration to files" msgstr "导出当前选择的预设" @@ -4398,9 +4584,6 @@ msgstr "在3D场景中显示悬空高亮" msgid "Preferences" msgstr "偏好设置" -msgid "View" -msgstr "视图" - msgid "Help" msgstr "帮助" @@ -4468,10 +4651,10 @@ msgstr "将工具路径导出为OBJ格式" msgid "Export toolpaths as OBJ" msgstr "将工具路径导出为OBJ格式" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "打开 Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "打开 Studio" msgid "&Quit" @@ -4641,9 +4824,6 @@ msgstr "信息" msgid "Playing..." msgstr "正在播放中……" -msgid "Loading..." -msgstr "正在加载视频……" - msgid "Year" msgstr "年" @@ -4798,11 +4978,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -4861,12 +5036,6 @@ msgstr "反转纵轴,横滚轴" msgid "Printing Progress" msgstr "打印进度" -msgid "Resume" -msgstr "继续" - -msgid "Stop" -msgstr "停止" - msgid "0" msgstr "" @@ -5589,6 +5758,9 @@ msgstr "step 文件中的部件名称包含非UTF8格式的字符!" msgid "The name may show garbage characters!" msgstr "此名称可能显示乱码字符!" +msgid "Remember my choice." +msgstr "记住我的选择。" + #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "加载文件“%1%”失败。发现无效配置。" @@ -5711,9 +5883,6 @@ msgstr "无法重新加载:" msgid "Error during reload" msgstr "重新加载时发生错误" -msgid "Slicing" -msgstr "正在切片" - msgid "There are warnings after slicing models:" msgstr "模型切片警告:" @@ -5782,7 +5951,7 @@ msgid "Project downloaded %d%%" msgstr "项目已下载%d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" @@ -5822,18 +5991,12 @@ msgstr "G-code文件不能和模型一起加载" msgid "Can not add models when in preview mode!" msgstr "在预览模式不允许添加模型" -msgid "Add Models" -msgstr "添加模型" - msgid "All objects will be removed, continue?" msgstr "即将删除所有对象,是否继续?" msgid "The current project has unsaved changes, save it before continue?" msgstr "当前项目包含未保存的修改,是否先保存?" -msgid "Remember my choice." -msgstr "记住我的选择。" - msgid "Number of copies:" msgstr "克隆数量:" @@ -6030,6 +6193,11 @@ msgstr "登录区域" msgid "Stealth Mode" msgstr "局域网模式" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "启用网络插件" @@ -6134,7 +6302,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6350,9 +6518,6 @@ msgstr "选择/移除打印机(系统预设)" msgid "Create printer" msgstr "创建打印机" -msgid "Incompatible" -msgstr "不兼容的预设" - msgid "The selected preset is null!" msgstr "选择的预设为空!" @@ -6447,15 +6612,6 @@ msgstr "用户预设" msgid "Preset Inside Project" msgstr "项目预设" -msgid "Name is invalid;" -msgstr "无效名称;" - -msgid "illegal characters:" -msgstr "非法字符:" - -msgid "illegal suffix:" -msgstr "非法后缀:" - msgid "Name is unavailable." msgstr "名称不可用。" @@ -6473,15 +6629,6 @@ msgstr "预设“%1%”已存在,并且和当前打印机不兼容。" msgid "Please note that saving action will replace this preset" msgstr "请注意这个预设会在保存过程中被替换" -msgid "The name is not allowed to be empty." -msgstr "名称不允许为空。" - -msgid "The name is not allowed to start with space character." -msgstr "名称不允许以空格开头。" - -msgid "The name is not allowed to end with space character." -msgstr "名称不允许以空格结尾。" - msgid "The name cannot be the same as a preset alias name." msgstr "名称不能和一个预设的别名相同。" @@ -6539,9 +6686,6 @@ msgstr "无法找到我的设备?" msgid "Log out successful." msgstr "登出成功。" -msgid "Offline" -msgstr "离线" - msgid "Busy" msgstr "忙碌" @@ -6735,15 +6879,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "正在连接打印机。连接过程中无法取消。" -msgid "Preparing print job" -msgstr "正在准备打印任务" - -msgid "Abnormal print file data. Please slice again" -msgstr "打印文件数据异常,请重新切片" - -msgid "The name length exceeds the limit." -msgstr "名称长度超过限制。" - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7093,6 +7228,9 @@ msgstr "支撑耗材" msgid "Tree supports" msgstr "树状支撑" +msgid "Skirt" +msgstr "裙边" + msgid "Prime tower" msgstr "擦拭塔" @@ -7961,6 +8099,12 @@ msgstr "5倍速移动滑动条" msgid "Shift+Mouse wheel" msgstr "Shift+鼠标滚轮" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "更新说明" @@ -8079,12 +8223,6 @@ msgstr "版本:" msgid "Update firmware" msgstr "更新固件" -msgid "Printing" -msgstr "打印中" - -msgid "Idle" -msgstr "空闲" - msgid "Beta version" msgstr "" @@ -8116,7 +8254,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "当前固件版本异常,需要进行修复升级,否则无法继续打印。你想现在就开始升级吗?" "你也可以稍后在打印机上升级,或者下一次启动studio再升级。" @@ -8250,9 +8388,6 @@ msgstr "内部搭桥" msgid "Gap infill" msgstr "填缝" -msgid "Skirt" -msgstr "裙边" - msgid "Support interface" msgstr "支撑面" @@ -9983,14 +10118,28 @@ msgstr "打印耗材的供应商。仅用于展示。" msgid "(Undefined)" msgstr "(未定义)" -msgid "Infill direction" -msgstr "填充方向" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " "of line" msgstr "稀疏填充图案的角度,决定走线的开始或整体方向。" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "稀疏填充密度" @@ -10296,10 +10445,15 @@ msgid "Arc fitting" msgstr "圆弧拟合" msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"打开这个设置,导出的G-code将包含G2 G3指令。圆弧拟合的容许值和精度相同。" msgid "Add line number" msgstr "标注行号" @@ -10500,12 +10654,25 @@ msgstr "内部稀疏填充的线宽。如果以%表示,它将基于喷嘴直 msgid "Infill/Wall overlap" msgstr "填充/墙 重叠" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"填充区域被轻微扩大,并和外墙产生重叠,进而产生更好的粘接。表示为相对稀疏填充" -"的线宽的百分比。" msgid "Speed of internal sparse infill" msgstr "内部稀疏填充的打印速度" @@ -11448,6 +11615,23 @@ msgstr "Skirt高度" msgid "How many layers of skirt. Usually only one layer" msgstr "skirt有多少层。通常只有一层" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Skirt圈数" @@ -11460,6 +11644,17 @@ msgstr "Skirt速度" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "skirt速度,单位为mm/s。0表示使用默认的层挤出速度。" +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -12124,6 +12319,19 @@ msgstr "擦拭塔冲刷线间距" msgid "Spacing of purge lines on the wipe tower." msgstr "擦拭塔上冲刷线的间距" +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "擦拭塔挤出机" @@ -13899,7 +14107,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -13908,9 +14116,6 @@ msgstr "" msgid "Printer Setting" msgstr "打印机设置" -msgid "Export Configs" -msgstr "导出预设" - msgid "Printer config bundle(.orca_printer)" msgstr "打印机预设集(.orca_printer)" @@ -14835,6 +15040,28 @@ msgstr "" "避免翘曲\n" "您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。" +#~ msgid "Export &Configs" +#~ msgstr "导出预设" + +#~ msgid "Infill direction" +#~ msgstr "填充方向" + +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "打开这个设置,导出的G-code将包含G2 G3指令。圆弧拟合的容许值和精度相同。" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "填充区域被轻微扩大,并和外墙产生重叠,进而产生更好的粘接。表示为相对稀疏填" +#~ "充的线宽的百分比。" + +#~ msgid "Export Configs" +#~ msgstr "导出预设" + #~ msgid "Unload Filament" #~ msgstr "退料" diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index 2ddad8f7fa..7ee55788ab 100644 --- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po +++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-01 00:42+0800\n" +"POT-Creation-Date: 2024-05-21 00:29+0800\n" "PO-Revision-Date: 2023-11-06 14:37+0800\n" "Last-Translator: ablegods \n" "Language-Team: \n" @@ -1892,6 +1892,9 @@ msgstr "新增標準模型" msgid "Add Handy models" msgstr "" +msgid "Add Models" +msgstr "新增模型" + msgid "Show Labels" msgstr "顯示標籤" @@ -2396,7 +2399,7 @@ msgid "Connection to printer failed" msgstr "連接列印設備失敗" #, fuzzy -msgid "Please check the network connection of the printer and Studio." +msgid "Please check the network connection of the printer and Orca." msgstr "請檢查列印設備和 Orca Slicer 的網路連接" msgid "Connecting..." @@ -2739,15 +2742,8 @@ msgstr " Orca Slicer 是在" msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero 通用公共許可證,版本 3 下授權的" -#, fuzzy -msgid "" -"Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " -"by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " -"the RepRap community" +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" -"Orca Slicer 是基於 Bambulab 的 BambuStudio 開發,而 BambuStudio 源自於 Prusa " -"Research 的 PrusaSlicer。PrusaSlicer 源自於 Alessandro Ranellucci 的 Slic3r " -"和 RepRap 社群" msgid "Libraries" msgstr "庫" @@ -3226,6 +3222,212 @@ msgstr "將臨時 G-Code 複製到輸出 G-Code 失敗" msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" msgstr "計劃上傳到 `%1%`。請參閱視窗-> 列印設備上傳隊列" +msgid "Device" +msgstr "設備" + +msgid "Task Sending" +msgstr "" + +msgid "Task Sent" +msgstr "" + +msgid "Edit multiple printers" +msgstr "" + +msgid "Select connected printetrs (0/6)" +msgstr "" + +#, c-format, boost-format +msgid "Select Connected Printetrs (%d/6)" +msgstr "" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "" + +msgid "Offline" +msgstr "離線" + +msgid "No task" +msgstr "" + +msgid "View" +msgstr "視角" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "" + +msgid "Device Name" +msgstr "" + +msgid "Task Name" +msgstr "" + +msgid "Device Status" +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" + +msgid "Add" +msgstr "新增" + +msgid "Idle" +msgstr "閒置" + +msgid "Printing" +msgstr "列印中" + +msgid "Upgrading" +msgstr "" + +msgid "Incompatible" +msgstr "不相容的預設" + +msgid "syncing" +msgstr "" + +msgid "Printing Finish" +msgstr "" + +msgid "Printing Failed" +msgstr "" + +msgid "PrintingPause" +msgstr "" + +msgid "Prepare" +msgstr "準備" + +#, fuzzy +msgid "Slicing" +msgstr "正在切片中" + +msgid "Pending" +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Sending Finish" +msgstr "" + +msgid "Sending Cancel" +msgstr "" + +msgid "Sending Failed" +msgstr "" + +msgid "Print Success" +msgstr "" + +msgid "Print Failed" +msgstr "" + +msgid "Removed" +msgstr "" + +msgid "Resume" +msgstr "繼續" + +msgid "Stop" +msgstr "停止" + +msgid "Task Status" +msgstr "" + +msgid "Sent Time" +msgstr "" + +msgid "There are no tasks to be sent!" +msgstr "" + +msgid "No historical tasks!" +msgstr "" + +msgid "Loading..." +msgstr "正在載入影片……" + +msgid "No AMS" +msgstr "" + +msgid "Send to Multi-device" +msgstr "" + +msgid "Preparing print job" +msgstr "正在準備列印作業" + +#, fuzzy +msgid "Abnormal print file data. Please slice again" +msgstr "列印檔案資料異常,請重新切片" + +msgid "There is no device available to send printing." +msgstr "" + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "" + +msgid "Use External Spool" +msgstr "" + +msgid "Use AMS" +msgstr "" + +msgid "Select Printers" +msgstr "" + +msgid "Ams Status" +msgstr "" + +msgid "Printing Options" +msgstr "" + +msgid "Send Options" +msgstr "" + +msgid "Send" +msgstr "傳送" + +msgid "" +"printers at the same time.(It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" + +msgid "Wait" +msgstr "" + +msgid "" +"minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "" + +msgid "Name is invalid;" +msgstr "無效名稱;" + +msgid "illegal characters:" +msgstr "非法字元:" + +msgid "illegal suffix:" +msgstr "非法後綴:" + +msgid "The name is not allowed to be empty." +msgstr "名稱不允許為空。" + +msgid "The name is not allowed to start with space character." +msgstr "名稱不允許以空格開頭。" + +msgid "The name is not allowed to end with space character." +msgstr "名稱不允許以空格結尾。" + +msgid "The name length exceeds the limit." +msgstr "名稱長度超過限制。" + msgid "Origin" msgstr "原點" @@ -3736,9 +3938,6 @@ msgstr "列印設備設定" msgid "parameter name" msgstr "參數名稱" -msgid "N/A" -msgstr "N/A" - #, c-format, boost-format msgid "%s can't be percentage" msgstr "%s 不可以是百分比" @@ -4074,9 +4273,6 @@ msgstr "避開擠出校準區域" msgid "Align to Y axis" msgstr "與 Y 軸對齊" -msgid "Add" -msgstr "新增" - #, fuzzy msgid "Add plate" msgstr "新增列印板" @@ -4268,15 +4464,9 @@ msgstr "正在關閉應用程式,部分預設已修改。" msgid "Logging" msgstr "日誌" -msgid "Prepare" -msgstr "準備" - msgid "Preview" msgstr "預覽" -msgid "Device" -msgstr "設備" - msgid "Multi-device" msgstr "" @@ -4307,9 +4497,6 @@ msgstr "切片所有列印板" msgid "Export G-code file" msgstr "匯出 G-code 檔案" -msgid "Send" -msgstr "傳送" - #, fuzzy msgid "Export plate sliced file" msgstr "匯出單一列印板切片檔案" @@ -4326,9 +4513,6 @@ msgstr "列印所有列印板" msgid "Send all" msgstr "傳送所有列印板" -msgid "Send to Multi-device" -msgstr "" - msgid "Keyboard Shortcuts" msgstr "快捷鍵" @@ -4476,9 +4660,8 @@ msgstr "匯出 G-code" msgid "Export current plate as G-code" msgstr "匯出目前列印板的 G-code" -#, fuzzy -msgid "Export &Configs" -msgstr "匯出設定檔" +msgid "Export Preset Bundle" +msgstr "" #, fuzzy msgid "Export current configuration to files" @@ -4582,9 +4765,6 @@ msgstr "在 3D 場景中凸顯懸空" msgid "Preferences" msgstr "偏好設定" -msgid "View" -msgstr "視角" - msgid "Help" msgstr "幫助" @@ -4653,10 +4833,10 @@ msgstr "將工具路徑匯出為 OBJ 格式" msgid "Export toolpaths as OBJ" msgstr "將工具路徑匯出為 OBJ 格式" -msgid "Open &Studio" +msgid "Open &Slicer" msgstr "開啟 Studio" -msgid "Open Studio" +msgid "Open Slicer" msgstr "開啟 Studio" msgid "&Quit" @@ -4830,9 +5010,6 @@ msgstr "資訊" msgid "Playing..." msgstr "正在播放中……" -msgid "Loading..." -msgstr "正在載入影片……" - msgid "Year" msgstr "年" @@ -4990,11 +5167,6 @@ msgid "" "please try again later." msgstr "" -msgid "" -"Over 4 systems/handy are using remote access, you can close some and try " -"again." -msgstr "" - msgid "File does not exist." msgstr "" @@ -5056,12 +5228,6 @@ msgstr "反轉橫滾軸(縱軸)" msgid "Printing Progress" msgstr "列印進度" -msgid "Resume" -msgstr "繼續" - -msgid "Stop" -msgstr "停止" - msgid "0" msgstr "0" @@ -5820,6 +5986,9 @@ msgstr "step 檔案中的零件名稱包含非 UTF8 格式的字元!" msgid "The name may show garbage characters!" msgstr "此名稱可能顯示亂碼字元!" +msgid "Remember my choice." +msgstr "記住我的選擇。" + #, fuzzy, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." msgstr "載入檔案 \"%1%\" 失敗。發現無效設定值。" @@ -5941,10 +6110,6 @@ msgstr "無法重新載入:" msgid "Error during reload" msgstr "重新載入時出現錯誤" -#, fuzzy -msgid "Slicing" -msgstr "正在切片中" - msgid "There are warnings after slicing models:" msgstr "模型切片警告:" @@ -6017,9 +6182,9 @@ msgid "Project downloaded %d%%" msgstr "專案項目已下載 %d%%" msgid "" -"Importing to Bambu Studio failed. Please download the file and manually " +"Importing to Orca Slicer failed. Please download the file and manually " "import it." -msgstr "" +msgstr "匯入 Orca Slicer 失敗。 請下載該檔案並手動匯入。" msgid "Import SLA archive" msgstr "" @@ -6058,9 +6223,6 @@ msgstr "G-code 檔案不能和模型一起載入" msgid "Can not add models when in preview mode!" msgstr "在預覽模式不允許增加模型" -msgid "Add Models" -msgstr "新增模型" - msgid "All objects will be removed, continue?" msgstr "即將刪除所有物件,是否繼續?" @@ -6068,9 +6230,6 @@ msgstr "即將刪除所有物件,是否繼續?" msgid "The current project has unsaved changes, save it before continue?" msgstr "目前專案項目包含未儲存的修改,是否先儲存?" -msgid "Remember my choice." -msgstr "記住我的選擇。" - msgid "Number of copies:" msgstr "複製數量:" @@ -6276,6 +6435,11 @@ msgstr "登入區域" msgid "Stealth Mode" msgstr "區域網路模式" +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" + msgid "Enable network plugin" msgstr "" @@ -6381,7 +6545,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Studio)." +msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" msgid "" @@ -6615,9 +6779,6 @@ msgstr "" msgid "Create printer" msgstr "" -msgid "Incompatible" -msgstr "不相容的預設" - msgid "The selected preset is null!" msgstr "選擇的預設為空!" @@ -6719,15 +6880,6 @@ msgstr "使用者預設" msgid "Preset Inside Project" msgstr "項目預設" -msgid "Name is invalid;" -msgstr "無效名稱;" - -msgid "illegal characters:" -msgstr "非法字元:" - -msgid "illegal suffix:" -msgstr "非法後綴:" - msgid "Name is unavailable." msgstr "名稱不可用。" @@ -6745,15 +6897,6 @@ msgstr "預設 \"%1%\" 已存在,並且和目前列印設備不相容。" msgid "Please note that saving action will replace this preset" msgstr "請注意這個預設會在儲存過程中被替換" -msgid "The name is not allowed to be empty." -msgstr "名稱不允許為空。" - -msgid "The name is not allowed to start with space character." -msgstr "名稱不允許以空格開頭。" - -msgid "The name is not allowed to end with space character." -msgstr "名稱不允許以空格結尾。" - msgid "The name cannot be the same as a preset alias name." msgstr "名稱不能和一個預設的別名相同。" @@ -6811,9 +6954,6 @@ msgstr "無法找到我的設備?" msgid "Log out successful." msgstr "登出成功。" -msgid "Offline" -msgstr "離線" - msgid "Busy" msgstr "忙碌" @@ -7028,16 +7168,6 @@ msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "正在連接列印設備。連接過程中無法取消。" -msgid "Preparing print job" -msgstr "正在準備列印作業" - -#, fuzzy -msgid "Abnormal print file data. Please slice again" -msgstr "列印檔案資料異常,請重新切片" - -msgid "The name length exceeds the limit." -msgstr "名稱長度超過限制。" - msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." @@ -7413,6 +7543,9 @@ msgstr "支撐線材" msgid "Tree supports" msgstr "樹狀支撐" +msgid "Skirt" +msgstr "" + msgid "Prime tower" msgstr "擦拭塔" @@ -8342,6 +8475,12 @@ msgstr "5 倍速移動滑動條" msgid "Shift+Mouse wheel" msgstr "Shift+滑鼠滾輪" +msgid "Horizontal slider - Move to start position" +msgstr "" + +msgid "Horizontal slider - Move to last position" +msgstr "" + msgid "Release Note" msgstr "更新說明" @@ -8465,12 +8604,6 @@ msgstr "版本:" msgid "Update firmware" msgstr "更新韌體" -msgid "Printing" -msgstr "列印中" - -msgid "Idle" -msgstr "閒置" - msgid "Beta version" msgstr "" @@ -8503,7 +8636,7 @@ msgstr "" msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " -"update next time starting the studio." +"update next time starting Orca." msgstr "" "目前韌體版本異常,需要進行修復升級,否則無法繼續列印。你想現在就開始升級嗎?" "你也可以稍後在列印設備上升級,或者下一次啟動 Orca Slicer 再升級。" @@ -8642,9 +8775,6 @@ msgstr "內部橋接" msgid "Gap infill" msgstr "填縫" -msgid "Skirt" -msgstr "" - msgid "Support interface" msgstr "支撐面" @@ -10381,14 +10511,28 @@ msgstr "列印線材的供應商。僅用於展示。" msgid "(Undefined)" msgstr "(未定義)" -msgid "Infill direction" -msgstr "填充方向" +msgid "Sparse infill direction" +msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " "of line" msgstr "稀疏填充圖案的角度,決定走線的開始或整體方向。" +msgid "Solid infill direction" +msgstr "" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line" +msgstr "" + +msgid "Rotate solid infill direction" +msgstr "" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "" + msgid "Sparse infill density" msgstr "稀疏填充密度" @@ -10706,12 +10850,16 @@ msgstr "" msgid "Arc fitting" msgstr "圓弧擬合" -#, fuzzy msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. And the fitting " -"tolerance is same with resolution" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution. \n" +"\n" +"Note: For klipper machines, this option is recomended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." msgstr "" -"打開這個設定,匯出的 G-code 將包含 G2 G3 指令。圓弧擬合的容許值和精度相同。" msgid "Add line number" msgstr "標註行號" @@ -10931,12 +11079,25 @@ msgstr "內部稀疏填充的線寬。如果以%表示,它將以噴嘴直徑 msgid "Infill/Wall overlap" msgstr "填充/牆 重疊" +#, no-c-format, no-boost-format msgid "" "Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill" +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimising the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill" msgstr "" -"填充區域被輕微擴大,並和外牆產生重疊,進而產生更好的黏接。表示為相對稀疏填充" -"的線寬的百分比。" msgid "Speed of internal sparse infill" msgstr "內部稀疏填充的列印速度" @@ -11869,6 +12030,23 @@ msgstr "Skirt 高度" msgid "How many layers of skirt. Usually only one layer" msgstr "skirt 有多少層。通常只有一層" +msgid "Draft shield" +msgstr "" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure. \n" +"\n" +"Options:\n" +"Enabled = skirt is as tall as the highest printed object.\n" +"Limited = skirt is as tall as specified by skirt height.\n" +"\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" + msgid "Skirt loops" msgstr "Skirt 圈數" @@ -11881,6 +12059,17 @@ msgstr "Skirt 速度" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "Skirt 速度,單位為 mm/秒。 0 表示使用預設層擠出速度。" +msgid "Skirt minimum extrusion length" +msgstr "" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non zero value is useful if the printer is set up to print without a " +"prime line." +msgstr "" + msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " "layer time is shorter than this value, to get better cooling for these layers" @@ -12566,6 +12755,19 @@ msgstr "擦拭塔線距" msgid "Spacing of purge lines on the wipe tower." msgstr "擦拭塔上的線距。" +msgid "Maximum print speed when purging" +msgstr "" + +msgid "" +"The maximum print speed when purging in the wipe tower. If the sparse infill " +"speed or calculated speed from the filament max volumetric speed is lower, " +"the lowest speed will be used instead.\n" +"Increasing this speed may affect the tower's stability, as purging can be " +"performed over sparse layers. Before increasing this parameter beyond the " +"default of 90mm/sec, make sure your printer can reliably bridge at the " +"increased speeds." +msgstr "" + msgid "Wipe tower extruder" msgstr "擦拭塔擠出機" @@ -14384,7 +14586,7 @@ msgstr "" msgid "" "\n" "\n" -"Studio has detected that your user presets synchronization function is not " +"Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " "page. \n" "Click \"Sync user presets\" to enable the synchronization function." @@ -14393,9 +14595,6 @@ msgstr "" msgid "Printer Setting" msgstr "" -msgid "Export Configs" -msgstr "" - msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -15284,6 +15483,38 @@ msgid "" "probability of warping." msgstr "" +#, fuzzy +#~ msgid "" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "Ranellucci and the RepRap community" +#~ msgstr "" +#~ "Orca Slicer 是基於 Bambulab 的 BambuStudio 開發,而 BambuStudio 源自於 " +#~ "Prusa Research 的 PrusaSlicer。PrusaSlicer 源自於 Alessandro Ranellucci " +#~ "的 Slic3r 和 RepRap 社群" + +#, fuzzy +#~ msgid "Export &Configs" +#~ msgstr "匯出設定檔" + +#~ msgid "Infill direction" +#~ msgstr "填充方向" + +#, fuzzy +#~ msgid "" +#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " +#~ "fitting tolerance is same with resolution" +#~ msgstr "" +#~ "打開這個設定,匯出的 G-code 將包含 G2 G3 指令。圓弧擬合的容許值和精度相" +#~ "同。" + +#~ msgid "" +#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " +#~ "The percentage value is relative to line width of sparse infill" +#~ msgstr "" +#~ "填充區域被輕微擴大,並和外牆產生重疊,進而產生更好的黏接。表示為相對稀疏填" +#~ "充的線寬的百分比。" + #~ msgid "Unload Filament" #~ msgstr "退料" @@ -15295,11 +15526,6 @@ msgstr "" #~ msgid "MainBoard" #~ msgstr "主板" -#~ msgid "" -#~ "Importing to Orca Slicer failed. Please download the file and manually " -#~ "import it." -#~ msgstr "匯入 Orca Slicer 失敗。 請下載該檔案並手動匯入。" - #~ msgid "active" #~ msgstr "活動的" diff --git a/src/slic3r/GUI/AboutDialog.cpp b/src/slic3r/GUI/AboutDialog.cpp index 53d7c559a9..f4e69dd587 100644 --- a/src/slic3r/GUI/AboutDialog.cpp +++ b/src/slic3r/GUI/AboutDialog.cpp @@ -151,7 +151,7 @@ wxString CopyrightsDialog::get_html_text() _L("License"), _L("Orca Slicer is licensed under "), "https://www.gnu.org/licenses/agpl-3.0.html",_L("GNU Affero General Public License, version 3"), - _L("Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and the RepRap community"), + _L("Orca Slicer is based on PrusaSlicer and BambuStudio"), _L("Libraries"), _L("This software uses open source components whose copyright and other proprietary rights belong to their respective owners")); @@ -244,7 +244,7 @@ AboutDialog::AboutDialog() vesizer->Add(0, FromDIP(165), 1, wxEXPAND, FromDIP(5)); auto version_string = _L("Orca Slicer ") + " " + std::string(SoftFever_VERSION); wxStaticText* version = new wxStaticText(this, wxID_ANY, version_string.c_str(), wxDefaultPosition, wxDefaultSize); - wxStaticText* bs_version = new wxStaticText(this, wxID_ANY, wxString::Format("Based on BambuStudio and PrusaSlicer"), wxDefaultPosition, wxDefaultSize); + wxStaticText* bs_version = new wxStaticText(this, wxID_ANY, wxString::Format("Based on PrusaSlicer and BambuStudio"), wxDefaultPosition, wxDefaultSize); bs_version->SetFont(Label::Body_12); wxFont version_font = GetFont(); #ifdef __WXMSW__ diff --git a/src/slic3r/GUI/CreatePresetsDialog.cpp b/src/slic3r/GUI/CreatePresetsDialog.cpp index be34c5f203..5e6b863217 100644 --- a/src/slic3r/GUI/CreatePresetsDialog.cpp +++ b/src/slic3r/GUI/CreatePresetsDialog.cpp @@ -3221,7 +3221,7 @@ CreatePresetSuccessfulDialog::CreatePresetSuccessfulDialog(wxWindow *parent, con success_text = new wxStaticText(this, wxID_ANY, _L("Filament Created")); wxString prompt_text = _L("Please go to filament setting to edit your presets if you need.\nPlease note that nozzle temperature, hot bed temperature, and maximum " "volumetric speed has a significant impact on printing quality. Please set them carefully."); - wxString sync_text = sync_user_preset_need_enabled ? _L("\n\nStudio has detected that your user presets synchronization function is not enabled, which may result in unsuccessful Filament settings on " + wxString sync_text = sync_user_preset_need_enabled ? _L("\n\nOrca has detected that your user presets synchronization function is not enabled, which may result in unsuccessful Filament settings on " "the Device page. \nClick \"Sync user presets\" to enable the synchronization function.") : ""; next_step_text = new wxStaticText(this, wxID_ANY, prompt_text + sync_text); break; diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 9c28d9acfd..98012eb163 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -340,7 +340,7 @@ public: memDc.SetTextForeground(StateColor::darkModeColorFor(wxColor(134, 134, 134))); memDc.DrawLabel(m_constant_text.version, version_rect, wxALIGN_LEFT | wxALIGN_BOTTOM); - auto bs_version = wxString::Format("Based on BambuStudio and PrusaSlicer").ToStdString(); + auto bs_version = wxString::Format("Based on PrusaSlicer and BambuStudio").ToStdString(); memDc.SetFont(Label::Body_12); wxSize text_rect = memDc.GetTextExtent(bs_version); int start_x = (title_rect.GetLeft() + version_rect.GetRight()) / 2 - text_rect.GetWidth()/2; diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index f18c2d7be6..757fa2226b 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -3054,7 +3054,7 @@ void MainFrame::init_menubar_as_gcodeviewer() append_menu_item(fileMenu, wxID_ANY, _L("Export &Toolpaths as OBJ") + dots, _L("Export toolpaths as OBJ"), [this](wxCommandEvent&) { if (m_plater != nullptr) m_plater->export_toolpaths_to_obj(); }, "export_plater", nullptr, [this]() {return can_export_toolpaths(); }, this); - append_menu_item(fileMenu, wxID_ANY, _L("Open &Studio") + dots, _L("Open Studio"), + append_menu_item(fileMenu, wxID_ANY, _L("Open &Slicer") + dots, _L("Open Slicer"), [](wxCommandEvent&) { start_new_slicer(); }, "", nullptr, []() {return true; }, this); fileMenu->AppendSeparator(); diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 9a7de192ff..59381b93f3 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -9109,7 +9109,7 @@ void Plater::import_model_id(wxString download_info) error); if (retry_count == max_retries) { - msg = _L("Importing to Bambu Studio failed. Please download the file and manually import it."); + msg = _L("Importing to Orca Slicer failed. Please download the file and manually import it."); cont = false; } }) diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp index ac2e4f97c9..da217703e9 100644 --- a/src/slic3r/GUI/Preferences.cpp +++ b/src/slic3r/GUI/Preferences.cpp @@ -1046,7 +1046,7 @@ wxWindow* PreferencesDialog::create_general_page() auto item_calc_mode = create_item_checkbox(_L("Flushing volumes: Auto-calculate everytime the color changed."), page, _L("If enabled, auto-calculate everytime the color changed."), 50, "auto_calculate"); auto item_calc_in_long_retract = create_item_checkbox(_L("Flushing volumes: Auto-calculate every time when the filament is changed."), page, _L("If enabled, auto-calculate every time when filament is changed"), 50, "auto_calculate_when_filament_change"); auto item_remember_printer_config = create_item_checkbox(_L("Remember printer configuration"), page, _L("If enabled, Orca will remember and switch filament/process configuration for each printer automatically."), 50, "remember_printer_config"); - auto item_multi_machine = create_item_checkbox(_L("Multi-device Management(Take effect after restarting Studio)."), page, _L("With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."), 50, "enable_multi_machine"); + auto item_multi_machine = create_item_checkbox(_L("Multi-device Management(Take effect after restarting Orca)."), page, _L("With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."), 50, "enable_multi_machine"); auto title_presets = create_item_title(_L("Presets"), page, _L("Presets")); auto title_network = create_item_title(_L("Network"), page, _L("Network")); auto item_user_sync = create_item_checkbox(_L("Auto sync user presets(Printer/Filament/Process)"), page, _L("User Sync"), 50, "sync_user_preset"); diff --git a/src/slic3r/GUI/UpgradePanel.cpp b/src/slic3r/GUI/UpgradePanel.cpp index efcacc98da..e9384c385b 100644 --- a/src/slic3r/GUI/UpgradePanel.cpp +++ b/src/slic3r/GUI/UpgradePanel.cpp @@ -1157,7 +1157,7 @@ void UpgradePanel::update(MachineObject *obj) }); } consistency_dlg->update_text(_L( - "The firmware version is abnormal. Repairing and updating are required before printing. Do you want to update now? You can also update later on printer or update next time starting the studio." + "The firmware version is abnormal. Repairing and updating are required before printing. Do you want to update now? You can also update later on printer or update next time starting Orca." )); consistency_dlg->on_show(); } diff --git a/src/slic3r/GUI/Widgets/SideTools.cpp b/src/slic3r/GUI/Widgets/SideTools.cpp index 5e5700040c..85e1a1f65b 100644 --- a/src/slic3r/GUI/Widgets/SideTools.cpp +++ b/src/slic3r/GUI/Widgets/SideTools.cpp @@ -504,7 +504,7 @@ void SideTools::show_status(int status) m_hyperlink->SetLabel(_L("Failed to connect to the printer")); update_connect_err_info(BAMBU_NETWORK_ERR_CONNECTION_TO_PRINTER_FAILED, _L("Connection to printer failed"), - _L("Please check the network connection of the printer and Studio.")); + _L("Please check the network connection of the printer and Orca.")); } m_hyperlink->Show(); From c161274132cfb549a1e5a21834dca499a6e54807 Mon Sep 17 00:00:00 2001 From: KrisMorr <154343071+KrisMorr@users.noreply.github.com> Date: Tue, 21 May 2024 01:45:22 +0200 Subject: [PATCH 14/66] Update locale + fix (#5413) * Update locale * fix strings * Update pl locale * Fix --- localization/i18n/OrcaSlicer.pot | 304 ++++++++++---------- localization/i18n/ca/OrcaSlicer_ca.po | 8 +- localization/i18n/cs/OrcaSlicer_cs.po | 8 +- localization/i18n/de/OrcaSlicer_de.po | 8 +- localization/i18n/en/OrcaSlicer_en.po | 8 +- localization/i18n/es/OrcaSlicer_es.po | 8 +- localization/i18n/fr/OrcaSlicer_fr.po | 8 +- localization/i18n/hu/OrcaSlicer_hu.po | 8 +- localization/i18n/it/OrcaSlicer_it.po | 8 +- localization/i18n/ja/OrcaSlicer_ja.po | 8 +- localization/i18n/ko/OrcaSlicer_ko.po | 8 +- localization/i18n/nl/OrcaSlicer_nl.po | 8 +- localization/i18n/pl/OrcaSlicer_pl.po | 171 ++++++----- localization/i18n/pt_BR/OrcaSlicer_pt_BR.po | 8 +- localization/i18n/ru/OrcaSlicer_ru.po | 8 +- localization/i18n/sv/OrcaSlicer_sv.po | 8 +- localization/i18n/tr/OrcaSlicer_tr.po | 8 +- localization/i18n/uk/OrcaSlicer_uk.po | 8 +- localization/i18n/zh_CN/OrcaSlicer_zh_CN.po | 8 +- localization/i18n/zh_TW/OrcaSlicer_zh_TW.po | 8 +- src/libslic3r/PrintConfig.cpp | 6 +- 21 files changed, 389 insertions(+), 236 deletions(-) diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index 5ffd2250e8..f6fd309760 100644 --- a/localization/i18n/OrcaSlicer.pot +++ b/localization/i18n/OrcaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -11158,6 +11158,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "" @@ -14020,151 +14026,151 @@ msgstr "" msgid "User cancelled." msgstr "" - -#: resources/data/hints.ini: [hint:Precise wall] -msgid "Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency?" -msgstr "" - -#: resources/data/hints.ini: [hint:Sandwich mode] -msgid "Sandwich mode\nDid you know that you can use sandwich mode (inner-outer-inner) to improve precision and layer consistency if your model doesn't have very steep overhangs?" -msgstr "" - -#: resources/data/hints.ini: [hint:Chamber temperature] -msgid "Chamber temperature\nDid you know that OrcaSlicer supports chamber temperature?" -msgstr "" - -#: resources/data/hints.ini: [hint:Calibration] -msgid "Calibration\nDid you know that calibrating your printer can do wonders? Check out our beloved calibration solution in OrcaSlicer." -msgstr "" - -#: resources/data/hints.ini: [hint:Auxiliary fan] -msgid "Auxiliary fan\nDid you know that OrcaSlicer supports Auxiliary part cooling fan?" -msgstr "" - -#: resources/data/hints.ini: [hint:Air filtration] -msgid "Air filtration/Exhaust Fan\nDid you know that OrcaSlicer can support Air filtration/Exhaust Fan?" -msgstr "" - -#: resources/data/hints.ini: [hint:G-code window] -msgid "G-code window\nYou can turn on/off the G-code window by pressing the C key." -msgstr "" - -#: resources/data/hints.ini: [hint:Switch workspaces] -msgid "Switch workspaces\nYou can switch between Prepare and Preview workspaces by pressing the Tab key." -msgstr "" - -#: resources/data/hints.ini: [hint:How to use keyboard shortcuts] -msgid "How to use keyboard shortcuts\nDid you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations." -msgstr "" - -#: resources/data/hints.ini: [hint:Reverse on odd] -msgid "Reverse on odd\nDid you know that Reverse on odd feature can significantly improve the surface quality of your overhangs?" -msgstr "" - -#: resources/data/hints.ini: [hint:Cut Tool] -msgid "Cut Tool\nDid you know that you can cut a model at any angle and position with the cutting tool?" -msgstr "" - -#: resources/data/hints.ini: [hint:Fix Model] -msgid "Fix Model\nDid you know that you can fix a corrupted 3D model to avoid a lot of slicing problems on the Windows system?" -msgstr "" - -#: resources/data/hints.ini: [hint:Timelapse] -msgid "Timelapse\nDid you know that you can generate a timelapse video during each print?" -msgstr "" - -#: resources/data/hints.ini: [hint:Auto-Arrange] -msgid "Auto-Arrange\nDid you know that you can auto-arrange all objects in your project?" -msgstr "" - -#: resources/data/hints.ini: [hint:Auto-Orient] -msgid "Auto-Orient\nDid you know that you can rotate objects to an optimal orientation for printing by a simple click?" -msgstr "" - -#: resources/data/hints.ini: [hint:Lay on Face] -msgid "Lay on Face\nDid you know that you can quickly orient a model so that one of its faces sits on the print bed? Select the \"Place on face\" function or press the F key." -msgstr "" - -#: resources/data/hints.ini: [hint:Object List] -msgid "Object List\nDid you know that you can view all objects/parts in a list and change settings for each object/part?" -msgstr "" - -#: resources/data/hints.ini: [hint:Search Functionality] -msgid "Search Functionality\nDid you know that you use the Search tool to quickly find a specific Orca Slicer setting?" -msgstr "" - -#: resources/data/hints.ini: [hint:Simplify Model] -msgid "Simplify Model\nDid you know that you can reduce the number of triangles in a mesh using the Simplify mesh feature? Right-click the model and select Simplify model." -msgstr "" - -#: resources/data/hints.ini: [hint:Slicing Parameter Table] -msgid "Slicing Parameter Table\nDid you know that you can view all objects/parts on a table and change settings for each object/part?" -msgstr "" - -#: resources/data/hints.ini: [hint:Split to Objects/Parts] -msgid "Split to Objects/Parts\nDid you know that you can split a big object into small ones for easy colorizing or printing?" -msgstr "" - -#: resources/data/hints.ini: [hint:Subtract a Part] -msgid "Subtract a Part\nDid you know that you can subtract one mesh from another using the Negative part modifier? That way you can, for example, create easily resizable holes directly in Orca Slicer." -msgstr "" - -#: resources/data/hints.ini: [hint:STEP] -msgid "STEP\nDid you know that you can improve your print quality by slicing a STEP file instead of an STL?\nOrca Slicer supports slicing STEP files, providing smoother results than a lower resolution STL. Give it a try!" -msgstr "" - -#: resources/data/hints.ini: [hint:Z seam location] -msgid "Z seam location\nDid you know that you can customize the location of the Z seam, and even paint it on your print, to have it in a less visible location? This improves the overall look of your model. Check it out!" -msgstr "" - -#: resources/data/hints.ini: [hint:Fine-tuning for flow rate] -msgid "Fine-tuning for flow rate\nDid you know that flow rate can be fine-tuned for even better-looking prints? Depending on the material, you can improve the overall finish of the printed model by doing some fine-tuning." -msgstr "" - -#: resources/data/hints.ini: [hint:Split your prints into plates] -msgid "Split your prints into plates\nDid you know that you can split a model that has a lot of parts into individual plates ready to print? This will simplify the process of keeping track of all the parts." -msgstr "" - -#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer Height] -msgid "Speed up your print with Adaptive Layer Height\nDid you know that you can print a model even faster, by using the Adaptive Layer Height option? Check it out!" -msgstr "" - -#: resources/data/hints.ini: [hint:Support painting] -msgid "Support painting\nDid you know that you can paint the location of your supports? This feature makes it easy to place the support material only on the sections of the model that actually need it." -msgstr "" - -#: resources/data/hints.ini: [hint:Different types of supports] -msgid "Different types of supports\nDid you know that you can choose from multiple types of supports? Tree supports work great for organic models, while saving filament and improving print speed. Check them out!" -msgstr "" - -#: resources/data/hints.ini: [hint:Printing Silk Filament] -msgid "Printing Silk Filament\nDid you know that Silk filament needs special consideration to print it successfully? Higher temperature and lower speed are always recommended for the best results." -msgstr "" - -#: resources/data/hints.ini: [hint:Brim for better adhesion] -msgid "Brim for better adhesion\nDid you know that when printing models have a small contact interface with the printing surface, it's recommended to use a brim?" -msgstr "" - -#: resources/data/hints.ini: [hint:Set parameters for multiple objects] -msgid "Set parameters for multiple objects\nDid you know that you can set slicing parameters for all selected objects at one time?" -msgstr "" - -#: resources/data/hints.ini: [hint:Stack objects] -msgid "Stack objects\nDid you know that you can stack objects as a whole one?" -msgstr "" - -#: resources/data/hints.ini: [hint:Flush into support/objects/infill] -msgid "Flush into support/objects/infill\nDid you know that you can save the wasted filament by flushing them into support/objects/infill during filament change?" -msgstr "" - -#: resources/data/hints.ini: [hint:Improve strength] -msgid "Improve strength\nDid you know that you can use more wall loops and higher sparse infill density to improve the strength of the model?" -msgstr "" - -#: resources/data/hints.ini: [hint:When need to print with the printer door opened] -msgid "When need to print with the printer door opened\nDid you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature. More info about this in the Wiki." -msgstr "" - -#: resources/data/hints.ini: [hint:Avoid warping] -msgid "Avoid warping\nDid you know that when printing materials that are prone to warping such as ABS, appropriately increasing the heatbed temperature can reduce the probability of warping." -msgstr "" + +#: resources/data/hints.ini: [hint:Precise wall] +msgid "Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency?" +msgstr "" + +#: resources/data/hints.ini: [hint:Sandwich mode] +msgid "Sandwich mode\nDid you know that you can use sandwich mode (inner-outer-inner) to improve precision and layer consistency if your model doesn't have very steep overhangs?" +msgstr "" + +#: resources/data/hints.ini: [hint:Chamber temperature] +msgid "Chamber temperature\nDid you know that OrcaSlicer supports chamber temperature?" +msgstr "" + +#: resources/data/hints.ini: [hint:Calibration] +msgid "Calibration\nDid you know that calibrating your printer can do wonders? Check out our beloved calibration solution in OrcaSlicer." +msgstr "" + +#: resources/data/hints.ini: [hint:Auxiliary fan] +msgid "Auxiliary fan\nDid you know that OrcaSlicer supports Auxiliary part cooling fan?" +msgstr "" + +#: resources/data/hints.ini: [hint:Air filtration] +msgid "Air filtration/Exhaust Fan\nDid you know that OrcaSlicer can support Air filtration/Exhaust Fan?" +msgstr "" + +#: resources/data/hints.ini: [hint:G-code window] +msgid "G-code window\nYou can turn on/off the G-code window by pressing the C key." +msgstr "" + +#: resources/data/hints.ini: [hint:Switch workspaces] +msgid "Switch workspaces\nYou can switch between Prepare and Preview workspaces by pressing the Tab key." +msgstr "" + +#: resources/data/hints.ini: [hint:How to use keyboard shortcuts] +msgid "How to use keyboard shortcuts\nDid you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations." +msgstr "" + +#: resources/data/hints.ini: [hint:Reverse on odd] +msgid "Reverse on odd\nDid you know that Reverse on odd feature can significantly improve the surface quality of your overhangs?" +msgstr "" + +#: resources/data/hints.ini: [hint:Cut Tool] +msgid "Cut Tool\nDid you know that you can cut a model at any angle and position with the cutting tool?" +msgstr "" + +#: resources/data/hints.ini: [hint:Fix Model] +msgid "Fix Model\nDid you know that you can fix a corrupted 3D model to avoid a lot of slicing problems on the Windows system?" +msgstr "" + +#: resources/data/hints.ini: [hint:Timelapse] +msgid "Timelapse\nDid you know that you can generate a timelapse video during each print?" +msgstr "" + +#: resources/data/hints.ini: [hint:Auto-Arrange] +msgid "Auto-Arrange\nDid you know that you can auto-arrange all objects in your project?" +msgstr "" + +#: resources/data/hints.ini: [hint:Auto-Orient] +msgid "Auto-Orient\nDid you know that you can rotate objects to an optimal orientation for printing by a simple click?" +msgstr "" + +#: resources/data/hints.ini: [hint:Lay on Face] +msgid "Lay on Face\nDid you know that you can quickly orient a model so that one of its faces sits on the print bed? Select the \"Place on face\" function or press the F key." +msgstr "" + +#: resources/data/hints.ini: [hint:Object List] +msgid "Object List\nDid you know that you can view all objects/parts in a list and change settings for each object/part?" +msgstr "" + +#: resources/data/hints.ini: [hint:Search Functionality] +msgid "Search Functionality\nDid you know that you use the Search tool to quickly find a specific Orca Slicer setting?" +msgstr "" + +#: resources/data/hints.ini: [hint:Simplify Model] +msgid "Simplify Model\nDid you know that you can reduce the number of triangles in a mesh using the Simplify mesh feature? Right-click the model and select Simplify model." +msgstr "" + +#: resources/data/hints.ini: [hint:Slicing Parameter Table] +msgid "Slicing Parameter Table\nDid you know that you can view all objects/parts on a table and change settings for each object/part?" +msgstr "" + +#: resources/data/hints.ini: [hint:Split to Objects/Parts] +msgid "Split to Objects/Parts\nDid you know that you can split a big object into small ones for easy colorizing or printing?" +msgstr "" + +#: resources/data/hints.ini: [hint:Subtract a Part] +msgid "Subtract a Part\nDid you know that you can subtract one mesh from another using the Negative part modifier? That way you can, for example, create easily resizable holes directly in Orca Slicer." +msgstr "" + +#: resources/data/hints.ini: [hint:STEP] +msgid "STEP\nDid you know that you can improve your print quality by slicing a STEP file instead of an STL?\nOrca Slicer supports slicing STEP files, providing smoother results than a lower resolution STL. Give it a try!" +msgstr "" + +#: resources/data/hints.ini: [hint:Z seam location] +msgid "Z seam location\nDid you know that you can customize the location of the Z seam, and even paint it on your print, to have it in a less visible location? This improves the overall look of your model. Check it out!" +msgstr "" + +#: resources/data/hints.ini: [hint:Fine-tuning for flow rate] +msgid "Fine-tuning for flow rate\nDid you know that flow rate can be fine-tuned for even better-looking prints? Depending on the material, you can improve the overall finish of the printed model by doing some fine-tuning." +msgstr "" + +#: resources/data/hints.ini: [hint:Split your prints into plates] +msgid "Split your prints into plates\nDid you know that you can split a model that has a lot of parts into individual plates ready to print? This will simplify the process of keeping track of all the parts." +msgstr "" + +#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer Height] +msgid "Speed up your print with Adaptive Layer Height\nDid you know that you can print a model even faster, by using the Adaptive Layer Height option? Check it out!" +msgstr "" + +#: resources/data/hints.ini: [hint:Support painting] +msgid "Support painting\nDid you know that you can paint the location of your supports? This feature makes it easy to place the support material only on the sections of the model that actually need it." +msgstr "" + +#: resources/data/hints.ini: [hint:Different types of supports] +msgid "Different types of supports\nDid you know that you can choose from multiple types of supports? Tree supports work great for organic models, while saving filament and improving print speed. Check them out!" +msgstr "" + +#: resources/data/hints.ini: [hint:Printing Silk Filament] +msgid "Printing Silk Filament\nDid you know that Silk filament needs special consideration to print it successfully? Higher temperature and lower speed are always recommended for the best results." +msgstr "" + +#: resources/data/hints.ini: [hint:Brim for better adhesion] +msgid "Brim for better adhesion\nDid you know that when printing models have a small contact interface with the printing surface, it's recommended to use a brim?" +msgstr "" + +#: resources/data/hints.ini: [hint:Set parameters for multiple objects] +msgid "Set parameters for multiple objects\nDid you know that you can set slicing parameters for all selected objects at one time?" +msgstr "" + +#: resources/data/hints.ini: [hint:Stack objects] +msgid "Stack objects\nDid you know that you can stack objects as a whole one?" +msgstr "" + +#: resources/data/hints.ini: [hint:Flush into support/objects/infill] +msgid "Flush into support/objects/infill\nDid you know that you can save the wasted filament by flushing them into support/objects/infill during filament change?" +msgstr "" + +#: resources/data/hints.ini: [hint:Improve strength] +msgid "Improve strength\nDid you know that you can use more wall loops and higher sparse infill density to improve the strength of the model?" +msgstr "" + +#: resources/data/hints.ini: [hint:When need to print with the printer door opened] +msgid "When need to print with the printer door opened\nDid you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature. More info about this in the Wiki." +msgstr "" + +#: resources/data/hints.ini: [hint:Avoid warping] +msgid "Avoid warping\nDid you know that when printing materials that are prone to warping such as ABS, appropriately increasing the heatbed temperature can reduce the probability of warping." +msgstr "" diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index 7965f645b8..35ce4937c8 100644 --- a/localization/i18n/ca/OrcaSlicer_ca.po +++ b/localization/i18n/ca/OrcaSlicer_ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: 2024-03-17 22:08+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -12595,6 +12595,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Voltes de la faldilla" diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index d6336904f6..86c1b9086b 100644 --- a/localization/i18n/cs/OrcaSlicer_cs.po +++ b/localization/i18n/cs/OrcaSlicer_cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: 2023-09-30 15:15+0200\n" "Last-Translator: René Mošner \n" "Language-Team: \n" @@ -12087,6 +12087,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Obrysové smyčky" diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 75f20c83d7..56a5b917c7 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: \n" "Last-Translator: Heiko Liebscher \n" "Language-Team: \n" @@ -12804,6 +12804,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Anzahl Umrandungsringe" diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index 5e03bfb868..110633360b 100644 --- a/localization/i18n/en/OrcaSlicer_en.po +++ b/localization/i18n/en/OrcaSlicer_en.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -11711,6 +11711,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Skirt loops" diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index 3f554170b6..dc2ac1fb5b 100644 --- a/localization/i18n/es/OrcaSlicer_es.po +++ b/localization/i18n/es/OrcaSlicer_es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: \n" "Last-Translator: Carlos Fco. Caruncho Serrano \n" "Language-Team: \n" @@ -12654,6 +12654,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Contorno de la falda" diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index da6caed1fc..28428f3bd7 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: Guislain Cyril, Thomas Lété\n" @@ -12917,6 +12917,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Boucles de la jupe" diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index 4ccbb727cb..cbfa7f7dad 100644 --- a/localization/i18n/hu/OrcaSlicer_hu.po +++ b/localization/i18n/hu/OrcaSlicer_hu.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11788,6 +11788,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Szoknya hurkok száma" diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index 65e688c29d..0132fabd4a 100644 --- a/localization/i18n/it/OrcaSlicer_it.po +++ b/localization/i18n/it/OrcaSlicer_it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -12657,6 +12657,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Anelli skirt" diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index 676f6d0681..2d9cd610fc 100644 --- a/localization/i18n/ja/OrcaSlicer_ja.po +++ b/localization/i18n/ja/OrcaSlicer_ja.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -11487,6 +11487,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "スカートのループ数" diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index 382216deb4..4148be61ef 100644 --- a/localization/i18n/ko/OrcaSlicer_ko.po +++ b/localization/i18n/ko/OrcaSlicer_ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: 2024-05-01 04:51+0900\n" "Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply." "github.com>, crwusiz \n" @@ -12212,6 +12212,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "스커트 루프" diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index e97d061cc0..3b38d6b6e8 100644 --- a/localization/i18n/nl/OrcaSlicer_nl.po +++ b/localization/i18n/nl/OrcaSlicer_nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11893,6 +11893,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Rand (skirt) lussen" diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index 6dff8f9f35..cdf2baa704 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer 2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:31+0200\n" "PO-Revision-Date: \n" "Last-Translator: Krzysztof Morga \n" "Language-Team: \n" @@ -2404,7 +2404,7 @@ msgid "Connection to printer failed" msgstr "Nie udało się połączyć z drukarką" msgid "Please check the network connection of the printer and Orca." -msgstr "Proszę sprawdzić połączenie sieciowe drukarki i Studio." +msgstr "Proszę sprawdzić połączenie sieciowe drukarki i Orca." msgid "Connecting..." msgstr "Łączenie..." @@ -2434,7 +2434,7 @@ msgid "Unload" msgstr "Wyładuj" msgid "Ext Spool" -msgstr "zew.Szpula" +msgstr "zew.szpula" msgid "Tips" msgstr "Wskazówki" @@ -2496,8 +2496,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" -"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub \"Wyładuj" -"\" ,aby automatycznie załadować lub wyładować filamenty." +"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub " +"\"Wyładuj\" ,aby automatycznie załadować lub wyładować filamenty." msgid "Edit" msgstr "Edytuj" @@ -2764,7 +2764,7 @@ msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, wersja 3" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" -msgstr "" +msgstr "Orca Slicer opiera się na projektach PrusaSlicer i BambuStudio" msgid "Libraries" msgstr "Biblioteki" @@ -2954,7 +2954,7 @@ msgid "Step" msgstr "Krok" msgid "AMS Slots" -msgstr "Sloty AMS" +msgstr "Gniazda AMS" msgid "" "Note: Only the AMS slots loaded with the same material type can be selected." @@ -3302,11 +3302,11 @@ msgid "Edit multiple printers" msgstr "Edycja drukarek" msgid "Select connected printetrs (0/6)" -msgstr "Wybierz połączone drukarki (0/6)" +msgstr "Wybierz podłączone drukarki (0/6)" #, c-format, boost-format msgid "Select Connected Printetrs (%d/6)" -msgstr "Wybierz Połączone Drukarki (%d/6)" +msgstr "Wybierz Podłączone Drukarki (%d/6)" #, c-format, boost-format msgid "The maximum number of printers that can be selected is %d" @@ -3348,28 +3348,28 @@ msgid "Add" msgstr "Dodaj" msgid "Idle" -msgstr "Bezczynność" +msgstr "Bezczynny" msgid "Printing" msgstr "Drukowanie" msgid "Upgrading" -msgstr "" +msgstr "Aktualizacja" msgid "Incompatible" msgstr "Niekompatybilne" msgid "syncing" -msgstr "" +msgstr "synchronizacja" msgid "Printing Finish" -msgstr "" +msgstr "Drukowanie zakończone" msgid "Printing Failed" -msgstr "" +msgstr "Drukowanie nie powiodło się" msgid "PrintingPause" -msgstr "" +msgstr "Drukowanie zatrzymane" msgid "Prepare" msgstr "Przygotowanie" @@ -3378,28 +3378,28 @@ msgid "Slicing" msgstr "Cięcie" msgid "Pending" -msgstr "" +msgstr "W toku" msgid "Sending" -msgstr "" +msgstr "Wysyłanie" msgid "Sending Finish" -msgstr "" +msgstr "Wysłanie ukończone" msgid "Sending Cancel" -msgstr "" +msgstr "Anulowano wysyłanie" msgid "Sending Failed" -msgstr "" +msgstr "Wysyłanie nieudane" msgid "Print Success" -msgstr "" +msgstr "Pomyślnie wydrukowano" msgid "Print Failed" -msgstr "" +msgstr "Drukowanie nie powiodło się" msgid "Removed" -msgstr "" +msgstr "Usunięto" msgid "Resume" msgstr "Wznów" @@ -3435,10 +3435,10 @@ msgid "Abnormal print file data. Please slice again" msgstr "Nieprawidłowe dane pliku druku. Proszę ponownie przetnij" msgid "There is no device available to send printing." -msgstr "" +msgstr "Brak dostępnego urządzenia lub nie zostało wybrane." msgid "The number of printers in use simultaneously cannot be equal to 0." -msgstr "" +msgstr "Liczba używanych jednocześnie drukarek nie może być równa 0." msgid "Use External Spool" msgstr "Użyj zewnętrznej szpuli" @@ -3450,7 +3450,7 @@ msgid "Select Printers" msgstr "Wybierz drukarki" msgid "Ams Status" -msgstr "Ams Status" +msgstr "Status Ams" msgid "Printing Options" msgstr "Opcje drukowania" @@ -3465,8 +3465,8 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" -"jednocześnie drukowanie na kilku drukarkach (zależy to od liczby urządzeń, " -"które można podgrzewać jednocześnie.)" +"zadania druku jednoczesne. (zależy to od liczby urządzeń, które można " +"podgrzewać jednocześnie.)" msgid "Wait" msgstr "Czekaj" @@ -4712,7 +4712,7 @@ msgid "Export current plate as G-code" msgstr "Eksportuj bieżący stół jako plik G-code" msgid "Export Preset Bundle" -msgstr "" +msgstr "Eksport pakietów ustawień" msgid "Export current configuration to files" msgstr "Eksportuj bieżącą konfigurację do plików" @@ -4880,10 +4880,10 @@ msgid "Export toolpaths as OBJ" msgstr "Eksportuj ścieżki narzędzi jako OBJ" msgid "Open &Slicer" -msgstr "Otwórz &Studio" +msgstr "Otwórz &Slicer" msgid "Open Slicer" -msgstr "Otwórz Studio" +msgstr "Otwórz Slicer" msgid "&Quit" msgstr "&Wyjście" @@ -6287,14 +6287,14 @@ msgstr "Pobieranie nie powiodło się, wyjątek - rozmiar pliku." #, c-format, boost-format msgid "Project downloaded %d%%" -msgstr "" -"Projekt pobrany w %d%%Importowanie do OrcaSlicer nie powiodło się. Proszę " -"pobrać plik i ręcznie go zaimportować." +msgstr "Projekt pobrany w %d%%" msgid "" "Importing to Orca Slicer failed. Please download the file and manually " "import it." msgstr "" +"Importowanie do Orca Slicer nie powiodło się. Proszę pobrać plik i " +"zaimportować go ręcznie." msgid "Import SLA archive" msgstr "Importuj archiwum SLA" @@ -6685,7 +6685,7 @@ msgstr "" msgid "Multi-device Management(Take effect after restarting Orca)." msgstr "" -"Obsługa wielu urządzeń (zacznie być aktywna po ponownym uruchomieniu Slicera)" +"Obsługa wielu urządzeń (zacznie być aktywna po ponownym uruchomieniu Orca)" msgid "" "With this option enabled, you can send a task to multiple devices at the " @@ -7108,7 +7108,7 @@ msgid "Bed Leveling" msgstr "Poziomowanie stołu" msgid "Flow Dynamics Calibration" -msgstr "Kalibracja Dynamiki Przepływu" +msgstr "Kalib. Dyn. Przepływu" msgid "Click here if you can't connect to the printer" msgstr "Kliknij tutaj, jeśli nie możesz połączyć się z drukarką" @@ -7614,8 +7614,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add Primitive" -"\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add " +"Primitive\"->\"Timelapse Wipe Tower\"." msgstr "" "Podczas nagrywania timelapse'a bez głowicy drukującej zaleca się dodanie " "\"Timelaps - Wieża Czyszcząca\" \n" @@ -8025,8 +8025,7 @@ msgid "Set" msgstr "Ustaw" msgid "Click to reset current value and attach to the global value." -msgstr "" -"Kliknij, aby zresetować bieżącą wartość i przypiąć ją do wartości globalnej." +msgstr "Kliknij, aby zresetować bieżącą wartość do wartości globalnej." msgid "Click to drop current modify and reset to saved value." msgstr "" @@ -8621,10 +8620,10 @@ msgid "Shift+Mouse wheel" msgstr "Shift+Kółko myszy" msgid "Horizontal slider - Move to start position" -msgstr "" +msgstr "Suwak poziomy - Przesuń do pozycji początkowej" msgid "Horizontal slider - Move to last position" -msgstr "" +msgstr "Suwak poziomy - Przesuń do ostatniej pozycji" msgid "Release Note" msgstr "Informacje o wydaniu" @@ -8791,7 +8790,7 @@ msgid "" msgstr "" "Błąd wersji oprogramowania układowego. Naprawa i aktualizacja są wymagane " "przed drukowaniem. Czy chcesz zaktualizować teraz? Możesz to również zrobić " -"później na drukarce lub przy następnym uruchomieniu studia." +"później na drukarce lub przy następnym uruchomieniu Orca." msgid "Extension Board" msgstr "Płyta rozszerzeń" @@ -9510,10 +9509,10 @@ msgid "" msgstr "" "Unikaj ruchów nad obrysami-\n" "Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli " -"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad obrysami" -"\" zostanie zignorowana dla tej ścieżki. Długość objazdu można zdefiniować " -"jako wartość absolutna lub obliczona procentowo (np. 50%) z długości ruchu " -"bezpośredniego." +"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad " +"obrysami\" zostanie zignorowana dla tej ścieżki. Długość objazdu można " +"zdefiniować jako wartość absolutna lub obliczona procentowo (np. 50%) z " +"długości ruchu bezpośredniego." msgid "mm or %" msgstr "mm lub %" @@ -10237,7 +10236,7 @@ msgstr "" "niepotrzebnych mostów." msgid "Disabled" -msgstr "Wyłączona" +msgstr "Wyłączony" msgid "Limited filtering" msgstr "Ograniczona filtracja" @@ -11234,10 +11233,10 @@ msgstr "Pełna prędkość wentylatora na warstwie" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" -"\". \"full_fan_speed_layer\" will be ignored if lower than " -"\"close_fan_the_first_x_layers\", in which case the fan will be running at " -"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer " +"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " +"than \"close_fan_the_first_x_layers\", in which case the fan will be running " +"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie " "\"close_fan_the_first_x_layers\" do maksymalnej na warstwie " @@ -11344,6 +11343,14 @@ msgid "" "quality as line segments are converted to arcs by the slicer and then back " "to line segments by the firmware." msgstr "" +"Włącz to, aby uzyskać plik G-code, który zawiera ruchy G2 i G3. Tolerancja " +"dopasowania jest taka sama jak rozdzielczość.\n" +"\n" +"Uwaga: Dla maszyn Klipper, zaleca się wyłączenie tej opcji. Klipper nie " +"korzysta z poleceń łuku, ponieważ są one ponownie dzielone na segmenty linii " +"przez oprogramowanie firmware. Skutkuje to obniżeniem jakości powierzchni, " +"ponieważ segmenty linii są konwertowane na łuki przez slicer, a następnie z " +"powrotem na segmenty linii przez oprogramowanie firmware." msgid "Add line number" msgstr "Dodaj numer linii" @@ -12703,7 +12710,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Ile warstw Skirtu. Zwykle tylko jedna warstwa" msgid "Draft shield" -msgstr "" +msgstr "Draft shield" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12718,6 +12725,27 @@ msgid "" "distance from the object. Therefore, if brims are active it may intersect " "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +"Draft Shield (\"ochrona przed przeciągiem\")jest przydatna do ochrony " +"wydruku z ABS lub ASA przed wypaczaniem i oderwaniem się od stołu drukarki z " +"powodu podmuchów powietrza. Zazwyczaj jest to potrzebne tylko w przypadku " +"drukarek otwartych, czyli bez obudowy.\n" +"\n" +"Opcje:\n" +"Włączone = Skirt jest takiej samej wysokości, jak najwyższy wydrukowany " +"obiekt.\n" +"Ograniczony =Skirt jest takiej samej wysoki, jak został określony w wysokość " +"Skirtu.\n" +"\n" +"Uwaga: Aktywując funkcję Draft Shield, Skirt zostanie wydrukowany w takiej " +"odległości od obiektu jak określono w odstęp Skirtu od obiektu. Jeśli w tym " +"samym czasie Brim jest też aktywny, może dojść do jego przecięcia się ze " +"Skirt-em. Aby temu zapobiec, zwiększ wartość odległości Skirt - Obiekt\n" + +msgid "Limited" +msgstr "Ograniczony" + +msgid "Enabled" +msgstr "Włączony" msgid "Skirt loops" msgstr "Ilość pętli Skirtu" @@ -12734,7 +12762,7 @@ msgstr "" "warstwy." msgid "Skirt minimum extrusion length" -msgstr "" +msgstr "Minimalna długość ekstruzji Skirtu" msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " @@ -12743,6 +12771,11 @@ msgid "" "Using a non zero value is useful if the printer is set up to print without a " "prime line." msgstr "" +"Minimalna długość ekstruzji filamentu podczas drukowania Skirtu, wyrażona w " +"milimetrach. Wartość zero oznacza, że ta funkcja jest wyłączona. \n" +"\n" +"Użycie wartości innej niż 0 jest przydatne, kiedy drukarka jest ustawiona " +"tak aby nie drukowała początkowej linii czyszczącej." msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " @@ -12902,10 +12935,10 @@ msgid "" "triangle mesh slicing. The gap closing operation may reduce the final print " "resolution, therefore it is advisable to keep the value reasonably low." msgstr "" -"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania szpar" -"\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może zmniejszyć " -"finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej wartości na " -"rozsądnie niskim poziomie." +"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania " +"szpar\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może " +"zmniejszyć finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej " +"wartości na rozsądnie niskim poziomie." msgid "Slicing Mode" msgstr "Tryb cięcia" @@ -15274,8 +15307,8 @@ msgstr "" "Czy chcesz go zastąpić?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you selected" -"\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you " +"selected\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Nazwa profilu zostanie zmieniona na \"Dostawca Typ Seria @nazwa drukarki, " @@ -15498,7 +15531,7 @@ msgid "" msgstr "" "\n" "\n" -"Slicer wykrył, że funkcja synchronizacji profili użytkownika nie jest " +"Orca wykrył, że funkcja synchronizacji profili użytkownika nie jest " "włączona, co może skutkować niepoprawnymi ustawieniami filamentu na stronie " "Urządzenia. Kliknij \"Synchronizuj profile użytkownika\", aby włączyć " "funkcję synchronizacji." @@ -16612,6 +16645,15 @@ msgstr "" #~ "PrusaSlicer od Prusa Research. PrusaSlicer z kolei bazuje na Slic3r od " #~ "Alessandro Ranellucci i społeczności RepRap" +#~ msgid "Open &Studio" +#~ msgstr "Otwórz &Studio" + +#~ msgid "Open Studio" +#~ msgstr "Otwórz Studio" + +#~ msgid "Flow Dynamic Calibration" +#~ msgstr "Kalibracja Dynamiki Przepływu" + #~ msgid "Export &Configs" #~ msgstr "Eksportuj &konfiguracje" @@ -17494,9 +17536,6 @@ msgstr "" #~ msgid "Font doesn't have any shape for given text." #~ msgstr "Czcionka nie ma żadnego kształtu dla danego tekstu." -#~ msgid "There is no valid surface for text projection." -#~ msgstr "Nie istnieje żadna prawidłowa powierzchnia do rzutowania tekstu." - #~ msgid "An unexpected error occured" #~ msgstr "Wystąpił nieoczekiwany błąd" @@ -17751,8 +17790,8 @@ msgstr "" #~ "Elevation is too low for object. Use the \"Pad around object\" feature to " #~ "print the object without elevation." #~ msgstr "" -#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu" -#~ "\", aby wydrukować model bez podniesienia." +#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół " +#~ "modelu\", aby wydrukować model bez podniesienia." #~ msgid "" #~ "The endings of the support pillars will be deployed on the gap between " diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index d54c590411..23877c5b17 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: 2024-04-16 11:17-0300\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" @@ -12640,6 +12640,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Voltas da saia" diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index e3e164ba42..6ef7b7020b 100644 --- a/localization/i18n/ru/OrcaSlicer_ru.po +++ b/localization/i18n/ru/OrcaSlicer_ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer V2.0.0 Official Release\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: 2024-04-12 13:49+0700\n" "Last-Translator: \n" "Language-Team: andylg@yandex.ru\n" @@ -12640,6 +12640,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Юбок вокруг модели" diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index 10d28d6075..211673d710 100644 --- a/localization/i18n/sv/OrcaSlicer_sv.po +++ b/localization/i18n/sv/OrcaSlicer_sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11726,6 +11726,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Skirt varv" diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index 385a411fd9..516c58f5bd 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: 2024-05-02 19:55+0300\n" "Last-Translator: Olcay ÖREN\n" "Language-Team: \n" @@ -12532,6 +12532,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Etek sayısı" diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index 83dd2df5f8..3e5d5346ce 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: 2023-08-10 20:25-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -11893,6 +11893,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Спідниця навколо моделі" diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index 5bbe0a4743..998cfc8a0c 100644 --- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po +++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Slic3rPE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: 2023-04-01 13:21+0800\n" "Last-Translator: SoftFever \n" "Language-Team: \n" @@ -11632,6 +11632,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Skirt圈数" diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index 7ee55788ab..a9260d9630 100644 --- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po +++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-21 00:29+0800\n" +"POT-Creation-Date: 2024-05-20 22:45+0200\n" "PO-Revision-Date: 2023-11-06 14:37+0800\n" "Last-Translator: ablegods \n" "Language-Team: \n" @@ -12047,6 +12047,12 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +msgid "Limited" +msgstr "" + +msgid "Enabled" +msgstr "" + msgid "Skirt loops" msgstr "Skirt 圈數" diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index bdc0938511..da57a5dcfc 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3816,9 +3816,9 @@ def = this->add("filament_loading_speed", coFloats); def->enum_values.push_back("disabled"); def->enum_values.push_back("limited"); def->enum_values.push_back("enabled"); - def->enum_labels.push_back("Disabled"); - def->enum_labels.push_back("Limited"); - def->enum_labels.push_back("Enabled"); + def->enum_labels.push_back(L("Disabled")); + def->enum_labels.push_back(L("Limited")); + def->enum_labels.push_back(L("Enabled")); def->mode = comAdvanced; def->set_default_value(new ConfigOptionEnum(dsDisabled)); From 0dbf6102266fbe38adafde50726a344368d8ba31 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Tue, 21 May 2024 07:47:45 +0800 Subject: [PATCH 15/66] Orca Slicer default parameter tweaks (#5406) * gap_fill_target -> gftNowhere z_hop_types -> zhtSlope * ensure_vertical_shell_thickness -> evstModerate * top_surface_pattern -> ipMonotonicLine --- src/libslic3r/PrintConfig.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index da57a5dcfc..5b52fd2696 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -850,7 +850,7 @@ void PrintConfigDef::init_fff_params() def->enum_labels.push_back(L("Top and bottom surfaces")); def->enum_labels.push_back(L("Nowhere")); def->mode = comAdvanced; - def->set_default_value(new ConfigOptionEnum(gftEverywhere)); + def->set_default_value(new ConfigOptionEnum(gftNowhere)); def = this->add("enable_overhang_bridge_fan", coBools); @@ -1439,7 +1439,7 @@ void PrintConfigDef::init_fff_params() def->enum_labels.push_back(L("Moderate")); def->enum_labels.push_back(L("All")); def->mode = comAdvanced; - def->set_default_value(new ConfigOptionEnum(EnsureVerticalShellThickness::evstAll)); + def->set_default_value(new ConfigOptionEnum(EnsureVerticalShellThickness::evstModerate)); auto def_top_fill_pattern = def = this->add("top_surface_pattern", coEnum); def->label = L("Top surface pattern"); @@ -1462,7 +1462,7 @@ void PrintConfigDef::init_fff_params() def->enum_labels.push_back(L("Hilbert Curve")); def->enum_labels.push_back(L("Archimedean Chords")); def->enum_labels.push_back(L("Octagram Spiral")); - def->set_default_value(new ConfigOptionEnum(ipMonotonic)); + def->set_default_value(new ConfigOptionEnum(ipMonotonicLine)); def = this->add("bottom_surface_pattern", coEnum); def->label = L("Bottom surface pattern"); @@ -3538,7 +3538,7 @@ def = this->add("filament_loading_speed", coFloats); def->enum_labels.push_back(L("Slope")); def->enum_labels.push_back(L("Spiral")); def->mode = comAdvanced; - def->set_default_value(new ConfigOptionEnumsGeneric{ ZHopType::zhtNormal }); + def->set_default_value(new ConfigOptionEnumsGeneric{ ZHopType::zhtSlope }); def = this->add("retract_lift_above", coFloats); def->label = L("Only lift Z above"); From a764d836e17a41f896f4537c88f3f342a84dab8e Mon Sep 17 00:00:00 2001 From: Ocraftyone Date: Tue, 21 May 2024 22:52:34 -0400 Subject: [PATCH 16/66] ENH: Open Prinables.com Links and Zip Archives (#3823) * Enable ability to open `prusaslicer://` links * Add needed function to miniz * Import Zip Functionality Allows zip file to be drag and dropped or imported via the menu option Based on prusa3d/PrusaSlicer@ce38e57 and current master branch files * Update dialog style to match Orca * Ensure link is from printables * add toggle option in preferences doesn't actually control anything yet * Add Downloader classes As-is from PS master * Create Orca Styled Variant of Icons * Add Icons to ImGui * Use PS's Downloader impl for `prusaslicer://` links * Implement URL Registering on Windows * Implement prusaslicer:// link on macOS * Remove unnecessary class name qualifier in Plater.hpp * Add downloader desktop integration registration and undo * Revert Info.plist --------- Co-authored-by: SoftFever --- resources/images/notification_open.svg | 40 ++ resources/images/notification_open_dark.svg | 40 ++ resources/images/notification_open_hover.svg | 40 ++ .../images/notification_open_hover_dark.svg | 40 ++ resources/images/notification_pause.svg | 46 ++ resources/images/notification_pause_dark.svg | 46 ++ resources/images/notification_pause_hover.svg | 48 ++ .../images/notification_pause_hover_dark.svg | 48 ++ resources/images/notification_play.svg | 46 ++ resources/images/notification_play_dark.svg | 46 ++ resources/images/notification_play_hover.svg | 46 ++ .../images/notification_play_hover_dark.svg | 46 ++ src/imgui/imconfig.h | 16 +- src/libslic3r/AppConfig.cpp | 5 + src/libslic3r/CMakeLists.txt | 2 + src/libslic3r/Format/ZipperArchiveImport.cpp | 147 ++++++ src/libslic3r/Format/ZipperArchiveImport.hpp | 58 +++ src/miniz/miniz.c | 34 ++ src/miniz/miniz.h | 3 + src/slic3r/CMakeLists.txt | 8 +- src/slic3r/GUI/DesktopIntegrationDialog.cpp | 165 +++++++ src/slic3r/GUI/DesktopIntegrationDialog.hpp | 3 + src/slic3r/GUI/Downloader.cpp | 270 +++++++++++ src/slic3r/GUI/Downloader.hpp | 103 ++++ src/slic3r/GUI/DownloaderFileGet.cpp | 395 ++++++++++++++++ src/slic3r/GUI/DownloaderFileGet.hpp | 49 ++ src/slic3r/GUI/FileArchiveDialog.cpp | 447 ++++++++++++++++++ src/slic3r/GUI/FileArchiveDialog.hpp | 131 +++++ src/slic3r/GUI/GUI_App.cpp | 113 ++++- src/slic3r/GUI/GUI_App.hpp | 12 + src/slic3r/GUI/ImGuiWrapper.cpp | 13 + src/slic3r/GUI/MainFrame.cpp | 23 +- src/slic3r/GUI/NotificationManager.cpp | 288 +++++++++++ src/slic3r/GUI/NotificationManager.hpp | 68 +++ src/slic3r/GUI/Plater.cpp | 230 ++++++++- src/slic3r/GUI/Plater.hpp | 5 +- src/slic3r/GUI/Preferences.cpp | 3 + src/slic3r/Utils/Http.cpp | 16 +- src/slic3r/Utils/Http.hpp | 11 +- 39 files changed, 3109 insertions(+), 41 deletions(-) create mode 100644 resources/images/notification_open.svg create mode 100644 resources/images/notification_open_dark.svg create mode 100644 resources/images/notification_open_hover.svg create mode 100644 resources/images/notification_open_hover_dark.svg create mode 100644 resources/images/notification_pause.svg create mode 100644 resources/images/notification_pause_dark.svg create mode 100644 resources/images/notification_pause_hover.svg create mode 100644 resources/images/notification_pause_hover_dark.svg create mode 100644 resources/images/notification_play.svg create mode 100644 resources/images/notification_play_dark.svg create mode 100644 resources/images/notification_play_hover.svg create mode 100644 resources/images/notification_play_hover_dark.svg create mode 100644 src/libslic3r/Format/ZipperArchiveImport.cpp create mode 100644 src/libslic3r/Format/ZipperArchiveImport.hpp create mode 100644 src/slic3r/GUI/Downloader.cpp create mode 100644 src/slic3r/GUI/Downloader.hpp create mode 100644 src/slic3r/GUI/DownloaderFileGet.cpp create mode 100644 src/slic3r/GUI/DownloaderFileGet.hpp create mode 100644 src/slic3r/GUI/FileArchiveDialog.cpp create mode 100644 src/slic3r/GUI/FileArchiveDialog.hpp diff --git a/resources/images/notification_open.svg b/resources/images/notification_open.svg new file mode 100644 index 0000000000..0532391f05 --- /dev/null +++ b/resources/images/notification_open.svg @@ -0,0 +1,40 @@ + +image/svg+xml + + + + diff --git a/resources/images/notification_open_dark.svg b/resources/images/notification_open_dark.svg new file mode 100644 index 0000000000..00589c1819 --- /dev/null +++ b/resources/images/notification_open_dark.svg @@ -0,0 +1,40 @@ + +image/svg+xml + + + + diff --git a/resources/images/notification_open_hover.svg b/resources/images/notification_open_hover.svg new file mode 100644 index 0000000000..207e9ac75c --- /dev/null +++ b/resources/images/notification_open_hover.svg @@ -0,0 +1,40 @@ + +image/svg+xml + + + + diff --git a/resources/images/notification_open_hover_dark.svg b/resources/images/notification_open_hover_dark.svg new file mode 100644 index 0000000000..07ac166190 --- /dev/null +++ b/resources/images/notification_open_hover_dark.svg @@ -0,0 +1,40 @@ + +image/svg+xml + + + + diff --git a/resources/images/notification_pause.svg b/resources/images/notification_pause.svg new file mode 100644 index 0000000000..fe108b8cae --- /dev/null +++ b/resources/images/notification_pause.svg @@ -0,0 +1,46 @@ + +image/svg+xml + + + + + diff --git a/resources/images/notification_pause_dark.svg b/resources/images/notification_pause_dark.svg new file mode 100644 index 0000000000..f2dc08fb8d --- /dev/null +++ b/resources/images/notification_pause_dark.svg @@ -0,0 +1,46 @@ + +image/svg+xml + + + + + diff --git a/resources/images/notification_pause_hover.svg b/resources/images/notification_pause_hover.svg new file mode 100644 index 0000000000..012e34f5d4 --- /dev/null +++ b/resources/images/notification_pause_hover.svg @@ -0,0 +1,48 @@ + +image/svg+xml + + + + + diff --git a/resources/images/notification_pause_hover_dark.svg b/resources/images/notification_pause_hover_dark.svg new file mode 100644 index 0000000000..8933199eb7 --- /dev/null +++ b/resources/images/notification_pause_hover_dark.svg @@ -0,0 +1,48 @@ + +image/svg+xml + + + + + diff --git a/resources/images/notification_play.svg b/resources/images/notification_play.svg new file mode 100644 index 0000000000..6ff4389ac8 --- /dev/null +++ b/resources/images/notification_play.svg @@ -0,0 +1,46 @@ + +image/svg+xml + + + + + diff --git a/resources/images/notification_play_dark.svg b/resources/images/notification_play_dark.svg new file mode 100644 index 0000000000..974e653f3a --- /dev/null +++ b/resources/images/notification_play_dark.svg @@ -0,0 +1,46 @@ + +image/svg+xml + + + + + diff --git a/resources/images/notification_play_hover.svg b/resources/images/notification_play_hover.svg new file mode 100644 index 0000000000..3a0ff0b223 --- /dev/null +++ b/resources/images/notification_play_hover.svg @@ -0,0 +1,46 @@ + +image/svg+xml + + + + + diff --git a/resources/images/notification_play_hover_dark.svg b/resources/images/notification_play_hover_dark.svg new file mode 100644 index 0000000000..5a41f14fea --- /dev/null +++ b/resources/images/notification_play_hover_dark.svg @@ -0,0 +1,46 @@ + +image/svg+xml + + + + + diff --git a/src/imgui/imconfig.h b/src/imgui/imconfig.h index e51e1f9e14..b230fa718c 100644 --- a/src/imgui/imconfig.h +++ b/src/imgui/imconfig.h @@ -210,6 +210,20 @@ namespace ImGui const wchar_t ExpandArrowIcon = 0x0843; const wchar_t CompleteIcon = 0x0844; -// void MyFunction(const char* name, const MyMatrix44& v); + // Orca + const wchar_t PlayButton = 0x0850; + const wchar_t PlayDarkButton = 0x0851; + const wchar_t PlayHoverButton = 0x0852; + const wchar_t PlayHoverDarkButton = 0x0853; + const wchar_t PauseButton = 0x0854; + const wchar_t PauseDarkButton = 0x0855; + const wchar_t PauseHoverButton = 0x0856; + const wchar_t PauseHoverDarkButton = 0x0857; + const wchar_t OpenButton = 0x0858; + const wchar_t OpenDarkButton = 0x0859; + const wchar_t OpenHoverButton = 0x085A; + const wchar_t OpenHoverDarkButton = 0x085B; + + // void MyFunction(const char* name, const MyMatrix44& v); } diff --git a/src/libslic3r/AppConfig.cpp b/src/libslic3r/AppConfig.cpp index 49a7228f1f..1121a785c5 100644 --- a/src/libslic3r/AppConfig.cpp +++ b/src/libslic3r/AppConfig.cpp @@ -333,6 +333,11 @@ void AppConfig::set_defaults() set("download_path", ""); } + // Orca + if (get("ps_url_registered").empty()) { + set_bool("ps_url_registered", false); + } + if (get("mouse_wheel").empty()) { set("mouse_wheel", "0"); } diff --git a/src/libslic3r/CMakeLists.txt b/src/libslic3r/CMakeLists.txt index 2a37967de5..3ed7972d22 100644 --- a/src/libslic3r/CMakeLists.txt +++ b/src/libslic3r/CMakeLists.txt @@ -145,6 +145,8 @@ set(lisbslic3r_sources Format/SL1.cpp Format/svg.hpp Format/svg.cpp + Format/ZipperArchiveImport.hpp + Format/ZipperArchiveImport.cpp GCode/ThumbnailData.cpp GCode/ThumbnailData.hpp GCode/CoolingBuffer.cpp diff --git a/src/libslic3r/Format/ZipperArchiveImport.cpp b/src/libslic3r/Format/ZipperArchiveImport.cpp new file mode 100644 index 0000000000..426e0d3252 --- /dev/null +++ b/src/libslic3r/Format/ZipperArchiveImport.cpp @@ -0,0 +1,147 @@ +///|/ Copyright (c) Prusa Research 2022 - 2023 Tomáš Mészáros @tamasmeszaros, David Kocík @kocikdav +///|/ +///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher +///|/ +#include "ZipperArchiveImport.hpp" + +#include "libslic3r/miniz_extension.hpp" +#include "libslic3r/Exception.hpp" +#include "libslic3r/PrintConfig.hpp" + +#include +#include +#include + +namespace Slic3r { + +namespace { + +// Read an ini file into boost property tree +boost::property_tree::ptree read_ini(const mz_zip_archive_file_stat &entry, + MZ_Archive &zip) +{ + std::string buf(size_t(entry.m_uncomp_size), '\0'); + + if (!mz_zip_reader_extract_to_mem(&zip.arch, entry.m_file_index, + buf.data(), buf.size(), 0)) + throw Slic3r::FileIOError(zip.get_errorstr()); + + boost::property_tree::ptree tree; + std::stringstream ss(buf); + boost::property_tree::read_ini(ss, tree); + return tree; +} + +// Read an arbitrary file into EntryBuffer +EntryBuffer read_entry(const mz_zip_archive_file_stat &entry, + MZ_Archive &zip, + const std::string &name) +{ + std::vector buf(entry.m_uncomp_size); + + if (!mz_zip_reader_extract_to_mem(&zip.arch, entry.m_file_index, + buf.data(), buf.size(), 0)) + throw Slic3r::FileIOError(zip.get_errorstr()); + + return {std::move(buf), (name.empty() ? entry.m_filename : name)}; +} + +} // namespace + +ZipperArchive read_zipper_archive(const std::string &zipfname, + const std::vector &includes, + const std::vector &excludes) +{ + ZipperArchive arch; + + // Little RAII + struct Arch : public MZ_Archive + { + Arch(const std::string &fname) + { + if (!open_zip_reader(&arch, fname)) + throw Slic3r::FileIOError(get_errorstr()); + } + + ~Arch() { close_zip_reader(&arch); } + } zip(zipfname); + + mz_uint num_entries = mz_zip_reader_get_num_files(&zip.arch); + + for (mz_uint i = 0; i < num_entries; ++i) { + mz_zip_archive_file_stat entry; + + if (mz_zip_reader_file_stat(&zip.arch, i, &entry)) { + std::string name = entry.m_filename; + boost::algorithm::to_lower(name); + + if (!std::any_of(includes.begin(), includes.end(), + [&name](const std::string &incl) { + return boost::algorithm::contains(name, incl); + })) + continue; + + if (std::any_of(excludes.begin(), excludes.end(), + [&name](const std::string &excl) { + return boost::algorithm::contains(name, excl); + })) + continue; + + if (name == CONFIG_FNAME) { + arch.config = read_ini(entry, zip); + continue; + } + + if (name == PROFILE_FNAME) { + arch.profile = read_ini(entry, zip); + continue; + } + + auto it = std::lower_bound( + arch.entries.begin(), arch.entries.end(), + EntryBuffer{{}, name}, + [](const EntryBuffer &r1, const EntryBuffer &r2) { + return std::less()(r1.fname, r2.fname); + }); + + arch.entries.insert(it, read_entry(entry, zip, name)); + } + } + + return arch; +} + +std::pair extract_profile( + const ZipperArchive &arch, DynamicPrintConfig &profile_out) +{ + DynamicPrintConfig profile_in, profile_use; + ConfigSubstitutions config_substitutions = + profile_in.load(arch.profile, + ForwardCompatibilitySubstitutionRule::Enable); + + if (profile_in.empty()) { // missing profile... do guess work + // try to recover the layer height from the config.ini which was + // present in all versions of sl1 files. + if (auto lh_opt = arch.config.find("layerHeight"); + lh_opt != arch.config.not_found()) { + auto lh_str = lh_opt->second.data(); + + size_t pos = 0; + double lh = string_to_double_decimal_point(lh_str, &pos); + if (pos) { // TODO: verify that pos is 0 when parsing fails + profile_out.set("layer_height", lh); + profile_out.set("initial_layer_height", lh); + } + } + } + + // If the archive contains an empty profile, use the one that was passed + // as output argument then replace it with the readed profile to report + // that it was empty. + profile_use = profile_in.empty() ? profile_out : profile_in; + profile_out = profile_in; + + return {profile_use, std::move(config_substitutions)}; +} + +} // namespace Slic3r diff --git a/src/libslic3r/Format/ZipperArchiveImport.hpp b/src/libslic3r/Format/ZipperArchiveImport.hpp new file mode 100644 index 0000000000..d375cf55d6 --- /dev/null +++ b/src/libslic3r/Format/ZipperArchiveImport.hpp @@ -0,0 +1,58 @@ +///|/ Copyright (c) Prusa Research 2022 Tomáš Mészáros @tamasmeszaros +///|/ +///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher +///|/ +#ifndef ZIPPERARCHIVEIMPORT_HPP +#define ZIPPERARCHIVEIMPORT_HPP + +#include +#include +#include + +#include + +#include "libslic3r/PrintConfig.hpp" + +namespace Slic3r { + +// Buffer for arbitraryfiles inside a zipper archive. +struct EntryBuffer +{ + std::vector buf; + std::string fname; +}; + +// Structure holding the data read from a zipper archive. +struct ZipperArchive +{ + boost::property_tree::ptree profile, config; + std::vector entries; +}; + +// Names of the files containing metadata inside the archive. +const constexpr char *CONFIG_FNAME = "config.ini"; +const constexpr char *PROFILE_FNAME = "prusaslicer.ini"; + +// Read an archive that was written using the Zipper class. +// The includes parameter is a set of file name substrings that the entries +// must contain to be included in ZipperArchive. +// The excludes parameter may contain substrings that filenames must not +// contain. +// Every file in the archive is read into ZipperArchive::entries +// except the files CONFIG_FNAME, and PROFILE_FNAME which are read into +// ZipperArchive::config and ZipperArchive::profile structures. +ZipperArchive read_zipper_archive(const std::string &zipfname, + const std::vector &includes, + const std::vector &excludes); + +// Extract the print profile form the archive into 'out'. +// Returns a profile that has correct parameters to use for model reconstruction +// even if the needed parameters were not fully found in the archive's metadata. +// The inout argument shall be a usable fallback profile if the archive +// has totally corrupted metadata. +std::pair extract_profile( + const ZipperArchive &arch, DynamicPrintConfig &inout); + +} // namespace Slic3r + +#endif // ZIPPERARCHIVEIMPORT_HPP diff --git a/src/miniz/miniz.c b/src/miniz/miniz.c index d649adb1bc..c6cd29e003 100644 --- a/src/miniz/miniz.c +++ b/src/miniz/miniz.c @@ -8000,6 +8000,40 @@ mz_uint mz_zip_reader_get_extra(mz_zip_archive* pZip, mz_uint file_index, char* return ne + 1; } +mz_uint mz_zip_reader_get_filename_from_extra(mz_zip_archive* pZip, mz_uint file_index, char* buffer, mz_uint extra_buf_size) +{ + if (extra_buf_size == 0) + return 0; + mz_uint nf; + mz_uint ne; + const mz_uint8* p = mz_zip_get_cdh(pZip, file_index); + if (!p) + { + if (extra_buf_size) + buffer[0] = '\0'; + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return 0; + } + nf = MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + ne = MZ_READ_LE16(p + MZ_ZIP_CDH_EXTRA_LEN_OFS); + + int copy = 0; + char const* p_nf = p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + nf; + char const* e = p_nf + ne + 1; + while (p_nf + 4 < e) { + mz_uint16 len = ((mz_uint16)p_nf[2]) | ((mz_uint16)p_nf[3] << 8); + if (p_nf[0] == '\x75' && p_nf[1] == '\x70' && len >= 5 && p_nf + 4 + len < e && p_nf[4] == '\x01') { + mz_uint length = MZ_MIN(len - 5, extra_buf_size - 1); + memcpy(buffer, p_nf + 9, length); + return length; + } + else { + p_nf += 4 + len; + } + } + return 0; +} + mz_bool mz_zip_reader_file_stat(mz_zip_archive *pZip, mz_uint file_index, mz_zip_archive_file_stat *pStat) { return mz_zip_file_stat_internal(pZip, file_index, mz_zip_get_cdh(pZip, file_index), pStat, NULL); diff --git a/src/miniz/miniz.h b/src/miniz/miniz.h index 4ed3320a1c..f0549f3de2 100644 --- a/src/miniz/miniz.h +++ b/src/miniz/miniz.h @@ -1171,6 +1171,9 @@ mz_uint mz_zip_reader_get_extra(mz_zip_archive *pZip, mz_uint file_index, char * int mz_zip_reader_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags); int mz_zip_reader_locate_file_v2(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags, mz_uint32 *file_index); +/* Retrieves the filename of an archive file entry from EXTRA ID. */ +mz_uint mz_zip_reader_get_filename_from_extra(mz_zip_archive * pZip, mz_uint file_index, char* buffer, mz_uint extra_buf_size); + /* Returns detailed information about an archive file entry. */ mz_bool mz_zip_reader_file_stat(mz_zip_archive *pZip, mz_uint file_index, mz_zip_archive_file_stat *pStat); diff --git a/src/slic3r/CMakeLists.txt b/src/slic3r/CMakeLists.txt index 6ff0adf18b..d03a0c20dc 100644 --- a/src/slic3r/CMakeLists.txt +++ b/src/slic3r/CMakeLists.txt @@ -111,7 +111,7 @@ set(SLIC3R_GUI_SOURCES GUI/GLCanvas3D.hpp GUI/GLCanvas3D.cpp GUI/SceneRaycaster.hpp - GUI/SceneRaycaster.cpp + GUI/SceneRaycaster.cpp GUI/OpenGLManager.hpp GUI/OpenGLManager.cpp GUI/Selection.hpp @@ -290,6 +290,8 @@ set(SLIC3R_GUI_SOURCES GUI/ConfigManipulation.hpp GUI/Field.cpp GUI/Field.hpp + GUI/FileArchiveDialog.cpp + GUI/FileArchiveDialog.hpp GUI/OptionsGroup.cpp GUI/OptionsGroup.hpp GUI/OG_CustomCtrl.cpp @@ -342,6 +344,10 @@ set(SLIC3R_GUI_SOURCES GUI/ConfigWizard_private.hpp GUI/MsgDialog.cpp GUI/MsgDialog.hpp + GUI/Downloader.hpp + GUI/Downloader.cpp + GUI/DownloaderFileGet.hpp + GUI/DownloaderFileGet.cpp GUI/DownloadProgressDialog.hpp GUI/DownloadProgressDialog.cpp GUI/UpdateDialogs.cpp diff --git a/src/slic3r/GUI/DesktopIntegrationDialog.cpp b/src/slic3r/GUI/DesktopIntegrationDialog.cpp index 05bedf536f..a9d8708462 100644 --- a/src/slic3r/GUI/DesktopIntegrationDialog.cpp +++ b/src/slic3r/GUI/DesktopIntegrationDialog.cpp @@ -455,6 +455,171 @@ void DesktopIntegrationDialog::undo_desktop_intgration() wxGetApp().plater()->get_notification_manager()->push_notification(NotificationType::UndoDesktopIntegrationSuccess); } +void DesktopIntegrationDialog::perform_downloader_desktop_integration() +{ + BOOST_LOG_TRIVIAL(debug) << "performing downloader desktop integration."; + // Path to appimage + const char* appimage_env = std::getenv("APPIMAGE"); + std::string excutable_path; + if (appimage_env) { + try { + excutable_path = boost::filesystem::canonical(boost::filesystem::path(appimage_env)).string(); + } + catch (std::exception&) { + BOOST_LOG_TRIVIAL(error) << "Performing downloader desktop integration failed - boost::filesystem::canonical did not return appimage path."; + show_error(nullptr, _L("Performing downloader desktop integration failed - boost::filesystem::canonical did not return appimage path.")); + return; + } + } + else { + // not appimage - find executable + excutable_path = boost::dll::program_location().string(); + //excutable_path = wxStandardPaths::Get().GetExecutablePath().string(); + BOOST_LOG_TRIVIAL(debug) << "non-appimage path to executable: " << excutable_path; + if (excutable_path.empty()) + { + BOOST_LOG_TRIVIAL(error) << "Performing downloader desktop integration failed - no executable found."; + show_error(nullptr, _L("Performing downloader desktop integration failed - Could not find executable.")); + return; + } + } + + // Escape ' characters in appimage, other special symbols will be esacaped in desktop file by 'excutable_path' + //boost::replace_all(excutable_path, "'", "'\\''"); + excutable_path = escape_string(excutable_path); + + // Find directories icons and applications + // $XDG_DATA_HOME defines the base directory relative to which user specific data files should be stored. + // If $XDG_DATA_HOME is either not set or empty, a default equal to $HOME/.local/share should be used. + // $XDG_DATA_DIRS defines the preference-ordered set of base directories to search for data files in addition to the $XDG_DATA_HOME base directory. + // The directories in $XDG_DATA_DIRS should be seperated with a colon ':'. + // If $XDG_DATA_DIRS is either not set or empty, a value equal to /usr/local/share/:/usr/share/ should be used. + std::vectortarget_candidates; + resolve_path_from_var("XDG_DATA_HOME", target_candidates); + resolve_path_from_var("XDG_DATA_DIRS", target_candidates); + + AppConfig* app_config = wxGetApp().app_config; + // suffix string to create different desktop file for alpha, beta. + + std::string version_suffix; + std::string name_suffix; + std::string version(SLIC3R_VERSION); + if (version.find("alpha") != std::string::npos) + { + version_suffix = "-alpha"; + name_suffix = " - alpha"; + } + else if (version.find("beta") != std::string::npos) + { + version_suffix = "-beta"; + name_suffix = " - beta"; + } + + // theme path to icon destination + std::string icon_theme_path; + std::string icon_theme_dirs; + + if (platform_flavor() == PlatformFlavor::LinuxOnChromium) { + icon_theme_path = "hicolor/96x96/apps/"; + icon_theme_dirs = "/hicolor/96x96/apps"; + } + + std::string target_dir_desktop; + + // desktop file + // iterate thru target_candidates to find applications folder + + std::string desktop_file_downloader = GUI::format( + "[Desktop Entry]\n" + "Name=PrusaSlicer URL Protocol%1%\n" + "Exec=\"%2%\" %%u\n" + "Terminal=false\n" + "Type=Application\n" + "MimeType=x-scheme-handler/prusaslicer;\n" + "StartupNotify=false\n" + "NoDisplay=true\n" + , name_suffix, excutable_path); + + // desktop file for downloader as part of main app + std::string desktop_path = GUI::format("%1%/applications/PrusaSlicerURLProtocol%2%.desktop", target_dir_desktop, version_suffix); + if (create_desktop_file(desktop_path, desktop_file_downloader)) { + // save path to desktop file + app_config->set("desktop_integration_URL_path", desktop_path); + // finish registration on mime type + std::string command = GUI::format("xdg-mime default PrusaSlicerURLProtocol%1%.desktop x-scheme-handler/prusaslicer", version_suffix); + BOOST_LOG_TRIVIAL(debug) << "system command: " << command; + int r = system(command.c_str()); + BOOST_LOG_TRIVIAL(debug) << "system result: " << r; + + } + + bool candidate_found = false; + for (size_t i = 0; i < target_candidates.size(); ++i) { + if (contains_path_dir(target_candidates[i], "applications")) { + target_dir_desktop = target_candidates[i]; + // Write slicer desktop file + std::string path = GUI::format("%1%/applications/PrusaSlicerURLProtocol%2%.desktop", target_dir_desktop, version_suffix); + if (create_desktop_file(path, desktop_file_downloader)) { + app_config->set("desktop_integration_URL_path", path); + candidate_found = true; + BOOST_LOG_TRIVIAL(debug) << "PrusaSlicerURLProtocol.desktop file installation success."; + break; + } + else { + // write failed - try another path + BOOST_LOG_TRIVIAL(debug) << "Attempt to PrusaSlicerURLProtocol.desktop file installation failed. failed path: " << target_candidates[i]; + target_dir_desktop.clear(); + } + } + } + // if all failed - try creating default home folder + if (!candidate_found) { + // create $HOME/.local/share + create_path(boost::nowide::narrow(wxFileName::GetHomeDir()), ".local/share/applications"); + // create desktop file + target_dir_desktop = GUI::format("%1%/.local/share", wxFileName::GetHomeDir()); + std::string path = GUI::format("%1%/applications/PrusaSlicerURLProtocol%2%.desktop", target_dir_desktop, version_suffix); + if (contains_path_dir(target_dir_desktop, "applications")) { + if (!create_desktop_file(path, desktop_file_downloader)) { + // Desktop file not written - end desktop integration + BOOST_LOG_TRIVIAL(error) << "Performing downloader desktop integration failed - could not create desktop file."; + return; + } + app_config->set("desktop_integration_URL_path", path); + } + else { + // Desktop file not written - end desktop integration + BOOST_LOG_TRIVIAL(error) << "Performing downloader desktop integration failed because the application directory was not found."; + return; + } + } + assert(!target_dir_desktop.empty()); + if (target_dir_desktop.empty()) { + // Desktop file not written - end desktop integration + BOOST_LOG_TRIVIAL(error) << "Performing downloader desktop integration failed because the application directory was not found."; + show_error(nullptr, _L("Performing downloader desktop integration failed because the application directory was not found.")); + return; + } + + // finish registration on mime type + std::string command = GUI::format("xdg-mime default PrusaSlicerURLProtocol%1%.desktop x-scheme-handler/prusaslicer", version_suffix); + BOOST_LOG_TRIVIAL(debug) << "system command: " << command; + int r = system(command.c_str()); + BOOST_LOG_TRIVIAL(debug) << "system result: " << r; + + wxGetApp().plater()->get_notification_manager()->push_notification(NotificationType::DesktopIntegrationSuccess); +} +void DesktopIntegrationDialog::undo_downloader_registration() +{ + const AppConfig *app_config = wxGetApp().app_config; + std::string path = std::string(app_config->get("desktop_integration_URL_path")); + if (!path.empty()) { + BOOST_LOG_TRIVIAL(debug) << "removing " << path; + std::remove(path.c_str()); + } + // There is no need to undo xdg-mime default command. It is done automatically when desktop file is deleted. +} + DesktopIntegrationDialog::DesktopIntegrationDialog(wxWindow *parent) : wxDialog(parent, wxID_ANY, _(L("Desktop Integration")), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER) { diff --git a/src/slic3r/GUI/DesktopIntegrationDialog.hpp b/src/slic3r/GUI/DesktopIntegrationDialog.hpp index 4bb7c5e2c0..6605773234 100644 --- a/src/slic3r/GUI/DesktopIntegrationDialog.hpp +++ b/src/slic3r/GUI/DesktopIntegrationDialog.hpp @@ -29,6 +29,9 @@ public: static void perform_desktop_integration(); // Deletes Desktop files and icons for both PrusaSlicer and GcodeViewer at paths stored in App Config. static void undo_desktop_intgration(); + + static void perform_downloader_desktop_integration(); + static void undo_downloader_registration(); private: }; diff --git a/src/slic3r/GUI/Downloader.cpp b/src/slic3r/GUI/Downloader.cpp new file mode 100644 index 0000000000..229936160f --- /dev/null +++ b/src/slic3r/GUI/Downloader.cpp @@ -0,0 +1,270 @@ +///|/ Copyright (c) Prusa Research 2023 David Kocík @kocikdav, Oleksandra Iushchenko @YuSanka +///|/ +///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher +///|/ +#include "Downloader.hpp" +#include "GUI_App.hpp" +#include "NotificationManager.hpp" +#include "format.hpp" +#include "MainFrame.hpp" + +#include +#include +#include + +namespace Slic3r { +namespace GUI { + +namespace { +void open_folder(const std::string& path) +{ + // Code taken from NotificationManager.cpp + + // Execute command to open a file explorer, platform dependent. + // FIXME: The const_casts aren't needed in wxWidgets 3.1, remove them when we upgrade. + +#ifdef _WIN32 + const wxString widepath = from_u8(path); + const wchar_t* argv[] = { L"explorer", widepath.GetData(), nullptr }; + ::wxExecute(const_cast(argv), wxEXEC_ASYNC, nullptr); +#elif __APPLE__ + const char* argv[] = { "open", path.data(), nullptr }; + ::wxExecute(const_cast(argv), wxEXEC_ASYNC, nullptr); +#else + const char* argv[] = { "xdg-open", path.data(), nullptr }; + + // Check if we're running in an AppImage container, if so, we need to remove AppImage's env vars, + // because they may mess up the environment expected by the file manager. + // Mostly this is about LD_LIBRARY_PATH, but we remove a few more too for good measure. + if (wxGetEnv("APPIMAGE", nullptr)) { + // We're running from AppImage + wxEnvVariableHashMap env_vars; + wxGetEnvMap(&env_vars); + + env_vars.erase("APPIMAGE"); + env_vars.erase("APPDIR"); + env_vars.erase("LD_LIBRARY_PATH"); + env_vars.erase("LD_PRELOAD"); + env_vars.erase("UNION_PRELOAD"); + + wxExecuteEnv exec_env; + exec_env.env = std::move(env_vars); + + wxString owd; + if (wxGetEnv("OWD", &owd)) { + // This is the original work directory from which the AppImage image was run, + // set it as CWD for the child process: + exec_env.cwd = std::move(owd); + } + + ::wxExecute(const_cast(argv), wxEXEC_ASYNC, nullptr, &exec_env); + } + else { + // Looks like we're NOT running from AppImage, we'll make no changes to the environment. + ::wxExecute(const_cast(argv), wxEXEC_ASYNC, nullptr, nullptr); + } +#endif +} + +std::string filename_from_url(const std::string& url) +{ + // TODO: can it be done with curl? + size_t slash = url.find_last_of("/"); + if (slash == std::string::npos && slash != url.size() - 1) + return {}; + return url.substr(slash + 1, url.size() - slash + 1); +} +} + +Download::Download(int ID, std::string url, wxEvtHandler* evt_handler, const boost::filesystem::path& dest_folder) + : m_id(ID) + , m_filename(filename_from_url(url)) + , m_dest_folder(dest_folder) +{ + assert(boost::filesystem::is_directory(dest_folder)); + m_final_path = dest_folder / m_filename; + m_file_get = std::make_shared(ID, std::move(url), m_filename, evt_handler, dest_folder); +} + +void Download::start() +{ + m_state = DownloadState::DownloadOngoing; + m_file_get->get(); +} +void Download::cancel() +{ + m_state = DownloadState::DownloadStopped; + m_file_get->cancel(); +} +void Download::pause() +{ + //assert(m_state == DownloadState::DownloadOngoing); + // if instead of assert - it can happen that user clicks on pause several times before the pause happens + if (m_state != DownloadState::DownloadOngoing) + return; + m_state = DownloadState::DownloadPaused; + m_file_get->pause(); +} +void Download::resume() +{ + //assert(m_state == DownloadState::DownloadPaused); + if (m_state != DownloadState::DownloadPaused) + return; + m_state = DownloadState::DownloadOngoing; + m_file_get->resume(); +} + + +Downloader::Downloader() + : wxEvtHandler() +{ + //Bind(EVT_DWNLDR_FILE_COMPLETE, [](const wxCommandEvent& evt) {}); + //Bind(EVT_DWNLDR_FILE_PROGRESS, [](const wxCommandEvent& evt) {}); + //Bind(EVT_DWNLDR_FILE_ERROR, [](const wxCommandEvent& evt) {}); + //Bind(EVT_DWNLDR_FILE_NAME_CHANGE, [](const wxCommandEvent& evt) {}); + + Bind(EVT_DWNLDR_FILE_COMPLETE, &Downloader::on_complete, this); + Bind(EVT_DWNLDR_FILE_PROGRESS, &Downloader::on_progress, this); + Bind(EVT_DWNLDR_FILE_ERROR, &Downloader::on_error, this); + Bind(EVT_DWNLDR_FILE_NAME_CHANGE, &Downloader::on_name_change, this); + Bind(EVT_DWNLDR_FILE_PAUSED, &Downloader::on_paused, this); + Bind(EVT_DWNLDR_FILE_CANCELED, &Downloader::on_canceled, this); +} + +void Downloader::start_download(const std::string& full_url) +{ + assert(m_initialized); + + // Orca: check if url is registered + if (!wxGetApp().app_config->has("ps_url_registered") || !wxGetApp().app_config->get_bool("ps_url_registered")) { + BOOST_LOG_TRIVIAL(error) << "PrusaSlicer links are not enabled. Download aborted: " << full_url; + show_error(nullptr, "PrusaSlicer links are not enabled in preferences. Download aborted."); + return; + } + + // Orca: Move to the 3D view + MainFrame* mainframe = wxGetApp().mainframe; + Plater* plater = wxGetApp().plater(); + + mainframe->Freeze(); + mainframe->select_tab((size_t)MainFrame::TabPosition::tp3DEditor); + plater->select_view_3D("3D"); + plater->select_view("plate"); + plater->get_current_canvas3D()->zoom_to_bed(); + mainframe->Thaw(); + + // Orca: Replace PS workaround for "mysterious slash" with a more dynamic approach + // Windows seems to have fixed the issue and this provides backwards compatability for those it still affects + boost::regex re(R"(^prusaslicer:\/\/open[\/]?\?file=)", boost::regbase::icase); + boost::smatch results; + + if (!boost::regex_search(full_url, results, re)) { + BOOST_LOG_TRIVIAL(error) << "Could not start download due to wrong URL: " << full_url; + // Orca: show error + NotificationManager* ntf_mngr = wxGetApp().notification_manager(); + ntf_mngr->push_notification(NotificationType::CustomNotification, NotificationManager::NotificationLevel::ErrorNotificationLevel, + "Could not start download due to malformed URL"); + return; + } + size_t id = get_next_id(); + std::string escaped_url = FileGet::escape_url(full_url.substr(results.length())); + if (!boost::starts_with(escaped_url, "https://") || !FileGet::is_subdomain(escaped_url, "printables.com")) { + std::string msg = format(_L("Download won't start. Download URL doesn't point to https://printables.com : %1%"), escaped_url); + BOOST_LOG_TRIVIAL(error) << msg; + NotificationManager* ntf_mngr = wxGetApp().notification_manager(); + ntf_mngr->push_notification(NotificationType::CustomNotification, NotificationManager::NotificationLevel::ErrorNotificationLevel, + "Download failed. Download URL doesn't point to https://printables.com."); + return; + } + + std::string text(escaped_url); + m_downloads.emplace_back(std::make_unique(id, std::move(escaped_url), this, m_dest_folder)); + NotificationManager* ntf_mngr = wxGetApp().notification_manager(); + ntf_mngr->push_download_URL_progress_notification(id, m_downloads.back()->get_filename(), std::bind(&Downloader::user_action_callback, this, std::placeholders::_1, std::placeholders::_2)); + m_downloads.back()->start(); + BOOST_LOG_TRIVIAL(debug) << "started download"; +} + +void Downloader::on_progress(wxCommandEvent& event) +{ + size_t id = event.GetInt(); + float percent = (float)std::stoi(boost::nowide::narrow(event.GetString())) / 100.f; + //BOOST_LOG_TRIVIAL(error) << "progress " << id << ": " << percent; + NotificationManager* ntf_mngr = wxGetApp().notification_manager(); + BOOST_LOG_TRIVIAL(trace) << "Download "<< id << ": " << percent; + ntf_mngr->set_download_URL_progress(id, percent); +} +void Downloader::on_error(wxCommandEvent& event) +{ + size_t id = event.GetInt(); + set_download_state(event.GetInt(), DownloadState::DownloadError); + BOOST_LOG_TRIVIAL(error) << "Download error: " << event.GetString(); + NotificationManager* ntf_mngr = wxGetApp().notification_manager(); + ntf_mngr->set_download_URL_error(id, boost::nowide::narrow(event.GetString())); + show_error(nullptr, format_wxstr(L"%1%\n%2%", _L("The download has failed") + ":", event.GetString())); +} +void Downloader::on_complete(wxCommandEvent& event) +{ + // TODO: is this always true? : + // here we open the file itself, notification should get 1.f progress from on progress. + set_download_state(event.GetInt(), DownloadState::DownloadDone); + wxArrayString paths; + paths.Add(event.GetString()); + wxGetApp().plater()->load_files(paths); +} +bool Downloader::user_action_callback(DownloaderUserAction action, int id) +{ + for (size_t i = 0; i < m_downloads.size(); ++i) { + if (m_downloads[i]->get_id() == id) { + switch (action) { + case DownloadUserCanceled: + m_downloads[i]->cancel(); + return true; + case DownloadUserPaused: + m_downloads[i]->pause(); + return true; + case DownloadUserContinued: + m_downloads[i]->resume(); + return true; + case DownloadUserOpenedFolder: + open_folder(m_downloads[i]->get_dest_folder()); + return true; + default: + return false; + } + } + } + return false; +} + +void Downloader::on_name_change(wxCommandEvent& event) +{ + +} + +void Downloader::on_paused(wxCommandEvent& event) +{ + size_t id = event.GetInt(); + NotificationManager* ntf_mngr = wxGetApp().notification_manager(); + ntf_mngr->set_download_URL_paused(id); +} + +void Downloader::on_canceled(wxCommandEvent& event) +{ + size_t id = event.GetInt(); + NotificationManager* ntf_mngr = wxGetApp().notification_manager(); + ntf_mngr->set_download_URL_canceled(id); +} + +void Downloader::set_download_state(int id, DownloadState state) +{ + for (size_t i = 0; i < m_downloads.size(); ++i) { + if (m_downloads[i]->get_id() == id) { + m_downloads[i]->set_state(state); + return; + } + } +} + +} +} \ No newline at end of file diff --git a/src/slic3r/GUI/Downloader.hpp b/src/slic3r/GUI/Downloader.hpp new file mode 100644 index 0000000000..4fe896f5ce --- /dev/null +++ b/src/slic3r/GUI/Downloader.hpp @@ -0,0 +1,103 @@ +///|/ Copyright (c) Prusa Research 2023 David Kocík @kocikdav +///|/ +///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher +///|/ +#ifndef slic3r_Downloader_hpp_ +#define slic3r_Downloader_hpp_ + +#include "DownloaderFileGet.hpp" +#include +#include + +namespace Slic3r { +namespace GUI { + +class NotificationManager; + +enum DownloadState +{ + DownloadPending = 0, + DownloadOngoing, + DownloadStopped, + DownloadDone, + DownloadError, + DownloadPaused, + DownloadStateUnknown +}; + +enum DownloaderUserAction +{ + DownloadUserCanceled, + DownloadUserPaused, + DownloadUserContinued, + DownloadUserOpenedFolder +}; + +class Download { +public: + Download(int ID, std::string url, wxEvtHandler* evt_handler, const boost::filesystem::path& dest_folder); + void start(); + void cancel(); + void pause(); + void resume(); + + int get_id() const { return m_id; } + boost::filesystem::path get_final_path() const { return m_final_path; } + std::string get_filename() const { return m_filename; } + DownloadState get_state() const { return m_state; } + void set_state(DownloadState state) { m_state = state; } + std::string get_dest_folder() { return m_dest_folder.string(); } +private: + const int m_id; + std::string m_filename; + boost::filesystem::path m_final_path; + boost::filesystem::path m_dest_folder; + std::shared_ptr m_file_get; + DownloadState m_state { DownloadState::DownloadPending }; +}; + +class Downloader : public wxEvtHandler { +public: + Downloader(); + + bool get_initialized() { return m_initialized; } + void init(const boost::filesystem::path& dest_folder) + { + m_dest_folder = dest_folder; + m_initialized = true; + } + void start_download(const std::string& full_url); + // cancel = false -> just pause + bool user_action_callback(DownloaderUserAction action, int id); +private: + bool m_initialized { false }; + + std::vector> m_downloads; + boost::filesystem::path m_dest_folder; + + size_t m_next_id { 0 }; + size_t get_next_id() { return ++m_next_id; } + + void on_progress(wxCommandEvent& event); + void on_error(wxCommandEvent& event); + void on_complete(wxCommandEvent& event); + void on_name_change(wxCommandEvent& event); + void on_paused(wxCommandEvent& event); + void on_canceled(wxCommandEvent& event); + + void set_download_state(int id, DownloadState state); + /* + bool is_in_state(int id, DownloadState state) const; + DownloadState get_download_state(int id) const; + bool cancel_download(int id); + bool pause_download(int id); + bool resume_download(int id); + bool delete_download(int id); + wxString get_path_of(int id) const; + wxString get_folder_path_of(int id) const; + */ +}; + +} +} +#endif \ No newline at end of file diff --git a/src/slic3r/GUI/DownloaderFileGet.cpp b/src/slic3r/GUI/DownloaderFileGet.cpp new file mode 100644 index 0000000000..137a7e9bc1 --- /dev/null +++ b/src/slic3r/GUI/DownloaderFileGet.cpp @@ -0,0 +1,395 @@ +///|/ Copyright (c) Prusa Research 2023 Oleksandra Iushchenko @YuSanka, David Kocík @kocikdav +///|/ +///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher +///|/ +#include "DownloaderFileGet.hpp" + +#include +#include +#include +#include +#include +#include +#include + +#include "format.hpp" +#include "GUI.hpp" +#include "I18N.hpp" + +namespace Slic3r { +namespace GUI { + +const size_t DOWNLOAD_MAX_CHUNK_SIZE = 10 * 1024 * 1024; +const size_t DOWNLOAD_SIZE_LIMIT = 1024 * 1024 * 1024; + +std::string FileGet::escape_url(const std::string& unescaped) +{ + std::string ret_val; + CURL* curl = curl_easy_init(); + if (curl) { + int decodelen; + char* decoded = curl_easy_unescape(curl, unescaped.c_str(), unescaped.size(), &decodelen); + if (decoded) { + ret_val = std::string(decoded); + curl_free(decoded); + } + curl_easy_cleanup(curl); + } + return ret_val; +} +bool FileGet::is_subdomain(const std::string& url, const std::string& domain) +{ + // domain should be f.e. printables.com (.com including) + char* host; + std::string host_string; + CURLUcode rc; + CURLU* curl = curl_url(); + if (!curl) { + BOOST_LOG_TRIVIAL(error) << "Failed to init Curl library in function is_domain."; + return false; + } + rc = curl_url_set(curl, CURLUPART_URL, url.c_str(), 0); + if (rc != CURLUE_OK) { + curl_url_cleanup(curl); + return false; + } + rc = curl_url_get(curl, CURLUPART_HOST, &host, 0); + if (rc != CURLUE_OK || !host) { + curl_url_cleanup(curl); + return false; + } + host_string = std::string(host); + curl_free(host); + // now host should be subdomain.domain or just domain + if (domain == host_string) { + curl_url_cleanup(curl); + return true; + } + if(boost::ends_with(host_string, "." + domain)) { + curl_url_cleanup(curl); + return true; + } + curl_url_cleanup(curl); + return false; +} + +namespace { +unsigned get_current_pid() +{ +#ifdef WIN32 + return GetCurrentProcessId(); +#else + return ::getpid(); +#endif +} +} + +// int = DOWNLOAD ID; string = file path +wxDEFINE_EVENT(EVT_DWNLDR_FILE_COMPLETE, wxCommandEvent); +// int = DOWNLOAD ID; string = error msg +wxDEFINE_EVENT(EVT_DWNLDR_FILE_ERROR, wxCommandEvent); +// int = DOWNLOAD ID; string = progress percent +wxDEFINE_EVENT(EVT_DWNLDR_FILE_PROGRESS, wxCommandEvent); +// int = DOWNLOAD ID; string = name +wxDEFINE_EVENT(EVT_DWNLDR_FILE_NAME_CHANGE, wxCommandEvent); +// int = DOWNLOAD ID; +wxDEFINE_EVENT(EVT_DWNLDR_FILE_PAUSED, wxCommandEvent); +// int = DOWNLOAD ID; +wxDEFINE_EVENT(EVT_DWNLDR_FILE_CANCELED, wxCommandEvent); + +struct FileGet::priv +{ + const int m_id; + std::string m_url; + std::string m_filename; + std::thread m_io_thread; + wxEvtHandler* m_evt_handler; + boost::filesystem::path m_dest_folder; + boost::filesystem::path m_tmp_path; // path when ongoing download + std::atomic_bool m_cancel { false }; + std::atomic_bool m_pause { false }; + std::atomic_bool m_stopped { false }; // either canceled or paused - download is not running + size_t m_written { 0 }; + size_t m_absolute_size { 0 }; + priv(int ID, std::string&& url, const std::string& filename, wxEvtHandler* evt_handler, const boost::filesystem::path& dest_folder); + + void get_perform(); +}; + +FileGet::priv::priv(int ID, std::string&& url, const std::string& filename, wxEvtHandler* evt_handler, const boost::filesystem::path& dest_folder) + : m_id(ID) + , m_url(std::move(url)) + , m_filename(filename) + , m_evt_handler(evt_handler) + , m_dest_folder(dest_folder) +{ +} + +void FileGet::priv::get_perform() +{ + assert(m_evt_handler); + assert(!m_url.empty()); + assert(!m_filename.empty()); + assert(boost::filesystem::is_directory(m_dest_folder)); + + m_stopped = false; + + // open dest file + if (m_written == 0) + { + boost::filesystem::path dest_path = m_dest_folder / m_filename; + std::string extension = boost::filesystem::extension(dest_path); + std::string just_filename = m_filename.substr(0, m_filename.size() - extension.size()); + std::string final_filename = just_filename; + // Find unsed filename + try { + size_t version = 0; + while (boost::filesystem::exists(m_dest_folder / (final_filename + extension)) || boost::filesystem::exists(m_dest_folder / (final_filename + extension + "." + std::to_string(get_current_pid()) + ".download"))) + { + ++version; + if (version > 999) { + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_ERROR); + evt->SetString(GUI::format_wxstr(L"Failed to find suitable filename. Last name: %1%." , (m_dest_folder / (final_filename + extension)).string())); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + return; + } + final_filename = GUI::format("%1%(%2%)", just_filename, std::to_string(version)); + } + } catch (const boost::filesystem::filesystem_error& e) + { + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_ERROR); + evt->SetString(e.what()); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + return; + } + + m_filename = final_filename + extension; + + m_tmp_path = m_dest_folder / (m_filename + "." + std::to_string(get_current_pid()) + ".download"); + + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_NAME_CHANGE); + evt->SetString(boost::nowide::widen(m_filename)); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + } + + boost::filesystem::path dest_path = m_dest_folder / m_filename; + + wxString temp_path_wstring(m_tmp_path.wstring()); + + //std::cout << "dest_path: " << dest_path.string() << std::endl; + //std::cout << "m_tmp_path: " << m_tmp_path.string() << std::endl; + + BOOST_LOG_TRIVIAL(info) << GUI::format("Starting download from %1% to %2%. Temp path is %3%",m_url, dest_path, m_tmp_path); + + FILE* file; + // open file for writting + if (m_written == 0) + file = fopen(temp_path_wstring.c_str(), "wb"); + else + file = fopen(temp_path_wstring.c_str(), "ab"); + + //assert(file != NULL); + if (file == NULL) { + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_ERROR); + // TRN %1% = file path + evt->SetString(GUI::format_wxstr(_L("Can't create file at %1%"), temp_path_wstring)); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + return; + } + + std:: string range_string = std::to_string(m_written) + "-"; + + size_t written_previously = m_written; + size_t written_this_session = 0; + Http::get(m_url) + .size_limit(DOWNLOAD_SIZE_LIMIT) //more? + .set_range(range_string) + .on_progress([&](Http::Progress progress, bool& cancel) { + // to prevent multiple calls into following ifs (m_cancel / m_pause) + if (m_stopped){ + cancel = true; + return; + } + if (m_cancel) { + m_stopped = true; + fclose(file); + // remove canceled file + std::remove(m_tmp_path.string().c_str()); + m_written = 0; + cancel = true; + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_CANCELED); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + return; + // TODO: send canceled event? + } + if (m_pause) { + m_stopped = true; + fclose(file); + cancel = true; + if (m_written == 0) + std::remove(m_tmp_path.string().c_str()); + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_PAUSED); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + return; + } + + if (m_absolute_size < progress.dltotal) { + m_absolute_size = progress.dltotal; + } + + if (progress.dlnow != 0) { + if (progress.dlnow - written_this_session > DOWNLOAD_MAX_CHUNK_SIZE || progress.dlnow == progress.dltotal) { + try + { + std::string part_for_write = progress.buffer.substr(written_this_session, progress.dlnow); + fwrite(part_for_write.c_str(), 1, part_for_write.size(), file); + } + catch (const std::exception& e) + { + // fclose(file); do it? + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_ERROR); + evt->SetString(e.what()); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + cancel = true; + return; + } + written_this_session = progress.dlnow; + m_written = written_previously + written_this_session; + } + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_PROGRESS); + int percent_total = (written_previously + progress.dlnow) * 100 / m_absolute_size; + evt->SetString(std::to_string(percent_total)); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + } + + }) + .on_error([&](std::string body, std::string error, unsigned http_status) { + if (file != NULL) + fclose(file); + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_ERROR); + if (!error.empty()) + evt->SetString(GUI::from_u8(error)); + else + evt->SetString(GUI::from_u8(body)); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + }) + .on_complete([&](std::string body, unsigned /* http_status */) { + + // TODO: perform a body size check + // + //size_t body_size = body.size(); + //if (body_size != expected_size) { + // return; + //} + try + { + /* + if (m_written < body.size()) + { + // this code should never be entered. As there should be on_progress call after last bit downloaded. + std::string part_for_write = body.substr(m_written); + fwrite(part_for_write.c_str(), 1, part_for_write.size(), file); + } + */ + fclose(file); + boost::filesystem::rename(m_tmp_path, dest_path); + } + catch (const std::exception& /*e*/) + { + //TODO: report? + //error_message = GUI::format("Failed to write and move %1% to %2%", tmp_path, dest_path); + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_ERROR); + evt->SetString("Failed to write and move."); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + return; + } + + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_COMPLETE); + evt->SetString(dest_path.wstring()); + evt->SetInt(m_id); + m_evt_handler->QueueEvent(evt); + }) + .perform_sync(); + +} + +FileGet::FileGet(int ID, std::string url, const std::string& filename, wxEvtHandler* evt_handler, const boost::filesystem::path& dest_folder) + : p(new priv(ID, std::move(url), filename, evt_handler, dest_folder)) +{} + +FileGet::FileGet(FileGet&& other) : p(std::move(other.p)) {} + +FileGet::~FileGet() +{ + if (p && p->m_io_thread.joinable()) { + p->m_cancel = true; + p->m_io_thread.join(); + } +} + +void FileGet::get() +{ + assert(p); + if (p->m_io_thread.joinable()) { + // This will stop transfers being done by the thread, if any. + // Cancelling takes some time, but should complete soon enough. + p->m_cancel = true; + p->m_io_thread.join(); + } + p->m_cancel = false; + p->m_pause = false; + p->m_io_thread = std::thread([this]() { + p->get_perform(); + }); +} + +void FileGet::cancel() +{ + if(p && p->m_stopped) { + if (p->m_io_thread.joinable()) { + p->m_cancel = true; + p->m_io_thread.join(); + wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_CANCELED); + evt->SetInt(p->m_id); + p->m_evt_handler->QueueEvent(evt); + } + } + + if (p) + p->m_cancel = true; + +} + +void FileGet::pause() +{ + if (p) { + p->m_pause = true; + } +} +void FileGet::resume() +{ + assert(p); + if (p->m_io_thread.joinable()) { + // This will stop transfers being done by the thread, if any. + // Cancelling takes some time, but should complete soon enough. + p->m_cancel = true; + p->m_io_thread.join(); + } + p->m_cancel = false; + p->m_pause = false; + p->m_io_thread = std::thread([this]() { + p->get_perform(); + }); +} +} +} diff --git a/src/slic3r/GUI/DownloaderFileGet.hpp b/src/slic3r/GUI/DownloaderFileGet.hpp new file mode 100644 index 0000000000..37a59ec30e --- /dev/null +++ b/src/slic3r/GUI/DownloaderFileGet.hpp @@ -0,0 +1,49 @@ +///|/ Copyright (c) Prusa Research 2023 David Kocík @kocikdav +///|/ +///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher +///|/ +#ifndef slic3r_DownloaderFileGet_hpp_ +#define slic3r_DownloaderFileGet_hpp_ + +#include "../Utils/Http.hpp" + +#include +#include +#include +#include +#include + +namespace Slic3r { +namespace GUI { +class FileGet : public std::enable_shared_from_this { +private: + struct priv; +public: + FileGet(int ID, std::string url, const std::string& filename, wxEvtHandler* evt_handler,const boost::filesystem::path& dest_folder); + FileGet(FileGet&& other); + ~FileGet(); + + void get(); + void cancel(); + void pause(); + void resume(); + static std::string escape_url(const std::string& url); + static bool is_subdomain(const std::string& url, const std::string& domain); +private: + std::unique_ptr p; +}; +// int = DOWNLOAD ID; string = file path +wxDECLARE_EVENT(EVT_DWNLDR_FILE_COMPLETE, wxCommandEvent); +// int = DOWNLOAD ID; string = error msg +wxDECLARE_EVENT(EVT_DWNLDR_FILE_PROGRESS, wxCommandEvent); +// int = DOWNLOAD ID; string = progress percent +wxDECLARE_EVENT(EVT_DWNLDR_FILE_ERROR, wxCommandEvent); +// int = DOWNLOAD ID; string = name +wxDECLARE_EVENT(EVT_DWNLDR_FILE_NAME_CHANGE, wxCommandEvent); +// int = DOWNLOAD ID; +wxDECLARE_EVENT(EVT_DWNLDR_FILE_PAUSED, wxCommandEvent); +// int = DOWNLOAD ID; +wxDECLARE_EVENT(EVT_DWNLDR_FILE_CANCELED, wxCommandEvent); +} +} +#endif diff --git a/src/slic3r/GUI/FileArchiveDialog.cpp b/src/slic3r/GUI/FileArchiveDialog.cpp new file mode 100644 index 0000000000..5f3927753f --- /dev/null +++ b/src/slic3r/GUI/FileArchiveDialog.cpp @@ -0,0 +1,447 @@ +///|/ Copyright (c) Prusa Research 2023 David Kocík @kocikdav +///|/ +///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher +///|/ +#include "FileArchiveDialog.hpp" + +#include "I18N.hpp" +#include "GUI_App.hpp" +#include "GUI.hpp" +#include "MainFrame.hpp" +#include "ExtraRenderers.hpp" +#include "format.hpp" +#include +#include +#include + +namespace Slic3r { +namespace GUI { + +#define BTN_SIZE wxSize(FromDIP(58), FromDIP(24)) +#define BTN_GAP FromDIP(20) + +ArchiveViewModel::ArchiveViewModel(wxWindow* parent) + :m_parent(parent) +{} +ArchiveViewModel::~ArchiveViewModel() +{} + +std::shared_ptr ArchiveViewModel::AddFile(std::shared_ptr parent, const wxString& name, bool container) +{ + std::shared_ptr node = std::make_shared(ArchiveViewNode(name)); + node->set_container(container); + + if (parent.get() != nullptr) { + parent->get_children().push_back(node); + node->set_parent(parent); + parent->set_is_folder(true); + } else { + m_top_children.emplace_back(node); + } + + wxDataViewItem child = wxDataViewItem((void*)node.get()); + wxDataViewItem parent_item= wxDataViewItem((void*)parent.get()); + ItemAdded(parent_item, child); + + if (parent) + m_ctrl->Expand(parent_item); + return node; +} + +wxString ArchiveViewModel::GetColumnType(unsigned int col) const +{ + if (col == 0) + return "bool"; + return "string";//"DataViewBitmapText"; +} + +void ArchiveViewModel::Rescale() +{ + // There should be no pictures rendered +} + +void ArchiveViewModel::Delete(const wxDataViewItem& item) +{ + assert(item.IsOk()); + ArchiveViewNode* node = static_cast(item.GetID()); + assert(node->get_parent() != nullptr); + for (std::shared_ptr child : node->get_children()) + { + Delete(wxDataViewItem((void*)child.get())); + } + delete [] node; +} +void ArchiveViewModel::Clear() +{ +} + +wxDataViewItem ArchiveViewModel::GetParent(const wxDataViewItem& item) const +{ + assert(item.IsOk()); + ArchiveViewNode* node = static_cast(item.GetID()); + return wxDataViewItem((void*)node->get_parent().get()); +} +unsigned int ArchiveViewModel::GetChildren(const wxDataViewItem& parent, wxDataViewItemArray& array) const +{ + if (!parent.IsOk()) { + for (std::shared_ptrchild : m_top_children) { + array.push_back(wxDataViewItem((void*)child.get())); + } + return m_top_children.size(); + } + + ArchiveViewNode* node = static_cast(parent.GetID()); + for (std::shared_ptr child : node->get_children()) { + array.push_back(wxDataViewItem((void*)child.get())); + } + return node->get_children().size(); +} + +void ArchiveViewModel::GetValue(wxVariant& variant, const wxDataViewItem& item, unsigned int col) const +{ + assert(item.IsOk()); + ArchiveViewNode* node = static_cast(item.GetID()); + if (col == 0) { + variant = node->get_toggle(); + } else { + variant = node->get_name(); + } +} + +void ArchiveViewModel::untoggle_folders(const wxDataViewItem& item) +{ + assert(item.IsOk()); + ArchiveViewNode* node = static_cast(item.GetID()); + node->set_toggle(false); + if (node->get_parent().get() != nullptr) + untoggle_folders(wxDataViewItem((void*)node->get_parent().get())); +} + +bool ArchiveViewModel::SetValue(const wxVariant& variant, const wxDataViewItem& item, unsigned int col) +{ + assert(item.IsOk()); + ArchiveViewNode* node = static_cast(item.GetID()); + if (col == 0) { + node->set_toggle(variant.GetBool()); + // if folder recursivelly check all children + for (std::shared_ptr child : node->get_children()) { + SetValue(variant, wxDataViewItem((void*)child.get()), col); + } + if(!variant.GetBool() && node->get_parent()) + untoggle_folders(wxDataViewItem((void*)node->get_parent().get())); + } else { + node->set_name(variant.GetString()); + } + m_parent->Refresh(); + return true; +} +bool ArchiveViewModel::IsEnabled(const wxDataViewItem& item, unsigned int col) const +{ + // As of now, all items are always enabled. + // Returning false for col 1 would gray out text. + return true; +} + +bool ArchiveViewModel::IsContainer(const wxDataViewItem& item) const +{ + if(!item.IsOk()) + return true; + ArchiveViewNode* node = static_cast(item.GetID()); + return node->is_container(); +} + +ArchiveViewCtrl::ArchiveViewCtrl(wxWindow* parent, wxSize size) + : wxDataViewCtrl(parent, wxID_ANY, wxDefaultPosition, size, wxDV_VARIABLE_LINE_HEIGHT | wxDV_ROW_LINES +#ifdef _WIN32 + | wxBORDER_SIMPLE +#endif + ) + //, m_em_unit(em_unit(parent)) +{ + wxGetApp().UpdateDVCDarkUI(this); + + m_model = new ArchiveViewModel(parent); + this->AssociateModel(m_model); + m_model->SetAssociatedControl(this); +} + +ArchiveViewCtrl::~ArchiveViewCtrl() +{ + if (m_model) { + m_model->Clear(); + m_model->DecRef(); + } +} + +FileArchiveDialog::FileArchiveDialog(wxWindow* parent_window, mz_zip_archive* archive, std::vector>& selected_paths_w_size) + : DPIDialog(parent_window, wxID_ANY, _(L("Archive preview")), wxDefaultPosition, + wxSize(45 * wxGetApp().em_unit(), 40 * wxGetApp().em_unit()), + wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxMAXIMIZE_BOX) + , m_selected_paths_w_size (selected_paths_w_size) +{ +#ifdef _WIN32 + SetBackgroundColour(*wxWHITE); + wxGetApp().UpdateDarkUI(this); + wxGetApp().UpdateDlgDarkUI(this); +#else + SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); +#endif + + int em = em_unit(); + + wxBoxSizer* topSizer = new wxBoxSizer(wxVERTICAL); + + m_avc = new ArchiveViewCtrl(this, wxSize(45 * em, 30 * em)); + wxDataViewColumn* toggle_column = m_avc->AppendToggleColumn(L"\u2714", 0, wxDATAVIEW_CELL_ACTIVATABLE, 6 * em); + m_avc->AppendTextColumn("filename", 1); + + std::vector> stack; + + std::function >&, size_t)> reduce_stack = [] (std::vector>& stack, size_t size) { + if (size == 0) { + stack.clear(); + return; + } + while (stack.size() > size) + stack.pop_back(); + }; + // recursively stores whole structure of file onto function stack and synchoronize with stack object. + std::function>&)> adjust_stack = [&adjust_stack, &reduce_stack, &avc = m_avc](const boost::filesystem::path& const_file, std::vector>& stack)->size_t { + boost::filesystem::path file(const_file); + size_t struct_size = file.has_parent_path() ? adjust_stack(file.parent_path(), stack) : 0; + + if (stack.size() > struct_size && (file.has_extension() || file.filename().string() != stack[struct_size]->get_name())) + { + reduce_stack(stack, struct_size); + } + if (!file.has_extension() && stack.size() == struct_size) + stack.push_back(avc->get_model()->AddFile((stack.empty() ? std::shared_ptr(nullptr) : stack.back()), boost::nowide::widen(file.filename().string()), true)); // filename string to wstring? + return struct_size + 1; + }; + + const std::regex pattern_drop(".*[.](stl|obj|amf|3mf|step|stp)", std::regex::icase); + mz_uint num_entries = mz_zip_reader_get_num_files(archive); + mz_zip_archive_file_stat stat; + std::vector> filtered_entries; // second is unzipped size + for (mz_uint i = 0; i < num_entries; ++i) { + if (mz_zip_reader_file_stat(archive, i, &stat)) { + std::string extra(1024, 0); + boost::filesystem::path path; + size_t extra_size = mz_zip_reader_get_filename_from_extra(archive, i, extra.data(), extra.size()); + if (extra_size > 0) { + path = boost::filesystem::path(extra.substr(0, extra_size)); + } else { + wxString wname = boost::nowide::widen(stat.m_filename); + std::string name = boost::nowide::narrow(wname); + path = boost::filesystem::path(name); + } + assert(!path.empty()); + if (!path.has_extension()) + continue; + // filter out MACOS specific hidden files + if (boost::algorithm::starts_with(path.string(), "__MACOSX")) + continue; + filtered_entries.emplace_back(std::move(path), stat.m_uncomp_size); + } + } + // sorting files will help adjust_stack function to not create multiple same folders + std::sort(filtered_entries.begin(), filtered_entries.end(), [](const std::pair& p1, const std::pair& p2){ return p1.first.string() < p2.first.string(); }); + size_t entry_count = 0; + size_t depth = 1; + for (const auto& entry : filtered_entries) + { + const boost::filesystem::path& path = entry.first; + std::shared_ptr parent(nullptr); + + depth = std::max(depth, adjust_stack(path, stack)); + if (!stack.empty()) + parent = stack.back(); + if (std::regex_match(path.extension().string(), pattern_drop)) { // this leaves out non-compatible files + std::shared_ptr new_node = m_avc->get_model()->AddFile(parent, boost::nowide::widen(path.filename().string()), false); + new_node->set_fullpath(/*std::move(path)*/path); // filename string to wstring? + new_node->set_size(entry.second); + entry_count++; + } + } + if (entry_count == 1) + on_all_button(); + + toggle_column->SetWidth((4 + depth) * em); + + wxBoxSizer* btn_sizer = create_btn_sizer(); + + topSizer->Add(m_avc, 1, wxEXPAND | wxALL, 10); + topSizer->Add(btn_sizer, 0, wxEXPAND | wxALL, 10); + this->SetSizer(topSizer); + SetMinSize(wxSize(40 * em, 30 * em)); + + for (auto btn : m_button_list) + wxGetApp().UpdateDarkUI(btn); +} + +void FileArchiveDialog::on_dpi_changed(const wxRect& suggested_rect) +{ + int em = em_unit(); + BOOST_LOG_TRIVIAL(error) << "on_dpi_changed"; + + for (auto btn : m_button_list) { + btn->SetMinSize(BTN_SIZE); + btn->SetCornerRadius(FromDIP(12)); + } + + const wxSize& size = wxSize(45 * em, 40 * em); + SetSize(size); + //m_tree->Rescale(em); + + Fit(); + Refresh(); +} + +void FileArchiveDialog::on_open_button() +{ + wxDataViewItemArray top_items; + m_avc->get_model()->GetChildren(wxDataViewItem(nullptr), top_items); + + std::function deep_fill = [&paths = m_selected_paths_w_size, &deep_fill](ArchiveViewNode* node){ + if (node == nullptr) + return; + if (node->get_children().empty()) { + if (node->get_toggle()) + paths.emplace_back(node->get_fullpath(), node->get_size()); + } else { + for (std::shared_ptr child : node->get_children()) + deep_fill(child.get()); + } + }; + + for (const auto& item : top_items) + { + ArchiveViewNode* node = static_cast(item.GetID()); + deep_fill(node); + } + this->EndModal(wxID_OK); +} + +void FileArchiveDialog::on_all_button() +{ + + wxDataViewItemArray top_items; + m_avc->get_model()->GetChildren(wxDataViewItem(nullptr), top_items); + + std::function deep_fill = [&deep_fill](ArchiveViewNode* node) { + if (node == nullptr) + return; + node->set_toggle(true); + if (!node->get_children().empty()) { + for (std::shared_ptr child : node->get_children()) + deep_fill(child.get()); + } + }; + + for (const auto& item : top_items) + { + ArchiveViewNode* node = static_cast(item.GetID()); + deep_fill(node); + // Fix for linux, where Refresh or Update wont help to redraw toggle checkboxes. + // It should be enough to call ValueChanged for top items. + m_avc->get_model()->ValueChanged(item, 0); + } + + Refresh(); +} + +void FileArchiveDialog::on_none_button() +{ + wxDataViewItemArray top_items; + m_avc->get_model()->GetChildren(wxDataViewItem(nullptr), top_items); + + std::function deep_fill = [&deep_fill](ArchiveViewNode* node) { + if (node == nullptr) + return; + node->set_toggle(false); + if (!node->get_children().empty()) { + for (std::shared_ptr child : node->get_children()) + deep_fill(child.get()); + } + }; + + for (const auto& item : top_items) + { + ArchiveViewNode* node = static_cast(item.GetID()); + deep_fill(node); + // Fix for linux, where Refresh or Update wont help to redraw toggle checkboxes. + // It should be enough to call ValueChanged for top items. + m_avc->get_model()->ValueChanged(item, 0); + } + + this->Refresh(); +} + +//Orca: Apply buttons style +wxBoxSizer* FileArchiveDialog::create_btn_sizer() +{ + auto btn_sizer = new wxBoxSizer(wxHORIZONTAL); + + auto apply_highlighted_btn_colors = [](Button* btn) { + btn->SetBackgroundColor(StateColor(std::pair(wxColour(0, 137, 123), StateColor::Pressed), + std::pair(wxColour(38, 166, 154), StateColor::Hovered), + std::pair(wxColour(0, 150, 136), StateColor::Normal))); + + btn->SetBorderColor(StateColor(std::pair(wxColour(0, 150, 136), StateColor::Normal))); + + btn->SetTextColor(StateColor(std::pair(wxColour(255, 255, 254), StateColor::Normal))); + }; + + auto apply_std_btn_colors = [](Button* btn) { + btn->SetBackgroundColor(StateColor(std::pair(wxColour(206, 206, 206), StateColor::Pressed), + std::pair(wxColour(238, 238, 238), StateColor::Hovered), + std::pair(wxColour(255, 255, 255), StateColor::Normal))); + + btn->SetBorderColor(StateColor(std::pair(wxColour(38, 46, 48), StateColor::Normal))); + + btn->SetTextColor(StateColor(std::pair(wxColour(38, 46, 48), StateColor::Normal))); + }; + + auto style_btn = [this, apply_highlighted_btn_colors, apply_std_btn_colors](Button* btn, bool highlight) { + btn->SetMinSize(BTN_SIZE); + btn->SetCornerRadius(FromDIP(12)); + if (highlight) + apply_highlighted_btn_colors(btn); + else + apply_std_btn_colors(btn); + }; + + Button* all_btn = new Button(this, _L("All")); + style_btn(all_btn, false); + all_btn->Bind(wxEVT_BUTTON, [this](wxCommandEvent& evt) { on_all_button(); }); + btn_sizer->Add(all_btn, 0, wxALIGN_CENTER_VERTICAL); + m_button_list.push_back(all_btn); + + Button* none_btn = new Button(this, _L("None")); + style_btn(none_btn, false); + none_btn->Bind(wxEVT_BUTTON, [this](wxCommandEvent& evt) { on_none_button(); }); + btn_sizer->Add(none_btn, 0, wxLEFT | wxALIGN_CENTER_VERTICAL, BTN_GAP); + m_button_list.push_back(none_btn); + + btn_sizer->AddStretchSpacer(); + + Button* open_btn = new Button(this, _L("Open")); + style_btn(open_btn, true); + open_btn->Bind(wxEVT_BUTTON, [this](wxCommandEvent& evt) { on_open_button(); }); + open_btn->SetFocus(); + open_btn->SetId(wxID_OK); + btn_sizer->Add(open_btn, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, BTN_GAP); + m_button_list.push_back(open_btn); + + Button* cancel_btn = new Button(this, _L("Cancel")); + style_btn(cancel_btn, false); + cancel_btn->Bind(wxEVT_BUTTON, [this](wxCommandEvent& evt) { this->EndModal(wxID_CANCEL); }); + cancel_btn->SetId(wxID_CANCEL); + btn_sizer->Add(cancel_btn, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, BTN_GAP); + m_button_list.push_back(cancel_btn); + + return btn_sizer; +} + +} // namespace GUI +} // namespace Slic3r \ No newline at end of file diff --git a/src/slic3r/GUI/FileArchiveDialog.hpp b/src/slic3r/GUI/FileArchiveDialog.hpp new file mode 100644 index 0000000000..f4b7c037e1 --- /dev/null +++ b/src/slic3r/GUI/FileArchiveDialog.hpp @@ -0,0 +1,131 @@ +///|/ Copyright (c) Prusa Research 2023 David Kocík @kocikdav +///|/ +///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher +///|/ +#ifndef slic3r_GUI_FileArchiveDialog_hpp_ +#define slic3r_GUI_FileArchiveDialog_hpp_ + +#include "GUI_Utils.hpp" +#include "libslic3r/miniz_extension.hpp" + +#include +#include +#include +#include +#include "wxExtensions.hpp" + +namespace Slic3r { +namespace GUI { + +class ArchiveViewCtrl; + +class ArchiveViewNode +{ +public: + ArchiveViewNode(const wxString& name) : m_name(name) {} + + std::vector>& get_children() { return m_children; } + void set_parent(std::shared_ptr parent) { m_parent = parent; } + // On Linux, get_parent cannot just return size of m_children. ItemAdded would than crash. + std::shared_ptr get_parent() const { return m_parent; } + bool is_container() const { return m_container; } + void set_container(bool is_container) { m_container = is_container; } + wxString get_name() const { return m_name; } + void set_name(const wxString& name) { m_name = name; } + bool get_toggle() const { return m_toggle; } + void set_toggle(bool toggle) { m_toggle = toggle; } + bool get_is_folder() const { return m_folder; } + void set_is_folder(bool is_folder) { m_folder = is_folder; } + void set_fullpath(boost::filesystem::path path) { m_fullpath = path; } + boost::filesystem::path get_fullpath() const { return m_fullpath; } + void set_size(size_t size) { m_size = size; } + size_t get_size() const { return m_size; } + +private: + wxString m_name; + std::shared_ptr m_parent { nullptr }; + std::vector> m_children; + + bool m_toggle { false }; + bool m_folder { false }; + boost::filesystem::path m_fullpath; + bool m_container { false }; + size_t m_size { 0 }; +}; + +class ArchiveViewModel : public wxDataViewModel +{ +public: + ArchiveViewModel(wxWindow* parent); + ~ArchiveViewModel(); + + /* wxDataViewItem AddFolder(wxDataViewItem& parent, wxString name); + wxDataViewItem AddFile(wxDataViewItem& parent, wxString name);*/ + + std::shared_ptr AddFile(std::shared_ptr parent,const wxString& name, bool container); + + wxString GetColumnType(unsigned int col) const override; + unsigned int GetColumnCount() const override { return 2; } + + void Rescale(); + void Delete(const wxDataViewItem& item); + void Clear(); + + wxDataViewItem GetParent(const wxDataViewItem& item) const override; + unsigned int GetChildren(const wxDataViewItem& parent, wxDataViewItemArray& array) const override; + + void SetAssociatedControl(ArchiveViewCtrl* ctrl) { m_ctrl = ctrl; } + + void GetValue(wxVariant& variant, const wxDataViewItem& item, unsigned int col) const override; + bool SetValue(const wxVariant& variant, const wxDataViewItem& item, unsigned int col) override; + + void untoggle_folders(const wxDataViewItem& item); + + bool IsEnabled(const wxDataViewItem& item, unsigned int col) const override; + bool IsContainer(const wxDataViewItem& item) const override; + // Is the container just a header or an item with all columns + // In our case it is an item with all columns + bool HasContainerColumns(const wxDataViewItem& WXUNUSED(item)) const override { return true; } + +protected: + wxWindow* m_parent { nullptr }; + ArchiveViewCtrl* m_ctrl { nullptr }; + std::vector> m_top_children; +}; + +class ArchiveViewCtrl : public wxDataViewCtrl +{ + public: + ArchiveViewCtrl(wxWindow* parent, wxSize size); + ~ArchiveViewCtrl(); + + ArchiveViewModel* get_model() const {return m_model; } +protected: + ArchiveViewModel* m_model; +}; + + +class FileArchiveDialog : public DPIDialog +{ +public: + FileArchiveDialog(wxWindow* parent_window, mz_zip_archive* archive, std::vector>& selected_paths_w_size); + +protected: + void on_dpi_changed(const wxRect& suggested_rect) override; + + void on_open_button(); + void on_all_button(); + void on_none_button(); + + wxBoxSizer* create_btn_sizer(); + + // chosen files are written into this vector and returned to caller via reference. + // path in archive and decompressed size. The size can be used to distinguish between files with same path. + std::vector>& m_selected_paths_w_size; + ArchiveViewCtrl* m_avc; + std::vector m_button_list; +}; + +} // namespace GU +} // namespace Slic3r +#endif // slic3r_GUI_FileArchiveDialog_hpp_ \ No newline at end of file diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 98012eb163..46b0c4bc23 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -7,6 +7,7 @@ #include "slic3r/GUI/TaskManager.hpp" #include "format.hpp" #include "libslic3r_version.h" +#include "Downloader.hpp" // Localization headers: include libslic3r version first so everything in this file // uses the slic3r/GUI version (the macros will take precedence over the functions). @@ -517,6 +518,7 @@ static const FileWildcards file_wildcards_by_type[FT_SIZE] = { /* FT_MODEL */ {"Supported files"sv, {".3mf"sv, ".stl"sv, ".oltp"sv, ".stp"sv, ".step"sv, ".svg"sv, ".amf"sv, ".obj"sv}}, #endif + /* FT_ZIP */ { "ZIP files"sv, { ".zip"sv } }, /* FT_PROJECT */ { "Project files"sv, { ".3mf"sv} }, /* FT_GALLERY */ { "Known files"sv, { ".stl"sv, ".obj"sv } }, @@ -816,18 +818,25 @@ void GUI_App::post_init() if (this->init_params->input_files.size() == 1 && - boost::starts_with(this->init_params->input_files.front(), "orcaslicer://open")) { - auto input_str_arr = split_str(this->init_params->input_files.front(), "orcaslicer://open/?file="); + (boost::starts_with(this->init_params->input_files.front(), "orcaslicer://open") || + boost::starts_with(this->init_params->input_files.front(), "prusaslicer://open"))) { - std::string download_origin_url; - for (auto input_str:input_str_arr) { - if (!input_str.empty()) download_origin_url = input_str; - } + if (boost::starts_with(this->init_params->input_files.front(), "prusaslicer://open")) { + switch_to_3d = true; + start_download(this->init_params->input_files.front()); + } else if (vector input_str_arr = split_str(this->init_params->input_files.front(), "orcaslicer://open/?file="); input_str_arr.size() > 1) { + std::string download_origin_url; + for (auto input_str : input_str_arr) { + if (!input_str.empty()) + download_origin_url = input_str; + } - std::string download_file_url = url_decode(download_origin_url); - BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << download_file_url; - if (!download_file_url.empty() && ( boost::starts_with(download_file_url, "http://") || boost::starts_with(download_file_url, "https://")) ) { - request_model_download(download_origin_url); + std::string download_file_url = url_decode(download_origin_url); + BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << download_file_url; + if (!download_file_url.empty() && + (boost::starts_with(download_file_url, "http://") || boost::starts_with(download_file_url, "https://"))) { + request_model_download(download_file_url); + } } m_open_method = "makerworld"; } @@ -1089,6 +1098,7 @@ GUI_App::GUI_App() , m_em_unit(10) , m_imgui(new ImGuiWrapper()) , m_removable_drive_manager(std::make_unique()) + , m_downloader(std::make_unique()) , m_other_instance_message_handler(std::make_unique()) { //app config initializes early becasuse it is used in instance checking in OrcaSlicer.cpp @@ -2361,6 +2371,10 @@ bool GUI_App::on_init_inner() associate_files(L"step"); associate_files(L"stp"); } + // Orca: add PS url functionality + if (app_config->get_bool("ps_url_registered")) { + associate_url(L"prusaslicer"); + } if (app_config->get("associate_gcode") == "true") associate_files(L"gcode"); #endif // __WXMSW__ @@ -3576,6 +3590,17 @@ void GUI_App::import_model(wxWindow *parent, wxArrayString& input_files) const dialog.GetPaths(input_files); } +void GUI_App::import_zip(wxWindow* parent, wxString& input_file) const +{ + wxFileDialog dialog(parent ? parent : GetTopWindow(), + _L("Choose ZIP file") + ":", + from_u8(app_config->get_last_dir()), "", + file_wildcards(FT_ZIP), wxFD_OPEN | wxFD_FILE_MUST_EXIST); + + if (dialog.ShowModal() == wxID_OK) + input_file = dialog.GetPath(); +} + void GUI_App::load_gcode(wxWindow* parent, wxString& input_file) const { input_file.Clear(); @@ -5508,6 +5533,10 @@ void GUI_App::open_preferences(size_t open_on_tab, const std::string& highlight_ associate_files(L"step"); associate_files(L"stp"); } + // Orca: add PS url functionality + if (app_config->get_bool("ps_url_registered")) { + associate_url(L"prusaslicer"); + } } else { if (app_config->get("associate_gcode") == "true") @@ -5861,7 +5890,10 @@ void GUI_App::MacOpenURL(const wxString& url) { BOOST_LOG_TRIVIAL(trace) << __FUNCTION__ << "get mac url " << url; - if (!url.empty() && boost::starts_with(url, "orcasliceropen://")) { + if (url.empty()) + return; + + if (boost::starts_with(url, "orcasliceropen://")) { auto input_str_arr = split_str(url.ToStdString(), "orcasliceropen://"); std::string download_origin_url; @@ -5880,7 +5912,8 @@ void GUI_App::MacOpenURL(const wxString& url) m_download_file_url = download_file_url; } } - } + } else if (boost::starts_with(url, "prusasliceropen://")) + start_download(boost::nowide::narrow(url)); } // wxWidgets override to get an event on open files. @@ -6004,6 +6037,11 @@ Model& GUI_App::model() return plater_->model(); } +Downloader* GUI_App::downloader() +{ + return m_downloader.get(); +} + void GUI_App::load_url(wxString url) { if (mainframe) @@ -6593,9 +6631,60 @@ void GUI_App::disassociate_files(std::wstring extend) ::SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, nullptr, nullptr); } +void GUI_App::associate_url(std::wstring url_prefix) +{ + // Registry key creation for "prusaslicer://" URL + + boost::filesystem::path binary_path(boost::filesystem::canonical(boost::dll::program_location())); + // the path to binary needs to be correctly saved in string with respect to localized characters + wxString wbinary = wxString::FromUTF8(binary_path.string()); + std::string binary_string = (boost::format("%1%") % wbinary).str(); + BOOST_LOG_TRIVIAL(info) << "Downloader registration: Path of binary: " << binary_string; + + std::string key_string = "\"" + binary_string + "\" \"%1\""; + + wxRegKey key_first(wxRegKey::HKCU, "Software\\Classes\\" + url_prefix); + wxRegKey key_full(wxRegKey::HKCU, "Software\\Classes\\" + url_prefix + "\\shell\\open\\command"); + if (!key_first.Exists()) { + key_first.Create(false); + } + key_first.SetValue("URL Protocol", ""); + + if (!key_full.Exists()) { + key_full.Create(false); + } + key_full = key_string; +} + +void GUI_App::disassociate_url(std::wstring url_prefix) +{ + wxRegKey key_full(wxRegKey::HKCU, "Software\\Classes\\" + url_prefix + "\\shell\\open\\command"); + if (!key_full.Exists()) { + return; + } + key_full = ""; +} #endif // __WXMSW__ +void GUI_App::start_download(std::string url) +{ + if (!plater_) { + BOOST_LOG_TRIVIAL(error) << "Could not start URL download: plater is nullptr."; + return; + } + //lets always init so if the download dest folder was changed, new dest is used + boost::filesystem::path dest_folder(app_config->get("download_path")); + if (dest_folder.empty() || !boost::filesystem::is_directory(dest_folder)) { + std::string msg = _u8L("Could not start URL download. Destination folder is not set. Please choose destination folder in Configuration Wizard."); + BOOST_LOG_TRIVIAL(error) << msg; + show_error(nullptr, msg); + return; + } + m_downloader->init(dest_folder); + m_downloader->start_download(url); +} + bool is_support_filament(int extruder_id) { auto &filament_presets = Slic3r::GUI::wxGetApp().preset_bundle->filament_presets; diff --git a/src/slic3r/GUI/GUI_App.hpp b/src/slic3r/GUI/GUI_App.hpp index 62cce8a075..dc0b8e4ff3 100644 --- a/src/slic3r/GUI/GUI_App.hpp +++ b/src/slic3r/GUI/GUI_App.hpp @@ -74,6 +74,7 @@ class ObjectLayers; class Plater; class ParamsPanel; class NotificationManager; +class Downloader; struct GUI_InitParams; class ParamsDialog; class HMSQuery; @@ -90,6 +91,7 @@ enum FileType FT_3MF, FT_GCODE, FT_MODEL, + FT_ZIP, FT_PROJECT, FT_GALLERY, @@ -275,6 +277,8 @@ private: std::string m_instance_hash_string; size_t m_instance_hash_int; + std::unique_ptr m_downloader; + //BBS bool m_is_closing {false}; Slic3r::DeviceManager* m_device_manager { nullptr }; @@ -423,6 +427,7 @@ private: void keyboard_shortcuts(); void load_project(wxWindow *parent, wxString& input_file) const; void import_model(wxWindow *parent, wxArrayString& input_files) const; + void import_zip(wxWindow* parent, wxString& input_file) const; void load_gcode(wxWindow* parent, wxString& input_file) const; wxString transition_tridid(int trid_id); @@ -559,6 +564,7 @@ private: ParamsDialog* params_dialog(); Model& model(); NotificationManager * notification_manager(); + Downloader* downloader(); std::string m_mall_model_download_url; @@ -644,7 +650,13 @@ private: // extend is stl/3mf/gcode/step etc void associate_files(std::wstring extend); void disassociate_files(std::wstring extend); + void associate_url(std::wstring url_prefix); + void disassociate_url(std::wstring url_prefix); #endif // __WXMSW__ + + // URL download - PrusaSlicer gets system call to open prusaslicer:// URL which should contain address of download + void start_download(std::string url); + std::string get_plugin_url(std::string name, std::string country_code); int download_plugin(std::string name, std::string package_name, InstallProgressFn pro_fn = nullptr, WasCancelledFn cancel_fn = nullptr); int install_plugin(std::string name, std::string package_name, InstallProgressFn pro_fn = nullptr, WasCancelledFn cancel_fn = nullptr); diff --git a/src/slic3r/GUI/ImGuiWrapper.cpp b/src/slic3r/GUI/ImGuiWrapper.cpp index 74082fde43..58a97fceb0 100644 --- a/src/slic3r/GUI/ImGuiWrapper.cpp +++ b/src/slic3r/GUI/ImGuiWrapper.cpp @@ -136,6 +136,19 @@ static const std::map font_icons_large = { {ImGui::PrevArrowBtnIcon, "notification_arrow_left" }, {ImGui::NextArrowBtnIcon, "notification_arrow_right" }, {ImGui::CompleteIcon, "notification_slicing_complete" }, + + {ImGui::PlayButton, "notification_play" }, + {ImGui::PlayDarkButton, "notification_play_dark" }, + {ImGui::PlayHoverButton, "notification_play_hover" }, + {ImGui::PlayHoverDarkButton, "notification_play_hover_dark" }, + {ImGui::PauseButton, "notification_pause" }, + {ImGui::PauseDarkButton, "notification_pause_dark" }, + {ImGui::PauseHoverButton, "notification_pause_hover" }, + {ImGui::PauseHoverDarkButton, "notification_pause_hover_dark" }, + {ImGui::OpenButton, "notification_open" }, + {ImGui::OpenDarkButton, "notification_open_dark" }, + {ImGui::OpenHoverButton, "notification_open_hover" }, + {ImGui::OpenHoverDarkButton, "notification_open_hover_dark" }, }; static const std::map font_icons_extra_large = { diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 757fa2226b..24bc9423cb 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -588,15 +588,9 @@ DPIFrame(NULL, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, BORDERLESS_FRAME_ if (evt.CmdDown() && evt.GetKeyCode() == 'P') #endif { - PreferencesDialog dlg(this); - dlg.ShowModal(); + // Orca: Use GUI_App::open_preferences instead of direct call so windows associations are updated on exit + wxGetApp().open_preferences(); plater()->get_current_canvas3D()->force_set_focus(); -#if ENABLE_GCODE_LINES_ID_IN_H_SLIDER - if (dlg.seq_top_layer_only_changed() || dlg.seq_seq_top_gcode_indices_changed()) -#else - if (dlg.seq_top_layer_only_changed()) -#endif // ENABLE_GCODE_LINES_ID_IN_H_SLIDER - plater()->refresh_print(); return; } @@ -2314,6 +2308,9 @@ void MainFrame::init_menubar_as_editor() [this](wxCommandEvent&) { if (m_plater) { m_plater->add_model(); } }, "", nullptr, [this](){return can_add_models(); }, this); #endif + append_menu_item(import_menu, wxID_ANY, _L("Import Zip Archive") + dots, _L("Load models contained within a zip archive"), + [this](wxCommandEvent&) { if (m_plater) m_plater->import_zip_archive(); }, "menu_import", nullptr, + [this]() { return can_add_models(); }); append_menu_item(import_menu, wxID_ANY, _L("Import Configs") + dots /*+ "\tCtrl+I"*/, _L("Load configs"), [this](wxCommandEvent&) { load_config_file(); }, "menu_import", nullptr, [this](){return true; }, this); @@ -2787,15 +2784,9 @@ void MainFrame::init_menubar_as_editor() append_menu_item( m_topbar->GetTopMenu(), wxID_ANY, _L("Preferences") + "\t" + ctrl + "P", "", [this](wxCommandEvent &) { - PreferencesDialog dlg(this); - dlg.ShowModal(); + // Orca: Use GUI_App::open_preferences instead of direct call so windows associations are updated on exit + wxGetApp().open_preferences(); plater()->get_current_canvas3D()->force_set_focus(); -#if ENABLE_GCODE_LINES_ID_IN_H_SLIDER - if (dlg.seq_top_layer_only_changed() || dlg.seq_seq_top_gcode_indices_changed()) -#else - if (dlg.seq_top_layer_only_changed()) -#endif - plater()->refresh_print(); }, "", nullptr, []() { return true; }, this); //m_topbar->AddDropDownMenuItem(preference_item); diff --git a/src/slic3r/GUI/NotificationManager.cpp b/src/slic3r/GUI/NotificationManager.cpp index 390cae058b..08ef8c7493 100644 --- a/src/slic3r/GUI/NotificationManager.cpp +++ b/src/slic3r/GUI/NotificationManager.cpp @@ -1283,6 +1283,219 @@ void NotificationManager::UpdatedItemsInfoNotification::add_type(InfoItemType ty update(data); } +//------URLDownloadNotification---------------- + +void NotificationManager::URLDownloadNotification::render_close_button(ImGuiWrapper& imgui, const float win_size_x, const float win_size_y, const float win_pos_x, const float win_pos_y) +{ + if (m_percentage < 0.f || m_percentage >= 1.f) { + render_close_button_inner(imgui, win_size_x, win_size_y, win_pos_x, win_pos_y); + if (m_percentage >= 1.f) + render_open_button_inner(imgui, win_size_x, win_size_y, win_pos_x, win_pos_y); + } else + render_pause_cancel_buttons_inner(imgui, win_size_x, win_size_y, win_pos_x, win_pos_y); +} +void NotificationManager::URLDownloadNotification::render_close_button_inner(ImGuiWrapper& imgui, const float win_size_x, const float win_size_y, const float win_pos_x, const float win_pos_y) +{ + ImVec2 win_size(win_size_x, win_size_y); + ImVec2 win_pos(win_pos_x, win_pos_y); + ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(.0f, .0f, .0f, .0f)); + ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(.0f, .0f, .0f, .0f)); + push_style_color(ImGuiCol_Text, ImVec4(1.f, 1.f, 1.f, 1.f), m_state == EState::FadingOut, m_current_fade_opacity); + push_style_color(ImGuiCol_TextSelectedBg, ImVec4(0, .75f, .75f, 1.f), m_state == EState::FadingOut, m_current_fade_opacity); + ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(.0f, .0f, .0f, .0f)); + + + std::string button_text; + // Orca: Change based on dark mode + button_text = m_is_dark ? ImGui::CloseNotifDarkButton : ImGui::CloseNotifButton; + + if (ImGui::IsMouseHoveringRect(ImVec2(win_pos.x - win_size.x / 10.f, win_pos.y), + ImVec2(win_pos.x, win_pos.y + win_size.y - (m_minimize_b_visible ? 2 * m_line_height : 0)), + true)) + { + // Orca: Change based on dark mode + button_text = m_is_dark ? ImGui::CloseNotifHoverDarkButton : ImGui::CloseNotifHoverButton; + } + ImVec2 button_pic_size = ImGui::CalcTextSize(button_text.c_str()); + ImVec2 button_size(button_pic_size.x * 1.25f, button_pic_size.y * 1.25f); + ImGui::SetCursorPosX(win_size.x - m_line_height * 2.75f); + ImGui::SetCursorPosY(win_size.y / 2 - button_size.y); + if (imgui.button(button_text.c_str(), button_size.x, button_size.y)) + { + close(); + } + + //invisible large button + ImGui::SetCursorPosX(win_size.x - m_line_height * 2.35f); + ImGui::SetCursorPosY(0); + if (imgui.button(" ", m_line_height * 2.125, win_size.y - (m_minimize_b_visible ? 2 * m_line_height : 0))) + { + close(); + } + ImGui::PopStyleColor(5); + +} + +void NotificationManager::URLDownloadNotification::render_pause_cancel_buttons_inner(ImGuiWrapper& imgui, const float win_size_x, const float win_size_y, const float win_pos_x, const float win_pos_y) +{ + + render_cancel_button_inner(imgui, win_size_x, win_size_y, win_pos_x, win_pos_y); + render_pause_button_inner(imgui, win_size_x, win_size_y, win_pos_x, win_pos_y); +} +void NotificationManager::URLDownloadNotification::render_pause_button_inner(ImGuiWrapper& imgui, const float win_size_x, const float win_size_y, const float win_pos_x, const float win_pos_y) +{ + ImVec2 win_size(win_size_x, win_size_y); + ImVec2 win_pos(win_pos_x, win_pos_y); + ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(.0f, .0f, .0f, .0f)); + ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(.0f, .0f, .0f, .0f)); + push_style_color(ImGuiCol_Text, ImVec4(1.f, 1.f, 1.f, 1.f), m_state == EState::FadingOut, m_current_fade_opacity); + push_style_color(ImGuiCol_TextSelectedBg, ImVec4(0, .75f, .75f, 1.f), m_state == EState::FadingOut, m_current_fade_opacity); + ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(.0f, .0f, .0f, .0f)); + + std::wstring button_text; + // Orca: Change based on dark mode + button_text = m_is_dark ? (m_download_paused ? ImGui::PlayDarkButton : ImGui::PauseDarkButton) : (m_download_paused ? ImGui::PlayButton : ImGui::PauseButton); + + if (ImGui::IsMouseHoveringRect(ImVec2(win_pos.x - m_line_height * 5.f, win_pos.y), + ImVec2(win_pos.x - m_line_height * 2.5f, win_pos.y + win_size.y), + true)) + { + // Orca: Change based on dark mode + button_text = m_is_dark ? (m_download_paused ? ImGui::PlayHoverDarkButton : ImGui::PauseHoverDarkButton) : (m_download_paused ? ImGui::PlayHoverButton : ImGui::PauseHoverButton); + } + + ImVec2 button_pic_size = ImGui::CalcTextSize(boost::nowide::narrow(button_text).c_str()); + ImVec2 button_size(button_pic_size.x * 1.25f, button_pic_size.y * 1.25f); + ImGui::SetCursorPosX(win_size.x - m_line_height * 5.0f); + ImGui::SetCursorPosY(win_size.y / 2 - button_size.y); + if (imgui.button(button_text.c_str(), button_size.x, button_size.y)) + { + trigger_user_action_callback(m_download_paused ? DownloaderUserAction::DownloadUserContinued : DownloaderUserAction::DownloadUserPaused); + } + + //invisible large button + ImGui::SetCursorPosX(win_size.x - m_line_height * 4.625f); + ImGui::SetCursorPosY(0); + if (imgui.button(" ", m_line_height * 2.f, win_size.y)) + { + trigger_user_action_callback(m_download_paused ? DownloaderUserAction::DownloadUserContinued : DownloaderUserAction::DownloadUserPaused); + } + ImGui::PopStyleColor(5); +} + +void NotificationManager::URLDownloadNotification::render_open_button_inner(ImGuiWrapper& imgui, const float win_size_x, const float win_size_y, const float win_pos_x, const float win_pos_y) +{ + ImVec2 win_size(win_size_x, win_size_y); + ImVec2 win_pos(win_pos_x, win_pos_y); + ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(.0f, .0f, .0f, .0f)); + ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(.0f, .0f, .0f, .0f)); + push_style_color(ImGuiCol_Text, ImVec4(1.f, 1.f, 1.f, 1.f), m_state == EState::FadingOut, m_current_fade_opacity); + push_style_color(ImGuiCol_TextSelectedBg, ImVec4(0, .75f, .75f, 1.f), m_state == EState::FadingOut, m_current_fade_opacity); + ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(.0f, .0f, .0f, .0f)); + + std::wstring button_text; + // Orca: Change based on dark mode + button_text = m_is_dark ? ImGui::OpenDarkButton : ImGui::OpenButton; + + if (ImGui::IsMouseHoveringRect(ImVec2(win_pos.x - m_line_height * 5.f, win_pos.y), + ImVec2(win_pos.x - m_line_height * 2.5f, win_pos.y + win_size.y), + true)) + { + // Orca: Change based on dark mode + button_text = m_is_dark ? ImGui::OpenHoverDarkButton : ImGui::OpenHoverButton; + } + + ImVec2 button_pic_size = ImGui::CalcTextSize(boost::nowide::narrow(button_text).c_str()); + ImVec2 button_size(button_pic_size.x * 1.25f, button_pic_size.y * 1.25f); + ImGui::SetCursorPosX(win_size.x - m_line_height * 5.0f); + ImGui::SetCursorPosY(win_size.y / 2 - button_size.y); + if (imgui.button(button_text.c_str(), button_size.x, button_size.y)) + { + trigger_user_action_callback(DownloaderUserAction::DownloadUserOpenedFolder); + } + + //invisible large button + ImGui::SetCursorPosX(win_size.x - m_line_height * 4.625f); + ImGui::SetCursorPosY(0); + if (imgui.button(" ", m_line_height * 2.f, win_size.y)) + { + trigger_user_action_callback(DownloaderUserAction::DownloadUserOpenedFolder); + } + ImGui::PopStyleColor(5); +} + +void NotificationManager::URLDownloadNotification::render_cancel_button_inner(ImGuiWrapper& imgui, const float win_size_x, const float win_size_y, const float win_pos_x, const float win_pos_y) +{ + ImVec2 win_size(win_size_x, win_size_y); + ImVec2 win_pos(win_pos_x, win_pos_y); + ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(.0f, .0f, .0f, .0f)); + ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(.0f, .0f, .0f, .0f)); + push_style_color(ImGuiCol_Text, ImVec4(1.f, 1.f, 1.f, 1.f), m_state == EState::FadingOut, m_current_fade_opacity); + push_style_color(ImGuiCol_TextSelectedBg, ImVec4(0, .75f, .75f, 1.f), m_state == EState::FadingOut, m_current_fade_opacity); + ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(.0f, .0f, .0f, .0f)); + + + std::string button_text; + button_text = ImGui::CancelButton; + + if (ImGui::IsMouseHoveringRect(ImVec2(win_pos.x - win_size.x / 10.f, win_pos.y), + ImVec2(win_pos.x, win_pos.y + win_size.y - (m_minimize_b_visible ? 2 * m_line_height : 0)), + true)) + { + button_text = ImGui::CancelHoverButton; + } + ImVec2 button_pic_size = ImGui::CalcTextSize(button_text.c_str()); + ImVec2 button_size(button_pic_size.x * 1.25f, button_pic_size.y * 1.25f); + ImGui::SetCursorPosX(win_size.x - m_line_height * 2.75f); + ImGui::SetCursorPosY(win_size.y / 2 - button_size.y); + if (imgui.button(button_text.c_str(), button_size.x, button_size.y)) + { + trigger_user_action_callback(DownloaderUserAction::DownloadUserCanceled); + } + + //invisible large button + ImGui::SetCursorPosX(win_size.x - m_line_height * 2.35f); + ImGui::SetCursorPosY(0); + if (imgui.button(" ", m_line_height * 2.125, win_size.y - (m_minimize_b_visible ? 2 * m_line_height : 0))) + { + trigger_user_action_callback(DownloaderUserAction::DownloadUserCanceled); + } + ImGui::PopStyleColor(5); + +} + +void NotificationManager::URLDownloadNotification::trigger_user_action_callback(DownloaderUserAction action) +{ + if (m_user_action_callback) { + if (m_user_action_callback(action, m_download_id)) {} + } +} + + +void NotificationManager::URLDownloadNotification::render_bar(ImGuiWrapper& imgui, const float win_size_x, const float win_size_y, const float win_pos_x, const float win_pos_y) +{ + ProgressBarNotification::render_bar(imgui, win_size_x, win_size_y, win_pos_x, win_pos_y); + std::string text; + if (m_percentage < 0.f) { + text = _u8L("ERROR") + ": " + m_error_message; + } else if (m_percentage >= 1.f) { + text = _u8L("COMPLETED"); + } else { + std::stringstream stream; + stream << std::fixed << std::setprecision(2) << (int)(m_percentage * 100) << "%"; + text = stream.str(); + } + ImGui::SetCursorPosX(m_left_indentation); + ImGui::SetCursorPosY(win_size_y / 2 + win_size_y / 6 - (m_multiline ? 0 : m_line_height / 4)); + imgui.text(text.c_str()); +} + +void NotificationManager::URLDownloadNotification::count_spaces() +{ + ProgressBarNotification::count_spaces(); + m_window_width_offset = m_line_height * 6; +} + //------PrintHostUploadNotification---------------- void NotificationManager::PrintHostUploadNotification::init() { @@ -1841,6 +2054,81 @@ void NotificationManager::push_import_finished_notification(const std::string& p set_slicing_progress_hidden(); } +void NotificationManager::push_download_URL_progress_notification(size_t id, const std::string& text, std::function user_action_callback) +{ + // If already exists + for (std::unique_ptr& notification : m_pop_notifications) { + if (notification->get_type() == NotificationType::URLDownload && dynamic_cast(notification.get())->get_download_id() == id) { + return; + } + } + // push new one + NotificationData data{ NotificationType::URLDownload, NotificationLevel::ProgressBarNotificationLevel, 5, _u8L("Download") + ": " + text }; + push_notification_data(std::make_unique(data, m_id_provider, m_evt_handler, id, user_action_callback), 0); +} + +void NotificationManager::set_download_URL_progress(size_t id, float percentage) +{ + for (std::unique_ptr& notification : m_pop_notifications) { + if (notification->get_type() == NotificationType::URLDownload) { + URLDownloadNotification* ntf = dynamic_cast(notification.get()); + if (ntf->get_download_id() != id) + continue; + // if this changes the percentage, it should be shown now + float percent_b4 = ntf->get_percentage(); + ntf->set_percentage(percentage); + ntf->set_paused(false); + if (ntf->get_percentage() != percent_b4) + wxGetApp().plater()->get_current_canvas3D()->schedule_extra_frame(0); + return; + } + } +} + +void NotificationManager::set_download_URL_paused(size_t id) +{ + for (std::unique_ptr& notification : m_pop_notifications) { + if (notification->get_type() == NotificationType::URLDownload) { + URLDownloadNotification* ntf = dynamic_cast(notification.get()); + if (ntf->get_download_id() != id) + continue; + ntf->set_paused(true); + wxGetApp().plater()->get_current_canvas3D()->schedule_extra_frame(0); + return; + } + } +} + +void NotificationManager::set_download_URL_canceled(size_t id) +{ + for (std::unique_ptr& notification : m_pop_notifications) { + if (notification->get_type() == NotificationType::URLDownload) { + URLDownloadNotification* ntf = dynamic_cast(notification.get()); + if (ntf->get_download_id() != id) + continue; + ntf->close(); + wxGetApp().plater()->get_current_canvas3D()->schedule_extra_frame(0); + return; + } + } +} +void NotificationManager::set_download_URL_error(size_t id, const std::string& text) +{ + for (std::unique_ptr& notification : m_pop_notifications) { + if (notification->get_type() == NotificationType::URLDownload) { + URLDownloadNotification* ntf = dynamic_cast(notification.get()); + if (ntf->get_download_id() != id) + continue; + float percent_b4 = ntf->get_percentage(); + ntf->set_percentage(-1.f); + ntf->set_error_message(text); + if (ntf->get_percentage() != percent_b4) + wxGetApp().plater()->get_current_canvas3D()->schedule_extra_frame(0); + return; + } + } +} + void NotificationManager::push_upload_job_notification(int id, float filesize, const std::string& filename, const std::string& host, float percentage) { // find if upload with same id was not already in notification diff --git a/src/slic3r/GUI/NotificationManager.hpp b/src/slic3r/GUI/NotificationManager.hpp index 68e26f4a0e..d971fd2d74 100644 --- a/src/slic3r/GUI/NotificationManager.hpp +++ b/src/slic3r/GUI/NotificationManager.hpp @@ -11,6 +11,7 @@ #include "Event.hpp" #include "I18N.hpp" #include "Jobs/ProgressIndicator.hpp" +#include "Downloader.hpp" #include #include @@ -129,6 +130,8 @@ enum class NotificationType NetfabbFinished, // Short meesage to fill space between start and finish of export ExportOngoing, + // Progressbar of download from prusaslicer://url + URLDownload, // BBS: Short meesage to fill space between start and finish of arranging ArrangeOngoing, // BBL: Plate Info ,Design For @YangLeDuo @@ -247,6 +250,14 @@ public: // Exporting finished, show this information with path, button to open containing folder and if ejectable - eject button void push_exporting_finished_notification(const std::string& path, const std::string& dir_path, bool on_removable); void push_import_finished_notification(const std::string& path, const std::string& dir_path, bool on_removable); + + // Download URL progress notif + void push_download_URL_progress_notification(size_t id, const std::string& text, std::function user_action_callback); + void set_download_URL_progress(size_t id, float percentage); + void set_download_URL_paused(size_t id); + void set_download_URL_canceled(size_t id); + void set_download_URL_error(size_t id, const std::string& text); + // notifications with progress bar // slicing progress void init_slicing_progress_notification(std::function cancel_callback); @@ -593,6 +604,7 @@ private: ProgressBarNotification(const NotificationData& n, NotificationIDProvider& id_provider, wxEvtHandler* evt_handler) : PopNotification(n, id_provider, evt_handler) { } virtual void set_percentage(float percent) { m_percentage = percent; } + float get_percentage() const { return m_percentage; } protected: virtual void init() override; virtual void render_text(ImGuiWrapper& imgui, @@ -615,6 +627,62 @@ private: }; + class URLDownloadNotification : public ProgressBarNotification + { + public: + URLDownloadNotification(const NotificationData& n, NotificationIDProvider& id_provider, wxEvtHandler* evt_handler, size_t download_id, std::function user_action_callback) + //: ProgressBarWithCancelNotification(n, id_provider, evt_handler, cancel_callback) + : ProgressBarNotification(n, id_provider, evt_handler) + , m_download_id(download_id) + , m_user_action_callback(user_action_callback) + { + } + void set_percentage(float percent) override + { + m_percentage = percent; + if (m_percentage >= 1.f) { + m_notification_start = GLCanvas3D::timestamp_now(); + m_state = EState::Shown; + } else + m_state = EState::NotFading; + } + size_t get_download_id() { return m_download_id; } + void set_user_action_callback(std::function user_action_callback) { m_user_action_callback = user_action_callback; } + void set_paused(bool paused) { m_download_paused = paused; } + void set_error_message(const std::string& message) { m_error_message = message; } + bool compare_text(const std::string& text) const override { return false; }; + protected: + void render_close_button(ImGuiWrapper& imgui, + const float win_size_x, const float win_size_y, + const float win_pos_x, const float win_pos_y) override; + void render_close_button_inner(ImGuiWrapper& imgui, + const float win_size_x, const float win_size_y, + const float win_pos_x, const float win_pos_y); + void render_pause_cancel_buttons_inner(ImGuiWrapper& imgui, + const float win_size_x, const float win_size_y, + const float win_pos_x, const float win_pos_y); + void render_open_button_inner(ImGuiWrapper& imgui, + const float win_size_x, const float win_size_y, + const float win_pos_x, const float win_pos_y); + void render_cancel_button_inner(ImGuiWrapper& imgui, + const float win_size_x, const float win_size_y, + const float win_pos_x, const float win_pos_y); + void render_pause_button_inner(ImGuiWrapper& imgui, + const float win_size_x, const float win_size_y, + const float win_pos_x, const float win_pos_y); + void render_bar(ImGuiWrapper& imgui, + const float win_size_x, const float win_size_y, + const float win_pos_x, const float win_pos_y) override; + void trigger_user_action_callback(DownloaderUserAction action); + + void count_spaces() override; + + size_t m_download_id; + std::function m_user_action_callback; + bool m_download_paused {false}; + std::string m_error_message; + }; + class PrintHostUploadNotification : public ProgressBarNotification { public: diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 59381b93f3..abb5f33ddf 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -156,6 +156,7 @@ #include #include // Needs to be last because reasons :-/ +#include #include "WipeTowerDialog.hpp" #include "ObjColorDialog.hpp" @@ -168,6 +169,7 @@ #include "PlateSettingsDialog.hpp" #include "DailyTips.hpp" #include "CreatePresetsDialog.hpp" +#include "FileArchiveDialog.hpp" using boost::optional; namespace fs = boost::filesystem; @@ -8996,8 +8998,9 @@ void Plater::import_model_id(wxString download_info) /* prepare project and profile */ boost::thread import_thread = Slic3r::create_thread([&percent, &cont, &cancel, &retry_count, max_retries, &msg, &target_path, &download_ok, download_url, &filename] { - NetworkAgent* m_agent = Slic3r::GUI::wxGetApp().getAgent(); - if (!m_agent) return; + // Orca: NetworkAgent is not needed and only prevents this from running +// NetworkAgent* m_agent = Slic3r::GUI::wxGetApp().getAgent(); +// if (!m_agent) return; int res = 0; unsigned int http_code; @@ -9148,7 +9151,11 @@ void Plater::import_model_id(wxString download_info) if (download_ok) { BOOST_LOG_TRIVIAL(trace) << "import_model_id: target_path = " << target_path.string(); /* load project */ - this->load_project(target_path.wstring()); + // Orca: If download is a zip file, treat it as if file has been drag and dropped on the plater + if (target_path.extension() == ".zip") + this->load_files(wxArrayString(1, target_path.string())); + else + this->load_project(target_path.wstring()); /*BBS set project info after load project, project info is reset in load project */ //p->project.project_model_id = model_id; //p->project.project_design_id = design_id; @@ -9818,6 +9825,19 @@ void Plater::calib_VFA(const Calib_Params& params) p->background_process.fff_print()->set_calib_params(params); } BuildVolume_Type Plater::get_build_volume_type() const { return p->bed.get_build_volume_type(); } + +void Plater::import_zip_archive() +{ + wxString input_file; + wxGetApp().import_zip(this, input_file); + if (input_file.empty()) + return; + + wxArrayString arr; + arr.Add(input_file); + load_files(arr); +} + void Plater::import_sl1_archive() { auto &w = get_ui_job_worker(); @@ -10003,6 +10023,186 @@ std::vector Plater::load_files(const std::vector& input_fil return p->load_files(paths, strategy, ask_multi); } +bool Plater::preview_zip_archive(const boost::filesystem::path& archive_path) +{ + //std::vector unzipped_paths; + std::vector non_project_paths; + std::vector project_paths; + try + { + mz_zip_archive archive; + mz_zip_zero_struct(&archive); + + if (!open_zip_reader(&archive, archive_path.string())) { + // TRN %1% is archive path + std::string err_msg = GUI::format(_u8L("Loading of a ZIP archive on path %1% has failed."), archive_path.string()); + throw Slic3r::FileIOError(err_msg); + } + mz_uint num_entries = mz_zip_reader_get_num_files(&archive); + mz_zip_archive_file_stat stat; + // selected_paths contains paths and its uncompressed size. The size is used to distinguish between files with same path. + std::vector> selected_paths; + FileArchiveDialog dlg(static_cast(wxGetApp().mainframe), &archive, selected_paths); + if (dlg.ShowModal() == wxID_OK) + { + std::string archive_path_string = archive_path.string(); + archive_path_string = archive_path_string.substr(0, archive_path_string.size() - 4); + fs::path archive_dir(wxStandardPaths::Get().GetTempDir().utf8_str().data()); + + for (auto& path_w_size : selected_paths) { + const fs::path& path = path_w_size.first; + size_t size = path_w_size.second; + // find path in zip archive + for (mz_uint i = 0; i < num_entries; ++i) { + if (mz_zip_reader_file_stat(&archive, i, &stat)) { + if (size != stat.m_uncomp_size) // size must fit + continue; + wxString wname = boost::nowide::widen(stat.m_filename); + std::string name = boost::nowide::narrow(wname); + fs::path archive_path(name); + + std::string extra(1024, 0); + size_t extra_size = mz_zip_reader_get_filename_from_extra(&archive, i, extra.data(), extra.size()); + if (extra_size > 0) { + archive_path = fs::path(extra.substr(0, extra_size)); + name = archive_path.string(); + } + + if (archive_path.empty()) + continue; + if (path != archive_path) + continue; + // decompressing + try + { + std::replace(name.begin(), name.end(), '\\', '/'); + // rename if file exists + std::string filename = path.filename().string(); + std::string extension = boost::filesystem::extension(path); + std::string just_filename = filename.substr(0, filename.size() - extension.size()); + std::string final_filename = just_filename; + + size_t version = 0; + while (fs::exists(archive_dir / (final_filename + extension))) + { + ++version; + final_filename = just_filename + "(" + std::to_string(version) + ")"; + } + filename = final_filename + extension; + fs::path final_path = archive_dir / filename; + std::string buffer((size_t)stat.m_uncomp_size, 0); + // Decompress action. We already has correct file index in stat structure. + mz_bool res = mz_zip_reader_extract_to_mem(&archive, stat.m_file_index, (void*)buffer.data(), (size_t)stat.m_uncomp_size, 0); + if (res == 0) { + // TRN: First argument = path to file, second argument = error description + wxString error_log = GUI::format_wxstr(_L("Failed to unzip file to %1%: %2%"), final_path.string(), mz_zip_get_error_string(mz_zip_get_last_error(&archive))); + BOOST_LOG_TRIVIAL(error) << error_log; + show_error(nullptr, error_log); + break; + } + // write buffer to file + fs::fstream file(final_path, std::ios::out | std::ios::binary | std::ios::trunc); + file.write(buffer.c_str(), buffer.size()); + file.close(); + if (!fs::exists(final_path)) { + wxString error_log = GUI::format_wxstr(_L("Failed to find unzipped file at %1%. Unzipping of file has failed."), final_path.string()); + BOOST_LOG_TRIVIAL(error) << error_log; + show_error(nullptr, error_log); + break; + } + BOOST_LOG_TRIVIAL(info) << "Unzipped " << final_path; + if (!boost::algorithm::iends_with(filename, ".3mf") && !boost::algorithm::iends_with(filename, ".amf")) { + non_project_paths.emplace_back(final_path); + break; + } + // if 3mf - read archive headers to find project file + if (/*(boost::algorithm::iends_with(filename, ".3mf") && !is_project_3mf(final_path.string())) ||*/ + (boost::algorithm::iends_with(filename, ".amf") && !boost::algorithm::iends_with(filename, ".zip.amf"))) { + non_project_paths.emplace_back(final_path); + break; + } + + project_paths.emplace_back(final_path); + break; + } + catch (const std::exception& e) + { + // ensure the zip archive is closed and rethrow the exception + close_zip_reader(&archive); + throw Slic3r::FileIOError(e.what()); + } + } + } + } + close_zip_reader(&archive); + if (non_project_paths.size() + project_paths.size() != selected_paths.size()) + BOOST_LOG_TRIVIAL(error) << "Decompresing of archive did not retrieve all files. Expected files: " + << selected_paths.size() + << " Decopressed files: " + << non_project_paths.size() + project_paths.size(); + } else { + close_zip_reader(&archive); + return false; + } + + } + catch (const Slic3r::FileIOError& e) { + // zip reader should be already closed or not even opened + GUI::show_error(this, e.what()); + return false; + } + // none selected + if (project_paths.empty() && non_project_paths.empty()) + { + return false; + } + + // 1 project file and some models - behave like drag n drop of 3mf and then load models + if (project_paths.size() == 1) + { + wxArrayString aux; + aux.Add(from_u8(project_paths.front().string())); + bool loaded3mf = load_files(aux); + load_files(non_project_paths, LoadStrategy::LoadModel); + boost::system::error_code ec; + if (loaded3mf) { + fs::remove(project_paths.front(), ec); + if (ec) + BOOST_LOG_TRIVIAL(error) << ec.message(); + } + for (const fs::path& path : non_project_paths) { + // Delete file from temp file (path variable), it will stay only in app memory. + boost::system::error_code ec; + fs::remove(path, ec); + if (ec) + BOOST_LOG_TRIVIAL(error) << ec.message(); + } + return true; + } + + // load all projects and all models as geometry + load_files(project_paths, LoadStrategy::LoadModel); + load_files(non_project_paths, LoadStrategy::LoadModel); + + + for (const fs::path& path : project_paths) { + // Delete file from temp file (path variable), it will stay only in app memory. + boost::system::error_code ec; + fs::remove(path, ec); + if (ec) + BOOST_LOG_TRIVIAL(error) << ec.message(); + } + for (const fs::path& path : non_project_paths) { + // Delete file from temp file (path variable), it will stay only in app memory. + boost::system::error_code ec; + fs::remove(path, ec); + if (ec) + BOOST_LOG_TRIVIAL(error) << ec.message(); + } + + return true; +} + class RadioBox; class RadioSelector { @@ -10341,7 +10541,7 @@ void ProjectDropDialog::on_dpi_changed(const wxRect& suggested_rect) //BBS: remove GCodeViewer as seperate APP logic bool Plater::load_files(const wxArrayString& filenames) { - const std::regex pattern_drop(".*[.](stp|step|stl|oltp|obj|amf|3mf|svg)", std::regex::icase); + const std::regex pattern_drop(".*[.](stp|step|stl|oltp|obj|amf|3mf|svg|zip)", std::regex::icase); const std::regex pattern_gcode_drop(".*[.](gcode|g)", std::regex::icase); std::vector normal_paths; @@ -10431,6 +10631,21 @@ bool Plater::load_files(const wxArrayString& filenames) } } + // Orca: Iters through given paths and imports files from zip then remove zip from paths + // returns true if zip files were found + auto handle_zips = [this](vector& paths) { // NOLINT(*-no-recursion) - Recursion is intended and should be managed properly + bool res = false; + for (auto it = paths.begin(); it != paths.end();) { + if (boost::algorithm::iends_with(it->string(), ".zip")) { + res = true; + preview_zip_archive(*it); + it = paths.erase(it); + } else + it++; + } + return res; + }; + switch (loadfiles_type) { case LoadFilesType::Single3MF: open_3mf_file(normal_paths[0]); @@ -10438,6 +10653,7 @@ bool Plater::load_files(const wxArrayString& filenames) case LoadFilesType::SingleOther: { Plater::TakeSnapshot snapshot(this, snapshot_label); + if (handle_zips(normal_paths)) return true; if (load_files(normal_paths, LoadStrategy::LoadModel, false).empty()) { res = false; } break; } @@ -10453,6 +10669,9 @@ bool Plater::load_files(const wxArrayString& filenames) case LoadFilesType::MultipleOther: { Plater::TakeSnapshot snapshot(this, snapshot_label); + if (handle_zips(normal_paths)) { + if (normal_paths.empty()) return true; + } if (load_files(normal_paths, LoadStrategy::LoadModel, true).empty()) { res = false; } break; } @@ -10471,6 +10690,9 @@ bool Plater::load_files(const wxArrayString& filenames) open_3mf_file(first_file[0]); if (load_files(tmf_file, LoadStrategy::LoadModel).empty()) { res = false; } + if (res && handle_zips(other_file)) { + if (normal_paths.empty()) return true; + } if (load_files(other_file, LoadStrategy::LoadModel, false).empty()) { res = false; } break; default: break; diff --git a/src/slic3r/GUI/Plater.hpp b/src/slic3r/GUI/Plater.hpp index e03fd3d60c..dd9c58fd57 100644 --- a/src/slic3r/GUI/Plater.hpp +++ b/src/slic3r/GUI/Plater.hpp @@ -262,6 +262,7 @@ public: int get_3mf_file_count(std::vector paths); void add_file(); void add_model(bool imperial_units = false, std::string fname = ""); + void import_zip_archive(); void import_sl1_archive(); void extract_config_from_project(); void load_gcode(); @@ -298,6 +299,8 @@ public: static wxColour get_next_color_for_filament(); static wxString get_slice_warning_string(GCodeProcessorResult::SliceWarning& warning); + bool preview_zip_archive(const boost::filesystem::path& archive_path); + // BBS: restore std::vector load_files(const std::vector& input_files, LoadStrategy strategy = LoadStrategy::LoadModel | LoadStrategy::LoadConfig, bool ask_multi = false); // To be called when providing a list of files to the GUI slic3r on command line. @@ -803,7 +806,7 @@ private: bool m_only_gcode { false }; bool m_exported_file { false }; bool skip_thumbnail_invalid { false }; - bool m_loading_project {false }; + bool m_loading_project { false }; std::string m_preview_only_filename; int m_valid_plates_count { 0 }; diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp index da217703e9..42ec0a49c7 100644 --- a/src/slic3r/GUI/Preferences.cpp +++ b/src/slic3r/GUI/Preferences.cpp @@ -1088,6 +1088,8 @@ wxWindow* PreferencesDialog::create_general_page() //downloads auto title_downloads = create_item_title(_L("Downloads"), page, _L("Downloads")); auto item_downloads = create_item_downloads(page,50,"download_path"); + auto ps_download_url_registered = create_item_checkbox(_L("Allow downloads from Printables.com"), page, + _L("Allow downloads from Printables.com"), 50, "ps_url_registered"); //dark mode #ifdef _WIN32 @@ -1150,6 +1152,7 @@ wxWindow* PreferencesDialog::create_general_page() sizer_page->Add(title_downloads, 0, wxTOP| wxEXPAND, FromDIP(20)); sizer_page->Add(item_downloads, 0, wxEXPAND, FromDIP(3)); + sizer_page->Add(ps_download_url_registered, 0, wxTOP | wxEXPAND, FromDIP(20)); #ifdef _WIN32 sizer_page->Add(title_darkmode, 0, wxTOP | wxEXPAND, FromDIP(20)); diff --git a/src/slic3r/Utils/Http.cpp b/src/slic3r/Utils/Http.cpp index 12ff954002..88d9acf934 100644 --- a/src/slic3r/Utils/Http.cpp +++ b/src/slic3r/Utils/Http.cpp @@ -138,6 +138,7 @@ struct Http::priv void set_post_body(const std::string &body); void set_put_body(const fs::path &path); void set_del_body(const std::string& body); + void set_range(const std::string &range); std::string curl_error(CURLcode curlcode); std::string body_size_error(); @@ -237,7 +238,7 @@ int Http::priv::xfercb(void *userp, curl_off_t dltotal, curl_off_t dlnow, curl_o curl_easy_getinfo(self->curl, CURLINFO_SPEED_UPLOAD, &speed); if (speed > 0.01) speed = speed; - Progress progress(dltotal, dlnow, ultotal, ulnow, speed); + Progress progress(dltotal, dlnow, ultotal, ulnow, self->buffer, speed); self->progressfn(progress, cb_cancel); } @@ -370,6 +371,11 @@ void Http::priv::set_del_body(const std::string& body) postfields = body; } +void Http::priv::set_range(const std::string& range) +{ + ::curl_easy_setopt(curl, CURLOPT_RANGE, range.c_str()); +} + std::string Http::priv::curl_error(CURLcode curlcode) { return (boost::format("curl:%1%:\n%2%\n[Error %3%]") @@ -434,7 +440,7 @@ void Http::priv::http_perform() if (res == CURLE_ABORTED_BY_CALLBACK) { if (cancel) { // The abort comes from the request being cancelled programatically - Progress dummyprogress(0, 0, 0, 0); + Progress dummyprogress(0, 0, 0, 0, std::string()); bool cancel = true; if (progressfn) { progressfn(dummyprogress, cancel); } } else { @@ -510,6 +516,12 @@ Http& Http::size_limit(size_t sizeLimit) return *this; } +Http& Http::set_range(const std::string& range) +{ + if (p) { p->set_range(range); } + return *this; +} + Http& Http::header(std::string name, const std::string &value) { if (!p) { return * this; } diff --git a/src/slic3r/Utils/Http.hpp b/src/slic3r/Utils/Http.hpp index c7f7ac2cd9..1218a562a6 100644 --- a/src/slic3r/Utils/Http.hpp +++ b/src/slic3r/Utils/Http.hpp @@ -42,14 +42,15 @@ public: size_t dlnow; // Bytes downloaded so far size_t ultotal; // Total bytes to upload size_t ulnow; // Bytes uploaded so far + const std::string& buffer; // reference to buffer containing all data double upload_spd{0.0f}; - Progress(size_t dltotal, size_t dlnow, size_t ultotal, size_t ulnow) : - dltotal(dltotal), dlnow(dlnow), ultotal(ultotal), ulnow(ulnow) + Progress(size_t dltotal, size_t dlnow, size_t ultotal, size_t ulnow, const std::string& buffer) : + dltotal(dltotal), dlnow(dlnow), ultotal(ultotal), ulnow(ulnow), buffer(buffer) {} - Progress(size_t dltotal, size_t dlnow, size_t ultotal, size_t ulnow, double ulspd) : - dltotal(dltotal), dlnow(dlnow), ultotal(ultotal), ulnow(ulnow), upload_spd(ulspd) + Progress(size_t dltotal, size_t dlnow, size_t ultotal, size_t ulnow, const std::string& buffer, double ulspd) : + dltotal(dltotal), dlnow(dlnow), ultotal(ultotal), ulnow(ulnow), buffer(buffer), upload_spd(ulspd) {} }; @@ -102,6 +103,8 @@ public: // Sets a maximum size of the data that can be received. // A value of zero sets the default limit, which is is 5MB. Http& size_limit(size_t sizeLimit); + // range of donloaded bytes. example: curl_easy_setopt(curl, CURLOPT_RANGE, "0-199"); + Http& set_range(const std::string& range); // Sets a HTTP header field. Http& header(std::string name, const std::string &value); // Removes a header field. From 7725fbeb909ea2694567773294262c5c5e8e1ce7 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 22 May 2024 15:26:52 +0800 Subject: [PATCH 17/66] Printables.com support (associate prusaslicer:// link explicitly) (#5416) * Enable ability to open `prusaslicer://` links * Add needed function to miniz * Import Zip Functionality Allows zip file to be drag and dropped or imported via the menu option Based on prusa3d/PrusaSlicer@ce38e57 and current master branch files * Update dialog style to match Orca * Ensure link is from printables * add toggle option in preferences doesn't actually control anything yet * Add Downloader classes As-is from PS master * Create Orca Styled Variant of Icons * Add Icons to ImGui * Use PS's Downloader impl for `prusaslicer://` links * Implement URL Registering on Windows * Implement prusaslicer:// link on macOS * Remove unnecessary class name qualifier in Plater.hpp * Add downloader desktop integration registration and undo * Revert Info.plist * register prusaslicer:// on user request only * fix build error * fix single instance problem * format * add orcalicer:// handler for Mac Attempt to add Linux support but seems not working --------- Co-authored-by: Ocraftyone --- cmake/modules/MacOSXBundleInfo.plist.in | 1 + src/libslic3r/AppConfig.cpp | 5 -- src/platform/osx/Info.plist.in | 1 + src/slic3r/GUI/DesktopIntegrationDialog.cpp | 16 +++---- src/slic3r/GUI/Downloader.cpp | 27 +++++------ src/slic3r/GUI/DownloaderFileGet.cpp | 14 +++--- src/slic3r/GUI/GUI_App.cpp | 51 +++++++++++++++------ src/slic3r/GUI/GUI_App.hpp | 3 +- src/slic3r/GUI/InstanceCheck.cpp | 12 +++++ src/slic3r/GUI/InstanceCheck.hpp | 2 + src/slic3r/GUI/Plater.cpp | 9 ++++ src/slic3r/GUI/Preferences.cpp | 28 +++++++---- src/slic3r/GUI/Preferences.hpp | 2 +- 13 files changed, 111 insertions(+), 60 deletions(-) diff --git a/cmake/modules/MacOSXBundleInfo.plist.in b/cmake/modules/MacOSXBundleInfo.plist.in index 1f435674cf..66c30a6ffe 100644 --- a/cmake/modules/MacOSXBundleInfo.plist.in +++ b/cmake/modules/MacOSXBundleInfo.plist.in @@ -36,6 +36,7 @@ CFBundleURLSchemes orcasliceropen + orcaslicer diff --git a/src/libslic3r/AppConfig.cpp b/src/libslic3r/AppConfig.cpp index 1121a785c5..49a7228f1f 100644 --- a/src/libslic3r/AppConfig.cpp +++ b/src/libslic3r/AppConfig.cpp @@ -333,11 +333,6 @@ void AppConfig::set_defaults() set("download_path", ""); } - // Orca - if (get("ps_url_registered").empty()) { - set_bool("ps_url_registered", false); - } - if (get("mouse_wheel").empty()) { set("mouse_wheel", "0"); } diff --git a/src/platform/osx/Info.plist.in b/src/platform/osx/Info.plist.in index f5846c023a..a2621d2521 100644 --- a/src/platform/osx/Info.plist.in +++ b/src/platform/osx/Info.plist.in @@ -32,6 +32,7 @@ CFBundleURLSchemes orcasliceropen + orcaslicer diff --git a/src/slic3r/GUI/DesktopIntegrationDialog.cpp b/src/slic3r/GUI/DesktopIntegrationDialog.cpp index a9d8708462..672504ebd2 100644 --- a/src/slic3r/GUI/DesktopIntegrationDialog.cpp +++ b/src/slic3r/GUI/DesktopIntegrationDialog.cpp @@ -531,7 +531,7 @@ void DesktopIntegrationDialog::perform_downloader_desktop_integration() std::string desktop_file_downloader = GUI::format( "[Desktop Entry]\n" - "Name=PrusaSlicer URL Protocol%1%\n" + "Name=OrcaSlicer URL Protocol%1%\n" "Exec=\"%2%\" %%u\n" "Terminal=false\n" "Type=Application\n" @@ -541,12 +541,12 @@ void DesktopIntegrationDialog::perform_downloader_desktop_integration() , name_suffix, excutable_path); // desktop file for downloader as part of main app - std::string desktop_path = GUI::format("%1%/applications/PrusaSlicerURLProtocol%2%.desktop", target_dir_desktop, version_suffix); + std::string desktop_path = GUI::format("%1%/applications/OrcaSlicerURLProtocol%2%.desktop", target_dir_desktop, version_suffix); if (create_desktop_file(desktop_path, desktop_file_downloader)) { // save path to desktop file app_config->set("desktop_integration_URL_path", desktop_path); // finish registration on mime type - std::string command = GUI::format("xdg-mime default PrusaSlicerURLProtocol%1%.desktop x-scheme-handler/prusaslicer", version_suffix); + std::string command = GUI::format("xdg-mime default OrcaSlicerURLProtocol%1%.desktop x-scheme-handler/prusaslicer", version_suffix); BOOST_LOG_TRIVIAL(debug) << "system command: " << command; int r = system(command.c_str()); BOOST_LOG_TRIVIAL(debug) << "system result: " << r; @@ -558,16 +558,16 @@ void DesktopIntegrationDialog::perform_downloader_desktop_integration() if (contains_path_dir(target_candidates[i], "applications")) { target_dir_desktop = target_candidates[i]; // Write slicer desktop file - std::string path = GUI::format("%1%/applications/PrusaSlicerURLProtocol%2%.desktop", target_dir_desktop, version_suffix); + std::string path = GUI::format("%1%/applications/OrcaSlicerURLProtocol%2%.desktop", target_dir_desktop, version_suffix); if (create_desktop_file(path, desktop_file_downloader)) { app_config->set("desktop_integration_URL_path", path); candidate_found = true; - BOOST_LOG_TRIVIAL(debug) << "PrusaSlicerURLProtocol.desktop file installation success."; + BOOST_LOG_TRIVIAL(debug) << "OrcaSlicerURLProtocol.desktop file installation success."; break; } else { // write failed - try another path - BOOST_LOG_TRIVIAL(debug) << "Attempt to PrusaSlicerURLProtocol.desktop file installation failed. failed path: " << target_candidates[i]; + BOOST_LOG_TRIVIAL(debug) << "Attempt to OrcaSlicerURLProtocol.desktop file installation failed. failed path: " << target_candidates[i]; target_dir_desktop.clear(); } } @@ -578,7 +578,7 @@ void DesktopIntegrationDialog::perform_downloader_desktop_integration() create_path(boost::nowide::narrow(wxFileName::GetHomeDir()), ".local/share/applications"); // create desktop file target_dir_desktop = GUI::format("%1%/.local/share", wxFileName::GetHomeDir()); - std::string path = GUI::format("%1%/applications/PrusaSlicerURLProtocol%2%.desktop", target_dir_desktop, version_suffix); + std::string path = GUI::format("%1%/applications/OrcaSlicerURLProtocol%2%.desktop", target_dir_desktop, version_suffix); if (contains_path_dir(target_dir_desktop, "applications")) { if (!create_desktop_file(path, desktop_file_downloader)) { // Desktop file not written - end desktop integration @@ -602,7 +602,7 @@ void DesktopIntegrationDialog::perform_downloader_desktop_integration() } // finish registration on mime type - std::string command = GUI::format("xdg-mime default PrusaSlicerURLProtocol%1%.desktop x-scheme-handler/prusaslicer", version_suffix); + std::string command = GUI::format("xdg-mime default OrcaSlicerURLProtocol%1%.desktop x-scheme-handler/prusaslicer", version_suffix); BOOST_LOG_TRIVIAL(debug) << "system command: " << command; int r = system(command.c_str()); BOOST_LOG_TRIVIAL(debug) << "system result: " << r; diff --git a/src/slic3r/GUI/Downloader.cpp b/src/slic3r/GUI/Downloader.cpp index 229936160f..10b3b6cbe5 100644 --- a/src/slic3r/GUI/Downloader.cpp +++ b/src/slic3r/GUI/Downloader.cpp @@ -135,13 +135,6 @@ void Downloader::start_download(const std::string& full_url) { assert(m_initialized); - // Orca: check if url is registered - if (!wxGetApp().app_config->has("ps_url_registered") || !wxGetApp().app_config->get_bool("ps_url_registered")) { - BOOST_LOG_TRIVIAL(error) << "PrusaSlicer links are not enabled. Download aborted: " << full_url; - show_error(nullptr, "PrusaSlicer links are not enabled in preferences. Download aborted."); - return; - } - // Orca: Move to the 3D view MainFrame* mainframe = wxGetApp().mainframe; Plater* plater = wxGetApp().plater(); @@ -155,7 +148,7 @@ void Downloader::start_download(const std::string& full_url) // Orca: Replace PS workaround for "mysterious slash" with a more dynamic approach // Windows seems to have fixed the issue and this provides backwards compatability for those it still affects - boost::regex re(R"(^prusaslicer:\/\/open[\/]?\?file=)", boost::regbase::icase); + boost::regex re(R"(^(orcaslicer|prusaslicer):\/\/open[\/]?\?file=)", boost::regbase::icase); boost::smatch results; if (!boost::regex_search(full_url, results, re)) { @@ -168,14 +161,16 @@ void Downloader::start_download(const std::string& full_url) } size_t id = get_next_id(); std::string escaped_url = FileGet::escape_url(full_url.substr(results.length())); - if (!boost::starts_with(escaped_url, "https://") || !FileGet::is_subdomain(escaped_url, "printables.com")) { - std::string msg = format(_L("Download won't start. Download URL doesn't point to https://printables.com : %1%"), escaped_url); - BOOST_LOG_TRIVIAL(error) << msg; - NotificationManager* ntf_mngr = wxGetApp().notification_manager(); - ntf_mngr->push_notification(NotificationType::CustomNotification, NotificationManager::NotificationLevel::ErrorNotificationLevel, - "Download failed. Download URL doesn't point to https://printables.com."); - return; - } + // Orca:: any website that supports orcaslicer://open/?file= can be downloaded + + // if (!boost::starts_with(escaped_url, "https://") || !FileGet::is_subdomain(escaped_url, "printables.com")) { + // std::string msg = format(_L("Download won't start. Download URL doesn't point to https://printables.com : %1%"), escaped_url); + // BOOST_LOG_TRIVIAL(error) << msg; + // NotificationManager* ntf_mngr = wxGetApp().notification_manager(); + // ntf_mngr->push_notification(NotificationType::CustomNotification, NotificationManager::NotificationLevel::ErrorNotificationLevel, + // "Download failed. Download URL doesn't point to https://printables.com."); + // return; + // } std::string text(escaped_url); m_downloads.emplace_back(std::make_unique(id, std::move(escaped_url), this, m_dest_folder)); diff --git a/src/slic3r/GUI/DownloaderFileGet.cpp b/src/slic3r/GUI/DownloaderFileGet.cpp index 137a7e9bc1..2389d379db 100644 --- a/src/slic3r/GUI/DownloaderFileGet.cpp +++ b/src/slic3r/GUI/DownloaderFileGet.cpp @@ -201,12 +201,12 @@ void FileGet::priv::get_perform() return; } - std:: string range_string = std::to_string(m_written) + "-"; + std:: string range_string = std::to_string(m_written) + "-"; - size_t written_previously = m_written; - size_t written_this_session = 0; - Http::get(m_url) - .size_limit(DOWNLOAD_SIZE_LIMIT) //more? + size_t written_previously = m_written; + size_t written_this_session = 0; + Http::get(m_url) + .size_limit(DOWNLOAD_SIZE_LIMIT) //more? .set_range(range_string) .on_progress([&](Http::Progress progress, bool& cancel) { // to prevent multiple calls into following ifs (m_cancel / m_pause) @@ -244,7 +244,7 @@ void FileGet::priv::get_perform() } if (progress.dlnow != 0) { - if (progress.dlnow - written_this_session > DOWNLOAD_MAX_CHUNK_SIZE || progress.dlnow == progress.dltotal) { + if (progress.dlnow - written_this_session > DOWNLOAD_MAX_CHUNK_SIZE || progress.dlnow == progress.dltotal) { try { std::string part_for_write = progress.buffer.substr(written_this_session, progress.dlnow); @@ -264,7 +264,7 @@ void FileGet::priv::get_perform() m_written = written_previously + written_this_session; } wxCommandEvent* evt = new wxCommandEvent(EVT_DWNLDR_FILE_PROGRESS); - int percent_total = (written_previously + progress.dlnow) * 100 / m_absolute_size; + int percent_total = m_absolute_size == 0 ? 0 : (written_previously + progress.dlnow) * 100 / m_absolute_size; evt->SetString(std::to_string(percent_total)); evt->SetInt(m_id); m_evt_handler->QueueEvent(evt); diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 46b0c4bc23..52bfa21508 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -821,7 +821,8 @@ void GUI_App::post_init() (boost::starts_with(this->init_params->input_files.front(), "orcaslicer://open") || boost::starts_with(this->init_params->input_files.front(), "prusaslicer://open"))) { - if (boost::starts_with(this->init_params->input_files.front(), "prusaslicer://open")) { + if (boost::starts_with(this->init_params->input_files.front(), "orcaslicer://open")|| + boost::starts_with(this->init_params->input_files.front(), "prusaslicer://open")) { switch_to_3d = true; start_download(this->init_params->input_files.front()); } else if (vector input_str_arr = split_str(this->init_params->input_files.front(), "orcaslicer://open/?file="); input_str_arr.size() > 1) { @@ -1098,7 +1099,7 @@ GUI_App::GUI_App() , m_em_unit(10) , m_imgui(new ImGuiWrapper()) , m_removable_drive_manager(std::make_unique()) - , m_downloader(std::make_unique()) + , m_downloader(std::make_unique()) , m_other_instance_message_handler(std::make_unique()) { //app config initializes early becasuse it is used in instance checking in OrcaSlicer.cpp @@ -2371,10 +2372,8 @@ bool GUI_App::on_init_inner() associate_files(L"step"); associate_files(L"stp"); } - // Orca: add PS url functionality - if (app_config->get_bool("ps_url_registered")) { - associate_url(L"prusaslicer"); - } + associate_url(L"orcaslicer"); + if (app_config->get("associate_gcode") == "true") associate_files(L"gcode"); #endif // __WXMSW__ @@ -5533,10 +5532,7 @@ void GUI_App::open_preferences(size_t open_on_tab, const std::string& highlight_ associate_files(L"step"); associate_files(L"stp"); } - // Orca: add PS url functionality - if (app_config->get_bool("ps_url_registered")) { - associate_url(L"prusaslicer"); - } + associate_url(L"orcaslicer"); } else { if (app_config->get("associate_gcode") == "true") @@ -6577,9 +6573,11 @@ static bool del_win_registry(HKEY hkeyHive, const wchar_t *pszVar, const wchar_t return false; } +#endif // __WXMSW__ void GUI_App::associate_files(std::wstring extend) { +#ifdef WIN32 wchar_t app_path[MAX_PATH]; ::GetModuleFileNameW(nullptr, app_path, sizeof(app_path)); @@ -6599,10 +6597,12 @@ void GUI_App::associate_files(std::wstring extend) if (is_new) // notify Windows only when any of the values gets changed ::SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, nullptr, nullptr); +#endif // WIN32 } void GUI_App::disassociate_files(std::wstring extend) { +#ifdef WIN32 wchar_t app_path[MAX_PATH]; ::GetModuleFileNameW(nullptr, app_path, sizeof(app_path)); @@ -6629,12 +6629,33 @@ void GUI_App::disassociate_files(std::wstring extend) if (is_new) ::SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, nullptr, nullptr); +#endif // WIN32 +} + +bool GUI_App::check_url_association(std::wstring url_prefix, std::wstring& reg_bin) +{ + reg_bin = L""; +#ifdef WIN32 + wxRegKey key_full(wxRegKey::HKCU, "Software\\Classes\\" + url_prefix + "\\shell\\open\\command"); + if (!key_full.Exists()) { + return false; + } + reg_bin = key_full.QueryDefaultValue().ToStdWstring(); + + boost::filesystem::path binary_path(boost::filesystem::canonical(boost::dll::program_location())); + // wxString wbinary = wxString::FromUTF8(binary_path.string()); + // std::string binary_string = (boost::format("%1%") % wbinary).str(); + std::wstring key_string = L"\"" + binary_path.wstring() + L"\" L\"%1\""; + // return boost::iequals(key_string,(boost::format("%1%") % reg_bin).str()); + return key_string == reg_bin; +#else + return false; +#endif // WIN32 } void GUI_App::associate_url(std::wstring url_prefix) { - // Registry key creation for "prusaslicer://" URL - +#ifdef WIN32 boost::filesystem::path binary_path(boost::filesystem::canonical(boost::dll::program_location())); // the path to binary needs to be correctly saved in string with respect to localized characters wxString wbinary = wxString::FromUTF8(binary_path.string()); @@ -6654,18 +6675,22 @@ void GUI_App::associate_url(std::wstring url_prefix) key_full.Create(false); } key_full = key_string; +#elif defined(__linux__) && defined(SLIC3R_DESKTOP_INTEGRATION) + DesktopIntegrationDialog::perform_downloader_desktop_integration(); +#endif // WIN32 } void GUI_App::disassociate_url(std::wstring url_prefix) { +#ifdef WIN32 wxRegKey key_full(wxRegKey::HKCU, "Software\\Classes\\" + url_prefix + "\\shell\\open\\command"); if (!key_full.Exists()) { return; } key_full = ""; +#endif // WIN32 } -#endif // __WXMSW__ void GUI_App::start_download(std::string url) { diff --git a/src/slic3r/GUI/GUI_App.hpp b/src/slic3r/GUI/GUI_App.hpp index dc0b8e4ff3..7def51e40b 100644 --- a/src/slic3r/GUI/GUI_App.hpp +++ b/src/slic3r/GUI/GUI_App.hpp @@ -646,13 +646,12 @@ private: bool is_glsl_version_greater_or_equal_to(unsigned int major, unsigned int minor) const { return m_opengl_mgr.get_gl_info().is_glsl_version_greater_or_equal_to(major, minor); } int GetSingleChoiceIndex(const wxString& message, const wxString& caption, const wxArrayString& choices, int initialSelection); -#ifdef __WXMSW__ // extend is stl/3mf/gcode/step etc void associate_files(std::wstring extend); void disassociate_files(std::wstring extend); + bool check_url_association(std::wstring url_prefix, std::wstring& reg_bin); void associate_url(std::wstring url_prefix); void disassociate_url(std::wstring url_prefix); -#endif // __WXMSW__ // URL download - PrusaSlicer gets system call to open prusaslicer:// URL which should contain address of download void start_download(std::string url); diff --git a/src/slic3r/GUI/InstanceCheck.cpp b/src/slic3r/GUI/InstanceCheck.cpp index bc5eb4d8cd..a2f38d8e8f 100644 --- a/src/slic3r/GUI/InstanceCheck.cpp +++ b/src/slic3r/GUI/InstanceCheck.cpp @@ -1,6 +1,7 @@ #include "GUI_App.hpp" #include "InstanceCheck.hpp" #include "Plater.hpp" +#include #ifdef _WIN32 #include "MainFrame.hpp" @@ -370,6 +371,7 @@ bool instance_check(int argc, char** argv, bool app_config_single_instance) namespace GUI { wxDEFINE_EVENT(EVT_LOAD_MODEL_OTHER_INSTANCE, LoadFromOtherInstanceEvent); +wxDEFINE_EVENT(EVT_START_DOWNLOAD_OTHER_INSTANCE, StartDownloadOtherInstanceEvent); wxDEFINE_EVENT(EVT_INSTANCE_GO_TO_FRONT, InstanceGoToFrontEvent); void OtherInstanceMessageHandler::init(wxEvtHandler* callback_evt_handler) @@ -498,12 +500,18 @@ void OtherInstanceMessageHandler::handle_message(const std::string& message) } std::vector paths; + std::vector downloads; + boost::regex re(R"(^(orcaslicer|prusaslicer):\/\/open[\/]?\?file=)", boost::regbase::icase); + boost::smatch results; + // Skip the first argument, it is the path to the slicer executable. auto it = args.begin(); for (++ it; it != args.end(); ++ it) { boost::filesystem::path p = MessageHandlerInternal::get_path(*it); if (! p.string().empty()) paths.emplace_back(p); + else if (boost::regex_search(*it, results, re)) + downloads.emplace_back(*it); } if (! paths.empty()) { //wxEvtHandler* evt_handler = wxGetApp().plater(); //assert here? @@ -511,6 +519,10 @@ void OtherInstanceMessageHandler::handle_message(const std::string& message) wxPostEvent(m_callback_evt_handler, LoadFromOtherInstanceEvent(GUI::EVT_LOAD_MODEL_OTHER_INSTANCE, std::vector(std::move(paths)))); //} } + if (!downloads.empty()) + { + wxPostEvent(m_callback_evt_handler, StartDownloadOtherInstanceEvent(GUI::EVT_START_DOWNLOAD_OTHER_INSTANCE, std::vector(std::move(downloads)))); + } } #ifdef __APPLE__ diff --git a/src/slic3r/GUI/InstanceCheck.hpp b/src/slic3r/GUI/InstanceCheck.hpp index 10ccf7b925..5f26f1e48f 100644 --- a/src/slic3r/GUI/InstanceCheck.hpp +++ b/src/slic3r/GUI/InstanceCheck.hpp @@ -43,7 +43,9 @@ class MainFrame; #endif // __linux__ using LoadFromOtherInstanceEvent = Event>; +using StartDownloadOtherInstanceEvent = Event>; wxDECLARE_EVENT(EVT_LOAD_MODEL_OTHER_INSTANCE, LoadFromOtherInstanceEvent); +wxDECLARE_EVENT(EVT_START_DOWNLOAD_OTHER_INSTANCE, StartDownloadOtherInstanceEvent); using InstanceGoToFrontEvent = SimpleEvent; wxDECLARE_EVENT(EVT_INSTANCE_GO_TO_FRONT, InstanceGoToFrontEvent); diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index abb5f33ddf..a7b9b51fc8 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -3175,6 +3175,15 @@ Plater::priv::priv(Plater *q, MainFrame *main_frame) wxGetApp().mainframe->Raise(); this->q->load_files(input_files); }); + + this->q->Bind(EVT_START_DOWNLOAD_OTHER_INSTANCE, [](StartDownloadOtherInstanceEvent& evt) { + BOOST_LOG_TRIVIAL(trace) << "Received url from other instance event."; + wxGetApp().mainframe->Raise(); + for (size_t i = 0; i < evt.data.size(); ++i) { + wxGetApp().start_download(evt.data[i]); + } + + }); this->q->Bind(EVT_INSTANCE_GO_TO_FRONT, [this](InstanceGoToFrontEvent &) { bring_instance_forward(); }); diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp index 42ec0a49c7..f6b7996557 100644 --- a/src/slic3r/GUI/Preferences.cpp +++ b/src/slic3r/GUI/Preferences.cpp @@ -745,16 +745,18 @@ wxBoxSizer *PreferencesDialog::create_item_checkbox(wxString title, wxWindow *pa return m_sizer_checkbox; } -wxBoxSizer *PreferencesDialog::create_item_button(wxString title, wxString title2, wxWindow *parent, wxString tooltip, std::function onclick) +wxBoxSizer* PreferencesDialog::create_item_button( + wxString title, wxString title2, wxWindow* parent, wxString tooltip, wxString tooltip2, std::function onclick) { wxBoxSizer *m_sizer_checkbox = new wxBoxSizer(wxHORIZONTAL); m_sizer_checkbox->Add(0, 0, 0, wxEXPAND | wxLEFT, 23); auto m_staticTextPath = new wxStaticText(parent, wxID_ANY, title, wxDefaultPosition, wxDefaultSize, wxST_ELLIPSIZE_END); - // m_staticTextPath->SetMaxSize(wxSize(FromDIP(440), -1)); + m_staticTextPath->SetMaxSize(wxSize(FromDIP(240), -1)); m_staticTextPath->SetForegroundColour(DESIGN_GRAY900_COLOR); m_staticTextPath->SetFont(::Label::Body_13); m_staticTextPath->Wrap(-1); + m_staticTextPath->SetToolTip(tooltip); auto m_button_download = new Button(parent, title2); @@ -770,7 +772,7 @@ wxBoxSizer *PreferencesDialog::create_item_button(wxString title, wxString title m_button_download->SetMinSize(wxSize(FromDIP(58), FromDIP(22))); m_button_download->SetSize(wxSize(FromDIP(58), FromDIP(22))); m_button_download->SetCornerRadius(FromDIP(12)); - m_button_download->SetToolTip(tooltip); + m_button_download->SetToolTip(tooltip2); m_button_download->Bind(wxEVT_BUTTON, [this, onclick](auto &e) { onclick(); }); @@ -1051,7 +1053,7 @@ wxWindow* PreferencesDialog::create_general_page() auto title_network = create_item_title(_L("Network"), page, _L("Network")); auto item_user_sync = create_item_checkbox(_L("Auto sync user presets(Printer/Filament/Process)"), page, _L("User Sync"), 50, "sync_user_preset"); auto item_system_sync = create_item_checkbox(_L("Update built-in Presets automatically."), page, _L("System Sync"), 50, "sync_system_preset"); - auto item_save_presets = create_item_button(_L("Clear my choice on the unsaved presets."), _L("Clear"), page, _L("Clear my choice on the unsaved presets."), []() { + auto item_save_presets = create_item_button(_L("Clear my choice on the unsaved presets."), _L("Clear"), page, L"", _L("Clear my choice on the unsaved presets."), []() { wxGetApp().app_config->set("save_preset_choise", ""); }); @@ -1066,6 +1068,16 @@ wxWindow* PreferencesDialog::create_general_page() auto item_associate_step = create_item_checkbox(_L("Associate .step/.stp files to OrcaSlicer"), page, _L("If enabled, sets OrcaSlicer as default application to open .step files"), 50, "associate_step"); #endif // _WIN32 +#if !defined(__APPLE__) + + + std::wstring reg_bin; + wxGetApp().check_url_association(L"prusaslicer", reg_bin); + auto associate_url_prusaslicer = create_item_button(_L("Current association: ") + reg_bin, _L("Associate prusaslicer://"), page, + reg_bin.empty() ? _L("Not associated to any application") : reg_bin, + _L("Associate OrcaSlicer with prusaslicer:// links so that Orca can open PrusaSlicer links from Printable.com"), + []() { wxGetApp().associate_url(L"prusaslicer"); }); +#endif // auto title_modelmall = create_item_title(_L("Online Models"), page, _L("Online Models")); // auto item_backup = create_item_switch(_L("Backup switch"), page, _L("Backup switch"), "units"); @@ -1077,7 +1089,7 @@ wxWindow* PreferencesDialog::create_general_page() if (value.ToLong(&max)) wxGetApp().mainframe->set_max_recent_count(max); }); - auto item_save_choise = create_item_button(_L("Clear my choice on the unsaved projects."), _L("Clear"), page, _L("Clear my choice on the unsaved projects."), []() { + auto item_save_choise = create_item_button(_L("Clear my choice on the unsaved projects."), _L("Clear"), page, L"", _L("Clear my choice on the unsaved projects."), []() { wxGetApp().app_config->set("save_project_choise", ""); }); // auto item_backup = create_item_switch(_L("Backup switch"), page, _L("Backup switch"), "units"); @@ -1088,8 +1100,6 @@ wxWindow* PreferencesDialog::create_general_page() //downloads auto title_downloads = create_item_title(_L("Downloads"), page, _L("Downloads")); auto item_downloads = create_item_downloads(page,50,"download_path"); - auto ps_download_url_registered = create_item_checkbox(_L("Allow downloads from Printables.com"), page, - _L("Allow downloads from Printables.com"), 50, "ps_url_registered"); //dark mode #ifdef _WIN32 @@ -1131,6 +1141,9 @@ wxWindow* PreferencesDialog::create_general_page() sizer_page->Add(item_associate_stl, 0, wxTOP, FromDIP(3)); sizer_page->Add(item_associate_step, 0, wxTOP, FromDIP(3)); #endif // _WIN32 +#if !defined(__APPLE__) + sizer_page->Add(associate_url_prusaslicer, 0, wxTOP | wxEXPAND, FromDIP(20)); +#endif // auto item_title_modelmall = sizer_page->Add(title_modelmall, 0, wxTOP | wxEXPAND, FromDIP(20)); // auto item_item_modelmall = sizer_page->Add(item_modelmall, 0, wxTOP, FromDIP(3)); // auto update_modelmall = [this, item_title_modelmall, item_item_modelmall] (wxEvent & e) { @@ -1152,7 +1165,6 @@ wxWindow* PreferencesDialog::create_general_page() sizer_page->Add(title_downloads, 0, wxTOP| wxEXPAND, FromDIP(20)); sizer_page->Add(item_downloads, 0, wxEXPAND, FromDIP(3)); - sizer_page->Add(ps_download_url_registered, 0, wxTOP | wxEXPAND, FromDIP(20)); #ifdef _WIN32 sizer_page->Add(title_darkmode, 0, wxTOP | wxEXPAND, FromDIP(20)); diff --git a/src/slic3r/GUI/Preferences.hpp b/src/slic3r/GUI/Preferences.hpp index a417d47de9..6335196186 100644 --- a/src/slic3r/GUI/Preferences.hpp +++ b/src/slic3r/GUI/Preferences.hpp @@ -111,7 +111,7 @@ public: wxBoxSizer *create_item_checkbox(wxString title, wxWindow *parent, wxString tooltip, int padding_left, std::string param); wxBoxSizer *create_item_darkmode_checkbox(wxString title, wxWindow *parent, wxString tooltip, int padding_left, std::string param); void set_dark_mode(); - wxBoxSizer *create_item_button(wxString title, wxString title2, wxWindow *parent, wxString tooltip, std::function onclick); + wxBoxSizer *create_item_button(wxString title, wxString title2, wxWindow *parent, wxString tooltip, wxString tooltip2, std::function onclick); wxWindow* create_item_downloads(wxWindow* parent, int padding_left, std::string param); wxBoxSizer *create_item_input(wxString title, wxString title2, wxWindow *parent, wxString tooltip, std::string param, std::function onchange = {}); wxBoxSizer *create_item_backup_input(wxString title, wxWindow *parent, wxString tooltip, std::string param); From 43d7ac6a1412d099209b008af5004496b67fe783 Mon Sep 17 00:00:00 2001 From: Ioannis Giannakas <59056762+igiannakas@users.noreply.github.com> Date: Wed, 22 May 2024 08:27:31 +0100 Subject: [PATCH 18/66] SEMM: wipe tower sparse infill speed adjustment (#5415) * Wipe tower sparse layers speed adjustment * Updated tooltip and option label * Tooltip update --- src/libslic3r/GCode/WipeTower2.cpp | 2 +- src/libslic3r/PrintConfig.cpp | 13 +++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/libslic3r/GCode/WipeTower2.cpp b/src/libslic3r/GCode/WipeTower2.cpp index 0013cb99cc..cfe605c1ca 100644 --- a/src/libslic3r/GCode/WipeTower2.cpp +++ b/src/libslic3r/GCode/WipeTower2.cpp @@ -1170,7 +1170,7 @@ WipeTower::ToolChangeResult WipeTower2::finish_layer() // Slow down on the 1st layer. // If spare layers are excluded -> if 1 or less toolchange has been done, it must be still the first layer, too. So slow down. bool first_layer = is_first_layer() || (m_num_tool_changes <= 1 && m_no_sparse_layers); - float feedrate = first_layer ? m_first_layer_speed * 60.f : std::min(5400.f, m_infill_speed * 60.f); + float feedrate = first_layer ? m_first_layer_speed * 60.f : std::min(m_wipe_tower_max_purge_speed * 60.f, m_infill_speed * 60.f); float current_depth = m_layer_info->depth - m_layer_info->toolchanges_depth(); WipeTower::box_coordinates fill_box(Vec2f(m_perimeter_width, m_layer_info->depth-(current_depth-m_perimeter_width)), m_wipe_tower_width - 2 * m_perimeter_width, current_depth-m_perimeter_width); diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 5b52fd2696..3380c39623 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -4786,12 +4786,13 @@ def = this->add("filament_loading_speed", coFloats); def->set_default_value(new ConfigOptionPercent(100.)); def = this->add("wipe_tower_max_purge_speed", coFloat); - def->label = L("Maximum print speed when purging"); - def->tooltip = L("The maximum print speed when purging in the wipe tower. If the sparse infill speed " - "or calculated speed from the filament max volumetric speed is lower, the lowest speed will be used instead.\n" - "Increasing this speed may affect the tower's stability, as purging can be performed over " - "sparse layers. Before increasing this parameter beyond the default of 90mm/sec, make sure your printer can reliably " - "bridge at the increased speeds."); + def->label = L("Maximum wipe tower print speed"); + def->tooltip = L("The maximum print speed when purging in the wipe tower and printing the wipe tower sparse layers. " + "When purging, if the sparse infill speed or calculated speed from the filament max volumetric speed is lower, the lowest will be used instead.\n\n" + "When printing the sparse layers, if the internal perimeter speed or calculated speed from the filament max volumetric speed is lower, the lowest will be used instead.\n\n" + "Increasing this speed may affect the tower's stability as well as increase the force with which the nozzle collides with any blobs that may have formed on the wipe tower.\n\n" + "Before increasing this parameter beyond the default of 90mm/sec, make sure your printer can reliably bridge at the increased speeds and that ooze when tool changing is well controlled.\n\n" + "For the wipe tower external perimeters the internal perimeter speed is used regardless of this setting."); def->sidetext = L("mm/s"); def->mode = comAdvanced; def->min = 10; From 31056f214300d4fdf50eb64361c91dff43a6ef62 Mon Sep 17 00:00:00 2001 From: Heiko Liebscher Date: Wed, 22 May 2024 09:28:01 +0200 Subject: [PATCH 19/66] fix new locale de (#5407) * fix new local german (de) * fix more * fix error --- localization/i18n/de/OrcaSlicer_de.po | 158 +++++++++++++++++--------- 1 file changed, 106 insertions(+), 52 deletions(-) diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 56a5b917c7..403db83d01 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -2791,7 +2791,7 @@ msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, Version 3" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" -msgstr "" +msgstr "Orca Slicer basiert auf PrusaSlicer und BambuStudio" msgid "Libraries" msgstr "Bibliotheken" @@ -3321,30 +3321,30 @@ msgid "Device" msgstr "Gerät" msgid "Task Sending" -msgstr "" +msgstr "Aufgabe senden" msgid "Task Sent" -msgstr "" +msgstr "Aufgabe gesendet" msgid "Edit multiple printers" -msgstr "" +msgstr "Mehrere Drucker bearbeiten" msgid "Select connected printetrs (0/6)" -msgstr "" +msgstr "Wählen die verbundenen Drucker (0/6)" #, c-format, boost-format msgid "Select Connected Printetrs (%d/6)" -msgstr "" +msgstr "Wählen die verbundenen Drucker (%d/6)" #, c-format, boost-format msgid "The maximum number of printers that can be selected is %d" -msgstr "" +msgstr "Die maximale Anzahl von Druckern, die ausgewählt werden können, beträgt %d" msgid "Offline" msgstr "Offline" msgid "No task" -msgstr "" +msgstr "Keine Aufgabe" msgid "View" msgstr "Ansicht" @@ -3353,23 +3353,24 @@ msgid "N/A" msgstr "N/A" msgid "Edit Printers" -msgstr "" +msgstr "Drucker bearbeiten" msgid "Device Name" -msgstr "" +msgstr "Gerätename" msgid "Task Name" -msgstr "" +msgstr "Aufgabenname" msgid "Device Status" -msgstr "" +msgstr "Gerätestatus" msgid "Actions" -msgstr "" +msgstr "Aktionen" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" msgstr "" +"Wählen Sie hier die Geräte aus, die Sie verwalten möchten (bis zu 6 Geräte)" msgid "Add" msgstr "Hinzufügen" @@ -3381,22 +3382,22 @@ msgid "Printing" msgstr "Drucken" msgid "Upgrading" -msgstr "" +msgstr "Aktualisieren" msgid "Incompatible" msgstr "Inkompatibel" msgid "syncing" -msgstr "" +msgstr "synchronisieren" msgid "Printing Finish" -msgstr "" +msgstr "Druck beendet" msgid "Printing Failed" -msgstr "" +msgstr "Druck fehlgeschlagen" msgid "PrintingPause" -msgstr "" +msgstr "Druckpause" msgid "Prepare" msgstr "Vorbereiten" @@ -3405,28 +3406,28 @@ msgid "Slicing" msgstr "Slicen" msgid "Pending" -msgstr "" +msgstr "Ausstehend" msgid "Sending" -msgstr "" +msgstr "Sende" msgid "Sending Finish" -msgstr "" +msgstr "Senden beendet" msgid "Sending Cancel" -msgstr "" +msgstr "Senden abbrechen" msgid "Sending Failed" -msgstr "" +msgstr "Senden fehlgeschlagen" msgid "Print Success" -msgstr "" +msgstr "Druck erfolgreich" msgid "Print Failed" -msgstr "" +msgstr "Druck fehlgeschlagen" msgid "Removed" -msgstr "" +msgstr "Entfernt" msgid "Resume" msgstr "Fortsetzen" @@ -3435,22 +3436,22 @@ msgid "Stop" msgstr "Stop" msgid "Task Status" -msgstr "" +msgstr "Aufgabenstatus" msgid "Sent Time" -msgstr "" +msgstr "Sende Zeit" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "Es gibt keine Aufgaben, die gesendet werden sollen!" msgid "No historical tasks!" -msgstr "" +msgstr "Keine historischen Aufgaben!" msgid "Loading..." msgstr "Laden..." msgid "No AMS" -msgstr "" +msgstr "Kein AMS" msgid "Send to Multi-device" msgstr "An Multi-Gerät senden" @@ -3462,28 +3463,28 @@ msgid "Abnormal print file data. Please slice again" msgstr "Fehlerhafte Daten in der Druckdatei. Bitte slicen Sie erneut" msgid "There is no device available to send printing." -msgstr "" +msgstr "Es ist kein Gerät verfügbar, um den Druck zu senden." msgid "The number of printers in use simultaneously cannot be equal to 0." -msgstr "" +msgstr "Die Anzahl der gleichzeitig verwendeten Drucker darf nicht gleich 0 sein." msgid "Use External Spool" -msgstr "" +msgstr "Externe Spule verwenden" msgid "Use AMS" -msgstr "" +msgstr "AMS verwenden" msgid "Select Printers" -msgstr "" +msgstr "Drucker auswählen" msgid "Ams Status" -msgstr "" +msgstr "AMS-Status" msgid "Printing Options" -msgstr "" +msgstr "Druckoptionen" msgid "Send Options" -msgstr "" +msgstr "Senden-Optionen" msgid "Send" msgstr "Senden" @@ -3492,13 +3493,17 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"Drucker gleichzeitig drucken.(Es hängt davon ab, wie viele Geräte gleichzeitig " +"erhitzt werden können.)" msgid "Wait" -msgstr "" +msgstr "Warten" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"Minute pro Charge.(Es hängt davon ab, wie lange es dauert, die Erhitzung " +"abzuschließen.)" msgid "Name is invalid;" msgstr "Der Name ist ungültig;" @@ -4757,7 +4762,7 @@ msgid "Export current plate as G-code" msgstr "Aktuelle Druckplatte als G-Code exportieren" msgid "Export Preset Bundle" -msgstr "" +msgstr "Preset-Bundle exportieren" msgid "Export current configuration to files" msgstr "Aktuelle Konfiguration in Dateien exportieren" @@ -6623,6 +6628,9 @@ msgid "" "This stops the transmission of data to Bambu's cloud services. Users who " "don't use BBL machines or use LAN mode only can safely turn on this function." msgstr "" +"Dies stoppt die Übertragung von Daten an die Cloud-Dienste von Bambu. " +"Benutzer, die keine BBL-Maschinen verwenden oder nur den LAN-Modus verwenden, " +"können diese Funktion sicher aktivieren." msgid "Enable network plugin" msgstr "Netzwerk-Plugin aktivieren" @@ -8711,10 +8719,10 @@ msgid "Shift+Mouse wheel" msgstr "Umschalt+Mausrad" msgid "Horizontal slider - Move to start position" -msgstr "" +msgstr "Horizontaler Schieberegler - Zur Startposition bewegen" msgid "Horizontal slider - Move to last position" -msgstr "" +msgstr "Horizontaler Schieberegler - Zur letzten Position bewegen" msgid "Release Note" msgstr "Hinweis zur Veröffentlichung" @@ -11054,7 +11062,7 @@ msgid "(Undefined)" msgstr "(undefiniert)" msgid "Sparse infill direction" -msgstr "" +msgstr "Richtung des einfachereren Fülling" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -11062,18 +11070,20 @@ msgid "" msgstr "Winkel des Füllmusters, das die Richtung der Linien bestimmt." msgid "Solid infill direction" -msgstr "" +msgstr "Richtung des massiven Füllmusters" msgid "" "Angle for solid infill pattern, which controls the start or main direction " "of line" msgstr "" +"Winkel des massiven Füllmusters, der die Start- oder Hauptrichtung der Linie " +"steuert." msgid "Rotate solid infill direction" -msgstr "" +msgstr "Massives Füllmuster drehen" msgid "Rotate the solid infill direction by 90° for each layer." -msgstr "" +msgstr "Drehe das massive Füllmuster um 90° für jede Schicht." msgid "Sparse infill density" msgstr "Fülldichte" @@ -11445,6 +11455,14 @@ msgid "" "quality as line segments are converted to arcs by the slicer and then back " "to line segments by the firmware." msgstr "" +"Aktivieren Sie diese Option, um eine G-Code-Datei zu erhalten, die G2- und " +"G3-Bewegungen enthält. Die Passungstoleranz entspricht der Auflösung. \n" +"\n" +"Hinweis: Für Klipper-Maschinen wird empfohlen, diese Option zu deaktivieren. " +"Klipper profitiert nicht von Bogenbefehlen, da diese von der Firmware wieder " +"in Linienabschnitte aufgeteilt werden. Dies führt zu einer Verringerung der " +"Oberflächenqualität, da Linienabschnitte vom Slicer in Bögen umgewandelt und " +"dann von der Firmware wieder in Linienabschnitte umgewandelt werden." msgid "Add line number" msgstr "Liniennummer hinzufügen" @@ -11686,6 +11704,11 @@ msgid "" "value to ~10-15% to minimize potential over extrusion and accumulation of " "material resulting in rough top surfaces." msgstr "" +"Die Füllfläche wird leicht vergrößert, um mit der Wand zu überlappen und " +"eine bessere Haftung zu gewährleisten. Der Prozentwert bezieht sich auf die " +"Linienbreite der spärlichen Füllung. Setzen Sie diesen Wert auf ~10-15%, um " +"eine mögliche Überextrusion und Materialansammlung zu minimieren, die zu " +"rauen Oberflächen führen kann." msgid "Top/Bottom solid infill/wall overlap" msgstr "" @@ -11698,6 +11721,12 @@ msgid "" "appearance of pinholes. The percentage value is relative to line width of " "sparse infill" msgstr "" +"Der obere massive Füllbereich wird leicht vergrößert, um mit der Wand zu " +"überlappen und eine bessere Haftung zu gewährleisten und das Auftreten von " +"Pinholes zu minimieren, wo die obere Füllung auf die Wände trifft. Ein Wert " +"von 25-30% ist ein guter Ausgangspunkt, um das Auftreten von Pinholes zu " +"minimieren. Der Prozentwert bezieht sich auf die Linienbreite der spärlichen " +"Füllung." msgid "Speed of internal sparse infill" msgstr "Geschwindigkeit der inneren Füllung" @@ -12788,7 +12817,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Wie viele Schichten des Skirts. Normalerweise nur eine Schicht." msgid "Draft shield" -msgstr "" +msgstr "Luftzug-Schutz" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12803,12 +12832,24 @@ msgid "" "distance from the object. Therefore, if brims are active it may intersect " "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +"Ein Luftzugs-Schutz ist nützlich, um einen ABS- oder ASA-Druck vor Verzug " +"und Ablösen vom Druckbett aufgrund von Luftzug zu schützen. Er wird normalerweise " +"nur bei offenen Druckern benötigt, d.h. ohne Gehäuse. \n" +"\n" +"Optionen:\n" +"Aktiviert = Umrandung ist so hoch wie das höchste gedruckte Objekt.\n" +"Begrenzt = Umrandung ist so hoch wie durch die Höhe der Umrandung angegeben.\n" +"\n" +"Hinweis: Mit dem aktiven Luftzug-Schutz wird die Umrandung in der " +"Umrandungsdistanz vom Objekt gedruckt. Daher kann es bei aktiven Rändern zu " +"Überschneidungen kommen. Um dies zu vermeiden, erhöhen Sie den Wert der" +"Umrandungsdistanz. \n" msgid "Limited" -msgstr "" +msgstr "Begrenzt" msgid "Enabled" -msgstr "" +msgstr "Aktiviert" msgid "Skirt loops" msgstr "Anzahl Umrandungsringe" @@ -12826,7 +12867,7 @@ msgstr "" "Schichtextrusionsgeschwindigkeit." msgid "Skirt minimum extrusion length" -msgstr "" +msgstr "Minimale Extrusionslänge der Umrandung" msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " @@ -12835,6 +12876,11 @@ msgid "" "Using a non zero value is useful if the printer is set up to print without a " "prime line." msgstr "" +"Minimale Filamentextrusionslänge in mm beim Drucken der Umrandung. Null " +"bedeutet, dass diese Funktion deaktiviert ist.\n" +"\n" +"Die Verwendung eines Werts ungleich Null ist nützlich, wenn der Drucker so " +"eingestellt ist, dass er ohne eine Primelinie druckt." msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " @@ -13619,7 +13665,7 @@ msgid "Spacing of purge lines on the wipe tower." msgstr "Abstand der Reinigungsturmpurges." msgid "Maximum print speed when purging" -msgstr "" +msgstr "Maximale Druckgeschwindigkeit beim Reinigen" msgid "" "The maximum print speed when purging in the wipe tower. If the sparse infill " @@ -13630,6 +13676,14 @@ msgid "" "default of 90mm/sec, make sure your printer can reliably bridge at the " "increased speeds." msgstr "" +"Die maximale Druckgeschwindigkeit beim Reinigen im Reinigungsturm. Wenn die " +"Geschwindigkeit des dünnen Infill oder die berechnete Geschwindigkeit aus " +"der maximalen Volumengeschwindigkeit des Filaments niedriger ist, wird die " +"niedrigste Geschwindigkeit verwendet.\n" +"Das Erhöhen dieser Geschwindigkeit kann die Stabilität des Turms beeinträchtigen, " +"da das Reinigen über dünnen Schichten erfolgen kann. Bevor Sie diesen Parameter " +"über den Standardwert von 90 mm/s erhöhen, stellen Sie sicher, dass Ihr Drucker " +"die erhöhten Geschwindigkeiten zuverlässig überbrücken kann." msgid "Wipe tower extruder" msgstr "Reinigungsturm-Extruder" From 9ffe7b07e14403e96da3a8d21ecb2ee8ede66af0 Mon Sep 17 00:00:00 2001 From: cochcoder <103969142+cochcoder@users.noreply.github.com> Date: Wed, 22 May 2024 07:30:42 +0000 Subject: [PATCH 20/66] General fixes and improvements to CR-10 SE, Ender-3 V3 KE, Ender-3 S1 Plus, & small fix for Ender-3 V3 SE (#4793) * Replace M109 S[material_print_temperature_layer_0] with M109 S[first_layer_temperature] * Change line width to match nozzle * Change line_width for Ender-3 S1 Plus * Update creality_cr10se_buildplate_model.stl * Change line width to match nozzle size (Ender3v3SE) * Fix Ender-3 S1 Plus 0.8 bed size * Enable Z-hop for Ender-3 S1 Plus * Trying something * Update creality_ender3s1plus_buildplate_model.stl * Fix CR-10 SE print size * Various Flying Bear fixes * Try fixing error * Revert "Try fixing error" This reverts commit e42e016e4ab5472e8577db6a3faac8a4cd337161. * Add minor Ender-3 V3 KE improvements * Maybe this will fix the error? * Revert "Maybe this will fix the error?" This reverts commit 5e7873251b558c72c809a40dc4164e4b26eaaf54. * Revert "Various Flying Bear fixes" This reverts commit babca572dcf2a42f3b1ad6e67495bea192bc2168. * Fix CR-10 SE G-Code Recommended by @bkonosky * Minor changes to Ender-3 V3 KE * Probe when bed is heated (Ender-3 V3 KE) * Minor changes to Ender-3 V3 KE * Fix oozing (Ende-3 V3 KE) * Change retraction settings * Use different retraction settings * Revert "Use different retraction settings" This reverts commit 854decf848fcba18d8b86d89339acb63cce050d0. * try this * Remove "role_based_wipe_speed": "0", * Add changes from CR-10 SE Config #4966 * Add "role_based_wipe_speed" : "0", * Up retraction speed * Missed this * Resolve merge conflicts * Resolve merge conflicts * Change retraction & wipe speed * Revert line removal * Change wipe_speed to 200mm/s * Forgot the 0.16mm * Add BED_MESH_CALIBRATE PROBE_COUNT=6,6 * Improve for Matte PLA * Compensate for fan speed * Fix CANCEL_PRINT bug * Move SET_VELOCITY_LIMIT ACCEL_TO_DECEL=2500 to start g-code * Disable infill combination for 0.2 & 0.24 * Fix end G-Code * Disable arc fitting This fixes the merge conflict * temp * Revert "temp" This reverts commit 4bbc028ade560a5058aca18e6b7cad0840833a5a. --- resources/profiles/Creality.json | 48 ++++++ .../creality_cr10se_buildplate_model.stl | Bin 433284 -> 455184 bytes ...creality_ender3s1plus_buildplate_model.stl | Bin 436884 -> 437984 bytes .../machine/Creality CR-10 SE 0.2 nozzle.json | 50 +++--- .../machine/Creality CR-10 SE 0.4 nozzle.json | 50 +++--- .../machine/Creality CR-10 SE 0.6 nozzle.json | 50 +++--- .../machine/Creality CR-10 SE 0.8 nozzle.json | 50 +++--- .../Creality Ender-3 S1 Plus 0.2 nozzle.json | 3 - .../Creality Ender-3 S1 Plus 0.4 nozzle.json | 3 - .../Creality Ender-3 S1 Plus 0.6 nozzle.json | 3 - .../Creality Ender-3 S1 Plus 0.8 nozzle.json | 6 +- .../Creality Ender-3 V3 KE 0.4 nozzle.json | 10 +- .../0.12mm Fine @Creality CR10SE 0.2.json | 118 +++++++++++++ .../0.12mm Fine @Creality CR10SE 0.4.json | 118 +++++++++++++ .../0.12mm Fine @Creality CR10SE 0.6.json | 118 +++++++++++++ .../0.12mm Fine @Creality CR10SE 0.8.json | 118 +++++++++++++ .../0.12mm Fine @Creality Ender3V3KE.json | 13 +- .../0.12mm Fine @Creality Ender3V3SE 0.2.json | 16 +- .../0.12mm Fine @Creality Ender3V3SE 0.6.json | 16 +- .../0.12mm Fine @Creality Ender3V3SE 0.8.json | 16 +- .../0.16mm Optimal @Creality CR10SE 0.2.json | 118 +++++++++++++ .../0.16mm Optimal @Creality CR10SE 0.4.json | 118 +++++++++++++ .../0.16mm Optimal @Creality CR10SE 0.6.json | 118 +++++++++++++ .../0.16mm Optimal @Creality CR10SE 0.8.json | 118 +++++++++++++ ...mm Optimal @Creality Ender3S1Plus 0.2.json | 16 +- ...mm Optimal @Creality Ender3S1Plus 0.4.json | 2 +- ...mm Optimal @Creality Ender3S1Plus 0.6.json | 16 +- ...mm Optimal @Creality Ender3S1Plus 0.8.json | 16 +- .../0.16mm Optimal @Creality Ender3V3KE.json | 15 +- ...16mm Optimal @Creality Ender3V3SE 0.2.json | 16 +- ...16mm Optimal @Creality Ender3V3SE 0.6.json | 16 +- ...16mm Optimal @Creality Ender3V3SE 0.8.json | 16 +- .../0.20mm Standard @Creality CR10SE 0.2.json | 158 +++++++++++++----- .../0.20mm Standard @Creality CR10SE 0.4.json | 158 +++++++++++++----- .../0.20mm Standard @Creality CR10SE 0.6.json | 158 +++++++++++++----- .../0.20mm Standard @Creality CR10SE 0.8.json | 158 +++++++++++++----- ...m Standard @Creality Ender3S1Plus 0.2.json | 16 +- ...m Standard @Creality Ender3S1Plus 0.6.json | 16 +- ...m Standard @Creality Ender3S1Plus 0.8.json | 16 +- .../0.20mm Standard @Creality Ender3V3KE.json | 16 +- ...0mm Standard @Creality Ender3V3SE 0.2.json | 16 +- ...0mm Standard @Creality Ender3V3SE 0.6.json | 16 +- ...0mm Standard @Creality Ender3V3SE 0.8.json | 16 +- .../0.24mm Draft @Creality CR10SE 0.2.json | 118 +++++++++++++ .../0.24mm Draft @Creality CR10SE 0.4.json | 118 +++++++++++++ .../0.24mm Draft @Creality CR10SE 0.6.json | 118 +++++++++++++ .../0.24mm Draft @Creality CR10SE 0.8.json | 118 +++++++++++++ ...24mm Draft @Creality Ender3S1Plus 0.2.json | 16 +- ...24mm Draft @Creality Ender3S1Plus 0.6.json | 16 +- ...24mm Draft @Creality Ender3S1Plus 0.8.json | 16 +- .../0.24mm Draft @Creality Ender3V3KE.json | 15 +- ...0.24mm Draft @Creality Ender3V3SE 0.2.json | 16 +- ...0.24mm Draft @Creality Ender3V3SE 0.6.json | 16 +- ...0.24mm Draft @Creality Ender3V3SE 0.8.json | 16 +- ...0.08mm Extra Fine @FlyingBear Reborn3.json | 2 +- 55 files changed, 2241 insertions(+), 479 deletions(-) create mode 100644 resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json create mode 100644 resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json create mode 100644 resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json create mode 100644 resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json create mode 100644 resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json create mode 100644 resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json create mode 100644 resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json create mode 100644 resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json create mode 100644 resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json create mode 100644 resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json create mode 100644 resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json create mode 100644 resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json diff --git a/resources/profiles/Creality.json b/resources/profiles/Creality.json index 277f57e641..a3e7f60d0b 100644 --- a/resources/profiles/Creality.json +++ b/resources/profiles/Creality.json @@ -278,6 +278,22 @@ "name": "0.12mm Fine @Creality CR10Max", "sub_path": "process/0.12mm Fine @Creality CR10Max.json" }, + { + "name": "0.12mm Fine @Creality CR10SE 0.2", + "sub_path": "process/0.12mm Fine @Creality CR10SE 0.2.json" + }, + { + "name": "0.12mm Fine @Creality CR10SE 0.4", + "sub_path": "process/0.12mm Fine @Creality CR10SE 0.4.json" + }, + { + "name": "0.12mm Fine @Creality CR10SE 0.6", + "sub_path": "process/0.12mm Fine @Creality CR10SE 0.6.json" + }, + { + "name": "0.12mm Fine @Creality CR10SE 0.8", + "sub_path": "process/0.12mm Fine @Creality CR10SE 0.8.json" + }, { "name": "0.12mm Detail @Creality CR-6 0.2", "sub_path": "process/0.12mm Detail @Creality CR-6 0.2.json" @@ -358,6 +374,22 @@ "name": "0.15mm Optimal @Creality CR10Max", "sub_path": "process/0.15mm Optimal @Creality CR10Max.json" }, + { + "name": "0.16mm Optimal @Creality CR10SE 0.2", + "sub_path": "process/0.16mm Optimal @Creality CR10SE 0.2.json" + }, + { + "name": "0.16mm Optimal @Creality CR10SE 0.4", + "sub_path": "process/0.16mm Optimal @Creality CR10SE 0.4.json" + }, + { + "name": "0.16mm Optimal @Creality CR10SE 0.6", + "sub_path": "process/0.16mm Optimal @Creality CR10SE 0.6.json" + }, + { + "name": "0.16mm Optimal @Creality CR10SE 0.8", + "sub_path": "process/0.16mm Optimal @Creality CR10SE 0.8.json" + }, { "name": "0.15mm Optimal @Creality Ender3V2", "sub_path": "process/0.15mm Optimal @Creality Ender3V2.json" @@ -670,6 +702,22 @@ "name": "0.24mm Draft @Creality CR10Max", "sub_path": "process/0.24mm Draft @Creality CR10Max.json" }, + { + "name": "0.24mm Draft @Creality CR10SE 0.2", + "sub_path": "process/0.24mm Draft @Creality CR10SE 0.2.json" + }, + { + "name": "0.24mm Draft @Creality CR10SE 0.4", + "sub_path": "process/0.24mm Draft @Creality CR10SE 0.4.json" + }, + { + "name": "0.24mm Draft @Creality CR10SE 0.6", + "sub_path": "process/0.24mm Draft @Creality CR10SE 0.6.json" + }, + { + "name": "0.24mm Draft @Creality CR10SE 0.8", + "sub_path": "process/0.24mm Draft @Creality CR10SE 0.8.json" + }, { "name": "0.24mm Draft @Creality CR-6 0.4", "sub_path": "process/0.24mm Draft @Creality CR-6 0.4.json" diff --git a/resources/profiles/Creality/creality_cr10se_buildplate_model.stl b/resources/profiles/Creality/creality_cr10se_buildplate_model.stl index cf612c3388635e378da7f6a03d867701f65161d1..5ea81d6e08c09f26f70f28617c7257ef5eeb17a9 100644 GIT binary patch literal 455184 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

W_?V$JG9Me6=o4rGs z(+E&PtjX+2z2WZiFWx>_e}6=UmUq-BUJ>mhL<{OU(NnqW?P6)Ao?d%kaQ&cmy7Nw7 zs(pG_Wls}82^|NrE_#Z}QZGJ3$VUhjO6Vj0aruEkpU&-cowjCY4M>9i-?db-7D_zi zIgZc6$;Gz9*p=u*ogBSb7ZIYV02r;Yo#PA3^OxWV`;8 znbBFJ{*3Qmh&05uRSq5;onX4irdBow956|7>b`kY4kJl z^R1g}QL!||uEeoY`~5y5JfQr;puz6{^ybdAk|tv<Yy*$5(|GWofTDF#u~boTAPg$_6M~ju@%ZoWo%v4qMo^1r_D&_#Z$sd z-f3nnjFL#1Mj2=~A0c;gsSqvl(BGsMuhDMIQCnw5kB(!Vd=F;UEbW+DENaKp8E@J$ zSUS7P$q4YdpvnKfR5)%Is@!^Id_~tiJwnV&*c)tmcuIWdc*$3UkvF8V<+yC%zb&oQ zq@4@O&wJ-!ebJHrJJo0(X`AfxVyBVdc?tg8( ze6RV=^0Q7J5N>^>I$H4rTd}RNZqr3vMyvY>^Z`;K+Ly}pgZ>E{7?nN(Wk0D$Rdn-D zJIrXg)@E(7h>t*FFuL zkss!KvocX}aM)_!oi%4SiG>)W80{F-=1JV4^HN<}%ufA&+Jzx`{i)N#k{_z=bMhWl73ryKtD}`Cmn23%Sdp$wS4Vw^a7|`h0tl=Nseb#yoJMnT zNuvFlinMtTGHe)rKdN{6`Inp#B2~SJdC)Tt4+(y|z{G2-)P-@)6E6QJ;wqN<8Y1f%^?yif|Zq*Ifc1>UP=oDKX)vHH( z#Yt1*2Rv9O(X5hkyIGkCWGzEtsYAB|(^AgmXP(`uy5XI5MwIXW?O9$Qg?>hh_z1j% z2#hh(+>KtTrQ(h@8LQKESr5oZ;NCHzB7}_R2thv{`Qe-l>y92(rzcY3dm=U=N)LyT9nf_WZw_Hp`;kx|X?M-SCVHGI42^}BLh zVNJymNagczn(*9NY(m<~XaFtZ=*cf=MWiZfD~<7rafN-mQl)Ay-7xA`^V*vOJP52&{`m;H zg9yKmdZhZ|;En#R^@0N{ygtLNOw@+`8&^kzkJ*_$c{t0*%RZQKPX4nhlDEXN)OL=8 z8j4ONA+`b^f$}01qW$b6Q9`|!L`m*ClaCOpVhHXBFIjt0(4}2#{g0C?Jk3#C-&Tll zYnHx65iOe2-=sI^#Bm8)+EQlc=k(Nqo{Y+VQ8^V>uID`^^UiCdG2@E2`Ruk`^MLbS z?M_g#5Al$*U-P9xN#r?Bu2e2l(;YdVR>~y1AY>OS@u6SRJ6}>}dPF5F+q*^}6`d$3 z=T4ej(y)E_X`9BWY1Oe1=av+GGRMKWsFfz`4>_HXPBE4;^@BbS%7s=9^N&yoLL?Cc zpNCxN97wt&dSIC~|6d5A65b@CQrj;4y}a|@*O?MaC6Wjav@T2azYs*_>(OPbIkWco zMNa-DMtNh7j}?9}T^nQ|hPrAKA?a}h!%k?14lKQ%k};DjqIpT1kCMf?tLEbC{n z0-vAB;}RE%B(G>l<=hs`x#YCP?ZWOCH%#60UPZXG#gzDt3ux`-aBpmg?M5_UK7)^0 z7#}^lUSdd-6`_<*`}(|aWYdT3bt)G}AeEG8ZE%6ZVkVVD1xq3KT(QH)4)HpMh>rKrXDe2)OaQ%YHse4-4l~h?(^)<&G zBDiw|ciGstYqWX0CPi3zE>E74JrlMJXQ3&zdH0?*C6kZT%Q_w%-rb(}$$UNegf#M4 zK4E6Ga`(E4?!)Qy3q+t)NQG$8gZ?IU|F`dqKXezpKd2P>e9-RoY?-c0neNHYoF|ig zW5C}t;dWCkO)GWB53O{kuac?0XI6yx1RS4jyS+w)aKEIc6M9N^qdB=!?(7|<=z5DT ze7&%BX{Uo{-OO8pyaNJx9Qo@V@z%$(=Ewsr;^@g%x%NT3bsx?(`FrkicZJc8M%rhG z`|p(M65Cf_y4Tdy>1$%%&H;%SlHIozyaySIwnT+K@DZ@bE5v#c?IU0ZoySA=_~i1l zyW5U6`{6>fA1*)*F)Gm_O2OX25bMPlL!Fd5_^RK7j&Iba&eatjLUuioRERd`$d3O# z_~AdbsZU}RAyN%!Tb3BPq-;6uXYmov>q$*#UfsT&eM_f{z55$SpV2Qq?gQ~TAi~Y( z)Jya~slKh(+f$U?hny4bq1)Z&w~__pG4V#7<#!_7Ub3D854{Wh0gEkGmhdRv+E1 zz3tWBkJnGU{8$6~{f8l!)K662Ti=%DI?eQyLWEG!9i)=$JR%$1xm%F_Zb;Z}wRt+) zbyhU{M?R$&B|!=EZ6)@>-0s`TVUpUNxoff#SQODpb?Uq|xN72vaQegtj=>$Dw5wF! zF>*T{Y1}?+*%vh@JkwNva_%W1%DX7zgL|IpV@Da{C#BN+Z4I_vGs4Ce*5%6PJ$i57 zE57sN_E!4uN;ou0#XlbZpd=`vKavrQX;C58g__^rzJ6lFgAGjPb36#=Bao`y*=31u zm+Y279P{y%U|4Op@TPu;dArpyD$)N=CTi!@JB!b;5BELjFiDNA2+_q68+P29Ie{X7 zTq5HY$AP38cgr2|3-{x^grgUqN3RFk>4AM3rIPPfXlxVCRka zM^Co$sa&t-BmUUAru_Fk8iog-Geo28C?RGHr4WI#BNd{3spxE~6(`XOz3+331rHIr zoy)aeTcPW>e@!EU-1dQpo*$MbKL3oVXwPlo^F^`cV7=HjMJjIR*ov@iqYZrozA+*Z zLp>a#eFTo~kP6X00;NKJh!zC>HD?ureI7I42l#5^|FRX@1T9_Ex?b#J^i4l>PW*{$ zX-@6`lA6W_>u1>0jn$;dv*W$r;xeL@8nt6=(DKB;hga7BFnIaRnb{E%Mxq&gL`SZq zw&LC^B5p~IW1r3CQ{#-Fi z2`WN1z@^g=il^y}{~lX!nNS8(=S?6j)cgSc+w}&G*NYDdTnhXYR1J5^ag9 z(ZsUE@RxS8K9K7iiG{3-7R53noF++4V*@?~%GZO&L2}*EQ|xx!Z&p@wD)TOHrO+bz z2%&PPh4MO6VIFSo?7z3`GI-AOTJ6TW_)hh%-YY_RQ4fE#71El#oXGXy}3mS$OM?RwKqx6LYyVUEKyj6dB$)P&!MgTEert5UlLtzBn$wly6X*7m=`K77Bi!oBWi~!tdz#jn& z`?@@6KD$BK?)X!^lPNa9X%sjzP-<+)AA+uDoE#oKW_hsiDKkHRo8qdUS*NawdOXTy zKdx9JmI}uuD52kf_z2g_AlgS82~5}I$g-Ec~9=DY(#b#}~K zXFvqjWX|#W{gq(D)#rqBUwFV9Eg@B|&qb4@CQpfP@vTPZ+1w0=?E~9H@tlbDBAP~I z?)0Rl{XPrM+-q=HvuSyNo_zh^>rS$wj{ z?eU`hUUHqSJF)-9^8GcxX@Pg-$rw?|b*jm%?*c-o==m8^$#v#&!+Fj0WhH}cPJGpz zhx?qF_ft+3TVYvpqSz~`(LQeVoJSd$+Z_U}i2W{FU8w0VeJR%U6NpCMhU1JcYSs*D z6Tb6#Z@ZEz&jgn|Gb?)I`9I^MdL7_d!RJA;%NPgs@Oiv{)N`qs3&({M)(&`ytSCHi ze+lyQd5|7_s+(^gBuIs5bK2LQ@7COS z!U5qIFZH#yl4qu<6Gn_ulP7)~JYP{7-Z8P4d9TQQg$=VaN!#w4W3Oc`*@s1i00HLP~ucS;liptMSs%zg1$mJpDTq$+c`l*@moLvLR z^3Fv#smy#Q+NU>5g%bJ*q(YsLpN}x3iAYu>kjnJb5ueJ1^ke}uUykH?jhVM)WzV&h z;F9|G(%Dg29hUw5|IUs!pF^VzvzH&xLQQ|o8KzsO*^|;Ay6cs2P4nsYq;x8O{q6MZ zbsu3?3bOKIy~xi;pdKh8qJ0Ef6t&GoxG4GYlshu#6W5xvu((Y7eW+~y8Y{T<#H5Y( zuOGatD1uMAbqJDtZjlw;rJQlqBTU9jncpgpmYh!k(XTCqz`>m>I!l`tf*T@Rl%Df|xwOh>Ejd{eZ zg{%&?_?OIf(NP>84jc-!)vfVU%YplnTcy!h`MQB&mgZu?)7-ge{E7wbks0wg&ZX z+LlT$Kh~VaUifR)=vk^cX)T+}!|_88)>_&^2&BR?BdB)z*>%xuJ2&%>Y#H;I*;&(V zH@)G__fp6FrV?ITTXCDT4U zv{18jv%0w5Uh*S99wFwJ>wuZi{>LpDxq@aST@dCDvUmq3Z=D_ zS)8kjC6S%obX_vW{{_K$#br3ro!iIsNY-@GJ}9B1&xu{gCHXvDl#skKQ>3zFIHw@o_K1)Aqn;mrjWA03PpiV5maB_NJBo@{q zuYGtufU|;&E9QlErxC080R1HLFoH(Kl3yRYtU8kCMu=AG#1?z#jh z6@od95^=f2YvWWByzEmhLN^);j)`#OOJRugxD0oJz*?;lS_Tc!JH>K|0;m@{lB!g)7 zoM_|Z^&{L}XFUpKI7Dz%vQ8O9(Okk`j9F?uh%GAVA>K zG@hD^+M*3bXSM*<%Y9TVO=q!|ze$mi8&|cbJ{{cO=l7b<2l_m|9aJ6dy9e)ELw-IF zoJY~zNuHnLoXSJkT*8{;h%Dc_f=a?T(Wi3pM*ev4+%9_UuT8_dANa|eOg!N)yYs#L}pTzkbDbVm`!O>TUGN zA}@9wkMv<11NC&5@Xd{TnA0iUa}~5t@m1&Cdh>N!nl^hK7w)AyonKP(+D!xXsCTQQ zuX~mx_WV~OJ^$P4=%S-a64RrK^Z~C{oA0s6yWv-CZXB+!uB!Q}j{i0}QejQ`9z;pF z%q_}kj_;r2JFfVyHogbzzkiPJnd6(@D4|ln*6ps%f7bib%g~Ho%GAr?Si-dXB5#wU zwmuI;pd|P%x{o-zYx`79%l*rHjK9`{2nmx0G${&4cz71$sqbRPr{Ig|vz?6TK z5Bcuo@FOEhlg=fH?YCFhb5XV(S(2E4XKq|MO>ib$8&VvzPJZt4c@*;j#xZg5+d0lZ z#6G#1LF7u>j3ZP|s+hf=iQ{ahVqR32Ai6J{9ew?+^9LgQUX2l~t)QJ$l&Os#Sx)W_ zO5&sac21{X6!L*@t6PtGHdQm=fMwI(9Op%1qYdoMnxPfx`!eMxPoXm)c4b|OO02y`uS?sgSikN$0G)j$d(r02sKMai2NSM zM|%iOGl(%a|72SymE$A6wPn;PA0a0Px-)WEDyR8~8&x>-y*E>X-sr9AY${qYr3{BH z*l)F+Q(Xv~9>^W}VJuigwpYVkf>DVz`3R)KdVR!xdnJQM zn?G>eBkxQ!d!4HzI=`Ya9rtn~TETqH<6Qa>DXed@(M zudw!VdkT2Bi0n1N9kf0I?>KZU?XJ`A1nkvNTeN~N6(Z2ONQG$eHv1kW!95JVR1TBW zZYQZPJEE0pvfsbThknpO|F}bk?af^8trwJZ}QTclZ&6^>t=sTpH8WV#$9Wz z>$sa|=Gi^Tv9#k&nfl-VnH;=%!4t<-t(>Sa8ZdKWR5~pvn_~Zp5*C-rarY%b36*NO z$8KTY9usRe{C$X*+wmNZ&42PqK{Vg-BN2U$9>l2h^zf`}R*NED{aBh#A3YQ-G*+5Vco=%4`jFD z$TcUYdQ9FgT=YxA(*xTCeKnZg1t7bbw=)MFmU`xZcHz>h7`>O8y@Rr&MUV{Od^4La!PGi`TDiVx76=4%e%51g^!__M>$)lutKCB_F8X|#gbTl-aQ z&6yV+tUF#C3$b4Dzw8~AU2kTGS+5r1+*6MzKmMXY;j+!u(F09O?5Y9sK;B9<`~INK(npLy?g7!J#|#NZ ze%w~qwhg>5bgw>WMs(9H%+Kd>eB1Ki^T*qUwHvg~)m(TWZ*v;^S@m?w5g!Dbs&yDY zaC)?^7uSnpQT!sf_?-SGHD(`|2hGKzFob(&tK`KQ1QsGD# zB|!;)Dpf`OF4r`GP_M5&f*wU%LXI-=c@>2?DUKnv0 zCD_uO-nnB2lpXmMM<5l(TX6(Z`BCC9bVj_3B^=fGh^oKuQ+`^jL&9&(*HvcEF<&?8 z)WCk{1wDwK6%ITfbn~VBxdG3LsONM)UT2V51I-|KPVTQcIC`=!&NB+}%iAa8MLUi~ z&^I2B5UDUKeT12L1!k^xoSCa>%zYRc7%@H%_e7!AdrpB?5QJN^6e||iJZ7xx&2b=e z;(P})cyR<$p?)G2{Y`o~5$%R?>?1JZ5P@;bbqmh<9OwNm#>D3wg@npQh~4Nqm&sOt z9rkkS=06&STTJgvXST~uS?sBErLvNlyv{tRE~7)*`GZ$dGd$8tt@`rE)YZRjNcG+l z(^wbU2YK5WOUlexmYErgHzLDvB91uCsa$h@N{v{uA=T*Pn77V=^&&r#UVcejVad}& zR)>|swG3(ZKoIVl~+a2QuOzQW8$HRrED z%KC+P%|%bG%~$ydnr9G|*k{)W$!bW2Xe*WFL?yZ-aV6zke!E7XR9wy(>Dv{r%qo|C zex6y&%KC=qQN)FR{0#+KFQGelHW{6zD7ztu)^CHThe+adVyS%V7NT;9blUQ;?T<=y zCm)fvddTw~qN5-4adEZOi$38&t=W3D(}o)+uzuo*5Bqhag$+oCnc z+Pxq4I-lGU%W3Dtoe@iI``~igmba~>J{4AA zB~o_Rb9qqwNIO6(j5ntPm7Kgw(++{<+%{Mkk+$euJ(w5SN>-p6M;o)YLK_mL{LI(u zz@kWn5(+i_P2#hHH0~C1Eh?7w5mYa?oLIW$i)y*-5F$k8c|sP!{&4ly;*KQX?b=5! z!jE>>nsX7vJtLJ@uS0O`iZ15u8n-vfo@XjgHhe_lqJ#9h$~;JqHRzU_xv2?qm}Aw*5KNmGdgwmaq$qjcN{h)zE53}$z0(f})3*;#Z8fV= zc=jjCjyj1R^p`!z*^)<=l5sE-34%3u8pc2pjC_~jauG;{d^K+tW6FkabZ#o|N2qz&TV%(o+GfFO%WC@os{%?qw%`uXX&G{uyT^8Q{-Xkf} z9ewM{%8Lc@ptY49g=b<3+I%h#he_s*UL@B#{W5xJLAg6TMiGAQIwM#j`j@_MKqLLj z%8y9nmp$;*bg4aQEsS+J527AIPmxY#%;64gcthVMn2gUeQc+7q2@6R@$Rt>_*6SG@ zzuIhkFb`ZKY48NEE%sXzPrvXum#_JW&U<}&x3|mhsNK7~{+#PHjz7^>D4|jho%MG4 z-bWlz-f1R(JwmLDUy{I@to)t_FC2@2W9vG*b03w@!}U>l?Hsa?k2YVl zTGuvgHF0IlpU)=DN}Bu90{SCYDrc))sWR;YtV=oZ#t{dF-|s9-{cu`Eh@QecpUcB( z?|AtAhqJEByM*#)MUdNlv{F|asrnkJ>YiTVeS-%jEGiYW39eVx1E|N5o=9}CQiT*h zxv@ksR%%j*e@5cJTV&qaJrfU_>4=#&CK+RepmT#2+&zeR+(J`gIb$x?c`UD}=VKek88 zyJ#zCQOpL|!*Ppp)^)b>sT{uy56g+TIUZ~)v8Y32cz6i0C{np{rhODZpdP4sE<$3L zdM~snmBrE|z5LkcVqF)IU&~UPs;3|Lp^X5rBrpv*};*weS6&DzhC7cP+LShy^TLm+w@z1e>>As zd3~l}A7xvuumJ@ojv5V@nJX%`~t*EpcDsQYoWOG|Z;;b%Lg zP8m=cto~%xaXZhLsBun)^&)S_LHr>+T#L%(;V|q$UiposomAWg<*5VF7tdEr#j*SU zg1}rt`D$V1l;F_Gi;mmxo{1X$j8@3i+;36Bow8b{P2_lxY$VzfRX&1k#n)Yr!>E1g zx|Ips+kn1NYRl}w;naKfw0t(#Oo@N8$i6!ry7J-akB*rdFFBE}yHPk>Iaez2jq@hw zcF`g~C$j9hx#XLtT7+%(+CQ~o!Aarzhd4&RelU^7c8+meJSQRoYf@@j`KWN+nsq6X z&1tJboNc@7q&XrS)!}KRa@Uo$sUL}$&*eNJ@V`ME_T0`C{WoSqcTaQFHaD)a*0mWf z6D1+E56paqN8xn_TwB2ME_@Da$gvzAEE8*w@?wAG`y)5nrJr#2!B$(#*0uid7C2_actAQ!c!UyEZ?zopyA;($KC*Y2~R3J=ah(}QHHr|=LUu1%1Wit&q#%6 zrW8)%TiTuA?8dzs+bYwdY}+6dQAs|}MUek_&qQuti|tP8MYPC6f6W)6p{?OQ0MscT zA@gtr)1X=mYc(uH3UU!pX_&$CA5VXvR{^R(##H56ert zx@sX)bA}VUDYbF--@*;Q%uBVsFy=kYDBR=ZWNL_Z|9KShW@+*@_wzX+q`wkci?lp4 znu8vggJUKWhC}~KwRz#G)J-p+XuiqnvM9!Jp-~3s-I4Eciy}W`X221SNR{8?AOdS* z`32`}g0koOBe#!|o`uljHCHChpI)*vb!&$usnx4b3{gY$AX>z{r#khv)Dw5MN=2_; z7NUkYlG!%5I(o@`4Q|A@6p1*}M{RM;fHf&~Kx$`dxjTQg@BMMX9h~5vh^}Yu*dUuGZx95Z+21HU1#|P1E|p#pc5ES;`gKlL4T9B)k>yzJzRlk zFW`@u*XGF|Y%Au#?T^aNQ;fj2f(W8ze_&nCR*Yr@wJ82E0_~34q7{nIQn5{7yAdAr zH<_2!B-=S@K`Lu6cgN4|sFUzudlg3HYtC8|mJle3#2D5@bj1-8;SM2syg98?dDqt` zd+i(}(eF7iw~uUE8Gk>{qZiC}nCD3<`6a!~0FrpKd!eSkNo_`8*_9j0D?B3e*8@C+ zjn_>4c=dt}(}G}op(IkK@eX(}2jT9Z&s~O-(Gu}t9vFRSQ5>UK>by26V>r<%R}bIk zg{T~Y#wF3f-%@`&d`+s}$_n#!Q0Kvy-<%p>zJ<<6$zKET+d1>#(Gr(=X2DUJGxqV~ z3P)#{!AW!au`bTK`8ZPtcFO+StlL?D$b$8r$TtI4w)nIZYPUFs)Jgz#2t;VF=;syc}T zA@%0*%blF6t?y?imGe0xur9GK*~gX( zS=XBnA{Esnvpy>hNu;Ud?1Rycy@6|kxqYoq<@CsncIUNN+VR73E)T5BA(nb*(S!c_ z{UD;9)pJ{Io<&Xc(FhRjX6w#I7u_K%$}=x{&LuSwTB-Suw+PpTOH;4DcWl`IZF8>k z=PJ>x(wxM$XLWRQ=Q@eL&nMEa?^Yds)s>$W6A$?%Ap>yVml^dzPIT5K6lYPPa<*c$ ztc$z)sU-4JEES3|)`KzJ2GOFfjB)IwVuX{#r$V$yMSpRexYRyfGBwzhB3BbciS-HI zacw>gwsHu|L*xEt7nPi;-4wZS`&+Nd4oznRTp&|rliCo0Wfgh%Vy|<-q z?cB#3GhnZV;|HGyQjs^!U7I=EEUAqDc(XlKC+#7^?WyW$`*1$BYW%Y5=(#am-ug&& zwBiXl&B|etVcRFGqo#}UsV;h^+MaSm{R+{uzo|qv!JXu?H$T@_K7#FIcBq3zsVr!! znSPvo997!x3onFbdj2=5moBW1M!v^-P@bo+PLu3KHP?6t5oi&g2i`%%&Blg}?=N6o z@AN%HjJu^e>apG-SZm^DcLH(N52y9Y711ZXJM^Z7yj_7c5vBZ+`ri4~ zQPmpej*_5+MD0B2B#BvmnVbl`xpp7HUSpkD4_`l#$nx@}LP^lG9s;V@KQ!7M?dGJ~6#}V{x5#6q3sDb@V{G$20=30B z#+rOYF-csm%+Ukv!*g=ZkC}+c*id+I#G{6V`7wPm>qkVma(-Opv?%nTEu#l(ZS6h+ z+nte&@-FDd2$GFaH%1fUqAh+6h%&fb&uVVDIoUIkWF&M}03H_M?!>$ZcQwVbRzTR@)J80h9 zHtV9iM!KtZPV#ae#d>f~thIAd_6O^c%vy{P=yNV-cD-2t=V%@l`_jfUtKAnkM01W3 zXWf{2-@R0Jd~#e_{|i0;-}z_UjG97}gs%5EVW+(=Tv#gf ztt-=*5wmEkC+`RbZFnMh<6oo98`9PB%4BI`!rWN;)!M4~?2Ahit%mg)c36&tclyc8>hy%HK%o$+HmPY^R3RiXoOT7 z%5_sq+D8Z#-9ak3&a2L<*Wbz~Oj=Ohxy5Ata&>ilL2v4j=^ajIg5)ObwR5J1Rs!BNd`WD%Kt)!C1l=v+`#n*xf0XeR5}agb>XgI=9s>*?M8n z^sdpt>@oig@9$F;FaMtHj#l`;cyKAaqsV3Q2YFL8XMLRJcEu}`i5vpoUgl^Q*{Lpv zjzQVYadw5s<{`9Os(h3i@t{~_R+DERl9*oIHAeEGfw^CLAogW-IzNOwY zPx-FsSmVk^#9MK!nWoO`dO_W7W!>AKmHixQHJGXv)gjtoKPB3K8)kQIf>SrpOf zG|~A8=D|_IXg^{IA-^Q{eGpf%H1u$3p{Bpw4|2V{;*s&WhgPasT%kq9AJjj3JnS=<)?D%En^hSRyjX5~WLmM6`k(cViua_Y|M)1F8RSoKG)N)Sz z_T~9`-b27sGT-NJ)krkY@X&5$%U@42Qf8jFQ5!TKOc@VatKnDJP^Vq!k*zD{?Z75~ zxV63$f0!Pevd3pZ=*Y&VQ*Yf74LNqkIqDM&h1WKjKo^Iel4w_ zI0EhC$}y{NG8^;m4%cgV+7TID=kosz5d*0Rv1Hw6!GB6d>k;$5D93&qtxz>(R-D#= z$Rb%itYqQ?Y6ns_(s-j~ACWtbmhm(U3FiG!@%LYC_M^BlWdNQ&PjV7>H%hjBtkgzUFxXiOV zE{he2t~f%dTumHT7GEY~N3wGmjZu?;AifJpo500-G;XLSPALMO%wJSRY zuO8D(fBN3ZAx8D{m(Pm#Tf<-4cwp1a_~i}i7KnDIc`f!h@QkI_SZMpJ%gY;n|48uq z#g}?Ku->YQS@8yq>n0YwLZk48|G2We$4gE0=f9pB(zlRjn>+2xD$+=WXwsN|>_wTS zK6Cd*FJf||gfTho1D+e;(l`qC7(LbXVF$8rp})Pb8wh zUiY^}z9N8e*3aYj&F(T)bj8J#NAYA@&B?Rxm0}w4Z!( z`Nb_iD8KB~>q5MPb3?32bfCZNbM{Bf^LcU2-I`TqX3A@Q9@^&th_Kz+^)n;#n3s<| zgeLA7C6c3D98;9s)GQ3n_^Xk=^0ru5nXHWSw=!yB<<700;2eiFhxU=ze`G9Tcv*Co7DXpzd-9HfGgKDWEf z&Ri>%>AA_$MyfxzM!}OyUI{v#a)x*6DcTCXsZ{$ruPPt^c1>`z9&3BfmAluqJCrdK zVUOx$qPRl4V&lSX_JQ%PANh`+BGGBiR3b@H9=4AX z*-A`lQ z616p%DN30#YN0mBK5??w=Gjg3qnhcLk3jplGWq7Ik$hDQz!_~Dk?RfA=Hlul(sO9JH*g^#MT|!NN zIhROXh;aJ3ktKW4QF;Eb<94Y@c;q9TPN)a@BYpAQnzBb!7+pWioFhClep1W2i5^uI zHZmk@Qhsq=XhLU4{k z9ylT|guu3)FI7eltBpv72$ssTf}y?YnmfzGA4~MmgU>c6TKm?O*<_&^Byr#<5lLJo zLLMv?QPVGJz9#6tYJ=kk>=T)m|D`XcyYFVqTRby5^kHgu{ukhU1X8{K--aq0 zY|^&o#=9Ep)0dncwmfrYeDj|?i*L4kMtn#Up2ed@d>$RT&58z_FE8dwg8T%**+;S( zt%ZH|&J3IF9(gTcO}s~cRKml?1xkvJBKERPW5 z3iZGU^%1BcBCsYwuysjW$qZ69NXUt~9&}lTM|y-Ngv+iRC0Ra@)%;N(@#Fs7@vxd} z=YyD6ud{S+Bw~K0GUnaFu}f59cZq!I&jl?ySgAssFX76K*p1tV`4UYaU!uVt5_?XJ zP~pL?3a#kM*gl+f8R2Z=Qz6>SifTIr6{FjQqejLwN`hIUkW_j8fL80T4x9IDH-B6H z;eXqP6{8XwHOG1}LPc}7E?Che)-m7awp)c)t0H5=FI);gDa!Xtz1S z*$T5y3}%o{Cbq7Nc3eU5N6SjRuw#Dt)F%!KH|>`2dIOZIsOA{$FsJe*baGMl!S+Gr z%%~VzEk#M$HC3r;HO=*a%ld@q=j+dy6@A{5@_9Pl^@v%~UYTA(cyMMwTe&jNcO+L9 zM>uaHf;@=*M=lkwQZOR3V)1`Mpa+?UlPq37EBhTa>|YCM&eEZ_*ovIhYpqmS9uT7_ zJ8GVT@V;J$z9}SCGBUI7UchI0X6p+#}A{U$6Q+AauVr)$zW66o+m@cw@upUbJg{Emhkl}( zIYOu;by1H@Wm)%=>)c1(a9%TgSqbllGv9QM)7MqVCQ_!^otaI>pMRFGQ_b@8vri$N zml!jC*F2>Q#m;`V{FJ06{}el)(yeAC-%kA9Xi`NMqE zJ5FE1mG)6Qu7n>+<#^=!Lq>N*#ce(fQOTpeLLT&GC$y}?o971mEUa0$y@TG_DP~8= z@-RhReaL9rHSp= z^-rS}%(tCBUXr^0>&9B$8TT|FwntSoH}efY)Jdr^>8_goYjxZNj|avs@)I5CFXoc` z_8}2!zWn~z$0_q)kl5z?&U_SCjq7=b>(eh{T)jp<+dIV;A1N519-V;3YrM9k=M=Fz+Bs$2T& zvm4L!+8~a1usteu{BJ)6=D$?O4KZ!*WWPm+v4r}W3^zL+^xd~nIQ{dO#ydFP!J5o> zai9D&xb%$ubz)M-5TgO3#FwhU>rV#1{j*WHyDyV^FWw?rMrSkvG&}o8PYd3->|nj{o1;Cca8D8Lrn8RA{FC&2kQ=-5#LOS>VvM3B zD4|jVk7=ww-guIpRp+V{dJXO7+bTE1$Gokuc*5`^V3s7`xcR`3Sr-U|Lng?@;VwWgA*5TGY>| z9uJEUTVW1HyO~qDPMsQ5-PBND@S(rE4WkdE(&M3BT}$omaoJ_z`0-d&P&mgiyHK({ z1Nw&jkwt*!{?i4=yO0NQCY-T?ttk_4CSQ$MJSu3trk}o{VT-WA#k1n?e!~64`n5CT zKmJ^rX!%*+^sY5$9>@Gd=XPr=k;F)m>2YE?Qi4g_>iVH(A2&Xf8Zs5i6n(oaPySWc7DctSz=ju?Xqmw_5bz zuB@B1e29l2TwF0fLHo8UEL9AmGRK479j9$Bk5?K!6U>``oIYuSA6FPlm{FB_<-WSQ z(-kkJst@R^%^WA9nIiQQW?mD?Y754KIsIbW%3#Ut5qd$doJQg*ypuI4;*Enbx{v&H^mW1<&QE%E{b6n87vjI6+hcK`dmaI zop|T+`X6Ql%TF7sXLsL_!W@P6LAwbLZdI;*_>wq&F4}j6;3#n|Dzo}w+aOvO?IYI< z=Mu>Pxps3Nq|7GTI4YFH`QNOOWoZfHuN2{U2lJ!Z!@~PAG+{6jrJUK95trRCL`Og0 zR)e7rAoJ6AmWJiAa z2+1-?MP)%-L^f6&6|e7#*K!erqMv_~4xX##5SewjqC7;B|5pT#OEWxd+>%^a7nNBL zM5NP1=UZ1+0SSR?8H{FxLpcw+dSzW)_$f91wMoIP<(KNVW3TXXyLon(ZAE^*nmlx$ z@agxP>FOqX=oXjEj(T5IH}U$3JyPRtnH@bdscvG)KOaer*>g^`xC8C?Nv235`C;B= zsW|U0g-9$k7G)p!RA{$s{nm?xG^eM11rgRKZeK9+!1m~*+Ep&`(OIc14<{AQ2h5r! z>`4{`{Y`4TLub~QJ&|_jGS(yrmJ05`IH)#sHPu=RasBi!B9O|JDN~>P-e;+EhnDDf zXK6j<^x0AO;dK+{t(2P2U#yOL-NR*!g{)MTo3p!8STFJx1pQ6g{mrbcFS|oHJuJfZ z=iDa#H-dAbs|)>%XnG#SKSns&eJWQINtM}WsR=2qi24k(DsSGY<}ssO=l*Kg_!T*(kwCq}V<0!e7bVf(xb?s5dhKIdzi2h?^JQ&b+PBf$o=MT&! z-51V|KB=T!qHHu-iEPRF!(}*X=guFl)iTQ6i9ws-F-m6LH_O8!Y+Uh*U@h!`sf8W* z!`2W{iFb`*yiv#(Y7PmqG)xqxAMkE%BS4An?Cs_ zf6pE6v-9;3nJ7vq`lM%ZlK2rL^qjAp2mPFg=;8>Za%I1#93oi*_) zv{FDii5{GNUcbIW*ltZrz4_OT0ruP22K^`z-O0MeS`=A&;l_tE?|&cyHAE_i1-}h~ zef*YM2*H^edmI;)e(&RFYHVxbf3lBUC%ZW8>AO4xM52!%X{GN{>av*w z!lvVz=>2L=46vn^JU%B{vx=T`s<5~}4tTZNv_U?#u3l6ftvs2_{@HDJx7{tg@zPB} z=hjDP^m*6Sv!e-SpEmXFet+IL{YUD(E58XUFVY&Ra5Uf}obE~8^QhU;BuzU{lzRWa zv!hoJq_e`5>UmUEw0;Ji*XaL}`u0*Y%D9g2AQhq!lhlv>d{^dFKmLku`^;HUKb~?& zGC?GRvMm+lmzqPdz}M~KgZ_CWH9Sw24>K~%hM%x~23+irY9Sqv<&Y%?fqb=@!-fobE0^<)OrnlgPvs`r~T1Ef7rP~@4sV4_Uotd5x2z$53QG2 z@%Bk+^UhE9dcIU*6V%+7%3YrgL2DVJbfXg4YgZy!PO zW=?WU&+FpK#r42Dh(HO=e$jAfIPJKN!OUS(gXbDtAANpRX=2&g$V-o9gu+D7%kvlHs{Hz8>f&b7IyW%WGb~uZ{k#Zl4h4{qg1*@%KlPpAS!? zevX6qoaeQE`=Fhta$TwC2DA;Y_~-k?HJ*{9_?4ZmU`=ns^H}N|L!50?mZ{^ z>Z#I1&*%EpU|Uh@_8~8&Y8%cBdOtNvUw_B!sOh%Sgz2l6Ar+#1J#eQi%1*gmo+vXy z+8{q35Cy*u4}#kGJQ_Pia@5UCKY)cNf`Otn5?bTIanzv~6l=0uy%DNUF)>KcqC z%-~9`I=g3Z)1z&|L}`VdeOTSZzVFswPMXiVp>Cqhruxe%Q@6XOZes3IzAie@Uw)@r zvL$95KZ{=9X>t(VvTyig!wQXcA&;#M>LoVUFh8G%dwW?a%yx90&!9wlk_zu20wqL@ zpM8)DTbEL+pEx!3R)hT&SY5Cdg zXv2b1)4EER`BELx@gHU;yf(OQ(`)6JomVuzKDzg6t4D}Eky6KQI5w#Kt4+A-{+Ql( zkGhF#S~Recff2KyZr#M!-_~E=eYiW{hb+R@m3Dyb4t-<3YBc7{^0MO(4%Ndkjdi_$ ze`%uk4{RUgZEU^etMa!?4-Q}XET(7ADNRi7#8M#@qDdP0@j8QKOOym96l(g5yY&1> z#Jpm5(2WVg#sB(u@N|nkH1-qNa}HWDCu%ab)UIWkFEvd#By7BLS#ZT3hiJTmEfs50 z>eeA^%GWkLIBfAwOt+s=YFjF`TC{?%dB>TThHun)Bxut5KjrA>ZKqxzEo)K8=c&h! z38t=Z6L$O5_c=x%`ro$|Su}Oe9X1bAi)wMny|#>&_7Rjbgo?@%F^KjNSQk!}?tu&(t{r0i{%MJDH$Cn594vy);pOz(>wIhqh z!VW)|CB_|5nwWp*nc;#5$`aida@mafeyOipz8(d)eORIK&YxO#gxF?XkXI;@vaqTB#a+QZG?f zK{J+^srkg+Uk=Wl*iiR6yh0BeTQAXjHs3)i%3b?Bz-aS!|9NwQ?Om_1QVDm=QCMcF z5P`8IXrhubp_MwO;{yYpE_mKh~}OaxAk{ zHD5Le|8wZ1VBS{)yxfj$5Zk7iTfWj!_gnzp$3%?59to$Q&#~-m!?hxXvSL!AHKgPZV-ln4ce>sl(HI!SW<9x**=Ie(7lcm8DhLar#y`>E75Dp+uO_ecOMD+ z$UDmPTi;UAuGear>|TqWxVp>s$e*wOtmb-bo4@&X(!Ke>pYE=vwj4x*y&YwednewU zaQi-A&c8olYZpDn=4#pQh3@Fh)&0}&$?sKwUqqPkoMwa}1Mu+ z8Bc7UfhyAxjO;^GK^(aw%=hOe04Eh{^E_a1F2 zvvQ;W@?!h2SVbo{wn9!EA|XkhF|Qm%Q|{h3<|0 ztBZj(a(&VdMKap+$oN=N(cX1XUzZbLpWPGk=1oxA#kfmvc#pI$t6~XX*Zn+Gq^3I< z)fl1s`3s>d-5a0D@qfzB^_h139Ci9dXNU99p_ATGBm$R zW54@WxuU5kha&`YLS>UnkOimSSvz!nou>XbJHtM{&&FDacAUb#`$8igXzb_Y+cXei zb5)~v&Cp|An)+>4gneuawTrYJ=cWD^i2Yetd1J54^;>*cI$E`${Ccur`B9~#x38(7 z$_;KU9sOoy1sM~Q%5LnvF@MNarJ_3@p;0Yq*}Tv4QqflD>FX8^!8B+LH|>T~^ys?$ z;_SF1nmDDskDj?jENWCH+HY}LNj+>KuqDUYU!l3UqOTCd8^RU@w6`Bm=_ zOJ&|ImdkSY4ckk^(w-%w`;Sou5RP}euS|4#nJiT{k=nc&HFJHuOE0%e+9k=E9$P~r z@DA<}%4p_F*Cs4Uj*)@NM1wVwk~}31-eEK%sO&f}MhTRV$0!=ZdF;~T`PHvh_us!j zKYw7~W@}Qvs9k8;eN5AkXH z8bTr9xu0th0-wTc1m6kPLbRPTU~YiXhp+3A6Lm!rvIS9cJ0`X&42k)BS|~Y?D{Pmq zr_(q!zC_g9UrR=Vq~Gqc64A<)YOAst+o?yHUrcZuBm{9aVXz)c(8o-Did!fL)0PPj~&4AOQSv^lp+wq-jL4Zcog$AK9ys}}mJ znZF9y+`s))>8QA&l=6(uCrU?0-LA_tmQ2klsjkcZ(eih9^N4+JwO1obqgnTrjP{uM zyDD#yCmd0JHF{9#==FE$>(;EA#T9ZA)D>GX=3}kS@06A+UT778%m7mJC?p5Wuvm9c zKd3jyIr?o=|Mxq>%J10*)GnWJgk`dgjo?~rHR>N&CbafImV{`K@3OyQpJz1J)!vTp zqqc9+@3}UO)bG{!&7b3}I`LuQoEvh)JFPld@1yt~6upVVx3Ww_aVO}c`p$jy3K2XN z(_SrNFnavpe3$h`l5-E%x>{E6i^B24>x&moMg6ccf!SUg`D77eZ_KR z$$_!j{-FMd$@3)BfSPS1lmOU~#^3BCs>yC5RJFmKPXNBE4 z<%XzJt=j#T6c zt)Ab&fBf%=K(0umq_^Mxx=cm5ou4ye+q~-Tx5;Ymx+P;Qu8@=TlTT>0AzLC1>?=sm zvbpeHnwH=*z0cci%FjJ3PjOwrClLRzzoU0-R6TKdy@(|_+5l-g&dGgWgs!}|fnU94 zRG@ya7I9@H*L-O?m|xN&mq}MBlO>0bG{~>`9W<2(p2gZVn3(_5t5YIh$hEaZ18X7L z)TjPIcX;PGMB`p@7DC`T&hsvsmdL+GYn1w9&DxGSXV!7n-|?7x{~xVGGhZI*AK50) ziMv~SqFhNH+5V<3A8a%|5*kc#p8Tre%*}4Rby>IheFH5oLC-+6+*)MJd+zoPCEZoM z@AvTzB5WE)5?Y01JOg>Ry#x^`E!IM`sjsvP5+YY!7S4z)xRUY`^Q=b5n7`@7jL6D| zwN9wqwW2N;F9-V)wIx?`q}EJi@rEU=ZVE37>$TDFG;mUI@xtsndpS_B)PT+%jY<=hh6Tj zI@4@z;^3n`_MGxHr$^R(Pl#|pS4S$mj(?+p2u*{nN0vlOp{~&WRNuBaYZ2|iEinxnf&GK+A4DiR z%1c`9Efu8^huY#Y$+7&9zP@DsZ%U^I!FPhS5bZc`U$Do`uW{0KyGO0ISlSxP4LvPK z`>n2Mu&lY_3TrVv;)JggZO1_b*P=UEi?3@rc6V>?zjuLtQ;oHdcP?wL{tZF3xFwQF z_QAcQ+!>cs;hL+8$h=e3UP5mGO zYhgSt9)Y#k9-6Cpl^$_h+||JAcV@W1>)_N#le0=hJHHc+qis-!jsx${t$7BXTS}h; zn3emWJ2tNo{`>Q4ZL`nSK)=y;^Qm2_;?2+wN2xtbCaQZIgQ0f zzFtjr;L1{JK9S~)>4}wQTSiYU8GYwcwfa-`sLw{89eS%#Q&DAWSj{>ULiQZ17NQ;J z!*(CJ1&h{uTa!2V+h@vs&bB#f6rMd~s{DM#iMCwTDUQC7T2rK=54{s+uDDD#XBv9m zr|8{w8Ukx^S6f4k+o=vOG8T=*hg%gd$tb_X9HtC9VvRa<< z*5-V&O%iNFks54nX%V$+Y)*);34$Q7auPcn)Mtc6@5w>H99Ei8A{F>8vjB^zNZ zWh1a9`F!5ygj;z;KV?CdoVZ8@UFZd+IE zSJbY})vgcPxmzpN7js{?5m?KX{G-ur#kGxocUOGjSWm*Zza*YO?l?KkCln5@z0Iv& ze~>TQOo@o&CDn*Sy=Y$L>}ZqL;kexgQCF-V;vMzF*LC!n_3(va_Sp+v_p%l~azYsZ z&oe!B)3nH%!&z!KOvmZ-ZCmkP&UNnNGn&g?nWjZnzedlpUE){^(U#5CX;6HY2+l^} zEQRB|cgxh!#ux7N+MYjJJwdXxJg;&4n%scoBil9-rE2zd+db9Z;tDyz*#yVA@sH`D zth4X+ns0nW(V*;=+Qri&Z0&wg*k3$7=#X3C>@NyYSHJX{7HR!mR&<=WF0fDPJ4>do z8Gp-2ul}Qt2y6>!;MciwZ}yrwg+Dye((6@gtiW2VD>~o8MnJr>-mIIR8eD&6ETUKM z@Egz?pJYc*yhicLyy4Zk&)eN^7Pr3qjr&r&Cp@$>N{$*a6euIZca4}QB0V|pbL}9} z>f%S-d+%B5;a=D1W33;b770xwf1^FHCr1|-?&&>LlYNT%AQTF9Z}APsJpYGJ#4U2|n*x1Xc1 zM`2Gh^+{JFdS^$M?9qK2^@C^|fi}l?|A=;+wKH3I{+)Ua{lR?s{4d`XP|RqzgR;L; z(b+$Ch;v!T58}__1B|;9j_qE$Y^J>KXPbzl9CIaxuJJ-JP$)-!H0TKu+uhqy)28c=Q({YNZ)T_M-iL?pww~@#yS5yKe~lNHzx;NH zs4-Wx4+C>WWxlS*bF?{f!sVd-9p~z!6SQBA@H(J`=u0+@^Ow$X&tH1B80_T=^d+>W zE%|2~o_8k?s38`2Pe)MZ#5QMNaGW*=7rHY}R2LUK6Bf)nSqkadG_*yu%`wO2GT8vL zL0zA{k#oafEkrxc(i5lMU&a3lAHBY>HG7WpNz@(uAv>Ye}A5uHm74^6o78tWY-#uChM9H-33 zHT=(d^ss19Ti8>%OxBd&B5rFThJJM*RB@^OG=WbL`2Lf)=U+_F_c)>EIrEWlneA`Wz|jC{V6R1ba)r?1Ja<94b)nZUmzh4ieMNNfTp=g;oQYm3 zzm^>^N<2C*Ppwbn7)5c3%M`CLTecB=Cs+&7_BlU@;2b`P)|O*ClGP^8(X(n)rYF{l zS?$%j1Ag0Yzq`ZSfXn24m`m6Qz7wp4=*;iDD4WQXmuPRtcV1kJ?qIuoUFRh%HN_N` zmJmzkPfD$AK#kbCVmX*AdV|F>(Yr9F5mQltuuMHzi(8`WiiYYRR6^=h=J{{rR<63g zzpuDq>?Pj8lRv3Ek@Kjax0|^8Tc7j9V^>WooZaPWHJ8B%^mdHe#0&pog1#Bt^qG;C zCGR}4bo4p76AH^=5O@crMcZ&~`Wq97z*?ug($NvsnZ`{|b}yv*Tb4~wZvle7OPrwI zs4o9v0^=Z$256gfIgoeGcZ);lk&QECs>NmU3_C;CJf$PB7MGDL?ORVIMnv?^KVjNm zwy2zhGR;6{dIw3IupC&{H2w`iwK8(0{5NN1imSNcP`+_D+{Wcz78%}i5+|rDE^Ds- z4MDY7CXMh;zS*H`gIb}#)=#j;sBViUM@~LfQoU~}-b+wI9CvN5*sI8Qv40=}TQcXg$;i|4u9quj z_o;7&Erfsi)rTTW=IeO|^mfxyQhNKt@0ArVE=st)d*%v^8NAAuzOKL+!!&dsqd>W#lj{5t+W>B~DOp%pr3{t;ZBK^ahmHaHzR52&`q$S`Hn@2!UK> z;siOQGPTb?^xd!(S1@YJoo)}GbSDiz;J({F*UI5AUIp!uq9ON2y{9PZCn5T1?Q&n? z+VnSO)oL_la73@TKzoqnhr66|%RGL-9l62mGeLUCQLXsVz-U)K*O-W^R?Qmi7982{ zUi$ZG_vtsyjweAH#Y>*KUCLfl{uZ|-M+DX~UP4b33wG>x8=XGw9(vp63Ns7Tf<*&I z155JOkB^sQ745#MpI8`$@hU8zYfUZW)^VPFJmF3#EGK?>(dG)h5;>&yGxkBHA8msI zC=*vl&m`P?J}D=Dl&8^RTSx;(iIfbg526-Lxxmtb+-0+8wqNDUyYAKBb@ub`n;cnl zwLWoZ!uNTR19fy}*{Jj6$krQqeiy$uWX%az;DU8U82tZ8sw04rDGM9D0h}QyYdEpGUZu=*9P#jTG4E+dS2rh)8Gs(&1LZ0 z0Xh2-c)H`KUmQP(9zXS^BakcR1kuHAn&D8DgFX;*m&OU~4Z6Q+S$kWZ)g zb@U3VycPPZ;}|)zxpWfVU*WO`mUL6aUA!x8Qze_BmHf!9(xbpZPEM4 z!{27BcV76uO|ECSez17;qj$UqUUjWG0D8kK=9Ew?D`-Aw`WyP)i`<80?s{+j9KCCu zdE*w2n{v{6r$_SgFP55hE^a23t~<`6@AAFBI$q@6^3?nD)dRKO(FSN6+a73JQ%2iR zgezJn}8&~sN<*X~Dc}mum6Q3H%yP$+R9ax^I6Y1E3efN=WSBgJY z*7L6Wqq&&<=Cnk`Mfw}Xr9-DBPHfcci0aGhRbSTECH-(m(emJHUiq?>#5X;rCF)ku zSurARzj9ilZ8?1=uY8-)?GkapA3u2KepFH5ovpu5O$@n;Y~Ce~Ey-0DkIZzxUX|_j z*)&YN%E4zB(F`=oM7;1%?#p?)gxsHj zz6}rixSveLM2YC~SM_z72z=0199mz^Z_xfDZ$RT|k(IqlsFU~5f|g~Sg>u)gJ(HJt zBL-b3&<3bc)S=^ynOaetIyA>Cd0!U`fwdMqH!U&s0NcFi%zLF>q|RlY3+EW)I4264 zicfRj@@DqX9vTI=*t)5xvd;jdI>@$R{+ybh1%ieIW_Maz$>CHK6#*`FKD zijHok%Wa!wMGw_w3-0r77jJdh=Tr+>T}#pEV+Hi`Qo7$uJ?8vvuR)-M0)ajwPp8-#wR{he#Kl- zU*mF6(~h(7R1I;k^i$py|Bd*lMa!2U+R1(Hnhg}~KKjsmcV~SU`-dDq5)Xc=*Qa4` zmitpL?J9N+__XkzmUXO{c;71d_39Ja`)uvDie4a=x6JmNK6kd|SJrxSi>uKq9})$n zW8UuM{T5epbWZT9Ipk2Tz%E@*d|vlF|FfrS_+*31KRVjB(5^+#bPpPxXF1Vs5!#I+ z>{mPJMEhK%%h*={AQ2dsu$I~5f_jws#Vp@N1V%oY<4&$Dnm1bI{ash?e+4lSdzbBr zmDk@Pe%ZLg>-llaio2*EjKMMsf3K%_;FD^KKa5daPWRp75I9aJ|4pVOwmA7;D5{#V8p{7yvo>L(>Z=*Y0CONRB)O${gMz9v5 zZLV00M1#vk=u}^kv1IP&Zj-x9_)kv>3zT+~{04IH+Dwu^UGH!A(Y!Cc@^S}dv^nYr z(Q+s8DrelwyMO5&E^o(OMB9kQM=lk~I$I0pMJ^L3UYnNK@`moI*yru>19KllV7`NB z#~I(Pp%~kvqw*`1oXZruY_6_{eMg9xm}WujptF6&=I z%z3nD;pt0ySo<^dDww9u0--re-04An(Z6Q7d;F5B{@Ryq3!)!0Jw4*I`f|CO)1j(= z?HsvI26#t=+3|)VL-3iCpVcVq=jYf5@Ehs;lED6P`CCpNd{QTQt8ntMI>1b{9hqO_Qfg(GE?yaYWk)eDVrDZDq2J z<6utBypuO@ndHE+-El@#sUiMTt9N0C`+Eqaj&j&Lg&+d=NWof&wlW!u6SStS-NdpB z-77YHSy=niF#;tYHZU*p+!y-me%r4$H0Ukf{rjoHOP{J@`BfX4f6}VSQ{%fTO`H4* zayZMcP*2bq1AUY%$nD~uEb^4&`BAUY%d0~F*L93PaZX+&Pwp*3PuNGt8abNX zHZelG*e|HlN{&&*AyC@&ujEDAmg2c3%zZH5K~9iED??6Y#Uvq*=Tt`9m>x*|9jOyn z-^lEqWJ38IXXC(J@zA?XR20Sd%4MXd~0~AHgFJ^fh z*1|Y%>XSTX^h!d892^ZGd$oKCY1rP5zKj0DWwJT?v7Ke`9jb++K3~^f0{NBI7U~T- zv~oBLfiw^;=a!bY7dx-3;oeraxoGm1-nk_&9wuoko&kW*VWN3Mbv zG_z{-b^&MQi{36uPvq<5S65aYAwGR_dEwmAGhI1*UUXWTT059}@bKR%;~ zMjYD3a)G1)*^TuVr5{_RzZ0 z_6Wo)>v<5Lgbj^wAYS2{QKKJCgK0BI^p{Th5L_5yby>;E2 zH#PKc{9DL*YNH?aD~j61+C%koZ4WIiOKyCObagtvj_VI;=r@*MtYcef1ElRZo$iRa zhx5+$-)|VUyadt6q18VG-r?9qa-hGZYnS_h(T`=pcsim;yDEyZha);2QRF2G!MY*@ z(@saAcDWWI7%g`G<&}P!4hh{56uB&zoXy$5e@#upcfUy z%^EL^s5li!ux)j?d{wUYbV|Jn9H8{qDO zHVvai9XZ*@jMf8@+Bdx@>6>U5%=!$KnDu@LpED6{>XSXpe&P1pr6GqtkLc*CVyhnMI~?cm~Q+;N(h42eGVn!EM-G_eq< zT|~=S=anyo9=SrF|G}O}Hs>;VAID(2ZX@_kuoj{-dpos-zGNd3yc$ zQ7o13*lT92mYaPBPgv zAhug}##)Fbx$TjYSN2jY(PiD|O@#X=1lKY#k;XyD08(})-qFLc-^epd8}=4WM?Mw$ zR?e4T=G6;kAZ=Y~3&vFB!pLCCS`LoS^tIOB*y9rH0d!yl(PJ1^i56$(Y&6VX#s4Mdx zS0l8&iI!^N{>rgCe1r?l?lQ88ZFpp!eopLDqAA7e8Pat$&7T0;GNjG5>938zT1E>b2Y$WGK1$TNO#X^b`f?pW)(Ej_ z%JR_8Ju_YG&x|0njiBDjycxg3UTgG5Baz*sP(NHQdXJ~Zl7H$^ap+Mxv()woWR}9{ zq`*Q@pRe0$ubNF@3FvQ3WntWw(XOVU?PO?Z>6r$3Mi9X*IZopm*NT$w?{+W0f47S{ zHSXSv`L*IkFmFb?$cfP|(f(%yabo+fmczCn^Bbh6ug5hF%jVi&CWcw!OM z?v{@~P8$IXy<|$}V1$c9er0>5JWp{?N3rJp*W6(pDykJJ92wBg#dBrycC9P+SM)K` z5&bk*1`&oQuO!CcxT>B3fwiyjO#^A$G>oNi9Kz&DxZ6HYT}73%4)l$uY`IFBQ zbNiNYQ4Z7<%48@|+%=r&Czc{zfgc-BB&0n9X(UI#G6=0JLjy+x^kWl!G=hECj_pVz zh(JzE*`~*m2YapdUG80`rzMp=G)IIrcTiV|)(As~5ZosWS3$%Z^@TVqvco-caVdf0 z5?V8pClZ~Qzjk=_q8Of(XU3UtW#n4z)OF@aBakbsW#kLU0X@~GfigMH{cT*aIRBVi zyXtWl&jmm^P(J1=7~Ab=V7TJ?nq z6XNZUB3*Ly`Hb>3`Do42*{aumSmC3{2XTECCD&Fo1h!=?D9^P_S+GbBB{g9Pft;|9 znU=H#wVpB|w6~)t8aZN0Yo;yKZgA#~+9o~G|A;U)K!l;8P;$gEIze4kjBJWD8Ja;? z@MReGL0#q^EYC_Aw%@BWy^??8?KTz-Y9sQLdb4b@y zas*=u^dj5G2$6{^9j|z9$#9iaEfZ}l4DDZ(E7r5w^!2besDoJjx8}lb7dq9V?L)wIIV@SlAKZaw5@fe zpTcakZksVkgUZ}4m32R-nzvm3n)lyM75wOuPI8wt6T{bR+Nk0=^;(Rm+&cYDpB+Sd zur+l}#u@79uUIbLcXch@F8ZoA5xwAOplQ*aBJYEC z>5U1`2p4Hruq1#`9?mlebe%P=+AbEswG1NIKaB6nw{P+!#D4cIPS8BHiSq&Ns@Ps+ zDbO@Vq5utr;C_dkfR8D?#w_h3LTg$_a4i$j_^DbWf6%h1LUCWCw+lFm@^zj2ux4q* zG1^Un9NH^cZ>ByY&|kThk%M&gpFY|C-wkd};|e*!C{dgRZGSb~X7Uov2_kf_Wq-5e zQ1&R&Vp>1Xh)}xX-f1$Ke~S#-YRHM!F4C}V&Rn6i#$!mkWCxZ8?*tK=1|fz#voZ8W zrv~2bV;=Q!T*6W2#w{9Y%gCHN!~bDd5l=}|J||N82M0fhXT_~IFIbv&UjjvIs{?eXS{4+{UU zTz&V(Cm*%AYEdRXF|<(IpieiQ4fOkl>`~q8<^R&>EJXv`&001iabS1R*UKq-M8o`I za$f_J4`N1!zF>{#sd1ZP3HMYgW2`K`pEH6Y4wnfncViFT?H@XD$R+N!RGgWh72~8I zQ+9kK6Uou*x}UtaC+=~-eX)~2V*B(2?_r2qFxn-1pqB(C$84GNQpZ^w`rTVKWv6@X z`8JJKd#5M1|EO1}BRzRW?l@AE{h;Ki5%~pq;S1hbc}>NepS7~MA`b7K??iV#k{d@3t>-~& z6h=;%!*stwPK;k&95>g=uikF8GSus;s@~SIV}0VJ^GKbmQ@L866D>0$9KW`0eqz&H zeLWrV{A4FuEzhonXltIqk^_0?F;UBrxu0X72+DEh!S@Rvs*~gPc<)iAUFM28xoMcq zp*3G(afO`N{rvGaZg)r2U*%PaX1{YT;WURi!!maBb9@d^>>afl`k z*+Z?TZ6EE7S(uq^ODc~wJqjbk+^C5XR4%_ud#F4;;?7Im@29-yJ$>_F|JJAT6U`*Q zEB4vEpL{AmvHuB2ey>k*AOfYuTDIiOlZ--Q;91iXrSH@`P;9R>Eur^h2*>*^o|`J0 z`h-9^5KTReBOf8mb1mM%{>az$)ApX+re53HQ{Bzwh6%I*%7OC9n0)kTVg5%o-TUv= ze#JeNthRlo9-|O##}f2#v?gEIxoFo@>kEe!HgumG{iwwi(O`NujhFrm7cN-VICLO3 z!5R%N>_0t0-^6uUkSq6{H1Sw|)p%pI(7tx>g$8UIFXNT*21KCN9p~fC@zBxk=X=9H zc+~QCv@?2-LKI4bD-i-C8OniLxBUtwMD5x%&=aZFdCxh~$}J;ttc7UytC;F3*e6h0 z+eW7qiq>T}M!H^TXfQpS#(m4m`%5-1c4y4# z?B70SMj|vgeT>4sBFEZC?r>kJ;CpL7A7F7s8m%qIsB^E1#HnoJ6(Z0ch_G$mVcR+W zjqRRww>An}TxA}kD3f`!L2a*jem%ecV;wEYQQG$PHb&-kW9|0(;{mVV(MOccxfYEq zSc|XgK3Jl8p0|HPj(FKy2Ia63f7!Ea8%&q)Z zM!Zz`R6D(X7d;Lm1DAE~^KS^M#Vu(B^F=yC2{UsTPD!q`tTbBmw4FASs`W;QS*r#Y zUUYuN(04;7SeZWVS%a2kp0rJjeo(t%uqM^VUW@*N((-jJIgW!k-r=Z*9BPS~H{y!t zajDE&Fx={z+TK()cWmD2y3ti}V=d)Ad!E%X7&&Bq=r6wiusz(+PD*>gh~uOGP+5-# z$$*zMYcbEesK#{fkLw4^)wpI)r(hrCCmH!}8~Qo-ZPGiJsc+l%(2}It9Og@~e~=v5 z&oKf}nKC`f+k$>&+XMS{QNL5Os@Q8YMh2**XK{)w7}ru{=;vt&rpE~SYxO~pT+e

n1v3H?UW+rCoe0 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%0D`0od)eBz;{DuCrWR7gA$n#HloPtma;H0oY}A$r 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 F{{WKJRBr$P diff --git a/resources/profiles/Creality/creality_ender3s1plus_buildplate_model.stl b/resources/profiles/Creality/creality_ender3s1plus_buildplate_model.stl index 24d0b4f914949ba331fc43e86a0f6932223d7877..f2baabf4ba762c1ecb5291c13e3570fcb0155fcd 100644 GIT binary patch literal 437984 zcmb?^dz_8c{{JeM%H1$GW4e%#3ORC${j9OK%8YBMBsr*rQn{yGwj?0M>P z!o1+HCzBMS)T3H^p3r4_o-iXRwC?5uAc2xc#@AvrAzIDSXd#d*YGuiv|C<+lyEM(`9nm%-Ub{K{Q$sBW?(}s<<%bex_~nKVriM11+V0C? zYnOg0Un{A^phJ@nxEor0;g&`-Ev}H0FY@w&2UlvXS8Vfk?RNW|kOi6E@y4m4X4Q99 zz*W2)6J0G+So5m&?3TJ VtulH( zx^e{lqNvB!()9H67wZlS%*mhTYprNpLg=xE4ND$Ms1o5a`SJD#>WBI@)z5`kf8E5u ztfw@hq<#I+>MI(SP%SPK+D6<}ZA4)8f@$7>;g@gWTJh~7z4DUhRyi3gSooSR$Fdvh zmZ-k%m+84KkNx!qH@M+3Nm!(@?q+9{rqa)4yR4Ypt2rF!a{Q6d!F%{>x9l z2X239nfu6jqvi4&^Mk>`$)OEPP86@cDKGfJ^kiktDn-|i%L~@%pq~rTrTvS6x=+63 zCe|9QqEBvcWMlmc)8X}(Z?~JoT21fFjviduNJZ^<#I3cS?)1nr^WFU?$5~w6v}r-G`7OzzgDV#mA&2E9 zzv;SqB|JuHE$H!zp6eJB-_NNQM;}v*bx7!`Nh#j)qs3e1eBVPN?^Tr??(>G*zrs|!lbepTDo&qE1S%gT|6DHlc<;cGzB zFD(bw^$``L2_Xla*Gc|%w)m&IQ)P$ua)Y-$o2(E*pjX%&7$!mqG;URw1M;LE}0e^Qq#M_?`TzKRjV zGh4CX(-T1uoXPXQ&kc6mul0kHBbpJ~OPCX)&KzQyy*-AK_n*iO?)*~Iz;>z3mK9>xxUtT` zx=p-q^E%1acjX5U-k2QP)#OeWBi!cMdBO1w$a}(m^f5G0LZpE*ac%lHY+uD_K80EiQwddVaG;PIs zZs+f&$WbrN4>o&JN1uHM=Lc8cq{l>z^A-(B<2GkSJcgIgeP%VAJ!F4JXO4n$zaf>{`6I6C*KY&L;hp}*Pl5A2<2H5-9k z^?oKNc>R3M`>M2@V9uF}8heJs!)wlRZ4P0HT@n;Jca!nkxFE>Pmeb!S-dsF&v)PYj`B8LrstbZ1tL_B z|H2-&g<~I%cDnY^jhD)XH{I-wZLuJ@?t;cX_3cnbpC*LO6=mU+i=tmq88b^8p?}f5 zb1g)dr@<1Mb~T!30Ob+<3n9?+xux<5s|OP6L| zop8{K?U>`*G)Q)~;`yyE^fM%yVX>D`89h|jX9U+GX|WbR*K;*h+n=Wq7Cnw@5t_>y zF{9aLfHt4}vJN3M`tzh+Fk z@iaJo@N>2Y)1gR>(Z@s_LNJ%3tiCtxuIGm`|j2= zmUu+v5e{Psb4WA{B3`5GH(aE+im2YDJ%-AEjnMNQM8w&{L%+g&F5a(*4*i8av>?_( zw63fFYa_6hZF7SOdzfWlc7|vn-k$Sj(aGy3dDqq&VR^~Go%4gPiVT}h6}#9UnSzc$ z9A&gdjpxT}mry)|WW7^_<1%U2poOR!d^V68>E_+~OR5#GFz#Z+5Mtl=cNM?$aGH1U zc$OU7A~*O>H=VuG_}Z?oE~BP}$ou==;sqH=UW2E4Sn&#NgDnZsx!Ts}YSOwHno~YUWPbn&gGH zWLc2`vq@VH%-c~~^d&?K(d_ZD&Rdh}db5(c$-`+4Li3I_@Ymi@4&>01!|ETH2icxj zt!ryH^7qMpR)%YDTu!a(L@=vm8rrY$7cLV5b6-Z#zhT*OV7=H{21Oqo8PF?DKiBcZ zAR>`MH!-&QVV)D>(`ADKTgIh%iQi|*mS4<|c_K=VUTJfMwl!;u8EURpFZAg(lnt7= z%RTCXGTux5(MQXX;b#E4TpAnCwB*!l^;m?6QkB(KjkP31qkVJTh3m)1*&`!@_Gs5P zA(Z-!_G8^POJmy7IZ7E z7LJ)WM(y}4oTbp?Ik#o>mI1mVIp~jRV3fgjk>3ABa$5^R^nYq!@ze*BU|~+M`@hR0uq7Ko5&3l4jvLazmV{V!>m2v1v9;a7?~V03WG;->dOS5mHt#Td zVYFytYUt=K8IkO63!?=KQ$vNbJ4e(E_LD8et@EmT?$rKre1rMHJ^l5n%E4wi!OfZ4 znznW~zEj=pHSAS)clbd$zHd(O;7q;7jtFc?h~W>^mhDH?aNOtmNTj~uu7%NMpQVN_ zTOW)dx5}^TzF+)$|7Gr|9it^uM;ar4&k6p}ocCDz4j<_>{P95Go&1Rs+p=hY7KAwU z>E@!L2dla5il$gJaGlAPqgkE9Mc36oTRh-5do>ERU?YqTDPEbCBAm;M zzw&TJ5Njb?h#uEGdc%l|YkIeRdz+Q}U?0T3Y16=UA8a@6q4~kq0lfxfBXE@qYav>Q zbshH>e_qhYt95ghL`$_hl@mOpR)J{`%I2!aHP03wxNf_9>hc3z#%=Ze3p_BSs#v@rViV3JVv59lka(iTQ(KU(kh8Y*EA+d>-sf6WfA zo26H7g-Bb|*4cC{$!mQoQ(}Bg{|t9-1J~q)*!zq@k9+tC`wBEzlc8+{-nJ!Zde&N!E z(R#|SBJWYQR2c$mQA>pAeicRPhnMVfZrS#gJ3LG6D5@1&J}rVH19EHA*!fGo@73)G z1tXusc?rT9#b zvt`Vp{u-fkM$D-xPaM-=p)>2l^SnDx_mn6hN^aX+apmW4aa>v1z2S;%E*s2p`u3>p z-8DVSqJixmxM4o*%23-ZJ>-Kx<1c0to&de0JyZ@Cjn73jojRj(qLW(cT^Y0{w&b%^ z_8%J6V%fdVRoM)};!ud>!$D{FL-oAguk?^8Axe(@QHV=cUhaHWlH@Ij+H*BT+X%x~ z*c*05UX*v2J{Xc4FnzET5T)2RD@7m;MDyIa zJPi|Zv>#vSb4X=d4#QQ3zn)0mPPL326cc;DmG14^-!E{_)%K|u)F_>RDM{pWGE9Xy z!?s9oil(2>A#GEidKUT;+5l}MM4eix-t59{fq!i5Cea&^6XdWw4fb7Zm+0*)v2$uY zvLU~wY}rHUO8>B>3lh?%fwk1Ut&$N3xx!i%d5KR$(yBc7BGw!CLD~z^eX!vE zB)RR%Tiu0Mb@fmuKM&82URX=#RH#E+^10DpqI$O{qRvwvw#r508Yr#ncx7@Q=8AXw z^r)tHWt2boc2b$;BT4e7YG;am{kf+VcacLY<0xY*-mmm3Fw)RvTHp1KHj=Nlc&|9w z$?{NIq=CKJMqq!&T8OrE<=cZLG@g$f5?6QCyI*D{l{kf?zYOeax;VHqkMb+wHQTl* zxbZ^DcZJvSlEuLq>Uq()-L6GL^&+!7iDw&7>lQ+yZ84|b{!X^P?o)o(5_N?LY{{m9 z`auM?#0VbMVk224qXFqk|M94%y`A{2NV_=V5H9Q?SL)YTmQfK`8bKbe_c`@RNiNfK z%iCk)C+eNc+y~hgbldb_`lDLhJE_dI5Up$K|Ay5V&O5G=2=&K;JLq(qE_2^hXJZ!i zlV|SR?kxMy+fK9Ui-Qkkr-gR@lH;N;p^w=#u%A;bVabuUji6stRQCIGMfND?SH2v` zJC`e^p?Z{=O%RPur~XhUHBH8Wdo09V*fTpkkqDJpKk+nl93c$-qGLve&tdltwC_w~ zVyzNgrV+>dQI=tT0S*-+=F@+Hz*@^a4voQ=)`OuOb>mL0gc=B|{HSCzOqxF<&vY z(EE_9I8U^^ozUzh=sm;@{}ET*qjbBv2UD4~OOl(vu=NYk!2V%$)#&C_x$%X|o$J2p zDofs26ij_0&3_A``Hzc&(-U=h)#rtgp^rdPR+ zmBg=+A>wdHvzm!$T*Vb)TdP*?mX{}b=dB1jxU$*xKu&P?F}<>BuX4_)JJNYF{8eD` z8hhUW+eLapypnx$@z5~?yoU}|m3XEA&l(_YwU+VWcscgR8BWU5F9ZGVUL2f#na%(( z8^EY7#KpDeyAyX-b@yx^qjvVqdLpj~R=cKi1oc)q0&CfF*f!@rsH12_Jy@Nxcj}8A1Qr;|Fqr915{u&EMQRt{Cr4YCgh2Y0 z+dRO77uUJ z%)8-`jlf+QMBBO|>h$IdjZw%6a>$7C_Q3rJw2h5G+oIKMM08$~+r37n*X4AoMBdRh zwj76b4CA#)hXYGmgKAjTk^kcyh7glZ7*j*yN(j=j4^S~ z-xmj4r&IqA$7TAcpWe@yXorzVoeCRrv;1)Fra;CI7t8J)76%8bccN%7ZJ&xOM^-iR zGeDb0ix0cVJHJkM>U?{#L{5-HJ5n3j!(L+*cWDoTGB501liQo;zK;BHRwI)_@J3aL z-f%2?SIRHzH(%D29(QD>a27NhY;lESNp8ua;GueH{<~|2C$b0X1UW$tZ3N0O=}3OG zUllDAYTZU)TZpz1v)f-K`>y^hkoIs#iF!v(qn((B&dS)%&D&-~zR58*=jS@#eRjeb zXJq|vJ3UzV4@+05ADhPX=gyPO^REf4oH5zm!*k2VQ7NdgYz5!f!3%ic=`G$K&%RL(!1?0Y^xCp!so@QT?^m(aC=vG+`{ zBu7mz8?Y#Nuv(g0lc`cfHm_W}Mp~@}%^_hJ#nfp>x?rL95-Rg^%@ral@+GQ;XkDLa zAOdS~8E0NPwzs<3aI$`kE;p;*ImQ+4pKAp2%VnyCXdwn}%L^3OOp{YS&XVgcSP-l= zl=8L=@9j(H2iMF?@^2G3*KmID(8Kz<5brK42((|BCR_Eh5%1Jo;J?vN5eLymvswp9 zA$ViiFSF+xk3sEn7S`zI&Jm0Zm}?2~#oqC9TE-JjXvw|+W&k+qV>T#6wZW5R=WnVx z%c|}RV6EI4i-SMBL@Rf~vk^*H#jLB5zZ+epskio6Km88o#`LD8V4I^H$U8r$EYn6{ ztVINBLFJ+~hREF3_c`t_dmW64C=-r8OoRRntJ5Mz4zz#A{fYj#LcUNr0&AfbggAQ9 zF!^iMD$ciuY_4$RL=H7KhLSz1!CSvD!cpzF_cfO9_RW%g&KU1QPel2+b=^Nu?_8$6 ze>@XVIRa~;ZPfY1`^U*&yLo{FbDnchTJ)=U$&DPyJKCc{Is7rC_cIGrj(Bk>eZb!$ zZM)|BX#OQgygI7oVUR%t)7JU@;Ryhqi!$NJXZG2^n#?0?q#>zx5rmJ#X zF5kS)j;gDka-UjN#qIp~IPdkN`O#TPsiE0VWklNi zkRQFVRch$M#+@TMyY%za$0#x&V&1Fy(edq4LpN;-S+x*t>#F+n9N&VeRj*NFhPGy% ztFMfeHCIEwy3Fn2c6TSvndl*n0ePB}wXXytlk#=>!<9kBRb>dQWy^78$~1393)>WOAA^9BSX=si~SiSbUo$V8mdSdY@Pm&|1;?q$y;%ip3|-jr$j zt{{@uj500`*YS;4Y;JMS<&d8ySz+ccaDwl)a zqG1|X3(-Q%I`)I}t^xrjv{(tz?3=&9I)XJjmj z^=2Uw-kBncmsc-G1KY(MrE*=N9F_YOQb(?){8hqRe59oxs}=<#mQUVH3AudEz_wYa6g2Q+eGq~`vNnFW>k zxy~{kDw*q^+w-K`{l*8pce>?AJMO0&-a1DXcgc^|*`5*_pOX>kcXxht*VieblAmbq z?DpyE9!Qz)rY;#{A;u`gRSNM$Zia;xVr1Kq&W?YNaJF?BBe52?i}YA>`Zp}Q4pBEW zmC`I;2-GNQnttQIu%uYRHo$iQDn}pEEz*mj%{Bv=CE{k9I%4;2w9^ zWn(;){L>wI(StKnLPP7t>k4MVv7D2vX7cvZ*i2ZDQ8j;m*6sAilkN|9J>Zcy6eOgE zmOmSe?C+&4cq}E9|6nkJmbER2Tw$$uWqx$hM=7DFj>X%&&)@T-C3{jrdmiZ=!CHv6 zb+x$abHN{O)}ubg`L&DZ1^3V83}EUV*SLux{k9XX%A0bVh`sZJ+C@%~L)5eo%YV4M zxLN&e#Y6L^dK>rVMaSo)gkBnu5kbV@LwV8dYg0ml50T{eZ0qX0bRz65T0BN#Eu?27 z(AyD#-j3+X`v=xSw5?qnUs0o|X&X^BXhAml=Tl`{1Msupvs`lXy|-_ zN=9;Om+9%}`bqLY9!oIYoU32Qe&?t@ZL#VJsZ=m_|paJLky@(LpQmlPRC3Bi0BSN+GISD$q#$_4} zRNFC1<`-S7OuOX}grYy~yI4!voV>)ppFz{pG<5y)2$mc72N#Hove^R8~>?_pD}PG!Y`XXow24fACrFO9QJoUSYcO3u*z7bLw3H&SVV6k0r5M z%JZYV5>hEbX_Wazzxpe#%vpm%b%L&L*}06rLXfVscI{e-Hd1I$G+ddpN;cX?P%R~k z@+JG;2b7Nx71Yl2-oxPHD z#c{<(sN5&Yvr(1R#B7fCw-H#2(3~w-j=);zOXU$|yBSutM45%&l`|u?o=q6O=oSy- zOXy?f%tT!OP^+1&lMMeXr`C^-SKR-Jf^BnSLE9_&d{KFX{zY4mYoSlG6xvHr4#T_l zD@Iq2pmw>IDaT2!a)x=)ckb6&2HIbZYEhnxG7T*c@{1f+N<-xa#%j3AS!teVWtLbA z(L!95Q(bO6{IWZ7W>@Ro3_Nd+?>g8BtW`BBC%WoR%G>QXJ8a3(M^QhhHyfemI8j~$ zKusgs*Qzx-qnEJvq1MYIILcrxQ?4ijz;=-ykL@gn_C(B`F~`MhnGrsBlBjcAROTL~ z=<*rph>f`HhXv6MQ}lX?t+z@%(I3N^2KHcE@}KT3brQyZ;og2O(?dJgP0uMiUsT@a z74>tSv1&QWXRii9{<`mOp4aHI;?mz;YWi3bWz4?hl_R(owM4Uwa`PyZ9AlUNyv(vO zkJ5CwtyxJeBfKZbTvbRz(s^p_R~c}YH^ZWBTM+ba)dHKxxFV##Mi%8YcC`W(%Q)1^ zRFv1qZ5r5X@%<09tlxHwQao2$KYC2m-c#z=)t*k+cm&s?=enE`Yu%?MmsiV)&a16= zEs%HW=bUR%P5ujmrAk4&<++L>BwJ0-wrn4(*n&n5-7e>!IJ4mP>0fnA0leXc`v$0W z3qffZbG7tW9$GbQ#M zjEOc4wL%}@a{zpziTGvSX;q%fT8@ekSc}TolG>BrQq^lR|0Sna$1IC0`+Ma?+dKNXEeG~Nj6P_8A#fbTtO#vh5e+?l;Hhgy-5e-6yEt?|(Te4|f)@D(3*;&2bs&=ztGnTY}6-0-w*DLon0)IjMV85{uXeqWJ zS?#m=^D7yh)w)=02o(vfM{TrqXSVWD-(-=ZPa+mU7bma5#xtdWs+ zbxWo8=33HO)xAOdj>%v357av%Pzyq=Ua-4(M7>nm zc}h1A?{UH#7xB&_JGP^=7zfd^EQhuUa$?H#ZjPB#GlKpN%chI+qD%j!^LEVP$wMoi zLE`KOYav>Q-`1D9mmT@s`BZ(QO5HjXee86K|9&0Hf$~{gL4H+!MqkzkBldlk=1$2{ z&y?-EErs~wnRRYXx1XH7^?FI9u5Rv8H!Nrlk=ycI=`75S29%?i$S^4MpW+_J8p)gg z%(QHdcE&ragcx=B-|mxl|LhFe*j@DxGkzdf$SreaY_6#bG3f}$D7pim%NemAr4bn6 zuoj}32K^hB7^x{<@h(|>yz*=N)bRE#F4HJ#OKzy>+=tgP(65kQ<+{3dbB=%VkYW_- z%}|KwZnP?o`mt}iZL^_`^HU4G zQ;qS1%Y?>zFLR2ofd5_wz zg=m|r-$%@g%AaU;Aj9kb=I6noz5N^hyx_9uq9Z%`Z;z;cboRnpviSSki;tDw>c6$c zCw}o=8G2*L^-}$}Xw@Fexbd>hEh2EoGtW7=mxAZFaqq?Es&#RLl8(>o%*#YIA$D(1 zDEWL+MLP`?KlIzgdgjfM2wSpgj2)g(68NWXi^_|i(B&y!{gReN715~mxS@`mAcy5? zaJz`E9MN)M{gU3>%X3mW!bDD6a*ColXC$6hU%R__>(EsBQARhlw`KY{`!4mz%6)g^ zg`9ut*v{<^+}W^X>}s7k+maJk^S0}AuV|af?J=mpSP%<|n}~_py39M{x~BfG-XFx(Z0=oV zPKEUqMQhE9w7_S4@Qj~YXBfTLsaNQDe2?OlJCc@H>rh&@zor52 z55`u6=odsFx9ST=%_hq$-md0GKR@i>&v52-KO*~Q7}#odA4ECGQhLTK1X_*cz@rmN2=>nK~w&05PE0>jc^&>rUnf|b3SbBzZ0qM znHV)$uD_$I+wYIP{`-TEsT;rPZUH(^%`(|?JoEiS^3vSjiW|3h$)PvE7=g7gN(gc2 zu~Salr|ywxATvt=bUGHXG!F@<>CgR zgr?~}?x7#LoU+onbi^4fJEAC&b~&56d?;{8}8YvBE)qhxT3^EO{f<_jZ&| zMT(W(W%tRS6n{M>Sz;|j+mT`YiaX_oZP~@$I-GAIuok`T*r$-ZM@I&>d)T{hZ9#C- zZ2#-95h|Zndu$X3@99_&yy-Sw=GydcSbaGwAvAcVws}w_gm(MiILz?6?@J6#%OV

Jx+%IzKfx5+u@MBY&*6%)Phog41h z;naMTz75zgG~gS`EHk`aUpEZ(|256G;O`?EhMM1^y;6uPe*WHhsc46@McEu{RiEB4 z^z(4-uQnq4<2Rk@3m@>FZF?$^_E1iAhDi2(ciyO+=;=QwzZNR;86P8w`7azhl};L^ zUDDP|^bQ~HmI{JED{uElHOd+27alXH%&}b~ASQZ7!ct2nTaI`dxU0+bY#PT7 zT_IPT*V`RbP2cFi{TZ!BZ!fFwtN7V~`szYTl6-YYFF(^@jncjfb3$c)uCX+Ye$8Hg_Xj`Vl zc`eRmH@^E^l;V}<>a%ql-R~Y0^7YnP@|`*KeP{g(qHP4eS7hELvfpbr&*}Zz&+E;1 zuL{+W@>ZKh>$}u_hU&I@;sogl(e%i8S)*`HsoBcAi`1Y{pY z-ccqY{`_sE47Q!?E=yPMhJ${P6XZ~c=-7Vp`^ z(akmiHCod9)ySc`3+ep%Zr{Tf$#AYs1FeP}sD=b1})o?$egJ8PQXqE~K^o)C$d z4ZMr*zQwm7_Yblfmq~KFe@y<@kM5auL&_nTlX$cc6(OiyL~xm&n}|qR25J%4uh6H3 z7*gXZZ(DZ2=L-3KCi%JO>Q%bW^K;^mY3Law<{y}s+_OdJB{lXnRsEbs0mfk_gJ^!P z5tmKuBNr9d_qoDRxT4WnbG7g347v677Cr*UT10cXas>TS5n3ZE`Z^b_4w-pB?rfC$ zGHX4N^d#Zw^yE;-{g*^oS{nPP+@)r6Xk=02h!E3ioN~6@GQ`IsqR%4>)wdZa>uc&G zsHKA|{hzyT#`ZsWUxBQyyF%!L{fYMq`=fAbzwr;yOO=f7omK zoBwmtNt^$k`d_A{#n~@349(h<7TWmk&oNDt)~yWL|An$*@*ng*ll5sYA+G2zERlDf zL69718zBmIwQ+jCm*{o=PnNab{@DD4&}y|BMK=wRO#Edqzn@Fh&wcIAIa&~;zD?^? zTqYXs^98}3GxT#SL-x$vpwyCs`=jn35AVX=X zy4s`l?{OjyC%Q|5Wjp*43*oU1(8H;W+}a3NHViepg61-%Dzo5ujp-lsT!{C2_mSV9 z*3k!PaG7mxdK4nKuTfi!pfW$#eXvjaHqKq2Cwlkq&Qj|o#!{#^`|FM$=45!gUuof6 z5c@gPV6M2&3xNo(#hh?0eokn08{)As&XoG~yr!G7tZ!!`SNJVT(ys1JRALF42J45p zrRQoqzwavfn4?D=`i1)kX2twmk7^Hpz0G<0(EYyT$O)I}PABF{-|tiz0&8)({H^fBiawT(nnB?+MIcL3{5Qw0kb{so9=8yU*{= z%JfW0G=7*x{iBW5uFcirm!ET9n>XIq)w&B3LYJvsE0U1Qq#x9q5QyMk5J6>ruC+_H z)_-AZu7*8o*3S(>dOs>I!dVEcweMhM2<*@3V@OYkYrbpkjO&%?&2ze`+r^CJ%sa^u zAAOAP;`qVVWc#x38kB5K75Za3bVAWe{4FdRXxO#^- zdUbY6XjT&4u~qBpz0QOh-xjYZ9_HV(&GSs0f8yFA>DELa(#e-q{Z&~@KlEHCHuhKB zj5P>}azkhIB)Glim z%Q_?bUkIwjEosDmmR%|5*bo;&;n@3}iSU){>rAT=~_Zv4%7h`?G%TaBEJE^+1E zecg9^PV}%A`m2q&7;dw|Ur-MFrm4!-$k>-?q~@}YqLtlRhcuA3@ha-Q_zT*Z?azM2 zDB7DaH#6hy&)AX>c#{s=0KE@&Xd}>Hu@<6*xH)x*y!-Q04)N9}zhNlwoxc<3_X&#U zYa0h+W$M8;4U9PPH2B^hA^x*TK5i#XbD<>iv^j98%nUg8g7ir_?j$jEF&$set><#M)-pJ{|QUOuevGX`v##t`8pdg zdW#>O3nn!Pz4cxBT8OsCT9gpSTJ!}W?mvChx!}Pa&ZCX=t|i)>X7`j+pX}2xRB*kf zZSDM6I^or9(gLrf>&Q?irK0w?t@PE6VMV<9r{zRLTtvtH{n(w2J0Gq6lv^1l%o5z|tf zUs;l)9H<3La`k4|yy)B}Iv->^Q=UN2XR5XE@;L+MK4^nVxst5+_;!(=%@t>NG){~i zZt@b&ef9V;TJ7T;SNk|Q_vhb$ZM9C%j-LO0lD{^Mw1xO}=P@Vc!<|lYI8!3;C=->r z-&8#3Btgp>^^3U%!IA>GLsTXP&>G4`PJ@*Ne{l{L}=9L1XN2lKOER1^8 z{<(XL`~IVmY&15@I)}XOW_>0Zcbcdy#MGnTJ40^R=?rOS$6b^bwP16F64LEbs0CW_ z(%x<`VSfdZYatqCQg_{VZS6+>KH2vxgFE1o#9^` zc6#?Q=VVCl7`3sdF$JBQ;K~H<_ArO#xk3q%Lz}CGhrV~3uiN1S@36gu`ZkY)c0Yfu z*KQ~6^kL_lEZf^r4n&h2Cck2Tq8kb3LOhd2lB7%R3uZ8G} z&&d!1YjF?OG%7kLL%(1xL<@mCyy(?jCNy#@1nwep@1$CY;4*QmPI=yYB(Unx$-w|3*OK7bjA`r^>zW1Y7q)m7i}>gMr|0?{ygH-(WYej0W`X>(&u_0#ARK>diT9)8MsGLYvh=LcnMc zJ3&RY*fXeXMjS#Mo3JO4^ISMTN%Oil=;oocyn0G#Dt~$ny-7fFtm#@O&~|H@clXa(^j9OS>(O$x-9>MbYlb{s~h>qonTxf!*2D{Lz^?p?<(+;tIK~9D%jCtb3H< zE9{xkvM}=Aro_ZDf=1+a&FgCBT5w^{5Hlu-M4>JO&o5r9eAzr-gsMEIo zPUnYTK=xN1dyl-Qn!+nibmtr&=hJjreI+qW9aa-Q2=SnI76>&zVKh z0aZ!zHj#BVFOK$kM3?Od$B~R^aG5lU913x+DABv1ZD04TkGfhku-z|LEQ)^l1lxQ^ zVFT~QFZ;NOeU)Ekb| za3Hnp?BElLDY9sLE9bglnR1r0^U=|b{9h1lBjQIj-f@c`;V>^LKMqpw#E}}&>{S}Y zzc7Nb8X840tFg~a@JLTtF_#IAIg0wiQAz`O$IM&22SO3J@fz)x zdPZ-heqYtGiX<94JSR#gqJx7Ec~t&c-S>)Ro=5#Pf@*O~8UYsc*n-3rTaC&#S1ET* z@a}Cs$0e@h_{30JYx0s(@AMLNo_c9&Xz|t`VrAxv>e64>`la=h#E^bpQGJIX=3`oN zU7rw09cv-lzSkMYRJ?x|@8uOj$sv^-4pBnMxlC)8s0ACrzr@!QC z2-Gg2cm9$Xx~*qw+4uEucd7dHyy#=|Q$p+1_a<;h33r-Q1_1j}C?QIYX!RAPYUct+ zt4;Mi481{}*^biJx!AAR-`E!PZ&;fBK8fyXdboSGPF`MZv&)rTa8<{i`VSbZbc zoUOI?yv#|^QcJ$d5quiAyyVx++ZK)yuxGdNC&$3KuGW|PLwwxI1JxagRf@tNkLu$w~)pDJ& z-(*VED57n|jA7@=@3+40eD=0Y!<@y)u;@|0;6Ho!b<&Z!>U=ZJ&q}@RPk$Bc|0ZR9 z@evMxY2NnBV3+%KE!@ZD_UT{R|1j+)r_PKPHKe{0Ph<5(MVo^!eRch@Kc{&Z8F0r0 z=Q}oyI-?#BuHL5GRWyQ3fH?1F4-2f%g@OdDxRwmg7ckt zv^uxcag@=gorf&-_<7Hvm-<}UG`OvJ8oa_v{FFx!4PI|W4z(wqyee59tlr9b_L40BU5TA} z)Qj3g_Rn1uq*E58pV`wF1=~KQ%j*9hN%tjRIyKXy_oLkB{kRmN@|P=g8Q+{$H@+Wk zET=!VDp0$k7plsYqovF*Dy)W_w;j_q-74ZCsy_i9@DO-XSBOu zq;Q@;J4N+Ib;20lwZnG#IcZwW=vy@O)L8?cEA&2Gb>`>Vue$uVf%pDNjo>rw^b6Keb~5zJxwTX!c57SN}JxENFhgT8I_`xk663O#Q>=>aDp8oy+%MGRGf__3$jh~zgGIj??qfp=zdmXE+w@Qk(*WilA;s#yxHOpG0_c2COItbOg4m4%r5 z>6=cCf9myi=7hA%Wr`mp6VvSiH2WG)QqTLaoe5G_R76^-Q`jn@`mQ8qdcRo_b`563rIX{2sl%tZ+fEHMMQeDa`S@vO@ET(iY4k+`O+8NZEmJ) zx}|QYV>vnrRmv-`0;~w7t&hm5r@jB|7h%wKD0tVMJ6g;#UuC^>Z!br zPi1bYVg&Uls>PA>uMre?c^u?+5iP{Wr)m}#eX92j=nKSh56xJFXTHML#{ZJCejY!n z9e%8?x-qG_Z*#QAz@4SRfvuDL=OhRJsT(lCOHiYgBhUs|3(@L3?)UBr%vr5hyo?-e zB6VKP4bDD5GNBwojRBY;b5_jrf%tg>&j(2k9jUqJ&=^%TZeA>_!G2?;rV{>gBGvRR zY{^Doty?qxF9?hV*e;^gn(q1Aok#yT>fSOgOP@aOv=8FCe zOKb}{#0T(o{cS>) zyyV8Zp<0h?$x#cHOWwP7Ua)#+okt-j$e|FC8-8&9*8T&x+UZP*aS%NpHErq2LphLl zyVn{_`8<&$1EQ(EonLV+Y8P`Y)}f(5NVM7qL-K-GkMVD5{)_AtErEot)X9AfXjxrb-(6SZ{E3d^I4o_KG2>(1B zui{{)N0}wBAgR;p9dC8|H?QN3y`-nb6>@?au_K(}U3ezi3C}#INc~&ai84Iy2|xG2 zEXf7r6-FfHMn%>&CZ?SC-CjohmOXu&1hFQO&FUlWWsXdX)G-gn_`U@3($AoK< zzhW&e>-k5{kzd@6H6zZJfm!OFJ0l13PR}{o332VJ3C^Pv^x6{AP&XY1N4`{^Lm^sk zDRh^;rDrTmop@L4_(8g}1Ub}Pk?i^}tajXO$w^wOh4i>K{i{~bpV><9S60s>RPW zqUPT|D$aO5$qV1v!$ZHqOdr3)tnU82ZgcU{Qnf04x~C-vBCsX35%>GrqSr3I*lQfj zv=AsQqJ>!c)0@Tfl9RpZ{cWz0lZw2AEFbo8j*N3>Tu0G9qW`P2CC&#+ep=*@0Hj?T zab2&ef!$jgc>N~!w&cJ*f!0*ty!R5_kG|`;d5pCC2lk0RXEeR))2V;J9;9{41@EiT zo|oD4EcHE>WeKaBjdYGfywg_@E<9R?W?R;JvJl(v%Wz))>LTyi8~a$J8jfU?m(cDK z?Pdva{e!KYXSZDF%{bB5LSQXBlVP4{JoIaotzhHIHgag{6N2L|@s81lo>L5_=QcvM z8@pQsYayBte?2-=yNLEjPFIbbzMhdQE>kbEM+4j$MXPZ+eg{)AWp=7#`h`h1jq`&*x^mFs(HJ8%|oc3<|xnXEzr?gONRk~YbX!Z?maq|XVkH2?U zr&~-6$6kB*x9s562^8BY!p;AEXW*(IC(9Q9I2NdJ`~2vpQ^bkzn%%S@s(O!KuGfEl zwE2(eWp}sXx8gBon6mJYo?0C|I6W}9SGo-M%9JSK=FA1r#aq+;JKLv?oF7eoQlo5w^E;&tVTI z-$g$b;-AkB4ZK@>wES0%H4fSUy~MW11DSs~g?TSJ|2@>xqQ3U`hM{`>)6^Q@@i;HJ zVcwEJvtuLW+?;nDY!|)Krg6)b^W?bv*PJ;uvMjwL4O{ZeyuN|QLs!e)e{_^+XS6@k zR^Mqzx_a}|S9RKaMxB|!a}s!d;!J~u(f2lSUNZZ1LdRBjcG)tg+$oE^=$Wp1CTt_v zhN`c5_=}o5#SmY9lNUWQjA`Ip&D`*3uYa58BIb!i$sX037A+2r&(U1r2xoYr*r-;4 zqt0nfowT6e^pAh1+F3FP8a$Imp(NmK~%bR|9+3K~3z?RgV9PO@j4|JX& z-$@?iU|YMI_g6(2ULbU&Ihm+Z< z)ETv?hqSx_^w##mg;CPg;6tRV%k%QwKbkx!GwKa;s-Kr1{ai);^6f$T z^o`$Krdt1ZL`C$}NvCTPoj2Y}mEq2r5_6o?Cvu`kU(?YJ$3&8W|H3lzMnROv41CAL z=IVuqTLj*|XovIG#Utf`N9RXJ%}Q6hOFtE1RO{Vifw~t*Kj-%8Um9_=uTvgJGe(L{o0vPYluWn)?JVnou}@4*|6k9@tmW1(ZZ!XoA8dm>#m#nnfua$-d28v z9AfsNCINu3J;UTEh*sY>XwpIEmtO13!sjf20@%KV(r>J5cm+uUah4!Q3q_w*%az0X;@FuJbnwm(~rKJA|_?tAY}XXLOEmd(-5 zwzpTgZ-<+8aKBrBdk+uW#dw9egj!*ldfZ)F#~exR=l0@>~L9EDqCydUxv?X=6ebCsCYCZ=wCY~ zs*}rp#zAt#k5P=GFY1`l3wsepSFWvTpx!aoqSkE${(|iyJs~#zdcs+j^S*mX-71g! zr?}@?`97!F4K4Lb+Sm7Qx}|xo+0`$NMJito&$MMDuqCyA^=_j4?%9xg@!Oed=EbKs zO1%~9)twCEQ%Y!6g->|s6&5)AVf})fU`y(5RCB(>LhxA=Y8TPgIhojb7^=m(qOvWA zu}E09x>?_Bq)$!iyp+nT(#&(~oQy>S+qJoht{otqv}(Sdk#{cB`W14hZj}cF{}Nvd z(MAgL_Cp`#M`;ftp7-q^=11kN`neG8avzX&=a=|nEn6!791+vd7W`ibs>Lm7M7^oa z<)a0ieaS022jC;%WQ5Z0(vWP@q?wOk$*C5Xi9_xMng$~Hm-t$Uwsn;dS{PlezC=R0 zLi^h`hdyXg$G*ZeG*@u;!!suxO0C|-+-d}zXRv$}+eLb|92BqE=2WIRRlH0#0=)sH zZMirBnt2UFZ;ebTQIXTb6GEofX4tVr8p+jrK5&K!(S`!~?(&&+LawLJ z!(gpZ&Fh5T+so%8H!!W6g;+XQq4(>vCcBT-3DqmqWt+x~NM5v7RG)iA zUAfQaMfViy=j!`Wvqn38BK5o*`(;@)u-%UP>x2dsFjrT0TIq}_sp@rpElc7r==rD- zbvogWl}^UuYToOOZ3NOlwEBjEyUl5TOyBE_(sG%6iP74xDnno`E>pizZ#BMNUHx+LO-nm>}@{CF=s`f=~epVGS=cUMKwm~2v->bYjIi2 zfl(ACL>gSyh$<7h2d)^N=6!NOH%ktb)<#So*hQWTSC_f}EOLfEmmi(z&}r4Kk-|aw z(G_i|+*_UaR%6!$UDiG7yrjn7aCI*Z@>}rfi6HBTo^#(60=Saqmkf_NA^jK*DO&=2 zSO}&^2t=#%R|9TwSGB1rmk;SJkJisoUnNNo?P_wT``&dqK{;NpUyb}-o&70WHL|=! zvUcM+v1yR(Ws+N5k>pz1jF?8W%}xAK??=UIm3lcTCxSX}vtyU7T|^kYmHI8QrVRxe zKTNF*OQV=Gs_f;r#&YKRkDalLuaao|pOvdKGZlfb3w?JN4=y`hvO-_xd#1@`ZPuZB5%+lB2XZ2CHxC^}pNQ^5{kK zwcC12Y#05?rm^nq6|(z`?M{P5mrHCHCC9m_`tp0X_ndzoI!|8Py^ED6;u!uz^ZaPf z^L5`;dv^nuJNNXdCp&ivsjuCb{Ji;VdC}h6Q$oil-yFewUWnr#ed+dHJV1VxljHPk zk{w(+SI5^iZL@=2r|W%3jK^v=(`v7KO^+e+Ts=EdV|2!rgxLFTvb!K>tMgFr5tgnt z&(2owW9U`+@qKfGOM9iOFHS8g5@Ph7-#BY8zCf<4dA&MQWU@Y#!D%Xsj7hKhmY#w&8uOPQVe6XsT+*sqk zPPbqFZsnpVEk+C>?tOBdo7%sfylcv(R@}vQk)G;Nx1MwU-1L$2ezPtT+r@r|S*<#@ z^x+Lo_LCX%*``e-?vmh14tsa0MxRmg);~P|Oc9=w!IK>PT%WAz`eJK&dSZ&a^ynT3 zxk8)UlDE01t^9S#)$+r|k2+WjM@}2@;GC3B|Nh&uK)=6DQ{TwVjUKtl?}K7_wVdd@ z+PaKu??OCv`Z`&qUOP$A5ovJw$Q7?yBel9gd2Ju>sfX+Pvs6AcMHw=l-r?u^G!-Ja z7R`jP7C)z!tVnHrm&)81gI08Na{l$GM7`rq6WYnPvt06+XD%$2!Z$ca~6Y z$oEF+JTY>(ees>gGo9xDe$?7mOWm3m{dsu0{{>=O^7aqE>*g1oQSb3~^-AaEMGvl| z8!rmgygx6x`6XQ*c12z^Fp|oVh!9gc)s**6$a8vJnCW4^L*7v)^(K6%j_ms4Jx=W^ zJuC@Z2NFa5-_+8gMr?bS97o+!a7AhGgXxJSWE-4+G9v7IalsvV(RXS#4h@cKQ>?Uahp9-Tlp)l@W%X=`%)cBw6F7wK8|6j>I;cFjFS@qG|~!CTAllqO3~ z|Au3y+ekmyi&)dXPm6P}|L7c@yV8B*4Q7`wKBB zGeM^OW1Rb+^D<@20r}BgP4q9zZ_JP0(@~eH4>DSazh|9suFZPet?^q|^^S@81raul zCUZu~q_15+wxcg0?_AdX!^p1Q7>V6;RqAoAcr9ohF^cxp3Y`@Hy%OAg<^49jwzU1~ zQSys_MVyS#^3CY&810ar5F@*vaj*P`=XAd>OY&|X?Fr&up?!KMefcl$rFVJGkwsb7 zTM*0%?fhX&LVS}tN{V`KIdgjt?ufcV4sEVjYVs267l?4&YqghDhOjgZH}R>jj5QqM ztvz+%JNb)T%RWm8{oI0b z2E4OBJ~Ej5=G8A?L2QX=*j&*X8Sf%9C+uU|+cjT$?RD5NJ@&2n@uWqABT@T7-^Jw& zxa-aSO8d_CIT<5+*uz+YHbC2O{qkHfhd%G11(hxBNR~r?xzf4rrA!a`<$EVdCPw@6 zF%k7|Sn?N7iFdrqo6ok;bM-B{`zOd3qyO~dRYmO*SC!L12~i8^q0E$)9JPqrWv*!d z%SPZY6(O`7j3LP@>ru!d*VkOJcFAA4?0be~kIJ$P%q(ole|r2<8QPTYw4NIBP`gM2 zZw?h=*Uvw=_dd4G`TKvfJZ!g5VV?Rnz0O{28sGf!i~Dr#x19->WqMc(ZDS)AJULme zyG-B9iPS6NN=H#da4q_U(dG0eHvN$(|NOJD`}-T+B(1Oz?=(7J)@EUJir2_5kDj9T zywA{0C=}uFW>s#NZc}Bw5e+VDZ%5x{A0>aqT3ptV;mx0t<&uZmxvLvwO5~*J3;EIX zBF%}-)!9#K$%b!)-SJ;`llTi}11O&m!^e*DF6i(1aTlW+a>8XT2O{_vU+>_3{9Ge2 zlR>V~!;wSwcKTOEQ)rh*0JNY_TcECnt;&zKdtK`Xb%i=q_sMj-ShhG^xA>NGT`lb{ zUY#G+w*VDJuqB%-91W~l3UF&9Hou%0qWyE?mvYgWHFY`v!TO;C1$y*RcampzaK2sK zySV+V$0UAd@TLiig0rq`M5mC7ruF?VSbDZ-#lonlc!vsn9)SSGwk$=Jv z5!jMO>Hmg3lom$=Tk<0>rORWZE((1AxVmk+><(PY)$ztwx-*ydwpD~vW7Lru>GF}3 z8i7SiGu2Kt{*vU^A~d$7Zb|FgSk79oBOsNx^ZmP2%iJRze{by*tJCCwIXeTp)s3Xs z7NU_uwW_vcnrzuLm71nZX~1OI}$qO!3$ab^DK?HbbuIconk z0&R|V#<*fA5LYZAwTm>6wvE7Ah_)kx!Km*$!wuXhEw-d?d%N{1r`pb20xu1ppw^HV z1rJv9zr$LTTe2v4s9u^MC6e!06x=j6%|HDu#Ju`XJF|9QR205`f?TamLC=1nk-vU{ zu>@m`;fW-tey8G72}xf4Ep-R7%6+M9`hUDVFv_5&E7vYci|wK>RNT+8Z|jvC)Bi0w ztdSEr!Awo9dR1^=czjgjSfc4cgtL4Ut;w-VBOt=X;u8H5uLZj0Un7hp>I4L=8ldmm zazJdiEQK^|Igkdnh1SGz#ne|`B2lA=z?Q7>L-k>8DUuLvZgcf%fxhYXmo1r=Cn5q{ zQm4EV(&d`wbpu0BWybtfwmbKB}C8FcX$U}?2Y}YZs40AyL!m` z@@o0f#r|!&kw~SI$J&bT6WCWQU0HGz-0^bkE@$SDTCx%J3-L?8V4twHu-`=d`+j=)+r4T_#@$9U~h6lG83h)Q+;8bS8wmdbkxf9Z>Up<96VJfY96 zk(Y1;XMQvtYKu8RtMPNBp%Gk*Ibq)UxwiQ~*QN$;xcBl-b9YRWeI6+YRzE0 zJZGS?5dZ$Vk#FtNS$6IfC|Eb3$>IX+^ zTUYC*U+g`a`dd-Xe)T09<-1ISe79B;O#|s!lB+XbdW|fecX}TGrC36$*ba9NU@cqn zou|^A{bQR1ZrwTA$}&(U%s6bWDw;bJhdk5Q+BKN4OVoB{(@5Bw4xcR*@ zy+tqPN7pvi`axZx4h;p8ocjT_#U4&&_BTz#V8W6!J^F>ckII}UY6OlrII^H;*cMEi zK3QJA(q1p2wpa_a0=4?d#L%=WNxt|yIk2tj(-%Z9xQMnC^ zUXWT&4wTQLVfoeg=kuc*8)_e;+_z|417Fh?LaKeP;H39bd>X_d(;GN9FL-_{Oqo}p$+WSkCjtDa$D_KUA+JE;p&U&3;b9+cKCVfmQ7;= z)PlWUf}V)&B0cpz;XhO5xE;L$p``Bq3QI|1d9ILK`>Q?FC+Hhh^nEQFmng@jGC!wp zaH-wVTB)+e4VO6Gdh0bZrcqfB7UI-#&%I(^YxmnuBcyF}qXk=XvdFWyrpW`7yGi<@ z#{LuO{+F{~)rXC~SpMtJvz^8s?P~Q8)DP*6xfSB=q-k>JvbDuT3pL7R z|Lh=GR(&bfOO}_8YUS*D#jKa0eyEK7MxA?2nI=~>UhC&@sCO@A#H4*SydEd+a~G!f@(%URk2YJSxk3)H zC3XA7`APD&4c9uSawdmcub%JoPXb0FNYAD* z^k3E8sgG}S3+9fn`g!_ixxs!1b=JSXZfhmW1^cKi-{P= zY#L}Oq=8;(BT!mIAh$L`-C7iFJ6ziw5!jMi-~IR#C#!ewPPctDT-LZfJ2u{-Otu`Y zo}C}a|89qS?tu|>A3$*ZNo_T(MP)vHA;jIA>K1Rmb*FpckZp6cvyCv4ggw+dN=v=A zOU;C`F{;m(@48P+s_VS4dAK#6BUd~{4t+Meq)pU#2Oi8$o(a>kDa0n)CXFOoDp7M#h%u|vtN1DeNg9E3#m0Bupb}1VCma56O*h>!F$)fIm+H8|l+rL3%V z+IkaQq!&3iZTDQ$414#68qWR(Lqx`o)L@;ik$(OPq@-z|RCx-flK))x!MfHUl{o&Z((hHs#A&?Sm*IbE9E6_`f z`R-pQ_MKCK&FxZy%b%{~=gh-ABgMVc;8D2`efPMdavtvWpF4K*S>NKn?X= z-V=9!n%yqBqjR9!5K&`GiX2}n`KtgZH{{Q<_E$=?H?IHP>9fehA+s!cWBrpaX`#j+ zF7W15P~)SVBOAKQo;2;6lN8;_psLGj3%nK!6(wgoFYucBXK2!7KR>i4DE_SbnKP(( zLAftnbBj_y-Ds;K-~Ms@Os}LouR`t4Nt=Fvhyer`e_y~qcS3=E;x?)ck) z=BfGH0L!#Gz!3B|!JV6Lq0HB%bb$D199-S9REFAXKy|aeKd4>*`-9u%+x-xqWj*g4 z4s5JZ-Cdint&6%vowx75$Sd->!fjbYo*8dHbF8#`ROWj{sy?l-&>QuKs)g2LLSQY# zVM63(CCEAAwyeotMT(Y%>Wk#9nKpWy$e~ zTF6J<5Xd>!LTIK);XnxF7NIR`S(CznsZA2oKW{Z%yjC$KIIp7`Cy;ZLh=~IwitQpk zxpy#sguQh5ne?hxCL8_=+s#wDF7^quSHx{um->wf#P=+@d-E&P1mN43;`|Oqto&Tsh4j0HBa6BxE2Y{;zKF}7lc6`|uBsIiY)L`T zlcDcb600XaBHHfMmMG&AuhWZ_{K$!Pqx&F^1~>xX$griP;+;A10^35K>YiHYy)aktB&oW~wLcl$$C-2fSz{cW zbtxrydZvmja7>hQOBtc`*!pEfm2zDKwuLy*$4C!%sEAnBc$IVa191Y|MV?F?{YR8@ zyDn6BHL|Q|=B8%Ug6wlw{9HxI_av{iy+toMRi+Iwe94}EDRK@`@nQD!s72lFNk5l% zemFS6;2gaVdL=nuGHtWnZr5z5K*>P@+eMyC9RInPKmEN|D!7R<3oXhdfBnVY3w2cl zfMb_s&3q+JtQ#HWzVzYAK*tYKf@KP*et>-f`wI0y{!vEKCEmjORQwVD>JqPHR@wZ5 zT=7s)-2HL1ySM5C@vZFqvQ119mTAbcF zt&M&2?MdSB8}oy=Z_s*#yh;6da!~vh?SDIUyO}J%CZhelaR%q^^m;FOz1~xM>*O8D zG7pa`C zq}H-FT-fEj(jve6)Hm&1Y!`K4;^{!E^%xYaz9AzCH2|(P8#M=bOT94DW+I*wolJ2@C`!9xfAc^Q8foB&x{sIvEPh(-AS82M6_SCEZF5rMSouxYS8r54W~Tqd{k|V z{l!%CWHD+J?O0~6uU*fnv-Vb?)6_`<``tUslY?gyRev=5pk1$@z3cK;XT*>pLe9N- zfw!{fEd8}9T4_QV%ACuC%BQ#5*d|b7p4_Jh?P4!7aUA~cXZ!fJpPa{fv@u4UiYJx@ zXC0{MM>3{e_3Zkzvnc<2wzYGJKn{^}q^=8ewB z#ZrPt-=!R#mTQg%x6+oTH?Q$i;LVh&hOCee#BEua#iI~pH`dv7Ew@pTrJl~>;p{)@ zjA=GVkiFok@!U_7Qx4Oft82TBN5qKM^}Y?Pelj^YtAonTAJH>eW)3BvXt{e6zuL7fT-=pgyTnJgrR8D+KhgdfS`F_T-Cz8E=vTYNxed+n4erap zmgEe}4+Y&f_m>kd4y`WlyGsgo`aat4MaVfy#Il|`@o@UN=F#G#k@2GAgctoB;WW#k z$J!WwCPc4{h8mR<|K2X|ZoId&z}|_RqeP^YWd9Nb^1%`%ZdblnE_UT1<~$of`u3nz zKKALS)ElgY(7HZ(>cz3;V{e^Ndm|9qg!r|?Bk2ojMu|bK{59e1bzqbN&B>KCf z3_kd*Ev+abPlg6TQ<LkJ5qMxdM&Tf;w~GtdndQEGX5LDq480#-Cb;q?KF7axs-pjF`nZXK6U!C;DLO+ zZlJ9;HAspe%(@w_juWWt9WS_@U zUKG!HAq1DH7Vk(>I)ClHJKbvK9~0BkPZ?varpj_nsz8GRrHG!$w2}>j{&8kyb`_^a zF0gSd!b~BEPh$x8aE4a{DahLj=Exl9U&M$`>rR+BAo~g8lc!QHmls{;wR6ATKG4Pp z3H_DaYZ6Qzp`s|JO4$|anaiYql!#?LzQ=V|fB2`}=}eq>>v~df{LyHCg$Ktd9J?3? z{Y?-!F7@1XGB}`1xeTd6@Jh6MNB{F&gObg_5IcL!QK{eEgA ze(i4Fm4bJ3U~DI2xaR{-p_HJwIJ%mVVFR;jm=J4bmv-#d_llR#v=A5@VlBj{WlQ>~ zbNy0~ZyMJbx?FT2HE3a?Q|U-GxBHtd#lcrqTVzX!&%`n6+9+q{S#_i5EnCh^9IE1<+Tb#c zOFTxYu@)itO?WMYmNP7ItDL&y|8?q@>1&O5*)K@y2`! z<0DG6wP(uyaem`lPK|>tL}rP~0>1%99a-ve{wtK5yuszoW6s+*^1JJjVnmVQXM;D( zQa+Iw7v*MBrR_wXQJgu`oAH>Mxk)?olGl8$Dx29z_D7Tvzn&UyPyA4>>Q5^lTla6Z zcM!d(*`t7Sqn~ST@6)K8*MsyG;ck~h_L~i4U)JtR`NV)WV_c+G%a-~ejsSXp zJH|m20sK04tTTI5DRH=}$@$Q~U-Ig|srEx6Zn+2YTxqdy({Q`Q**L?);qErnlVv@4 zd%e>yrl4qlHeO)6`QM)D4R|g$9Lrmc5aox5{FouPc4?2Oi6i!|4bF(xcZh9`;{~>> zZ7jw$`KU3Wn@CMB?ME4hzb_Zt^Uo-MA1cPXTvmHhPrX=7yjyRv{p{X2!EeGNZ<8vm zkpxjOa+bHd99g(I;vj{(K4}o&;234{G5hvD=Y>tfd_GvZ)VH}zeub?>c^{dJ)#cpk zXmPn&qJqdvAFLbHhmuupH!qT`P(CcfoDf`#-e4_$PA$nZU!gCY2P3Z7Py7=na~sa` z;_p?qgmOb$VCky3g!k!FPsP3YT&CxKR(Y4R%CoFUCUd?%>t|0Q>GE?bTh_a~zHplT zcG>>15M^A{RH6QnLX#@SPCf%E3}B{#^5<_{a-_@r6slJoU@isTShk zvZ5-tlVJoQ*J%B-Yg7x*P{=tl-D{zDW*Q>{YfxFD>=#nT>c{Oe4t1JG;iIym>VH8{ zEpACcfL$4sur`SjlPd6V#vAT~1fhE^jkWrh0HdXuiA#^D1OcM~i~#by5{#T?KZj8* zd%Pn`^r)5@<{5x0(dulXSLPh8#KnYgH%;P;iC&jSX!Rs){4m-=s!$4Y=Nb4brZ?P2 zF@)+-{mT_`JAK_#5OpkfdV{t2xv~<3;9B8YsZFbz?%HM6nh^%Y2sgZ#io&wiQ=fAFz>j zq-4+PW!@VP^G$!?uUxcn?V~bX?Yqbl$Hv~{7Wz5H*9SsynIy{kP}0o{0&8(uX%M1t zh`ck6zQVDuf`D%W0|IODcY=agJLjr%;DzR*(20U#)cj>0=l(>wnX+16aeVsFw!eOq z@$z&rc4Ja-YG1Wdxw>*vuw;p7e>WYja>xvSleaoUJC_$XOSLv|{P^rLkJs1`pAl0V z+@d$&ky`Nq-v%yntD|t~SF*kh6vVkHnNEo>Puh3i6)$%VBzYS*RP;~2Xg$Yd+k(>I zGn1}4?Q2&Tk4>y5uI`rKY9mx0VWb^-lJkk1j-?lAdOUEk;Z$Sg2UlWHhH`(&^|zdb z_5M*k4B`;T_~kq_scfK=ukg37m-eqfes0@j*wt;nQG zVNo#yw#8-ggN$4G#JnJ|7MB%OgNMHDr0gvqW|W8*D8;`wE%i7{GfG|N*gnxrRJ*r{ z?2VSil!SB6QczU=F9@o|Eh&iDyL&sA$4$52-Za{L0K5o9&d}QbLq| zGG1ou(KZrSWZJRaaGvB{ zzr)J8PtLt;@A|U7sQFY#3Dkq|n5Haz}lbRDJdM3TNtL^XwYW4KZ*ax2PK#!+qaDca*g@39h~4Mt>W1i#op%Nc6TB;oTy&TQqY!u3hY`eYmD59+cR>RdbU_ z2})g_P-t7rDNp z#N+Eex6`)1X(PSJ$LaI0d&QPSWu30U{BWlIXdL`p%|`7#U(p@moU<3Z^##(7e#PV? zx4cnAJGYBvh2y)PCEcsFUU53d#0iur+L9^Vi|49{X7`6$Ul^t{<59cVKTKJr#-DZ~ z&(E?e|J+NUg`?#of3i=$R!N?oyCX1h$RpX=_j2k$%T2BuyuZ`_vgTk>_uFUef{W*S z#otihmdPU)cpZjzfXON#+@MJd2KUlm6=GV@}njlkIYK z`iTQ;5`zP_s61y#`~K$>gDJbBvQCEOfAu;0vEmcNpDnKjkP^J1J)-AAug-O~>O>jF z|8dT_Upc`#vBnHNM*uYH;?K7DDU#8IoX@M&EczV_NC9B5eMh&vyl&^-PGWK776y{BBRAk_gNcj zq5e&X|J7@eD%ES3-C0HqmFrQlPMn{Ki)sIAV)@t&PpMo6dTlCA^6^8%F?Q;1wLYjR zX&6FF)XyzBM#=k9UA|$JrAVm$2L+(bZR)iRL;5-GHcTGa++AN}w>|u9MZ+hepHB=X2CMCf@^_WXU5v*niqbRd+nrP6 zT$E34I#<$__t(07<1N!3&Mn%QW!1k}(H-|~qWxWD8-du-8=#jUe)*T+YR{PlJE+n^ zrUtn_MXv~fwU9qupCGhXO9M}x7BV5)G|VUd{b`$htCGBtEqmWvT8P)CNItk0Vp%YL zz^$s8hLz~?BU9=e#&e?kmX>E*Q>;saYUcDK1$3#Ds9 z;B6iVfp&$^mIeOGxcLG(XS-7Ub=27I-#VS$YZ*I^me_-pbRp8u&VWhS zv3H>qEDK@=qetT;ZDD=o*n}#8@EB&18 zYHRA(fv>hiiiAJn<^HQOv9x=bY-#-1(y`C_XP086cP$fpRL)<^Xi!3oU0BDhJg1G1 z19uhba>J0OkZ_c`{8eB~y~?7(N)t!138iD{*3fW#@>{Lcoq<(#qs8jC;>GFn5k6If z9jQWSQ&yToQ$Ct1iW&a5tW3Gd9Vvg8bbbq!a}T$9MBtvQAhB;TgBkd*}RpGTQnYhOnRO=VT?IbE7T9p=}{kLX2B|(w?xSka)Cs zYjN_=WbZ~moeabNIO<5UH@Y|3E}f~a9!#;5`W6wr#>b1JCCbYAR%O*6zfv~#$3m)H zcX`>^GBuS|%2>2Vid}U@5%Fugc$xdNZ0xLI>J37h5W}vIwF^EOA#TeP3Lnlb6Wec= zY8N4}CCgfTW~^P~uTtXL`|)D(!ZNX^*C`wbZ9UTT&Dbv|_W>%pt?xujlFHFRJ@`>CDfMc}gO8L(Z%Co`VB zIl#TU%4WM{{2Mm5i}-pSdOg_ZNgh9<*6p+3*sXRUu@uR6v0Z+y`p3EC;coJr)po00 zeGMGgE{;U33;IjvKeV^hw)BeV2((wUW6PRevw*nJ;32VP%3cEkYau?P54yVFWoBCma!zG= z197tid%6`R<~`j;<|CW$^^$vm>CR%D%aFO^Ji5Pl+lrrMp2bS%<~Wc2T2egOG)}Ii z%?~c<>3ara1i+CYudx=#S1ePH+H!f59cWZq?END~&XsBG*yoX2|F-7ztlP8YzCJyY z;l4g9zcrfo@7CJ5!Kqp2UwhwDi_ zM>y0b^;P~Q81lhe#?Yp@HvLVISyjr!CJrD=G$o4AGVgi(PTPtaEY7??$e2mhb265z z=VZtd-}(4gd+ujXh_3&by%r&`2g{SiSAMbM_B|n%ZZ&aWErd2AGPxg4*)B;@+f`=R z>g&EbU)ftL2+{pN1q}_NL=m5VSA06(70)=x_hFyl=SqX}uJ~*Su0?OK7C%>BRBI$b zpl869akNmm7pLPsyKv%dgL*Ax49kX z9AF;Ec8{Mc8+-Bv>f4zv+N+M|G9~r@iQ4CkI5EuU18X7Y{G23WS@WviYF)d`2lo5F zj1-7{)RFn#)V}IIdi3*hh9zGKyY>4&*i+;C%lJyyLLY2GKrCwXTJ#boAILerVcJOw z=pS``l9i4PGYz?6OY#osZX@j28%OLzi~AcfHS&S{SysQBf7x@tRWSqG4@nWJ;w@uHYM3xlgA6v%;c;{pQz$*D)I*WJcnm6 z#yg}+N1SBs`loz5_iftOxo=)>{Tv{~>M!R9f4@hKmNMT~@He@SkXC_qk4u){xT>t{ zQ@o3BOo#;l0bdi@91`a^E}4A5w?Vdi2!iE9WfQ_)l4P%%Bt(ThkutB7Ue&{XXO7OO z57t3m`k?2QbQ_t zrOqO=&jIDIZ$ zv{$?wpM9$?jb2Z;N(r{@q4saDuACY?@j9I!jtR4N+AYxN)10&;Pl_`2e}aqmQX#k4 zlALGgK0I)AzRKu;QsgpG$eLBsMF@TqUJIcmFTIP{SHG`oAF4UYkQK_ui~yDmZ0fXq zXo3Caug{5KKbg_Gg1;|(H|}D^eZ4Xd{q#RubzZtOaHZXJfm*`|xyvJqy!+;JgdBZu zmB3&9Zw68?nL0-ZY)P(vY}&v3i5imwhn|}*n(triakej{uzmlf9_K=n^X)}$*>^tM zSCCHhoJ_+IdN}=@JY1h0qntHu)9jcB1{piaFSc6dSymPQgo4R=>tRvO<84#yq5nK* z?D$0pq|ma?4Nna`P+?{Ig=sQ(G~}$nTo#yX)UtkQkQ~S;v@Cth+GzscNN$6{Oh4a} zg)Paup`JRGUgFBMfLmaiKuS1Z0OnRS;rsAz)5#scL zZwwr`28H-6YtfKKcK>;coR<5a6Mo%Qpe18f?dZO`atPo zOEPcNQ|;^l_cw67m{VE4Ei>Hn^nDmJ!VBF{cn^z-sz zEyO2xy~Gp}|1>&fZ>ZK=B-Ja2IDViHwybu0Z`zN38nR1W zjx!(@R7&y&bW!V$NUhZQ;ZJRMa|t)OQfq@M%$C+}^rAE`gXj&Co zgS|li*(OApj3jwmw;C-GT4r2)u$249d$q*U*UeK~NJ+sSDPG4vc;|Af?ls+$*ISF) z-}keTcC3ZaQdaY8x)1!PwJ5xzj{$LfV2a1N)DYUTUOjWa{b)d~DB=i-<10U3I`Vtz zeTo*S;2zq1r`XXuQea!1zEANo77^zO&eHo+JkHi7XFqlob=#&?6xZiR3VefS*RUly za;BbiK8-CT*2J|oAn=S4LQ9-84>~UnzGDB_B;J4+RVKyboGb_}Gs+d*o&M=}k?xsR z9bC-uin)Lqr{h!I^?J|U`v(QYO^kdLC}c#&ZY>rUeoR_Qi2qkS(*_7^VVW5gr@rZGrx+M zCyEpC+lOn@Uo(q2=JG~rEekVRG=Hdz_u4b9G%e0d| zPzU_n|7HLr2`44>|CZ^L}juVrYa`{*Fq~n z2*zOYf%-=ZxiKTx-FB6J8W@miL5n~^Cf$?+5ee%%l>s) zM;VbV$1~OT7MGK$g_$KW@4+1N+CxiDC3w)(m=aeTLM8rJRrv+hLaI!N*Wx;em12|q%>4Yu2{(kmmgHSRchs_ve_Y=!(4mDq!>i*R zjL7g?)UwvpPjcRUWrOWi8f1K>VuXY($u*XTi->3Eue9&n8YeJTKes;7J9x?0A&_4T#jrxr`cjyI%}1 zEe2I8C{R8~6;dnbMS}(G3T?Lps$ZQVFuF$^W~7g2;_yrq&p^_w5uT4T=Pa=nmuUuy z=PU`@vKn8nYIna-*v?FuWKb2=KzSTkK2kUZtu%{Qb%D)*d|< zhW+l^o6EeKsp`v;>7u_0(%P>E9k)&f&3`Va^t0TNqRJ~rT@LBZ zI@bfm4s;4!IyY4;FPP+AYv=FZvtHPg=$*SGH%nZ7tgN%LN=5f#^G5Au`D~pG zvT&0Rr)EdHcio2q`w}M^I8YyG`7(RJHN0tO?yYT9)>UZ`^OZIv#OxnuEi1DRYFUN#LHGBKSAu;~$bL)+Y{|s2xWJX*kI&|W zz?Lkl!1Eo`YY&ccj}`7<_>vwae-0k{qfQ3-E0d~KCF6J>nGYe?O8r_0p>3M@INj_- zpnkiGcD0Wt8*?%^4}&WZlE;#J(qAsOr}gRG(`2NtEgU6{x{+)2-_{AV9aJgsa_V$r zh93Pq&Iei6-=z+w_Z~4UkP&C%z&?Taw+f^>;<$Y{s@6X`!SC@sj<&v-YztLmZLhbQh(CHY3zKfckmkd3wRA0M zyYtVqbjyESOXO?R&t6_I)#H5X7+ILH5A-N`{zLU5!j4pFozuvP`^cyk^MTM@Cb|7@ z2&%;`DG0D#IS%S^iSiu5 zQ5FG1+2PxXnkGb$F*_{b9J$Ju%)Lywv%FtbZx z<{lFQvnOFr9~0tI;hye-T0hw5zngEjxRL7B_)?u7K%PwLDlGKBnb#SkCG1`D3-a+A z?({}m?LC(o8M4~4E!8{lag=}e1jZ8bPS!1@-Mg2Jc4lsnc|Rb=#aJC>D097xFYUIN z_MG$e1v6j9g)TC8#uAk~!-QDTtC0I-(X~#`^6~NpVqHr|-r@PFFJvrmig(*$=imOc z5&PiShx#|qZ8PoEKNugC`MK)ny;j*yhl>x`g+@#;##+Sj1@AliaiY&O_^rl0Zs24M_DNIyRr1j?k7hWyox2fg2O3`r-2i1lB^_@?L-?r<@(fpRiwfv7hMj zTB^sH8xV(SC8^CaoEmdF+aF$hR$wip(1dvD_8I%_$G^8{rMGwWDAO>cN12A9=|3fT zJvLJePx&n0skY00w&4$U)p=c9d_%ox!%0;OTO!%pe-tMUNwZy32|a%l%IVKYaujKrScB4rX*g6B}!$~Z0-9D^H5P4emep~6ihbX`#YCC9and_$2#j$x zPec{+fwb!~QbiDf`eW=jS{4;;#&aX?f!@JwNXA|XK zE@>si$D;$62j|vM5!p+j)L^$t>bZG#NmF9ExX!Jghf7yW)N)ax`Z+=9UxJI+gPEzp z)9ciYO6S%u%cfS>mo{VYfzT!d#&9}rYZ$_~O+P1{`~i-Sf_L``k|*j4>*A&ciiGUgq3-g&q3@dLqj@>fGrzo~G{L z(Yr+&hO}KZ4C&`uy2@X%L^q^96k>^Dx$=QFk`MLE8-i+aOC6g7gs)4KXl{}weAzgB z2yBbXR12YVhoD-F@Baruy_Rth?cq2Qvh9)Nj-vtV#?%M(B&LnqWgL8BfSN{%CXJoD(O!Bx3bKPsHAH`@Ed|g2&R@=HX-N@wM7sJtsy!G2H1NG zM~Dj7JII@2b*3ToiTZ?_vR#d1?BE3+b4%rvCuomPjP&j5xzhQ~LKB@er6SXNHkv4q z^AUrV1vmbua_n2zgFc1KlRQ08YrDVCx$l}$J_Pf@w#$~tJjwNs+2!mDzc;dvKly@t zv-<*%&V~~uUp=_MJKI_Lm5pr|ct!4wj;(o;q+5SggneL6IdP%qBQA2Qvq0f)b>h6v zjLCsBS1XB{+d8_<;}&_--%?{nt+tEgUe2m=WWXF!1c8~Ruw7lo^MeF&GgQ?cJhO>i z`us!}=_QG-Y!DsWv`;XE{8{p6>SJhhv>(Z!4iH+dBKNLfSBq_CPpJ5UjQVuDRAvpD zI0l@2bN8H)k>cFRj&eW4V!4t}oHq<1=O_`Pihl`0&z{A=3|ow==VW8D`w~IPy8*Lj zYfT9J#^v^X2xB~F&Z$45W=)7{4=>EN-QD9Bd57OnR+2Xa)+$zUNjCJh6^p&#YGn%s z4tYvQoie5Me%|FzWqSVOY~Ej@VG_i5PnL}h$|yX%7DDU#B&+uMWbTBSs;$wdOJ|px zbT1?Q3*%Uq@p<5%ZY9N8ySriSs5NbsWQkt~BhtrQC@)@qw6kID$SvA}%ri0kczTO( zqQuEZ;#{nyZ&+;@G9ff439h$liC2G41!-5AZq(0BlUBJQ2nsTaAj95w#S6f#@H&APgF1pg5Qw6 za+zu&w7IjN_vzEhF_$Ud67SPj`J@mBdroS1TW>`>mHD}f0Dio9Ebxcy=PxwW=Rc^e zv!kS4`6n%6LVVIj;fVXauoF=;UhQM06>4PBYp3&kNeV)umaXXxYjB!VmDVVWkTT%bHW$pOBle6`ae9q^q zCkkwLOXFq1ZVyKJv`?6}OrGrEIFad+I1GCo`u8HQ_<-DPSH}$G0r+eWdI|lUW^uDDeoet}C|xScp5;qaKUX#N7!_Vi;gh35ww}0c<{sbF?NusUoBDa!_~EzJ zvANPM)nXh7t+5aud_xd9`3T2>){bKa_h9PH1`dHZsGR8iCRaC*^DrC$kqPoqWkq48 zw2w|peo8MA_{jNu+;D+?jVS5(xEj@vT7xR!+{8gURTPDUL;n)wuHwR3mXQg)D4Z$< zq4cgbm1*EZi7`(u?SF?*eg);mR7pI3AJJ{4$=SMW+x2@?mRAbpiNol3*wTN8Q0=N-i#U8JpQ^Dx zEcL&B$$zZ7rpnc3#fIt^)*}Perk~;iJvG)sXjMNq2&|Q-_YsR@@66cw>p#>dr1xPP zi^(A?jfZTMArM;2iu&MzCo78E&vz0p6&>7?y{Oc6=-jL_v8yLliT(YaheA!Km5B`| zD38kR(_h-dqP1q?%N|!G4)s&Asf$?2^yF%%rMESYmJox2sr`%no z-Dd~IyQl-IMLAhsTVm&}59xjMxFjWzA@%N$OPazo&ACsN=A6DJSeqn;h^(=M_)tG3 zVO@(LbS+(u@gbC)2vWaM?JBFp^8XJ4@exF|#!c*(hLjV3rF9VDvig0n`sNrqrHuS8 ztP;Ebc{`-IQ2!gY3w$UXS^XxAbBx>2UeS&X9MbQW%Z{V86k_D_vKe)I-SS5`6M{6w zqq7O2TQVW27SoIEB6K(e>)Dhj;wA{)qjXzJn~YCCR~q!8e5v7^+$~1aq%1|-C|V4a zHMJUsdM@GMQJBg~qM7nJLu6)aP*H|&2m&pU$1BTvuk#0ivPCM0ckk&Wa7Xmmdlq{y z%&iprW9_XW+yiYw;Erglh0t0~RN}r(ewV!gm$}bd*8Yc|u%EA7Tucde7PzyU&T~4e z6jeyA+%GzBrW1Xtxcghn4u&tmKEb%juMjQtQ+n6>pwXH8xj9nH@7l_B>^JvT5ZzbD z3*-emdo>l7=`25hhw5VeO7aheY|%GnZYC8Ka0%Vq7?8vh2lc} zPyL)}kMa4)vRzqbE1_}l*M-BJE>%mr6=%e|+dq|hj-wlALUOE?<+`ej_!x(>-JXA{ zIDuxMkapyWA?Pn=Rm6EJNL+6z5vH)bF?!;X~;v-gAS{wKN3a5CoZ5yZSkeYJXO#AP)ELELvSZ+`{NZ z$I8e&7HTxWQNprj)T$tQ_3SK~M*eO<81qa3E%y{P8DsApwmdNMj|nbDefWiKehJ?* z;j#2oxeoc#-VU^WF4xjjPpx}uVYV;96I@DC>VIXssDlv~|MDY1jOVDXk}Q?DKX3ok z_I-)^j;3rqI)0FAkZZ@UqYH<@2oAKvUp_of^1K%tTA^8HD2kF^Oe3m0`+D_iCRCz8`4D|j9!VT z(y}5PS<>}w7cHNu{qGQ5OH&);^PzE&+;KL7{W)5wWqs4&esOMg8~bpZrY`E>+1ks3 zGn%T^_ni7rGFDc?GNE3?-_FRNs;eQg`yFsj($&x=1Zs->mB#V^fxvddWyN?B!YE;j z$r&w~(haxpoFgY&Az?!7C?EY?(PR2Vf5!lyyU8 zmO`eqt6QN);_|9Cw*2ejcP3f}S`4>Of0cAOTGATCK1ew9FC2pT2&ZalqbhF00`EDC zt2Gli_8}!`(;5TmMa#!*7bPNds}KL%-n+}pD90X-dlW`Bax|E9pSyF|M@~}Png&() zb&nLvowN_-cVCHr-|5~h&fWj~5_z+j8ujJvpkAZFR8EsC{B&xQpBGru&Hik0MUgbV zo#dlTEPr#buO$jis&cnP#X0+Slk;#091YN4F|_3Tvpd`&+c!Hc3bdE{)U?lxS?Z-M z%Z(4R4%SLIAK|@=c*?m3$!m=`V~#WFatFju=baV5opmOpw=<;M<+UZ=!uu3eNG;K$ zsUn&1Y>h6fxRfQ57lf*%{9{fCf}&r7+}EcmF;6mT8LGPK{{)elyd-OPLRx6~#-%a} zS2yaI&>AK|t|Dt3cse%+=YpY#+brMiM|w^B_+O2FnMWV4OMg|bZU3FB)oFkUt*u1E zB)AyY;@Mz4ajNSR4%RcxMq&JbagYHah!4h2Wu`DZl3^(G^fJjxdJ4Y}Zhv{H_xlfQ zFv<5}(Be^}y8zM-N)ricET(xrV%%C1aFn-ERUEDJuJs&+S>_+nY`_&`-g-N>D? ztxwq*uO7F58`V*y^;znzYZ&Q&%OWL6q1?GFPT9>SAGf!SH6gGT+H~F!X01GWlt13F zg@@ZNTa3v$X^K4nY7?R5M!*r}MAwB~e7z<$VRqhW`5(Bx5HWOrdGJC4bB(lHb^5 zKe48R#G^SxtDNA-{9ey1smoCWrYJ}#q@GC87?cOk8odtR)W5SErw*uzXT)a0Qz0@$6TBK z%6)ynA##pVHz9JfE215tO$fw+?dsf(;WHE1*RX$3na3{1p?ojz#UM(!Op?a^8hJxt zEiNm4d|Y6kJ^PHh*@53sySU$j%l|(Js>LlShzj>7Ip3}w@AnU+oy$~t4#IItE%YYZe^ z>ZwI8m&_m>XyK?E6M}sSLGW%GDr4_5ArN~wPwa`zD4e40QAaBKyB<)RW)xobdU?C+ zptL|j!zpgb5zFLB&&u+?rPxro&N-fEs#LEi*dX1=c=D`|EGHNQ&xhM z=yF;ZRqZ~j;O=YQ(tc=uoS{L~8lJ&Z7}Wo!Peg9D48zALoINM1_-m5vDtwIcd2unO z#yA=ya;8e@LvxFs!PKS+f%N9iht|2GicTdoNT;u#n9$LK%YuPoD$*ya1~gPsvxoHepved8ka{l01~|gOPQXy^w?PrT%m?kWH2Dw*#@Sci zEG4R+ju#k^q`wmLsZAZfHH( zIQ(xMqhJNL7z9k`@AMERCm!4RVW{RPWqSo^ox#n4|zem z`^3KX@qx>|x6GvyshqotaKQ_bU18MI#VYyfB z0`*5rj?On%-)HyhUtXN((joiqOkab518t17z&|x}r^Y4RpJvWq%Isp|XyEJPk)niL z^TOyAX~+1Q+o!+A$SM7N_Sb}*dBJs@rz)1PM;yBS(a*0=b#atId&S=6x1AlG;8;uL zthJ($ey&C}JsJ=tYCW4)Ot?%dKRh}sE==3qT&HsE?PKbc5Zdl7JFinh{3hJmxfdub zjEhDVHR7lldZnBHvSQ+Y8>lsUs>QUM(7vqv9!n*v#k+?!M4JDlr=EvGCIr#`j_j%b ze3_GTmPk$rKGj6f+_zB*CIs(pq9_A*%2Jt6!Q_PC{j^kTe~)N?9Q^MPm*q($%Jzn} z5SnoCPuVWZifoBvQIwm!scCCj`<@g3*z;OFWt?`Rb`c*_C`Yv|Z#qq`&J6t9X|xe7 zp`Ty3CDr?QXysUG%QEkv{;6KeaS6tAWIY^Z>iRTB>3*QT=sEtxz9Mr7?Wk!_EpUfu zbEZcQKA3hq!9_T9kD|8JOhG2#Q)TXtmeuw7tBz0GD+9!V{>y^n7gUbDZ`;EmDj#U0 z%48+s{ez=EUK6CA%4O5?ne*HrbpOyAjFDbs;TKWPrymS&eaG!7{ud8iA zZ7E7}u6Ys;lvVB!#1m6U5RHPT(i^Wo=QLhFP@s)cnJpi8m^0@-E!=RV&@d*yC8{%We@ZX&yDFp-nvHKa34B~t8 zys~!6ogwo~JpNO9&(>+qtHnncoFlj4mgsZs%NeDJl<4Q03#COJ-7Ej7`iHreuG^;) zwqzh1?j((l?wUtgbMjDuu->}zpM)SQrg5hZAS ziVw0%-B)BTz3NAu&x`gAM0_z=;Fk%0v6xh8ENV82`*~jYu4vzPQGevqpfWSs zs-jM_!?m5mEhhQ4%cB>L2IhIreSO|{jt!g}C|XyYuVrpArZ#on|6kiV-DRiq$DpAy z)2%*7ixiqveYRzO`iaGDoIN`y84#!>n~09k)8?2F(c!O){w>OI#r3MkBQu>6d-y zDR=(E0|Gy6$uBlMrF@Chjm(p&zaV#xRnI9pH#Mkxlp3RW%+R(=Gc0d!TH_pD+dq&n zZH(`!Syo61%FV#xPEJ&($%*zS*Xc5z`Zpoa*HZap*8OuRH+hfySNFSbm46_xeN#)r ziz4SJ5fcZF!g)!7Ae6775_$tFV_#w2P(A)7xJWPZfjJJiHvOe2LuW!jSz$|lO~G*C zv~wTSUP8^0>6lu-As@xQ3u6@Owd$w1*Eke}!a)%1;q*LQZVqdS@#nup~7p-?vG9K{PKNx~`1zD>j zvuDy7+OqzLf5DB~@nWE!{2oN?_??N=vaINDf}GRUaRO=$wJ9^Vl&LOe^DtVo zigsLVycQW-*lH6(3K>U^_{x}X)p}C1YCc82rRX=N*7S3NnB29OTfE4izz<3J$Pn_sag@bqsuUz*r~b&buqDeHHSBJuPsRtW-grmFiL62F zgSX`F*1%7ZS)*Dw1p6zjh0sI||5T)(8zo3B)mD~HC8Sr^!X8DOpZl@46OmZFb?Ic2 z52On9Pc8EgzvwgN{T4dvCwx2xXZNUd?ok7zEy*^FUWC2Nvfg^Is@;EIw~tm{p5pKK zVe7-*m1hJHmUBR7GeU32JkVb=TA~OLBPY#=teNfMs4X1NdDLed>O|Gr5!2nLKYuwu zSg?0$ZX1Sl*^=HTX5k9w_k3SCzoqr^V+L+FJj&o~64WyNxDRT%=dO=8&kb2+^!njtl^HWv%xNHJ>W-6?60tIlg@Acs^U3$1DO0)yV0p&dQqXi z)i^@Ns2IQ7#v7gajdR5@gwhAf3iXVZZ$h9xP@=g(D5?szS>Sakp)$A3x-{S0cPV$OwC$n~ z$6iEbjL1v~mOIu$Xy!vvrLA4fs<5@^%?HVk}_ z%7iAW=%?&gbDLKLps7+&NW11%#U)Iwk09&61b+^Zxz+e${5gFMapALZ?k2G%eMQqm zJEG@uZ`3c5v4{Rx;9$(C{iBsFSDz}mZ%JpQ3#SARR1 z(K1V2Mr29%ySrv3rSI%#e%Io+EK1$72FN*pwWs>0SKMmO0iZri2qi7Imb6t=J;Aa4@o`gUxFWzapZ*~gBkU;%V_Uj`OoDKZ+~4?Acv?M zbL7OiaPs=NR>bq)I4@2#v7D6m;q@A=P4jyvCxq%bW-WqNI@e!CN?uwfX`m1F9i>{* zvdRge^??wCqkPrNPQ5Cl0)K5B;KwD*IdV%9;jbm)gMaw_p{UBKLCpt2<%Gy71%kl% z3Vnu-wJcXZr>tD+7v9fNRw(K4eva|Z-*xAEt)}N5WoSI%K8hnGgr?fs+O-Z$O2Tz+ zLa+zGTDm3TBh>Pm^FY%B&K)=61m@GmJlke|xRGP8Ijy_{PO2LxuvYQl6B`0ffMoj5{slh@)?!K?rOq+Y)npL6Y^U zwSSEC$r9nF4TCDYZvb)2oaCKi-ER_V`6FU(`k?O}l%c$h_KQ01)JNO+5cr161YvTH z5d0>*7DCG%jTI-m?<{I(lNIN_>p^|*=p7K3-!J4|-%7Vt$#0P?JrfR;C_h(O<*BCn z;T(Xu>p@$4m@k1_rp()JbUyt|Gs-aTP@tT58*9_eVwpxu=B*2y1)uo9+qrc1f5P$E z*wWj?TNf+)=aIqHhfqIg6 zXZ9%Q9)7m48`0@rc~`uaJMv`m0XI7sIIvw)=bCrSQ=~>5=3K9466fOrmfN^fA$Lvl zhQ`-6Qiar-_cSoKq(P=CT$`FE8hKEPXzki-hxZSBgAm&962!utFSr#;w{;4Aay(Eb zcDeV}#K_p)R<||d5Z83>9QiTy9QYd2|c{fGVE5m#o?45}cE|YZ8cgg#FurDH%ZJ)!->z_w zEw0=VC5ANVAhY4U6jb*Zq=o1-AeZTM=GmXC#Hzi65M>zFfL4k8Nj_RVY8X_5kL$p_u zDu}NPKG52cCnJW-_Q)hf?7=1kjz5#=PT%0oc+5YEO# zO|j##aB&e^7yd&kmC&gmij>>vM=>WwWD>F>rxs^~_gRx*ba&DF>?$oGf3 zM+&~}Y^!5JAngd9Em_}-QchyJxs~M3Wzvl-d;DB-d!w5>X8d?(^56nuz?Z4=?nIJL zf`dI6@i7kin_y(t)LILlPo%n8x4s$JiIM?bRMf{5Dl3WnxtrU%$9U(C@g`MB3Cd93 z1{FQoJ$Y|CDK)ja#OrE$l#$;C#yCjyQ*HX8*0{{tq}!pNZY4sN_1BNh#AlV&Y1w&~ zQ@o8EDoStpgv({3{p#-ZUi`h}MJe_Ue&5)BI6~PK=5^*WtpXLSP&zh{m8IP$M*gQL zBTAHaRyWx5?K9lx)v3m~2GiXMUDx{SA6CqA?`C((2$bn^nQGm#mwU;NRPr-V%e#K_ zfWTT@_FKxPi0C7#SSFf6+B=H((K8PW!C9=i7D<%LiVu`7OEFxcC~0b$e+dHVZPG+> zi&9X0{93T7pnn91wYcn4k|je$RbCJ%T`se%sCA`5q>9Vbu7QuL%U@0iti@%-p`fr` zrX(*M3If+vFy}Jv7BY80;7*6q!`O@cTZk@-2Us8_U`F*sosSy6tT!WNXP zZ;5nQ4&sw}KddDClY`?O`{W4v5)K}{66No+ihO8(u=%E_*mt6X^7g_7!Gp!s&Rom7 zaQC1<@{;NPILLj1JQJu@>`~}wB7j|%;?_qyS+oz(jPoFHgN2T>2A}N^MetURMrvnYUC?7 zJ{ujo@@Mj*xp9u%($_?uoXfq=oVi8kmLO=9o0b%L(bZqh5B`3Sq6+;kQp*s^w{u&h z527SI>LYvvp=whJYa#7iCY~&7<5$DdKc6z)t@X^;yHSdakJ@ERR5;>VmQBApBHFF> zT)d0=$PHSJgG3Ee#_ghAQSU-(O`YTS5DrY`@x$h1# z@H?xbWA{`yYaz5{CD$yMe(mQdcj=e$a=)nZSM)uQ8-7yp+{zv-Lr5bkwJysTM-BoD{Bb>2m%Gl(b*dWjNi})E6Xa zGiM*9+PU=)wi4=5Q-z|C%BppQKt5OpIUy8Wg22d&^+Ej{Gpwk(3_Ns)Uc;qJP)hGCAL>P{XVO1&&N^p22?EK3FAI?2Pb7X1Rr@qx}?cy_I?HYfT64&03cd-_q z+s1qV3PRCj@nsti)a5+x~eyWBsxr!fTm zmHGOzvvQ?{_U|koyRj`r$l*932ZYOK=Se0=AxhoMwtx^^rsy7_Eep@;V=XQdKGcn6 z%`I5jUG%(VfAUM5JNa0umv%BrHl7}U@e4}E2FPPxr^if2<*Ah-k{1@affeQxjOw?6*u<9djsR9n0!Q@PR+{8 z8RPHF<@I{Ys`+H1{Y&lb&YK&bHsVB#4a;p_5bQJ{TILTY?}Mx1xl^Lnyi{HT+6S<> zaS^*^qruLditZiE4zP<=^*dCU*y%D z86Epm5!FA|&xnqt{$Y;i;Sg90qXE8&$m9cQM-7^M5Dbq7h#f~bq?U202=?6i71{FP zGI?smZCUTXRo-cH`_I6hE|X;hpyn@VE(0TdlpEuqzX<}{BHi!~e8#8ZT?LaBg`Z2! zrV62H7KgM+6sr2d%iD(&ACg08@r)r;I`3;RMT;`F1dx4L`_lHzME1`0qZ=+(T z4{a?+YGpmFbBy7V{n&usU@e3W$D!#(Yp3!~**6s*f4x-Bsqop&zzh8*8(*oYO%n$~ zpq{Z7LK9W|Gp!vph&@>D{isylS-SJDz@wd2j|!I$^{zav#6>INK0$IL&oJkAH8Z6s zV$Z-@V-2#_P;N3?=#2-RK10_A*8Voh{rkJ*Am40^oTEgTYx*l!6vOO_ZOPP!hM_%> zrUqGSOf6d?!z8$f9d&@zDry*paNL>}E!TwF_;KQCX&JQ&sq$dywcn~qtFLnxR>| zuAhGYL^X1<6mbO$r7mytb*s29{MIu4WcxT*@5XExLY7GMn_M+jOYY2RUa>JImHvKhmAOuP}ZwRcFo9!yj-`c6Tt<^0k&jP4&!tF8P z0SKzaBQn)u%Rp!o0^7n`2rX}A-&@7~^51&`+hjg{v<&0}qbSRIZQY_k{D8{hhbKD7 zbBWqAA`33|O1>5yJAQ%s-eH?Iqdvre?V8?a(x(mV^S{<~_J1=`pq_Eg(j3*a)+tB) zGOtQcH43x$QRD71k7nzY20QIOyZf0B7TLe=7-#T-I!B%~2C_uGo=tPQEBtoJ!xcNe z-b-nr@~0An9zVDiVaI5IpXVHLxE8&^TKrt`fiWEEmVFfJ89krOln!ws+7;G9XdfaV zBTFG8OEI3m<2)j~qclxEqe*DAq z5)R_&*6oTugYnw_OVq6GEKe9&{QO@C=lM)y0ch0r-6_-hM$Dz=mp zf~^nxJmNDUuoj&K;nPmJL8u6pbwHy`cwf=_P*@a1xJ0=YLNiq+1oc#eHX$m%`kmA5 z$XE91=Q_w(G$~l-CDlLntWF9xy-nqYp{uQvgZsZ$&$Ds(aW%^QjajMLJ(Z=a{8bho zK7^d*%J#@u3!yFRpUzjDKkFT}o9$_DP&M`6#Ngt!iYla#siMCLBD5pL8^3^dy-4r; zc&gX2Vs5@YoSPR-^ado66cU`%PbYd4ZmY7P4{X3wG`=P{6P)>8uwO+#v(*5Zr>aCwV=8ArwK9G{0%__+l5_S%*9tvce4 z>AIGspZ1~7H!Mu_n~T((dh^$_JXwEPV@0-s>5R!3z280Im3SPP*IV|U$he2a*2AAkLJYUA$l=7y&skrQ}x-;*nI&3%VtS?m;> z>W-0kCvIjI-r?Pvo|mU}=EFo!o$*z1hxQ|f=lHuVEAIF!l(aa5oZZM9G4o^A?7h*N z2FnahbY`ztUajY=JYAN(S;$knf6>}m5uShGiI8Dz3~J+z9zBiSKJ=lDoFfjDf|&KK zie=x%jdI3wb!tIp9;!^I8JP7}hfu#{u7%KsaddWGzNt>Ur~i-bILZgDPnT75qdGhH zwv4S+IEX4$CVYA{6+)!y$KA+>uB`;BFilzN7LKZ^_}4__4*pJ6|AA zZ5U;4eeT~dL6))q>p0L}k#z?VK{bbGF*q3i_^11M8(l4R^K)<5pb+%Cl zZjR@zK3yN?k><6<#q6pb4c@4xp{mX&nr-)QX=8GQ*- zE27)J%*E;)t!USp9IlN96+0*RSKlt?j7$2cR;GSC-lAGBc4R>ouFch8B-2JXBj+Cl zJ=qq9@MbSJwN)>|UaNYSy2m8u)Dr_dU%wy1uh!Fh6l#rHav}OvisZ$wnk>9SNsTJ> zKKfXT`cM{^d3C4nCn5yyy<#n#oy+<{7mnXWo$I~J)xWsgS9U2IGPI+ew&rJsI>#A@ zu8%FB4d+b;1hFZ%Vj0e_klS$ybNrQ8$lURUaXO-@XIj;2R{p!=IF3cc$DP+hBmbIc z`gBVy-fuMjs9rX9Bug)bZB2=uKJ)X>m8)wI%esX+0DC zHF5Vo%AMzz{q7E3|1%A5N5>?9UhMluoP6_D5+pDWje!ZcW~sxU{4< z8}nK>`*DslTK~X4fw(mslnW_R<&C29$*sZ~K3pBryRY;7>SeNudLg*T#n({B2H+)beazMEBoHM>E z5;=XdETeZ-wdvnzj;|kL?4ZSqM3#S5?jYz8__`ZHU`vKkx9(^@=~pQ$+_ONrx!-9| zrrFe%o-K>2*uN%)Yds3}fflM!W#4ICBr@eKqF0Yq%X;xB@Aog}SZ4^h#-a{M^TNApKpr?OfNUVc;c9D&t-zLgjbRqpv< z=8=Nh_n(}J2E054R4(zphpa1{hKxoAG;(20b3e}uZ z%u9NNvQAA(dj=gIukDv4iacEO<_FQ;eol;kdTmE;;{A`ihf8~km)Yx0n>UdohbT9q z>fK(-GvG`HXDn1MQcccrQBQ_3r)dkGurDRtoE*q!tr1>S)Dm`VAvDez^%($;^hg!< zG{Y#8wX>t|fZww|gF{h;_>>0e-)LdsZm-3iG#y8c1J!uv@e5MJ{;sRdkoo;N{(d#& z`*X;j!XfPnabUaZ`?DuM$Su}FXv65TJ;*w@Igrm-9L4vP7Bl_0V$R*^K^5Ztr{~bT zB*MN}H{PGTR(>~(&6l$9aiKfH7fk7_@qs&RX=P)?T7+I7qIWaUN)S6yr7Q!fm7LFM z7s4-&mupTno5Y!=T8qjX>)#HY#h&)emm1#cL(O*4UUjP4zVnc+?qAq*>tR=pzo0&J zyXyVwyZqSQ-@Q@ivpOr5JX>T|N3>mCg8}P#-4&hMSig-Q%YQ4MC~l?)Ix@i>mI}8M z{UpU&s|;l&^l!Abmw~$mxbhb9yW{++-*#?l z?L9G;mMj9nq?}9h}hb8Kc_w&e#P6*Gm)2_pXC2y zo!n1CZV{hDztab)q&#wF?@Zs7*VZA(mezEZUWUs5v<;1<1fl*Y54~DJI{8H- zDYk(|8MHA~oBkF3e5aU;rq`nNhoEj3LC|=mz8glZC;zflw>NpG&FIWayc^@cvNzb- zb*9yCuN^W2Cfb{ZgMXhS;^zCv`7X|V_4)4Xj-PpswU4p}w;juoLn`fIxP+vX$f z5tTn@nQN&Xo%OFL`nO+^`>>)%b^kgw+m$}{-9!4?8EfG>+A!)L%WvgxKipoH<8y|! zYL!g#fB&$Ua|VgH4I_3%OYdvhtJ>4T!^Q1o7dx(maD`+TIqD>{tCRn>b|<~V>l{e( zmnbeGVsFc6Oq7+9pA#o?cBrbS#wL&<|rS!wWsb{;vG!GD8Q$(ZH21XyO-8*#zAGT-O3A{ zSEUiIu@B`Y@*vG!%G!PUl0B?-lmV2NBvZ)=!yWMa^z(ufAPav)vq7lKsm= z0-ZjX*-E0txFi3tUDPI(X$)5Lb{#_TLA8_*)*k_S+N8aFHtV=fg4GR%(-Z%AOErb@bnpe%0s zIb$DAjG=N4NBh)j4yX34_0hRfQdPTW>Tb)|tF(A?(!EoS6zVu=q>-|H7KfS};>^G> zX0~i*KfIIIPTKx48*L?E;(r-yL-LQ1n))5#;O?D4x`JL5t9K zjz2=}H6_``wb&1g>-ue3jPPAD_RBCr zhxl2UtYui=Zv8a~taa~cj6YABded9UiDagodBIB(dj9sYcc!t!^}h0~Ge6{b-jD5$ zSry~|?WGXXtXQ$M7I|K8AAZB*ZSf(;UvNE$Eg42Nqm}1IkKN&k$&>hk?6Lk^jYuEj z)@JoszvrNAH(*z+e|2H%!St82RyjN02S0f~`NVYY@G5VBUZTLDd1j%l#f42r`b6|j zf5wVWuD;{or{grLa4!QX6t7M{>1Qu&=C|?S%hPu!iz?JWN+DLdE5Na zhu!ncGpo)m?nJ#Hg*wEdCB5t=pIx-xs~TyUde{5ULinrOF5)aTNbPU#-dOLwM^tO?k&{ z%QGS+X*Ef=`)SRob|xs+MBL#G+sI1pf8zOa`XH^>Vvo}MNA1dDj1_-R1H>4WzUEv% z+*7rt$j{chB9@Ay$OG%G>N7|rIHau<(e<^DzU>Ef>Tw7kw) zigqT5XN4k{_lS;mzf-STzg5nvy^)Jnf)?sxptUpZ!E~j5`13vgc))Z~gFl6FzBmyjb^< zmx;Er7mLf-<&0_;?|-|i@;*&&$UGK@Mp>zd10{<13}bZYFRa^vL)JStT5!Bk6E|qC z*>PS-WZ>zBzCT1}nv*|;IC0O0kuNZ}{ZF;|)|Ep#RYQ&|s&op)3bI8a-JD9sor)pEze0*Vt3U=dZFKJXEC72yZoO7PY$CuTA%?>=Djbof0#^31> zs1KwBb)ZxAOU?ZJ)3&eKO+}7hqy+KlIGP;nV*gmCYAD4L+=AFS%Yt%n>6_vhLr|QFMBR!q^7EHbV=_HPOi0IpC>}vIyv(F%m zeSC>&tiiNJ-m%?36mhRHVoxvF+3UkSptsM*__GcSP9HhHi7LpiwP*9PXV!v<7o=`B5LoVK@w6zWu6J~ETNx$Io(L9s82l;92&LL0{5roHVP z>waU@f9vOsF)JK%MrRwN?%nTn61Vqw7yHD^PaFu+M~Rf+XY`?TLwd@9aC|%dqRP}C zQL~0Izu8B2z58BI@6mmnkyBYaY7Mn1GC^O-Z(qMMn|)NIi5A(9v?EW3abRZ``)tc6 z4pnGBs!X)&RHcvSOpWJ?Dx`$QtHfPoC7J#1^JGOhHoQOA-$F!xOIeW~#O9R#_GhnbU?u8xW;DLmSrzQ80mxG;3SUeWavNjD`9TTRqB-gop>>F2uT`@X&(vcJBWr1XmsUmUy;RJ9C-NuWsBSl(QjblHm1{Mn z1Jn&dyEGB!^F&5Uc?(;fJCChOwnQ%p#GCh)QQzF^6LGIWdF`L$+p`&=tu(5Tk{9a3 zMjV)*T*tAe*d+V=MQfZ)w>Yyt5BOo+EPIJL@xoP~WL6`uVES_SJ(}0OjV^7aG)ZixBjEXJ!%M!`!c87T)}QK7Bo{B}HD= zz4Ogkhv_`Ru=h2cZ?^3z%kFpbyY64KeXiVmGvGHT9?I7PvQy6Zc)r=HIay4myL~qP zf)F)6oo~8PVTc2>g--F!H>-PPyDx^=b>D3ZYaz5@bl#if@#YQT6OKoT>=%g{XOJN` z6a9Y-m1mFxo_y}l*F%;KV@$=|JZ{>TR?q*4e6PSc%Ey%($!h0%?jYd`3NiYQezDwt?UAGn1^H)=0j+4 z!|kUa>#doAJlY?{@x&ERV*e?UkRb&}R$e8mwK-jxU@e3ecN&5NdCR%4Ti!iQG^$V^ ztshA}<@mUkkkys~fjswu%2vH|y4`@ig3Bu5DKOXgY#E!IB1qwLK> z*IB2hO}K)f{N@X$PBm5jegz@(o`19LD64({8oQDsiU$TyGgFI5da)Kl>$1X3r_IvHuGcPT5yJK5C)yJ+O1pB=Ae<4LT3 z`YIu$U19#+A+6mkv?w=)K|)|Hl<4yy2r`;pcTA6mityoDU0uPty?Jg9w{es~x#75? z^}!5Es9jg*7i^cm3!)ENoqw|mPP^l=I``x#UBrR7Mb5J;qj;XJQ>?Tv(>xSaD7~|c zf>$TU`uPV~qDB=;0V&k1JwuAbhqAuRJn6QJ?W!{A1ECG0c4&9@cb0lq`COyy)Q!pJ zqnCrlTU+&fzRk(z^kTu0Wjoc=W&`4GM&r>udgN4RjiYw3X=huNg%vqBS(QYzey(A6 z`?-jK$nce<5AavE@;JmTLg;*eztSLF-*rKQ7M>wwAiq>+-Ugf@(FhllWmOJ-T?4tHZ{4G4iPiMvbH&w3l= zPxL%GK7nI@MvtmnBK6umX`y_7n<$Q>7mk)V+8M?_BWv-0W(>3rZmOi6tI<923hx9v z_iK?t*DnaqpygJ_vG2uH;j9QLK?*e-8Xq`1<2bKFKt>1WtrRr_n6We2Uv`I@^|>(7 z9Os6J11WUt6X(cb=a^*k-QVSG8GW!0fxZNxp9dk&q?Am^+EH%myBu-4^nBtSmT#it zck!3!&6cPo5v2zZsuumCpsB3Br{i$r`Z9i@S}K;0%I^G%dhNKHi>#rida$)aKj6Rp zk!%iWE#H+mGbY)*6A&EPaC4;QSHwFFe~z)NvADNwA zKHz@Wy(nTwoufx}G0<2`=V}jD%61ingpa;gUnswev!c=6*zSe@@g6Szk&QTTeUA8q z7ftxvyP}}95=A?mr7E3MIa%Z5MG#m^wL}yOpLlnyHMNG+prYOE_D6=rC_ack`mRGD z=c=3;nq=jk*FH}l4j-T!kprS?Y5Q^PQda7IEsmZOWrZ>{jB79buRqaRPPBZTNI=;lCypLLKlMYmwWEE96F{9sz7ulM4!dLft*W2d{ zdCsYD&wfFKKlb@hyhZ2M!hLZaBINg{tmTSdyhUR=Yoi*{ zj?jj&BF8;;yZ?6Y<+QHaemjnX75}wI#hiO(RK~bY!w4RI-ZSCH zmfn43Cu-6)qGSDIRs}iP7LY%(KlP{IQN*)CnzySQIU-s;Z82-{IHxtX)lf}V=f95; z@5To?X9zmyzz3(3F}f2ceV;lp>*VmE?#GEc?n`U(05jUUoLb2_gH-c`e3L~EnO}mO zXiR<1Fz0Xbz@@+7UySf!+# zUXiiF)>kZ3vzHVci+dUUn>d`)38*|}m7G%4DU_Ea{ozAt~;W%Idp2euVsU z-|8~88xL8R;6&+Aj38!gzPMdv*bvdil(R_Tpnqu(d7+syPwtDMo>BjXapuR5Q}f@r zXSLYVjbpo*1?*WI&wD}ArTtrHN7%hnP4r+4z2er51eLMQ>bp1@UEYvKme_8EKFr2( zCXAM$Yw(p<JpXEc12ucSecbAV&nr`&$Nr(e8CLuoJ zTm41bxW`KIg7J@}Zk{)XBdBN_=Y}cslFTX5&zmRa49;zz37XH2A8jJu5>jWhhM~?1 zL`xQ(Y>YWT(9vSOwIKeex6aOMR>LXXd9DwnUA?t2!iP4d%W7DT-1hkUDJ=X~c_ysd zqSI-4Kguu=cgDGzvlp(g)7gzG6D4@+q(dO>SPP*=&VjOryq(93JomB1Ins+dDEpqc z)!c#ZqEqDA#-(MfZdH$1TXXl-AhH)r@TZD6eTp_kiAe3K$mQo*23d@2#}Q(@+?uU3 zAAa#)D{{?Q&w$hz|AJm}4cK~Xj9=}Z>+8W6L0~QH1tP+sHs}d)biVG5)9zVqAR#|2( zd$YRTP3(S5FBBa4&z}*#uA)3ml(&eoE~{B-es81qMtP=oo5t zmzc@yx=$Gd#9HKOkhrr!CnoD#9c86^d}%bXjA$mXG z)97_>E-Y>@9JQBWTZjW?C|*~&Gu)cf{G;i1%4DPMQ#(vxjV}^AE*2S-XO!vidHqz2WUw?6=mhU?IC+=SWFo;U8BC|2X$V zgb!E6hVdc@q#flZ&TH?M;$_~rX)P{aTJsEXgJS*H3djd3p}r zgN$(2XDXLT)~m}hPUsAyP4WrrgB)4eoKt;x%@HwXT4acGfAG*(F=mhTGACexsxjhJ zU&V#L(sYfd&5jk`ZFMKwqvDgz71x3ymwlp-WRq5l5l*c1WE{XRAGEf@immfhO&Fu$ zSX4aLERa9+8GMEzcIYj2qKMXqw4)TndypS(_4b_*?CG^{B44v0&O9F@<0%mb@+ack zudnnDU(?QB+BdH@PsG{ejGYPoS!uD$JEC9(c+=g~MLpH(Hn z-%#9qqgx)jXHecCv)@(UsdtG1q2d+mN4q488QhJd^&R*y#!T5JtxvbaxYvI7-1%;i z_qzoXwEcFpKGcooMd=Ot^ik%5?b^}>&3EZKM~R}`bR6P5N_kPOU1i6a{i8nCA`Tp7 z5T6c#TEkih?fL~;bGqZ*1#JfkCE`Rba}~KP)_|spP!?;z^vG_*5NkD4MKo*UV20Nx zZn0fm=R-I4^d7$WQuv4RZbn8wh)<3&*B_U8A4Cjn20m>(*JdoplNxcPUEx@Zz34@9 zGYnXNXtKi50B24jDs1K%@0s}vJe~JU;D`fz5#rP4J{k^`mClE&L!rTpb)T+5ohpRD zc5&AcE#IwAR)TFI1WMX4J{>>E3cu5oC0ipn_52AcQIt4rPgQUh*Octfk7*u3Ty9@o>j_q?nuA$gxl79QX8*Uh&So zxpH}+vpc9LlsG=DU&AU?CE63TXdLYbXY>yoKd`Sznz9rN<^8TiJ#%A3?$)_4-pZF^ z#a#dncL6f`Gxl?_SCifcX>ZB>lRJ>=WfAYl*mL^ZC)y)UJv>$65$& z7*iL8*!3DcW(Q+S^E<7@t-o@?&IpM+Ec(fhOP7dT20pM|q}HuZvU2-Ggzehcf0Gr; zM?^}SDgs;ib{XZpwZ4z#>ru@b@m7C|T+WavQkZY@=Z=+(=$FMOa{N|YX#Fc*wtl}z zZ;ta4o%qLfZM3hYvA5thzs#i3$!v=iDeymuSS1%D` z7C0hvgkSm39J5&miV=>sV$2w`)Si&^JQLu3xbiaO`;_;gvMVdvVfoHJZ!OPvhE1Lo z#jzHyEOdy!uhg~=7O%-kFA9P@nJN3CgDA5)AN^Tt`3%?fS7FnTvE!x!yYVST~hu!~JdHvjoCD6(%u z@nRiF7gw+1eS_7}wd~amx(16aoM&lT>`cs+T2PxF4s?}|~ zH&3gzo_bj(YBMtQwL0erfwIC{2rXolHp+T3x4Hev;=COB!1W;VWEk)5OS697*4_U4 zrA`{>$gQ{?k$wxC?k=Tvu4Vs|a?f+2@avk+bFGEe$-Ac$$$v-j62u?BEuO%B5Go;HYW?ETU)@L%RK8>|_`iix19wd5HSD)4D zpK^BJF_riq;w6fhSL8`9uA@}T{(_kJqk%*^6xFvhohaiH+bp|9Bx0^RGQ^Z zj$vp^Cc0c31!c*J@Y`p~W4=+eK`+ zyOhy86(#BSnEdW582DPVYfE81l&Jfi>}u|#JXWqZ@};sbCvaTLjA|p-{gkOr-vhXM z(rfj)Q_D`v6Rde3lp9*5VT}EE3)|Ol0N;}DZFbtDxOizM`=`{FF^`L{t}UkY=6_1_K;6>4Juis-}8cATkd{- zd&01W_N>P#jQX>ZBKB>BHjKv~Hn+o$cJTfl8YHqOx#N<#XpXu1w#=lXj|PQ*uWi5H zXo06q!Phxj975|}^qYM*tyYyP*x9-Tag-=hrAs&J^e0xC2OkPu8U~K^s!UdbeqM|p zht690ANO$}kVCAcz7w==iAq+Ptxt#eKD%MZFKLx}WA*zSHHF;bh$>>PKEfy9$CPjsV7c!Nv(Q*l9;#0 ziXChjHHYW5VmAS9lb7r=l`Lj@+h-Qy_J#z%X(hzwYT8|A{x}Wos;{Ch}=2=P{;e zZu=F z(=Lp#dySKFpHVNuhw~uRlfGg>2<#s?&Wo%=^;6luyToksTyITQntUL3lw_ss)-Y6T zHgTIdQkw3is{Wxv&@Uuif>5;(T10;iIm@;+IB)H07RB*A6YVN% zqC~MJ!+8Da9q)ml9iAd3CW!or(h^7XtLH0FU6xn(si#FGsU8*WjLu5W#4U2J%F0R{ z+j=2{vN2^bLQ<=$^6N8m*w=?-(@w*ezZdJ@o;%3dFVWBFXT|-DrVzPTj7#cr8ZEUTFNdU{|Pd z&a6MM$gXEJsQu#J+Pa{%q~j1T%KN|AAiWRbLulh;a)yjD zQDu@9&YZNH_cpeLIzZhR1}{*Y-y9KY*Ity3qh+8k(LICYUG{UF8=yY)F$y72gIEip z#ar>&e9W7rt^HHOlMH(&&KdO#nBw+X#*GoxJIR0G=&X-M$AxzahU2T=+lmh(CD5;bP1@k5`NPzJM(!^1X;3}zhX zhIlJMpC_K3{5sEBqn15x-zCqP$Fcqs-#D4lZS)^Ep2Ygkiwx@YqN`yfzOt0n`7obd zdvya|WNnhj#Yk(8##-J|$`-2fnTqUtU4r>{7ozO0XRmlJZjbYy>m_j@J{`xXwbl5H zA|>syZTB;@QLKd&iWgjZSLFNq)Uj)g?4dzmE$jv2p4Y$!Y^tZEof1-t<7g>PW&DLc zA_}7|#BCVc-Ydj+?s&_-^5g(RO0d@AJ#qfHK{79^VJv%6m=_3%ve%91$M6@F0=D$x z(RpJ?vYB!)D6;&-dcHBC$>w2EZa>N}m*h}^iFqxhPRp`v6Mt`5R{7zyfrH$=VO_ouVn=3(onb=~Z; zg4>;fL)tf_UesrKP~?f`rjPb7AMF#IFCxzItO)PHAtma&q>8AKf6?4r6zd-lPI`{e zZvBqA5+mN8kl$5p`Zt>6FYX8s0r&1A1Ro{)7i8rMR<>@Wjj^W+KF$a}zWlVF$m!$q zG_rKExkKC&9~MV^45+uk692K?$GT`UvRqZF$A`YR`Oy9ob_QXgchUo@VP9Y z+sDj*YMF?z3L=H6i&U&z9HS-5|)2O=g zs_Y+R8Azd!m-8oAs#pupKl=P9DdQH5VZ=|m%3Aj|_;+*P=6kxOn4Z<4&g}}6mCi?M z=}l~N&W+Z07vHxL2U;KE)2UMP4;s%^ndTz;x)x^uxMIOkUwx;R^phW?3Qv2UM-@>Q z&2fhGJRHx=mN?Rm(26PvF)-&%Z+OGu_K$Cgoo%?Cg*#sQ`Jj}RoQvWZg%*xGA+o;U z!5MLoL#%}oQ4sWRw6C^00*WmMTV7pkB zR7JH8@Z>$()c$E%agipF^NYQ$vtkUzBX!IiIs2h$lzq)DiyfW}&qp{Q z2VI5^NG3?Tn{$LLk-Zws&z5S+yS4d4^P-3YJ*r`}c$C+g-F}fZEomsP^-Gd}dlR{* zi!a0Ai!tKtCSkKT|KBo$0P0+oX_bolm--+-LM7~jcm}QeT?r#0u-2_hu6NcUWhG(kL!8e@lSn(VFgaaV>XRd_y#CtKpo z>$8(A_A%qFFJIGiqu*9s=gvVK^7f_*!%3&(zd+@ci3OR@fu_VnrN zJyrY0Xs4EV+Kc!^UYz+~TJJ1f&MHmsrQtx%ar6!57`!Ir|OcpmtHu)%N`MR~I z%gV{QOl_%12e%K(NFMo}a3F+ROHh^J)ewR>&$)3G`}3z_JnE}(O@l}k_Dy}Kh^#drN`dv_|7OMwp2#P-c-i@;!xr+QvF}HVo%4N2?v4Ilt6r6U&U{D;p*` zG7;o0t9$r4!y%l!$~9+81^&ZW6#87e@p1;D)hu>uFZy>sR^r_eyJHRN(1( z=Jwnroa{+BUKz$8{qnM#r(Uz7ij38EQgM$=kFrRt>SgEt{hKx2+k|7gsKLLid1i^f z}KWsFT48ap6Xf@c|dViXy6#WC?&;wR5R511##$9b=XzOUNLr+wc%VPzVXu-v*H4I0**LP>f$}f z!h!ao23M@NzR)37-;Om8Ws&+oXz?0UtrOOyN`JDRYny0$;ke7K_V;P6ZWuR)AGf;v zafvPbG>YRMJJv#I?WTnWfwkPMbrDXlaQg_}GNe$|;shY#Y&Ez0dsnOM`}bfWCe$Oum~x4sm6eR-VSeqXE4J~!owvKz4_W22g_+~s+k zWuJHTf(cq=4Mv_Vm>TCNNz0d%bKjZEs($#n^?Pi8j=x|;iXN+W>VpF8-z*+$W8pFU z%;PwJvn07bM+p6$(Z|h$S=^;ht+cfxIQ}B;68X(;5*k}FjK5Z|V#B5e+AD*@o%beG zEj;tmAxK6_BjjsG#Ro-BXd+j?U&P2c9FDtEstBRZZm1SQ)L9i2X?M25e~r>%s0 zz3sLw|KqXFCyN)^Q!Qn%&b-D9aPuSsCtb6OnX&OXm9pe3dhpfE*o_5v2I#nn)q|h+Rj5um_ z=>D#qn7m5kBmSpke{u_XQi;&wF4p$tW|$g%y*UYp;J3knxmZrl@BJc-pU5%*+XTPg0rtqF=85p8Pc zgJff_T@4(T$`-x+mz7uCSHpHu&pM7`hgVx;2iCP))fbWEKzpe@$^Jc}N6`vG=L1hh zl^>*?_+@VJZmPp=uFTSWA7Ee0;vXs8z8}Av>&UD{Vg!-+jfs zMSV`4S%XSz`kWeP;Ru1XaQ-N|)U6fP{pD9!3%iYTKB(HoSusM3Gx~m2tdN|6c7cjf z8Xu^CisH{$0kwPKejK64(Hu^j(A?wMgE(+0bPVVGW_siEK zD7)A%X2)%6JfG}a?TM+|-s<Ht=-fL6l&GV-w$hc1I!Mc?oRcIMHRpN|3 zND} zzI+FdYP)kd+HVhhk5=&!V!rF{y;E7`gV0}t!k3Kb_Nsi-Ak61}H!}6}DbaKM>Mdm2 z(^qBsertt%lUecLP-o*W2tn^c%qZi$$?MZ0@E3&e9Gv5){1bAFa$%yKC{OhZ)QP5%!d3P}XWlb|j`*fZuV+X^0ZrN~ddEA;#^C05f{foA7UZVOu zX-#<|SA)Oo58*4yH6?3zcGU!>7G)q(S!h!_C1re97$h%B&(n()c3#gWo;tpj&!@iU zNh|9Uv)3HCIb^!cXbbnq5TC+9|3*6}SV|_?yVmZT=Ra^tN?M0d`3nep)eZB_X?cSp zseJLT6tl+uK&PxjP_3=(*;)uKVj$~|=97M%>g+%&4vBMmB}CmnSKp;{p9evdJP(3e z(y2mjTNF<5=UOAV{r_>^@PW&1ueVc7iX)WzaIr-5UOVQAtQGPXtcB2SebNU?5o@8; zH3%EePt`m3)IZv{NcP8fl)ln1cABH@2aDy~HA;#^uku7a3Khz*D=Dk85jU(0x4!h| z*xa3CE%J7mEm1;DV|6X>lzjZs*;d+_DN?9Y74+M5tKHoK{M}kjZ2ZMNiNzCT>Vu2U zUbjXJT;%=F(e7ON-LxfzwEltA8b;}Ui>y^|JYaX1yknEjm9?XXLww=}cHj!DcI|s? z-Jh*A2(%1@7IzdUJ+ii}v)RDps|gVpm)}(D%ItYbtu_p;o{vsq>B0--CgS!S6-tqgDPhF1U^4MpVKiddiV}G2v>!gfG8P!I-wmL1)*%wb+GS}Q{ zIqUXRvJriBR(+6kPO?(tIhASD7O$BH{_U-BA+I%e`8ZzSdYn0-lrzgP5TA}C=kBN8 zz0*|}qF@`La8lKz~^|AMGjRAb#hgUSkAAfu*44+SQoz?AYS2fe?bT; zuMw{m5QQSkO_^X`Wnnos_;1~=#GKRNV{6G;+UP@^)1TtrtyQtJEVr^fzSBizxqYQN zK5_4%$TG__FNgizLYK}wLq7einz#4TQQ#FZD&K50OlsaB9W zA3d9MtK_NG?8eLw91Y%iow7!ln$}1k6~jX#=~ap6k80G<)d-N;cZvOyiW9AzU6NVk zzXR<$2a^0Hipw1O1*#@HcR`xfsi)x+IZRsz+U-hLvL+Rb;xCdhYoXi>Bj~G%?8ee$YvE>xyyAUSbCSjf_Ic#VFz)vq5Pq%ZHP4@s6E)9(QV+1%hQ2peif|# zZ}Xw!H4WnFw61g4gBpgCi5fYTd~_T*-&NAZIWEq9rF2i9{Kq=s+ihhn(1>Ht!Be>j zlVZiYYw{HX!wA?n!S*iBA#RoFR3Sc9mN@imNL7gw=J9 z|45bM>2tWcHTzo?21i>J&gxVlC8$k}DrcsTa}hO1!M>tHV9&u?IFr?1&LSICv{PB; z7Y!4ynIj)AmS`~!%9nviKIC^LM1(I-V3PB?5`7mp?~9e>v-b?Dd-dHWc8n?8op!aN z)-K{RjPR(Iwtrw=`*vzqhI=x&qch>(81q^Uxw~T+hayMw11VFjMqhnh7wJ{_#uX{x zjJu>KdKFdNoXlCy?liNoy)-a8$GslJ_m>rGR=z|#EOfSAz1C=+HPK03ivN+5btXdObeiuU&E%XK z=fN+YA>*tVTQZD~#%Hz94M<{#PP7p3&&~JW^U84>ap({ohcdg=->=z+Po4Cj-1jVs zHS?r7C$6^0onW5)N!?_XRw8GX$}(sLsq~EH0#yTqK29C})4Jcsux}lFo0oza8TJWX zADR6w*{*7r%J24iIRl@>@!ufGcBvLpXc!H)RkTMBD`8*$>}Q4?A|+@s#J8NqP>I@l z9wiEg^t=BHLit_QH^r+9gPC1;aT$Agw{BYhK;0m zRkeGj{mhVF#nqBw)LeGd%Ch-}b$NOdO&^FuhgewOf=h&Pn7g*IV^msUo1k)kDiki=wH(tp0{Mko~Ji{0-9b!uB z()`|&o9vZwr9|ATOFQy(B;S0qqF6gqu2Jzimz{&hC7)&Ym%puXj_v9Y_v)=WFXs}*{8StZN1-|5r^WN-_0)br@7@YAC96K@2jy$@xB_i>t<6mY#oQdl>SF~ zIo;gK>I{KS%qXWco|3r`W3I%TjkCz}GpvQsV&t3?&cB|Yp9eSH$54Yvp>FNz8Lb&* zv=+ChGO}YMg@{k+e0FPI_WP6Up>L1YqYxiT!7zS^oytyZSi&~6?JsVuyL=!%9mn(X zQ;U8^F9>Fwg&>9E_RiP~7X3HnbYt-Xag6!L4>Hn)%5;K}Jos1p%otggaRC3M)#eqd z%1qGWgvZHmPrs-#`C5V&EBW-ZJCV!6S!s)07UJJxyB5_gDBc;R+<(P(C1$%L-nsmi za-KP5VIkr>8&s9IDRzJ@u2V`#*UhbrveNrUo(5IyvG02vJc<&c>ckP3c2$<6!T*Aw zTB;=pQ8wf;>(|!DW?pY1-j;Ry9a5tAL1~9_ghq*~GPSEyg%Ii&;sbS{zDueQLbXd; z!&(R}_Q*hks3}!OZBm&qNFJ!9Y7usY56gu6e?w3$f>!qS-yu{jgTiC9Wo8sJsz*}3ER9F4jZTy5$QSPReVQ2*kLrC%<-zv36{9T9tueh~d5 zdTZaK_{Ybvn=Ip8q+b#fG2QN6c@1N%1O)1^Bq zKFPnQw9KbX`!i?8$nt{SN&bF?Ri15Mi#@D$?F#I~q<-3{hB$Q2|9yLfb#=h+-W~Oa za@?E5+co-)5%$LK-dc@rggu;PJ|Y>ojL@F+1_wAJg|wzIqCynF%a3TPUW#K z_pI%Gv-<>byWhR%gZF>*d&0F+Z+p6}ZR7do+ystN)V%1s^UdF0a-xu&vpXeW>EYCU zXOu4OKdA49G5_es)X9&+yeBqH(x^g8^jyUX1NC!tCP@Bu^W9{B*>TTC@(4?u_Yyns z?o`jx1`{~ajy$0@MINVHqwG3Ot6R;y`fYN`b$;@rU}vRgLgs0Db-IV0_3I|qF_HTW zYvB!99Rm3v`KT;nC@Zv3x4z+uSg)+%2YuELWp3O?k7sT5v8Ecs^pS#|X z8Jg{o~JH%V^ zW>@Fs6LmKjYaz6lC#)Lu_6M8Ghrjt`631Iqt+ys+yyu3tAaaHE9b=b1-oP3v-UZNZ zfQq}Qt%c47pEhdN<(tObb4!axHhWlb7tM<9EfhC+$`o?S`VF3whV*U`S=w=$(dW8W zK-3av%^9=%2;T%-e&17?c59FSkjrkgD#fZ^G>Rkb6bYu@pDS`>UiuqVL=&whYS;a& z7G=i6wh)J!4a%GY=ciw`7QR!`>a|e6;f6j6Z)6*Wcsa{fFK5v`+MNSvk3HH#N{~Xs zC}du-+BYj@W$)2V(;(tNZHjfy!-<{`zUk{Z5I9NewRnFFHES464tBABtntKp?e3^; zh@I|1s`s^!S|^_+duwJOkM@fkZfBE3HZ;nB8DYB_NFp+_l*pT5UA70YbDIPCjKxvn zmVc5zd2KQ06>x;c+%h76`_3-**_QGJFr-SAX?>0q>X}>IerMQjSw_ML>j$fV@#roxsy2d=Ig;e%O1c7 z&WPeOc8YOnhqNoS5?#86^Cwpm7|X}+%hcnkRBR2ReR5M1nebC#Cn<*!_`JX|BySiYPs# z3T+oDq@3in8P6+T=K86zxFwWm25ytt50ENzQKEQ7P2R5-H}%dxwXQYW%>u?W;wVwH zF`e_p)oZXXr`G0o?^V_ApZ~Tj(cEy3R;JOGj$`GjO>D#tgQtpH*c6kdvQwfIbk1v4 zJ89*6kj8!wYoSr4ahq<(@*GFpKI0;jr?Z;Ccv`v#`~4KTnpC}(PWVM8=ySC>uORP| zsb8o+6SpdIS$&rfuDwTd@gAH%wTQD0rx*Fs@8Cq(l;5X*-T-G@F^r;3UgjlxzT@~r z)Uzs+-_<#9m)M!LPWy#5KG0Q@E^6~yT%y_ds}hmT>dbI5SSY&WtzX40-T+p7NPqRg z#XNS`O6}~U6Mxh0rBW2*S|_I6uqnDx-BEQ;svXISy(RIl+@~bkX+MefEamQy+-IWi z;uWRX-kzuZ-{x}!*ZE+q;=+!D&5R);`7u$E5M^@U?uOWz3oWXRj% z-K9jc!flyf67$#K3qFRCb@ou!F5hVWxb6)P{!-wZM04|9vP#3omJH)ep#)YXG7snN z#LN;r4)#Iaw>MqTlD)R2J1A{$NJtS-pR_FwQ&f8MUx?=@7A5 z6Ih!|xp{P=K1Lz!$dkB*J)=FF@K0y{Qt7JBp{l|;8h)CbOFP@=j% z5CUtVpVuMwnm>AqXYa!Y_4%2h2SD8*PvYFU<~G)C^X5@pXFTL)FEzB z3aST-89rGfheDi}7Em|hW^tY$JfCEpz>BZA>_NGcZp2+d zrw^i@#M$;Rn-#h7#F~Alu}!DmGGBO@qYtD?Q7dj1PhS~+Wot=3?SMX>qem_AbAma= zC&zhxrjPPbWtv&wtlu!+Sd^2W-CWha!Lw?%i=6A0xT;cg_^AQ6nP+Qvj$;vyQ94zt z`t9_jzA=D5d9t6OOi=&2&ix~+4i)O{>Yn!{n_-cb;I_YVJ$( zX!kpS$+aFC3`F-U0fqD`*0L#6>8~t9(nFYA*%4iXFKMo}#M(%kbJ6a}= z;l+JD8MfQwhXnJQ7~$x}F_eN~ytHGDcg4B^JoMT=%}Nkjhe!_jnf;XSCo9i|W;UK1 z5VvX!$3Cz767(6Wf1odsGnrxcf3PlAf57^$Zm3BYC5pGX#63uN*T8nyfEO}W*wn7x z2VvzUcAeA;@r@tV%YxS@q&bhOAHFDSKYIL)F ztB+ogRNpgpChR&B=5Iyay8Q$7FM67>Cfhca{GIgFcLI|AH&W#rBdSa%qe|-Xy!J&9 zSWA`VEOTS`VQ+sGRF%)1A1+pRuJ1$37;-$pT>OVzix@`7?^3K^bB%Ot*Ucd!b`3-h z(-YT;LV1@=Wm_?f@#}80M{Bz~BM#1%6eZ+E)puznA?v%^H%!i zI61MC8g|R77_iXWsqV87s+P|Aiy*L;qDn@wuKX!T?I&ve+5cry#tS~!A7vk;y%MEC z73GV3DE=r`RfoV|o(Dk^5wdb;$eJ&qTn3@eo`b6!X}c1OoGYr>d|L6UGTkzya|4Qj zmKsC|ybGWpNNdl7Ah>9aDtB&pL1e{nDU=wLtn}L_?yaP%!`(YHFNVNccJ<@F#ubDh$BuYMNLIuI zq^~(Mdjo|}+SQ97u$C%QONtL^yU01#Qs1AoT~&*I!CLCO#IYsYb+#Z|9Q*#I4%#g` zyt_oXY~(2!`78M+sX|$yjlHmcaFi%opDta6g*1q@@UFy*A=IuDad^I9ieK)wT(ASO zxn&mv;lOqgANCa;0Cj@kkWk~?F6Bq(Mkw1nr@|J z+$`-jGR}YO6&YE9QWtO0xx2L)qZfHgca3`?W9LqKQP}0wYPl=n%n*tbL6ru9o&lj% zeK~$8K4>p&L_f(BmgQcbgn2Op)lw~K5KiAx?Pji}AO@s{`!c9gcXd?@LvTI##noI{Y>Y$ zbV~N+d)L|eH^21Mxz}Ap|Hb(u|CPUB|4`6Ug9w3bA+!#Gd*P}-lN43?**Uf1fn-K) zB@dQVWyaz10lS=9uSKn8mX*R1ZR5L!_(Gz4+wDSz?g%Pcd$ACqUkKrNA4M;EPUJ~D zskU*>fU8FL)S9SzW7AD5{O}^LuT^&ux$J6i+CU+<8^t3>#mj!KaA$DsSW0mAxsFfl z9Ao<4UF!NrYRSEMFJYuF85i^XS_rMv_=9+7%3G zkX}4JGF!e`t6oB-{-Iu4k>2N6k-k>8L4~ZJcYnwiPm2?0baKog^gyl?x*w@C{-0j-n2+mCv;b z^c&zE{>Mm-52Ok$#>GHXsacUjN&0+_%BpugOV#t{RR0x%Q{2*?MN%JBUc5|})$WJH zf!2=tK-$rFX?$?BAB0AW(IK!cWn*MZ2(3flFNp7jI_GM}LL5>wRba5pZAoRCojoI6 zr=P2PsYpBG)~M3FDA^cAg%Kafp9aAz+@71hYLKIvoF`H_KI6L%LGn?x=#FZ=Q_eZ} ziy<7U)Yy0O&3OO$mXa!JY4!zK7I*b~AM?ywDPQf$(;>k><07>yqD2~h?&l|E+5PU$ z!ilaY%P}2)L4Babh!gj);cR}Y ze3dPzkJ2W! zL}i?p$k70Gj>p@jx-a?U;1V{XS3bMgfd-CmS8=Zx z>xvX=8nnqu)LfKss2QM+V{El=*?ud(o$yCJEhZJ)MSOcU#=kFL4xxi#8|IJ>!i zb*hh?qeL{S9NSe?;T%qzQ&RuUM-gErusW}S$sKwuldQz6?3Q|! z{bJn&|E^jzPPFo=GQHuJwj^FeR)t1VS?mbk&Ff7)J;}j=a(Byy?cydJNEMzHU@f<7 zI4w(mC}?;5u9|Ht`Op|nW!m?Z|3C=DO)^z~(VDDM3M8iIB#+R>D^;8R zmH9Gq<|ZrI>Z?3G(f{BzSthy346zg`>;8$1iy$A=jXp+2o&Lls^FY3NudI(OQN18Y z)~CKpOQf+$;ZfE=J%`H5!>RAj&iZgvLkcrdbw7?ZsGEx~E!NDQG$6sh{torKt-jG# zynn%NSvDdP{DY=b+2=EiD1g9P2>osU1pk=ymJ|o{udWZY#Ib8!-RKY)q3rI-Y;~gJ z-H7JT>IE=w>70CjyY}|Qu?ham_ayB|mClF6A|;HcByYXp=19?{%d7(|;rMP=e``Cj z@{0FU28N_xVWO1~t)16|zT%^Dz?5QEh~4~ni;P-?L#@f{%qWuyLQzDzM|;It2I*Ycf~qeq1>05SXQ`4f5<=0d_)wf9 zw8BCEMvGiXuD2W#FvV1!6E&+tpq~GavhRSeqS*dl=_0*ILdZkuRY0WY?uNaTBowhB zAOa#FAWcKB0Yn~BLMTZ{XadqiL=>dt?p|)BiJ*ugh(Hhl5d=k0K*0Z;ot(Shxk-G# ze?Ffl^Y+e}Q|C-Oa|WSRh(NLXzAqn^t2@NbWtNqzkK7=z7HiXm7+CB#>&-#$`t~<_ zMcIeL`4viCe=b*K#INA)4vL0$v-mbndPRuOj zehJOhc#ouSDR(|cb35_U#+y~GN%<<+6IaI>I2NI9kSCGJbMR(g%O|_)+xm_Zk>n{R z=WlN&UQ3&_B24rZ`9evV>0#ck18EPrRkfK`SnuNYV{gV8IP*e$DvrNW6RoI1h3qo7 zIvFTk;6)Qljz^`m)2OiDBNprJ|h| zTv$H%Mu3Q>iu}}yDm~npF*5C}HJ-QgcR2$<2-Z3Mg0=X&oVPc+vfX;<08i4wMBl1EC)@a@8s7R=`S|hY?ba`!{$qVqEKb}{b!Qf6$109y z7r(dq4tdSt9Ak0Za%k*%g(BDWT|HKKj!b*S$*0fp9@x9o9@V%?4ZYa@BF4$y&)ee8 zN8s5Va*jjqc#nA?$98ob#90RZf)LnOxSvZeilYpU`sD3!JSQj#F=}CI@Ry<$+%iI| zIIu0Oh0r2%WEI;}^|5f{nLq~-W#Mv*Qn>oe;=r!#d9aAnw=Y@Crlk2k8~Lg-;-F7N zNsD!6uat~0idQyv&Wcf_i!%Tf2Xn&X2d`y9S1-3?_|_Ic7$|q-3GL0TPZCB-uvVT_ ziJQf)rck0JY1)UC>sl8}f`J;uS_tjdC#sNkqy#BcAe>zTo_XQOiO?!UUN{h1g+T1+ zgVhmdU}AGCF{!k@X-p>@wT7!kw+Fj>mV`^4GvuXB@uv6jzcPND+Qay(Wx$Viw(cr7Io2<`kyX8gW$;$-{ zq#b!ubuRXObl&$tKDbP@H#?Z@><39cN;R%yoohYX*k7TS5{DdfZlTF9*dspimeAES z-;sqKjDinUR3c2VR^vYwnzQ!sExNRE$9!!*sAwdMEdTh+;Cl&y=Y?02t-$TN`W?Xu!^jqTFoxOcEfx<&5IwqlPIup?f6TIqvW3!z2V%N}j0#AC*m zHyb*qOEfOg{DFO!oMklqV6t`k;TYqe>1B+or5B29R`PXe=PQX%jcv>0rOA><61cj$Ouly|()Vl>VBNp(AO^()pRM_L+4JH8>T=CWWc zWF?`LaQ{%LYT3J<{nWb&){J~lDlbAKKGc(ofpB2I%XcL?&`RV*3EhF#v?Cp>*zpZE zTW@~eNO>0-`A~6myLnB&xcObrps8|I#4+syY9s}EwUm1fxcjM4rSw{)5cQ-&Vq@~1*jMB9U{GM_p^ zs5q*nq*(W>3^Srj_0n;MgrmMX;<#863~USYwH7P~%E5^4{3P_>Yt!*&H9`np<=SF?_XYqb1i9t1#35nwhM-#9l7z@UeKqc{Jl7m85!W?Y zLl&8{#eMgj`5Cw^)F73aDk_UCH_!*sO3;q6KZ=nv<{@AAvr`;>@J-)MmFkFj^kTEs zKat)yJazp1UGOY$pl87QLnu-765=Fo|44nvoN2xI1`Z6EV zcKbJZIci<0D|)E`uPQ6ZgWDII^%q1s*%0yOG+~f^gG#jD&ilqxo}M80#c&^<>hWKK zh?8+C;moQ;34N!$#gZznPq?@r&@bo>xZmW2xbbX~`FwsFk)!=rha{PNZ^G)m#N?O| z7X#r~`PBkbp0Y=amloVwO~jMxrNU^PK<5S{r!~|c`c%BkUgSlQ0W-x+9VX>-xkjqF z{kceQi%(*FYPJOzOM;Di({v-3GI~(E>OM7%Gz^t7GAT$em3w_3;hi!#N}R+cnLYYR z{-~}B;i)5k!CDBdX%}xcw|Wg;?OAvdtqOsfLOu{$g?M99s@eFMYp-m(Jrh&S z9zV(Nns)odZcj>j6TR1o@y7agDUP0n#buz*^W?)oK8Px|zC8Ibs21xMYaz6zwfm~4 zz9B5rck#ej18cQ9n`DLy%V;*MwI6Y-5PdErnY%VfiDE5;7MVP|@7Uc%_vodPC(!!b zyxh*YZLgseP@5vF{L;sxUMTXk{>;a!tWZ8GgsTy{F_K~q7Uxl+eS*ICo51>r{dHH= z{?TnblU7ersQU8LRFMy$68Vn|q|mXaV2`4<&|l&C*YZS}y*VcYQN^cZT#H&_Xz_0N zpRarRZjI4zEg5g1=QOr0HrtJkbf{7}FTA+AK4<=1-{yQ14Xh>BALiT_rKDAe%$X-M zc6&PLOTSWa#GDhE5Ynah!Im68f@1>O50@!A7VRzPSt`pa^eoloJkN1UKW}6dS!ITMX;Qr7EM&%BT`wx6#|yS8W$1ijr2T3T>CI zkG`}1b3%MM#`Ps!iy#=9AowrA#&HQbM?c23>0hx20G=AX8bYfORbcEB(U`$;P=)CK z{bNzTKD4%#CNh#@KgX<|*t^8;`BMdVr+$7)4{Q3GV(qwZj8>^o<#;%@2Bd__?DWCzK~wxVctoxp*VK`w9r?n+X=mL>}$%L8qW<->gwo>lpuxJ3p8zJ%B}_x2WpDTG`3TjTgr(8^^7^KfYVf76V!b)~#P3HM*cQE{y!`1%=OtytO|laE00$!M zb=5iqbFm6-S~%jwbzB(Chpj@;n>d_dnlrf)bWR8fm!RxG;(iJ4Es8fMw|%bHdZfN} ztJG_XXPER)lG*Pid0R4R=mN9bk_c~wlkNPnb;f}*L0REmjTkwT?&zF_A*$D$_%Y(oyQ!~&B}GG zx(~l5GK{+%q6YJnu7T3U{Z>`F#EJZq`5AbJmTtRnUqNWDP5;VUDO~H$grq>)lHB%p zS4IuAs_Yo!sd{p(bNAKrOSm(tAr7=RCzrRuxxDF}D9$R*eT6a|bD8>zLrspg0gnJU zw!3o%k;UBLEat<%7BhhC-0HdEV;n9X#!i&bOon=JPO7Gkt8EQw{FEoF*+eJqm8FZi z!QE(0LkQFq)_Y-TzRoolZA6%!Bv=uNbzsdFaL`^Gxxte`t(blM!cBxb$C7o9#1rD{Y=;X82w0e^p>zl`9SjYAZ67O@m zI!6tXp2&~I4}8e4X`2r$*ZUrMSca;mTLtuY4n9P&{(7bVXp{Z*AW()FS33fSq_I~o|DwyJGP@D3Kn1Zdja z>bv#G*kMLO)_+=%k7DeY#+M2G=3QUadAWIcYtdDkk@dfknQ8HWZ-tB>j>&7bs3dpp=@ODJ6$OKRWaQ_ChJ4p^xfxAo6T#)y@$iybWnsnxVjix=sC z^-S{p(RpMJpU4yznwn%^)%j{i1AjpX>^EX} zFb@c(+KG5G2@$L8v%?%HBm7~7KP%prJN8rIwJ(PBwnIv-%DTJw77AtZf9p6#d93A z801OQro8%+-sZ^?#(*uI6wYymq(TTjocSBkN2Bl%krS@Z1vyWk5qbBT&^bdW1kYG- z2EgMvK|7o)I1mDHxHEwB6SMTko|EL!Bl$W>a=i7#f=xDbVNmNma(k#9&+o^)BB1QX%LU-V4K82(3a;L=)Q&mAAf3`iS-;ZWRLC z!deI&3L(7#wX0I-@+4j>_<4j~clc_3+|Uaiw2aN|mjD5A9jHwBJ5fC@9@l zy~QiwT_jJM_GR^9_Afsr>$@|1>)39_Q%eKAdPtq4EpYqvuf#zfhxkAoh+EU%PU&y= zJCv@E@4H4vE5UXVpNa#m0j)%}-Ic{+>>>6{{p%&A3~cLI@uh(W&qsKVR(Z)n+?v*= zjA;*_I!ixVCCtEDXuB$eOP6?y4tkCl6U`!<I92k)GaskW4{UFaK;cGStJg*YNSyHd$8DB8uq5$cT-R}-B=rcabLe|=nthTC@;If@f5SmVR=?G z;9`mse@FUw-3=2^Mtj% z`b$y8^@;Yq+F~ay`z}#ll2$mk56?Lh=(dyIlF71*3^^OPUADYaE;O|~yc0;)!EmHo z_Dfvu*sOI>=Ru#SK#(=iFS$XG#fTT#YAn*{_(o;;3yd-fwN5hm#vyWxJZah&qd$&% zWpUJQ?YAk8C9=h#CH}cS)tviXgp*BKg~0e`tcB2;w&1f=eccl?GCu4yQnB6PBDOj? zJGL6B75gP4dsz?8Y>hhp^*BWz2%+*pl1-gAFlxY^DYi<9JNBtPigiJH!ALpeDet{L zv{$raq|n7cI1mDBp+{99objCX5jvhv8O&ak`X0m4NKe0zmGG#KWoac`o2WuckPlTK zx#6I;a>K_sTx+LVkv-hG2(MBYI(G=>9BWaTp73uYR3UKuz*_3~Az>sh zgdM4(GWSRR&Nw6lTU=-@Zi&8Y+Uj|uJpJA-ufO*BM9MT}uIede_27K6*?&q-xv3CX z>*M{&X5$&TL2UMWj7#NO>ocxa6ZZ{V&p`8?akb?wF)H6~T+zGqGr6t}@1 zCz(5Ju7O-V3C)ko!r0u1^cx7MVh*-_duu`xUD5^Y4lGOS9Ke z^#-PApCL#HZYggZ=ighFy<0~!8Mh@Bg7PphcBI6~&+rnTc@fO78zYP*tvZODH7*2| zEANeT`XE9}91J05GI`=)Xo66^=!2&!IXgw9!BLGXiMw`Q$J?=P)S13J^VY;{fcH*t zrXM<|X3Jpj%>9GDyEsCrimT`PcJ%X1p}ID3*8u8zz@?U`+8SNLZks$u*Du6~4BY7f zUISt+t#0$Pz_uN(|KhsFYW`jfzM<`dpA2q`E2u<`yBULLu_DtBs8+c`yAfBYs^C z5{6LDiNny`OC()6e$=bj&bKP%GvCv1O*Uq{pDb>PRC0Vcaf^1$QV@BBy`z02ZkD&! z?479iEA%DUQr-|)E7W!+CnPVHF7ZL-E^}qB7vxFY68icZE3QkIsIFfPG`7CHAkeu= zMJKYR=!**i5s9)aq9Foqlm%lTd4=L&OH^?HgpGM)uohD2)+atN&lN&oOJctJ@ImXn z?@H*MJ{>4lMGM3kRJg+j@)XL4Y9%#=WqdnUS_WDPYg4SY8?UqWyff9BRAmrF2nA(A z_&8!uM3DqI)+q1jHoTD=8tJ4`g_IntUrD^GEF&{r+Z8b^7R0awv5UBs0LMciwVF2C zf6{t?Umsii&m#L_&M7{PvRiY;MaC^GsNNBMa@Q<hn9aDXGw#4nSujO9L z-$^14M9}YI&%s(;mi~%*E5XrUZV*(9zNcPubI_>}Gz$x@_3t=1j*M$DPwXX#78M6U za4jCm2-=0f7gpVzaGLFAObX54PFNTZzkEXXwwWr@Ab)4+=7eZp|M6TQWIli||4y)a z)GX%NkUU0-_{AvS(0=Za1#EtuC+szjqZR6W+Dj$fQc_Iq= zJMrYomh>^@msE3Af7zoZJTGrDQ}4o6F+)i2z-w-tek6)lCsLp+6jW8sg`Q(2*JP5?jS>u zjq&#!R$`zIa9=~!$4_VK+D&$OoY^bNo!cdRT+WGuc58WGgxakwR@Hx*+;z_K zArFU~OFr<93HE1tD~Io!U~kqmguuRywGcX}55?L;xy?EqX)Y`A+XvA!xZe~Qx(WnXP;}_MmE6!}~@ZmyeHobUS^g9}N z5yD+_k_2dt<7VvTK1d$!-$%~SaVaOn{b6&g!k>JrA3gB0(ebYoGv-{F6Zwu7qwb65 z1%b8DcM<*kr}BZcV@_$VP5&kseX6euG@Iq@2-#^T*9CfhD9i49pwW&@8A|LxLam}H z>jUfe{V#|eXQl^nxNliT+f(XH58@Md&VAcW)Bbz2shz)+%xom$_sj`5!<-mME>rZM zi18D9q%?|l@hdp&WN)!d(U-+9S@!TU1v0m6eb_0}_g+07a>^>i>7Pn@Pd-6sUOPm# z&{COPR$l;fVZ<({H#ulzKJzpazj?p+S^Zf+mzzwvCU zdAeG-cj%=Ke$=MO-L~*8t5B7rR^2jvoUJ1tgI+@Xy-Yzew(AvWNs=~z6mzTBsu>LF&E7eS-RaaeJ^ybxR7*~=!4ImKA^uf zuB86%u7L)!|TVh!l~uusqDQCWUuQ6}PJbSAP$4c6Y?xjDz3kVPl=+<-FLm)Ihg8a*qsgi&u3kf1(#J)K7nN z&p_p56s2%-UaGnOP=uFW!qv3C9~ROlPupjuC90g`{snRV{CU3NChkXBd_M{~#C;!r zJwo1aYt*f{Uhvb3#`|m&iA~NY8E&yGZ2X#FaHs}d8uFZ?)PJj3fZn5NZY5^UZ~0nEraBCR(Lzfxwpz%eP~ocW9yS~%BY6;kUvdp{@^{mPjmqz=4_m? zx$wF`-F1?491~TD8#mt6=e=FhXdKqTShZJ-mS0K;922o6P5W)cS62VM8+}imRP74) zUK6J+2-=v4CU7csa?2JYO{f#bm%PE$1r0!4psiRFqx_A{4yTbF;_qVG79 z6tK=#^iDE5DKi)qM||68sZl3{M_H`>rwlesEzw48*8?t zJN6^?ureNRm>yVpm*$^hmM}IwphZVGIUz+xYu6_#8bqp8eSoKi5g<#6r$^0d+D`+D z*{8Nlw}yV$LA;yczFLmH1bGtoQZN2(eZL}~b#P2iBRT)lz_Yi*omlys_tOKNr-eK5 z^aGR90~?dVoqUbT7^U=Q_8+7*m5+?^?d&gO&RIwAUea+ki4s+*T0LWgKK;0S4eIcm z^#OX#f%-Oj2L3Ls1R=N<{erdlJGCTqKDnd)OZnpV+y|o-ySlewLE!es5zf36ZA{!5 zE&q=7T*2)=WArEk^^E#Q8EV>|BX3(JM$U;^{Of2%x+u{y-t@qxrQuG_J577~)%Bi; zDl!W#(oQp^v)5&gS1wCF{ucz*;+7;t*X6UVf*ZbV^>v&|6;guyY1*lFW%WV5!i?_y z;|y#I*PN;bW9TsQaPI65A+RNpt*-knU&pO4MYZ^4vJvrNTA=S1@|peiU6vJ#gn;oF1Mk{5jt-OT>tpThRF0zWHOf_97+ zBl@6Am4XA?Woo7EUTplFJ>&gSj?YF5JOpGT~EkG+J6t?@+RWF|D)Kn(SOHgvwV1)N9;^gc-VOGM7nkPP^^LDHjbiskDN#ejsWh8m2_S>{9)r% zSi1i85fulvi*pGv;%qx_rQM6QK3%V7*id{hWZMv#jpi8EjYda2Pt+Q(SUYmAjvpXh z!if5Ah zqAyh)ZkO#c-l|l4hK@LHA4>{M68BvR2hI%C+&io_S~YN)XJ=fuHukrq+9NV~dgfDoty+WnxHg3&7Fy7r~fFWML8zh#|TeM86mE;xHp zt^JQ{wq7HtfpsxzkbyXmLR=ea+S%)?^~?irTS>RoRVq@2Es4F1eG}~^^&YeKBxYt{ zzpK74DNtWzouL`IN)@h(P(EDdKFGG9X^Y+{W52z=i}gc4b!Lg2qeL{Vo@^4!r%sK97itBEu3jthfj)$iKx_O_#n-SIuu;ddP~ z+aM(>=hPnK5SfO8>p^T6@o8F}4P)#p%cd$`l)NSKfu4^r(4XudjDzfl^i1ndD)V=e zw5%TrLBAjbQYhkNa`Ej%6;i@}KBsS2#*g59N8OWSsw6KoLS{$rIO|N_#dBvh(a!vZ zq0|*5j<4#9h3gA$m3aw{)Cet30S>46F5IbRUA#QOsG6P4`N z)cid;@NKsW*()!=;p{;2P9wFOoq-)@eJ&qTgDiLU2E2oSx^Xd(7MFjxC{W>~)HBv% zol9SmJ%=+0c8ry3&Kw=?oMzw&27i}xIFb=#qR4KJ*`_kbX=B7U)m0(*_B+<1GDnze z+N6hD8fMXGeQEvLPFy(uLbW)mywL%X;W473_wM94zqpaIp^<&*Tz%t%86$Pv$45TY zJ$>eZsH1i{HXmd5@rH_~mEQWAwR2@}D>i?;jlW=wIPP+bY)0=6vL3(xxV7y1C#fSLL~hgR#? zFR8oExYLY#y_z=b_h;;FM@kwsJD>HSZc$c3wp8pkEMz%j~aY|05hkdtTPg)+0uowgv51XNva+UwVu(o&-;qPK`@7Zq(07hpr@H)?V9?Hg%tLa&9s9i6&-E+2^;eee z)+?Rs;o#s%(pe9snk(-{cq4nrdrTbn&h68`3Cf;6;!|<7ub-~>9KA{pJUqb0cG3E7 z)=U+zVn%rT45j-x?w>eC&fXUd9i!AeeT2YY@Du=B68F#Jw^{cWRJLA!c!<-_(GuDE zD1%}A&m4cXHN3=)57w`q(m5 z9AAlf=&`M<^{vmVoFlh*A|yGV_d%JBDjb;}e*2F-aQ)Zh&B8v<8MAh0q>y&IAy_0GkA2m?C)#%nj z52r%R9rUtq(V7_CH!aA%YD7Ae+%I92x(=}UJ12zmqJ)}7uh zRZrjcZF#(ph+9eztc{Sn=d_Dcxq7&l_OEa!UDKYK@SAnza9O*}ojQunQC2D+Z9l1E zynUghQG8Ni1Ajp)QKdUO^Nw}zSZV9j_?`x0N2+iKn)s$aIafpvhq_Vy6+&QN!&(Tf zX-%)jTkA&e^0k^Z#z0C&9ZL(GJQC*2)lp9p1NYqbtGfLe+eO^sz0@YdtzCcZ_L)ai z9N4bPdFTv)?+=l5dDO?*fH=Xbl+UVIcA{_o@JWhYAs=XCj=$1{7uAIqwP*BBH8l~1 zKt2&^N1pPAz*@KRuS3g?P9aM#hHC!-QZ_9%+8+xSMgO!Af#(;ixuvkVtYf)aV;M#N{?H5;7{ zw0T`-VUYE4Jm;AVdS@!TN&m91(D?EA%y4^Ym37v}BCQN;7xCe^LKuQL zgmf8)yek2A6|^@I@3X3^y}Dz(6{fdR#wZ*a5Vwev`LTt)tU{VK*8GpLCr+GgZww3O zRpSv3Db%z+|Mapij{8FYsOJKm*L}2S(eLk6@xFny3|`&Iy^N2ILH3PZ0X=JG6&-B} zbwhhuyqeUs@s;Y?5AVGb^+b1%VkLOb2W?v12HgI#J^AJyeM8}OVz<^^xg%9bt;o6j z=oI_Qm7AQGVtId$R-?F2$=`WTM$rfM?VwL|bsjBr{=&yi>_@H_H_A^wqwJR;g(_9^ z%=~uUc^~Mruf-ZjJ3`>S0O1o)AMnh2tAYLX`sRk~GotOKZ~Y+d-MOBKy|$*UC=u&9 zej&pCd}AEh74ng7uPU^rt=<2)J?r7MddibeDYt9zwgOTsVmYr(arUncjj}RmNBDWK z+?&STVU)C{?H}0RZr`i4)hXsXWq%j^X=X30J%|C``=AKn*r=ZSJBmG>5NLa^^6pIB6!rQvA?l{M}4 zWdrQ`{oc^SH|}!I)wmyE|HzXnXMQfJ+TkA{;!}%>TgDWVO!(x^?GAxsRhr0l8nwss zpZGpHwuLxQPdQ&*;FlI?6dkZO%zLbp=~rJ}XkhfT#}&Gk@lCsY%7_!H50<*7{nevpuK_gHj7O*za1;@1+?jqY>tZO z99wn5rr2vLZSs&V83%a)E>pWGLrtsw)*kC}iz3GT8?6-_D69B^;%%o483P?WX>fMc zur2n3goDej_aTaC?(XVV&PAmDL*p4_Z3hBvR~b2}CHH00e`c34-ZbK^N|$2n#A%7* zj9%^`npyJ#Z+NKO(0|jD7?}M9oz~E8jt{4eF;)hqIp-QzkIr-Mk`$U6=|>3uE+L4X z+*V#h39q)OOyhjc*^*1I*9#asG5VI*-*y|#7y5aU?XXAbACOf=gqHv}nY!c!px%Ev9M z&?572^D)L_*WR+a&QI8hwUBn?>Hne+&30QN4JLMa*_gS7=o9fbI}!uWzbbX>@}b%8 zcUh0>(qDpjMJX{*=Dd_i%)9dg+nx8;)l8MLuKcfh{{u5F(oI&nF(#$kGV_3E#)(RH z%gh+N*WG0E@eyHSh27deV1UR$CweO7thp)P8Qvn^(D*A_-rHt8^!ku{%M@o$?)?uM zotYx~7vCj9i(yH-wo6)ztR&q<`v}yFtjC=j~|{n=}DLt zX&<`X-r3paJAB>lB%2q6ZZ@}X?Z31;S)3g6SeHq7=~*ky=e_ z_VxkK(mx~Yv+=Pu;y?f4k=xh==MK6ibVOl>`@X%LeNbu)&bWdXf7iJ!6g_( zuZXuHtvNi&TU60-yNY_$fkq>BBWarNc3Jh!duo^8t5S8&oRF-@x66K@`g8g&`%RX> zQDVeMJ?7?A-;mN{ZG627+eLgX2I9kQE86eg3=6$cHOm~Sr+cUQ7KZQCQ#fF;Ua5gmt$o&)#XRzP(q+ws1v9d5Rb}wVx35j3g@_g{jQ=_`BQ@W|~-otf|0? zltA5?v^ykM#qLTt6bJ8FP`f;yQyJ&fIjJJ-p%C0sPCl?*+&f{OazaS#Qld-=;!`2G z=U^{tR3ysjQEq+)vOt!X%b}*Z9Qs($yU$C}z<7jIfuzQ}K2yPbbb3s?r>OR&(6RUF7U-hEa% zuT&|@9x<|nJv?cj(m#-=+;B*1#I_h8?e%h*_*1A7-ZFnC&j6lZT`E&bSMHZ(uPhyi z+^j^g#Gr0u3}o5fC5=}rkGEE@kF#+`h9jIipQBk{s3jsLsDECuIuJQL1Mlz29`#X> zD&}0}gWF=eVjIiuU4kl{i@NmU{4;d@5$a1qaS$bhk15Q_2V`_*XoV$#NtGRI*EUsJ5}0wNg7bo&w-6 zc!q$x-0JQ*LSQY#t?r&91X6|2n${{h%{QrU4QrUl(u^D;=NOA6v{6~NC;eku|MaM4 z<9UB_W|BGOb9wepuNMy3$NRh22R>nM^z5~kcdKk*Gz~_&U<8cVLoWB8;bs9KCxYukM3)uth9Ic zSTJpGp<>JM1fXj;BK4`5D$iXiY2i_BQM8u*z1S!fKoh z_7#$_DBdb)FLk+wR4~NhZA^Tw|iC*emj< zX;sgDW4(Q4v{h_!9|KogcxtVl%H%)O-nU6F=xdTV#aPoYP0Vq_XttE`?2aXY{jbZB zK|K>L)vKKmXyw&w$5wRSUS{8i`FB;S)(snOt^D+)uk)ZW&W({^48w@DK+@1KC+-z- ztI|b_L;b5dcVWbPcZJpb?Q9unF`D*ilWo=~2N<2GW#D%*Ot$$-l;6@qR1DfT-F<8N2U|Yy7tkXsdET-+&Z+sl)!YOnWF&Ij@2 z4|{>8jeV?^y`ahW)O*bBsr?9oCt{jc)hb&aVnq?%Vhig3>2v7aM_;=Hy{bE{~FC#^cC#wa*Y zx`c zTfwd4? zggLzWZ9Y@ z8NCl?=u&Lgrq`=Zzm>g1+cnV{MQI&H6z1;R=@;&I7_(2`S+kmkw@gVUd$VM|1d52~ zH!is>&%CGi!z*@+k$hTCun%(`K()OAP1(dyv%5BB`;S!yBBv>jR z7-xwQe`rfMii*8(h|EM^i?tA1%tc{df)sE+b3wm7f#zHCh`l431rJ50fWoFhKr zOZp%6%w9j)*}bFpCN|uP^fsJS#~)rmyn=Br())~F$Itjg{}ZEA?a%7lSE|*rAFjDx z>9yEX(PG4Uuy#KCz~2|Gaha_Q{0054YFEuC=d)WzUb5y+Rv}P62(7Llaiz#*TusXJ z+PvmhXjeGbQes$?s42wZ#fl^B{V-UgH} z!{nxO*`xNCAL+aNdO7>0LS2lTzQs=8rjz_Ga~GQpPDgrwTh}z$&vV8BY<*e2K9qS& z+*r?kiHPLJWmo6IN(|xzf8jDgsBcs~Ugxe}^29e*nOE8vGmoDQ91C6kcy<8*9 z`7Us%vU1MP`9zvt_Z%}>Mpmf3w(jHz%Qv&Duh0h*ZRCUW%yUtsP`sDg^uB)H{?;;U zdKIb$K65s3EK-I27 zA$ZP-wGcWd4(66>F+PMQz40I2oJ=vNC&*C-C5m%ju~yspmHwFbckB69F=G9}@90I_ zD67nEX9CNw%P37T%K+cbG9iDCJ`wF$)82|0<@+VJyj@}dMS06{>G|{Z6^XK>rR}!4 z<1wZUZLNQ^rkZ$_B&Y3?y`uh^Yx-B^oTNabB|)GR#JuFMt-g`R3iv+yak6+HN8(^# z!je{{TW#Gp`ujKY*=y!UE3!iQVE&sx}vvUP+#Y}uQiXgV?dWS&KClnE{aNjIE`^#HIsdp22y^=Ir8sy;*?^ojUH zL&PU4d>ncu#jG!45{Y(I=a*vk>E9O|;*8U%XD-t^fpN%n6hiPXL={6&nZHX2o?(#8 zX!b&@loIvpI5U}6|3rG<@W?WKKY65qpX#|gsRTi_NNWsDwfH+hYZ_`0xkZanHCXQ4 z_NdqHJY|dj<(OYFC5%J*U6d~ND3mDTcK8U+fI?{}9FaZfeKnUqg5W=TH(Y&fk+Ya{ zpQn`t*QS5nSJ`>ZLF)u6Q%el3K-jeMk~8`&C-XFCn099dSwRjQ97?ny&f!8iXFLfu z{(}8O9i6#8`9#chjXAJYs$g`6`DYf))w66K6WJ0Oi%Jz*22!ZZmJ}S=F3+4Kj+u3y zi&}JMq+VpMI@4!8lf803C;zBv9Xw}tue=>Wo(dh?&rM5VQOU`e7f1Adi`VJ#)+D-HqI=G!ZMli z9t)MZcR8NHBYe9pe7oHsUy8X|jPzTy*2-K2{k#f+{sU{NGa0g3=ALE6d@v>Sop};* z0LS-xb_6Qhb;qbw-9DCVmJ`v+@dH%~^PZO=1oD?R1lB^H9EjkY0XfIY0F0ViTZMbo~c5HB;iu6&;Og1^DjHqI29ewzOJ`AA` z1KUDM&`YQz4*r4^VoPF&eqA~J!xt(V{f@^dw(HIY&koEH7%7X#&%(Y1>Zj4n|tLkBmY}%4Wu2%t5DlzEObL*uCup9V+NJ^1vu=% zT$}z?`#FwRD#Ty&-|@YhHb-wTXOuz}QW6>wul6X^8rqdBtBu>1ST`DuG>WAyZN7iT zLbLSANb#O*RsW^G7nsjGoA}+9dFIGZf?z;4>{uG20?%CPzsX=xzmll~ET&R&Xe@$({9ZvX$>#GLNEUQ2n7P$MQAZ2J6qkD6IIIo zqgj6A!dDB-Z%@egYLNDOmlrrMZBX7xp%4G2jOepfj4i|3IlwrUQ_8;k%^y1Qf%-?Dgarlv5^NlC z?hQ&d&ps_zck1jFXO>I}Ss%{f)c%nd9|*xM<>Z`yAsk$$S_rMqEV&j!2sXuSN1X4b zb?IajUtP>@UU39v#}C@8$o}k{(bKuSDy!qO%0(ToJ5v8%?6)J17B?4(m-pn}JN95r z6WI{OyUsEPHn&UnUAas+5VzRzdaX*-uBIdPHA}`S^db(#twOLhkd+{W%K6B0t&KJp zYT7*;<@cdgBezJQ$m8`>Lu1OB`gZ;ilXQf@S|WpXFwVh=fG{}EHrFD~u@-+PDTsWi z>wb^gboM7})7gGvC)M3gBA%{36DGWKYscCr^$v5g7OLY1%ANZijU^c)7nv=@Sd#3m zD{#!7?lnHv9<`?5c+4nwEy-M8C_?f zGT6YLial8Ma3d3c^Ob10M_*d|bp--zq0}`kZCSJ3l_ys*8Xj%ytfN@&q>q|HAGGhI zLfEJ0`abQ~UqAQ5SR1YH%fA+yuUwAwuHP4`kICJiu*!QU8uwS8YmV~|S5}%h7eNh* zew_U$Z@BTD2F#Iy_Zu{=ZTBbiOmm_=;Dx7Kx$~WdL0>}pP;uaF34cL8kXn}_D)F5U zl27Q(7rt*IUZ@!PM5{Zuf70*V?q|fDTjadx`Q2)IBR4N=XDqZj8kqEJ_C3L9zj&V` zSSH+jj!X63`7Ynok+X33eiVNvYF!L83wQa*vRyv#ZcdgM%Nn;i6;&g?no+H6n;cd$ z^fj4hpn9RjX6L@#YvcBh)Q8NO=KG@PSmkY5qJ-~{;XNj%O77md9Qp<4e`RxvWx8c5 z|Nad^W{r@tk`U_dAk$9zK+8|+#JLklMvN)67Wyj}qU7#r`pSI`t+BJ>#U7chB-xwpig7c{0E->wd;U1ZLN=6W< z50`Vy4&rz2M@f8s|Gz_UE!W<%t;E4Zu*4x+2I`!pK=t@feMuQ5jjt+mZTdICM!91x zgm!8g4Cit#JrV1fzDr*zYr3}U{u1q22G?>qj}G!Iaj|8P&%m3E|97g`Dpee%Cf78^ zr^y#qasLx_&fn!3Btl>kTPBGgLQ`hXJ0N~9EWv#V^0LM?gk?*9hCx4sEqwiNtQ zs!}gfYjksx?+kJ+7a}*RuwA5(`Ezgt^+;_oy)Nh2AEnL{{s#nFjD%n=5)8Cmyg!=5 zN)#MSFLLWrm>X5u@=?4RLg(ZhKwGdj%lSqszMcB-R7ttvI4EZTs?O2+P;LyZ zX;1bzXFbxdiT-4dR}6e(88hx>-jcZiD6fgi2WD2p{3Q|BlLHqV z4uhy->4wf;S(r>ItMbP2Z#MNU#yUN=3-=B6k) z(Wj<2wg65MshQ$TK={!M_9O!}y7iBc3|CTA89uYhlQv*pMcRjs?*CptQ34iTS9 z)yWf+JlpU5`3|WO>ujWGUaOT$xEnDX|M#y$qiYQU~&bbA! zC)Ym{9ei{2*ou(N`8?r<*r75BR=7^BoRl{yP24&%hT8RSdQGEgEaRcNDVF`-t% zPzg5Tz?miD3)XgQE8`QnN+qgr#Y#I9B)2c3Tn##$+c@eI?VOWC)nMaQr#zpW{!o8# za+rZQ&R1V-UTP)158{(;Gi~5S9qCGsDkaUf;6McXhYR7(wWtPt|NnuIekI$3hv*!o zh>}K$Fb9%4lnK^CXw{b>4)i4|gv26!FG`UupRJuepQbg4FKkq6MQ=%pTn!NMhjVKF zE~66=f@{$)Sc|{Qc{@_YR!x*3=iB3@f28lSK939oiR6y) zX>K%K$Y|i~`>-EGN>Klr22qm`nU|&Dz}}_Ay($n`D|EkvlB#FvRoIwRhWI==p(ez(o*$_^xIQ`O++drgf)|D;-H ze|X%vm&!Z;%83A+l4{zyZY7Ls)!(t6jutsN;3h)PFS7zY8$3$0d$A{*6^Ly4sB?2c z(`vM6YIIzkY^`ov)xckhnWEPB^7a6>Br@rU6a9(D23m`j$LdH4_6d$P z!NTCI80SPP1agjiAhZgBZ6O5uM~0ANEy{$>qj+YCGSsxzg(HkdK3QYUd7-6&=jV7v zkG7!VK#8Vqc1KIpzu2Kq9%7VSlxY!cZk9;C3neWgAU5?d^oWAa$jNf2T3n_Phau#M zgAn{nXf1?R`9N=gv?EU{1djUXKk|k^99RpX#hdrdhZ%RekF)+MFo$wS2m6}HPi*p= z_o_ZpmV1pVRjTKZ74ACb#yRnmV7MO6iMh(;m@CyYFz*C`zlbQUAOw0MQU8a*#;@0`>Nr}rq+L0&mKIfF~hQ4o~W$oXtKwvHPq#CHQUF@oNcB!RtP`o*5@SBq?-R$ho zj&!Na-{qMw;=uU__F$Z^h#O}wWLSSbUtI4v_;n?p{?M8WoIIfP4$|prvfQW$%`8W} z9B({xdb!g-W<7KzFt=F^$A@!YAq(d+*|d79k22vhp72vyWH(+v-*dFj<9fTA6AheM zkY|X=&c94$H|O%MRVS@K-)^8co%yPP^u`sFw3nT4`f;~KWHAQ_+;78L2(8?33+|F* zKc}*5p`^i2qSLJ1opxFo$6vA2+AK6LeH`Zfv$EGetlvU2b!(WnSNAp|F2m(X83%(> zq;}CV*kjOlWvo>o(8ds2(?0V55%oiXD!%tWoFZZ-q_3r!%;Uc$nFqJa+kh%n<(AjB z%XHbSFZ{fYf%{juXO&ccL7?M{9P12s6oY;+ln+%_=o#1>5CoUWme?~$&S}oW7LW8Y zPqY%^GVw=s^M+`)LGEQRgj`3#SgZJOl&DJ8r_GvL!=@kgq|X_z>|fztFU~&l9&xxA z5x1(&=dL(u4L{XDzcBq(qpFx2(41jc)7E~pW7T%WuCp$7oh`BJY|}3UQDcee=UUbZ z(~m7V`_w@QY!_=GG;6|FZR0c>#g6kvOSZHc7l)FVva-E z*JfNv3S@{q(qm_${i>{7EKa^~FU=E3w_~hj&YXeDxVP-qr_lg+mqj_V$kh@w7j+=G z%n;I25IfEvaNG?-7*s;Pi?bT^!9fVeez9FK;y8YnZieBwt3qHcw5z-!uoh}FZwRb~ zdd?dHYoQO$4TAWg7mi#Xj^k3^vO+#k3aBS_wT*3|K5$%N=}M|74+H09z?G?cvz&Z8 z`V!)tdeoj-ZjYi7hrd%#%Lzd%Na}Z3i)BdAVo!g`JD#drYUy2mo?xJ?kSCQ7^bDwj zonex~!ZF@ppO-igBDcOxwGdjIv4Hp4QdzdUYO7bNg}61X(`RE0t?oL{p7-N*d^eb8 zFZ`m4ctgXaHx=bfrfm30Yp~}jy~ut2T{_puKcgG-Jth@wIMH^B~F(eW7+%22GGR<|)m{8Szz{=k^RaP z+`Cfq^(DS&8sdL?zW$Ysn!hKR5nqOThhFO7N2=6YTQ2Y7ja;~uKpEaxH}t*K4vuuH z`$%P@^q>izPWRe7_XqL4ZGK5RbDOmG&Fy3TBBJqNHRD*npQ1k8?{y%!7RpD3Xi@N6 zt3|;V^wP`w8s=ltsvGY1`msN%eNgftEfIe~iK3)M#>FCSjFJPZ>Mu>MtlV%zxgmuj z_vcgP4ewjKeV=UYY#_b3XQ@Vi9$xjRajxGs-%P8M0)e&265aeIeGZg2BIkOo$i18_ZxE8Kuu`EXe@giFe2>K;AXbJJt8zYT-+icICuJe@{M=bR^E!|?<5hb$A6M4jC*AY^S!^=ygYzM1Flb0;V(G0 zBZZpwUYoM^;q>S9&gpR?nmf_CHBRGpn@1AOnn&plRzrW%2Z`oQpL{7n)9!X&qL*(y z(wUW_p1CaVo4A_Qw3DBdx1%2Gpl7}mtKb-%G0(i#Q{q5;;@sfl^7hrF7xm6_W1KvY z7rIF72thXvx4z6&l`dP+zSR1G=gC{K3dG|L6U`lGXr>qKM`-aT>wG=qe*QPCE}yHm z%lc?=x?b=O9@()g+wA@kyoH(X{i!BLT(~g^(LzE?cbB(+ey6K`B{fEzxV!WsB`9@G z%V$Q|w~qel+0`i4M%oY0nP*nMKzuX|;X~3TZ4136u7uFLG9NidXRL+Lc|-6Df>#zi zb}e^B^hQ=ZE0aMsQ%TgvYW4g+OH znM2uP_=c;Ti@GpQ=C9zc0qzv28k7)HR=jrNl^5@8;7Z2DK%C<$4x>@zDbNl=DCaq;LQ2$i6!L-dwo2LagdfB_A#Vue9BUyo^O2J(tc7E{3W2qd!razT z5(h$HEu7B>aTrv>c5x<)JZajWBO>kZQd|1Eza49vk0oZW6h&kWWZxS+abEU!y2G2- zxf-6O;Xae5Eg2MP-%PLN`y)Np#&)Tn_x+7ddqqE2aGY&l$%^Q+!c(i+L<4tm@ElK! z=Yd8s;ZCj}ac%$*h#hMoG|P(qO>p)Ac$A^pE02RXmT20_v5|K1O|?9==c}?p+R=9j zS;0OW@`1Z5DpjkENc*dL^*oz)#)@1Yt{=ock9yLy2h}U zeLdpqcMBWhe|GzKYTG!f;fa8H3ed1$75k$qjqPEr)+;zLBQ4@n_%LvsK-yKi8h`1e z)x2a8`_Dz2|+wUjrkx7NlQF745Fo7q3W4Y6Sc}UfHx=U5Cdc$Cb$-!b-5hJIte74+InUX9v&k|B zN6B)(R%wBDT`PDcRV*#C_HV~t4#pvd-rCAF+R%x6#o_XS@tYVgnk8gK9&SgM-pz%FQ_ff>+2y@-u0n6Jl82+ne#$BA;Bb5*m0Y>2 z?J{oisG9al(R#+d1s(?q<(`{9t4pOviEd?%}pOdPgdU2#kMHQU%YxOW*JB!;V4n`Qm+ev}y?ZU;YO`*~1t_G#O@{JM1twz6-YKqk>abCLF8NE)OrdCXazBY1>+#-c82J*iyRdfrNrJI$j zl@O%78;+6oY~e0Xu3bq8*GgocU}zNrK zF4~xi<74}*zP8vYecJ3eg>&RK-<9_Q8Rh6!Qizqn{TN9}_IyX7koj=z3T!u8sYU!T zw7OP9dU1V*nq?dbA-y)*k9Lf5%N>HeGeWS`t7?(nE{2K&o&D9{SCR^2e-tMlKbnxKYK8NR|2XekRM*AfQ;nr&C zccB~l-S3)cdCkDXdgrxQt<&*w26EWo^wmJIX;KO(5%HQw{BL@zz#%K$j#XrZ9tY({ zQp#Ial5=?@SN1{T{G8vgN2S+xILEam^5K3b&Jn_`rP*$|q2Gld&dI0Kf9Vh9&K5%} zdbjNNQ@#HM;ddY;PXys_`J4V!lS5X)o3RGU2Ysz7tN2AV?TRyHJ^+{AhJJSypOX)l zGPg&$w3D}U`5@_v9TrRMuz17{i&0B>&T7wxdnXCc*-?}uMERk@t^MfvR0#BgSPP+v zBL2g%c86c|!^~vwBhG#aQmbhtm-V*`_y5r%IDEC-Eu-y{&hvtBEgT`F&Vy7LBojG? z%UhpZrtfT(T$}#I8Nd$kyRM|=9uP_w=N~v;p$r*^>?0@>S8LL)-2TBZL{-|7^#8}$ zwFlT(y#F^Lc`ozJGtWFT^GulHiDcngv{)Q1)A#ci zt9jqeI0MFUF}8qlU&f#`Ui*p2InF+$SL*NI=2{clgwUL0ejn-^o$H4o=wHmLLN~qH zheN7j{aunM-@?`XZ{{pw9EuO1%2?xQstPySFps z+h;$9`z};73))?@$KHu8Tb>tncNrhd>-y z3!zz7ihJY``UB)foS%NDwD{$1b=PwHj32|5H>z2N%jD^y6bu}AyC1UWn5!50qUSx! z?X<oXcdfry| zKj_^p^6vHA9t)w{GUq|vPh>^$^bSUW(K@5mHcq`5w^H!zxsDXaP$iHm(r}*pFe?J{ ztz<>|N?Gtpt0`I^TUKX^6ij>ws>Ll8g+Q6;aThY?-T3!dI5thT1f{@y(7##ouJ-(J z`GJ&grNF(IG_NrCikIV{FvE(Lm6{EhUXSy8H0S)?;6o4=|JAD2BME`fx0O|S#kN54 zoO=*2mr}K2<%7`XeFNr}tQyAyh;#m~*3KEv?X$DD`km1i?sxG_8jf01uVCN6XjexK z3Sw{&$LdeztSO9Hd9$+aa-1wM_zQ+XWk}uJ$a=(WudJPa*I-D z>JQ!>7W0GSst$UWUnstG!fn9>n>Paj4lqYl&rP&Bt*=oI{k;80Wl>CaZ>H-i(Fg zY81U!bLEB6bM%lA0$Vb1;7J#ZIwLf5uB5AbiZp{)EL7%^Rv&&IZT_@@HB5_cRcb?o^QpjtEg7a2b7SHRB)zdfQx%g=RjKmS~ya zdJt_Q@uB_{gqAKs#7bA5VR7Uc7N0!BBCv09U4yz{SrfYi#AjLRzBBg$af_UDS#kbf z5LAm>QV`4uk3o)+Xf45&FwF*d76;G6V1zz4F3MPN?Tl-3GZIq#T8-$%9^^7fB-*}L z(mhE2F3)h3m5W#O#K$YwM(iIypXp3HJ3!7++P33t@Nf32WMMo>X}GeeYILnxTh{aK zj5wU(x1;?q`van!Mo(csn-&gY$c9bCS_sXuqJQbUkIofkS=r%^H>>p^W^pm1wMHMH z4UUgP?mI`%I_3t-NBZ7-nUs&Y7BQ*PmfAZb8il5wWersjg;~<%y0&}-^QvLl%&SIR z6D;;Q&R5v~CRJMt^1>H(s`W?dCl`cQ^;RqF_$y(a^~rBXXwzp%cDC6qe|*@Z3L^#0 zJDmwTUlol~7*q*dFHxB}Cy6M#OWLmg$&eqAJp|N@VdewSPvk z;&u^QV<0|CG%gc4|78VF!-*0uqohp;{6$j|YZEn0mdL68Q+Ve=6}fBFTWX1`%JF4| zwJ`1%A3~4qG_YO&)*sj|LdVCUZB!cgRK?-oY>4C=a@Iq#5?n@~QAr9d16u%+G>;F` zcK&Wz_w_yFjQHnEJE=_vV?Bs7z|M1d;hkesz1t&}HLYu+y=zG|cg5KZ(X--D;k|#T zk&2@h`$_j7jVPjBQKD9+oUc*ql^!3;)5l+QS}DJv-7qxww+sJC)vX*SdtzXq8Mp&<>WXwjdgHjBgW(bG}_c<-)jlOtw&sMUC^K ztJI?7L)mqL#D1nS_cM+(%c?zXq}@GK+3j#=hQT>{UOb+m_nkP*!L^a+_uFF*X`U1~n3nR-ZbU8YES)21{AuYB_% zU;Fv$Eg`0zrAvJii;pFxw2|e`TEd!v6iSFMzH0mKfhq3SXPwQ618Z?hgqv~DzvRR5 zs5Mu@T6be+H5Y%Ob~%Qut#&MgwizZ4#BEZgt-c9?Eh+jL4moGdU`dm&;L<^Q4GMLaW*UZ#g+G^}!IEoJ#pk6>s)$1N29QE-o&L>|FEVLM zjhb)HI2uOYd|8vvaYK)G=E;P>*?{O}?L&O@ouy#TAM^`y%e4?%(?l{GH6$UjP`+zP zR&Dha2_ENEE;p`9gxvpX4#VF?Xetv9rMo}XJ`lWnL5e6>CDWDun_LOi z3Y1y(QIuPvgr%UU>NjJVukQ6~uEn;vOtp|F%ZdkqwYaRP%4$3`xOd(ZvFPNi)+l$R z5c^5Siu-nSszx$=ukL?BX0F%TQ0w#jaNR}fE;8zZWz9`^DEP^I_4YF2;4<-n_$+Hj znVRB;^%tDvPp@)U{*oPT`DOLM$Nk!e^3G(3I~`N^!F%q>4*&YA%mOF#>RDE=?;j4f z%uzV7EvEg|MO)+@Wvy>Y6ECY;(;aduL!8=HL3)s?r&ziqA1dp!&N$A=CbGpr`^evU z4^rDJ#Li`=>h#;J?Rtb{8TX1XGXYVnsk+^2Y9DQ*-T-BZ#*Qdcul@^y`h#0inn+X? z%F2@oj~td8)zY#mkmCa&Jn1sM3{jkP2}a3__p?cgIOD`hwMwi{*QM%I3{qcoH~&m_I=N}6NcsN4_*n+ho_loxZLD}#MygRC;kCAOrWxBzoA`|mUHgnp{P8PRTR8%#dt#oPA^n^(Nsj7_l z49-2f%iaXqT~kXmOqPpU&7+I@gDf?-r0Wwu^b7Yb)vVUqMc?!F3%k-4`ko*0Mnm`GM6ACd`|NmfaF^mh}2e~GPy(3bV);whr_T?2x1 z$9{Ax_6OfYBYfDB^b@B~hyQGP%SF3MZ9Of(@sADqo*ODpXo~Qc-iN506 zEsCStRWqG#SCtp}<1+-x=WxZuNX0_=#L7y~AIu@kigk&W zMAlBT2XV|}Z<o8n!R#c5hV8EqO3IJn(1r3)V8dzSurz zTf)6YV+F^iu8(>ZTZ{CKM;Aeut2L5^; z&_hC=q7ZR1aSL*~j+k@+X`+k7vqrL^^Ja?ILdOb0q;B zMKtc%8$kZzLtrhF^GC>kh0 zaB)^c2yDr+>J46J`;N_ZwzeGP;<-1Z3T0?nzpQ@SxvJvx_P)Cx5J)ecnK2Fx zueJW*jmbWNHiOEPKe5gle`sANRX#sCLsE!)6UZUj`AIXf!`qVCw#S3OS|gsz4o|CE z90dM?dmf0Jv_y~ESU%7`*6LNGaDVWV=>_(VjjNoE_FeALLD}JNn-!g-aPP&k&_j;( z!g+jPKUr4Sr+#o!cfM{PInrGqy{ILqZ^Q@x$vsF|(b3MB+S^X^q6UnQYtz43F0Ka= z0$Va6FusQn*pdO^c}pB4BW^iTz$#K% zbM%fCFsX{w zE2fufVQi6GlIO3kSnnjHzGkNk?JrQTkSf##rpKdBOqiDtIV#UHkQDPqBu0)7Qf0Pd zO1c^*OHi#dZHv}IXlXxY)^p$fsFWz%x}rdtAXVmU@Ogu#PQ8)IBC}bhr*YKJ6jh-< zr~ao%5yrJFtI(GC*p{&UAX$}brS=U>Tk_mDO`V!GJ<{?k3hg(n^|ZIoFfdbB3kn zF+uIJtV|pQ>r04=y&v1ZkE-jVN>VoTPF&_hPfZPT<%ca z5ap*HaH>{d#Wu?1i4Xw7*AK@OPj{B(qzG+U*X&;En^Qf@ z*ius_%aqqVav%n+-yw>I3TZ`fFjSV<8cK|G zub$|w)sPZ|E?(QIr&z;z)UuA55L_!B1oye(f&MFVR`@9&>Kp&0(HkRPIqz5+<^Ax= zqlW1Bww3;tFOlv2a;mh}(of>JyoosBXn${D4E z%48FZQuY1j*}=Ta9zMBp;?wagGrD3(?MHs)f*&7IKFZ~q~k(FO&oFe z-}c!n`gzz`M~Pmd9r>X0{|}<5wjW-o@}&Opemdp4kLL0w|C(OQE9r?0IK`V1^l!p>!uG_CZMEkP|oN|-|Suh?@^+M)g{Pvd@?7}+$P#$ADn zr{ig+_7|w{a>qpXhbMRS+G2sR>%e`ZWTmmFoj8m%^M0LqdIvct+F4eyJh6{L81x(! zTZ{Yz?i++)y0Qdvi*t#|IoBsClkan`p_*~9mO0}fgd>t7_39UuE=pa#igSm?~PTWt0)9RH$8eb z3cYT}xflp;mww?gX$(UXZsuFzVC+{Zz5*26eiv z_Ew5t$QN7+Pb*WrRi7`(3|ZDw{l|)ym1a031Ehp;Aca&mA-EPvk)e@71u^gYO1_e> zq`Gfa%=At~GgV9pQH2yrQf5zdzwOz;MyjYS?gNq!<0HA55XIF(XzE!Lg4?2B7@Erb zUGae@o$%&^E~ka`*rX_TJP53%%N|vduqEqL#X~LR{-8hC&v!F=z4vOgEM*m-^V=Lf zmmuC>mO;CmMWcIDtR;nh8yuP^qUxRreVyAE91qU+k9XJh$qz66JjIKc zuNj^n4$1N`+aD@3EI&M}S`GQ?3Y`kme`H1H`x7F{$3>p#JM(8*GcGN%_clK3D|2e3 z7olhW9P!1)As%_GO61IDrR~ETBt%%p2ESS*^5;A1yQYck3I2i*<1VV3R%$h|=8eDX zXCHdD?SV1<Adl7#W!>P8)P)9_w4IJ({dO1J0Geg z`=qhV8nVE@_?w!6PRDKynN-m@VA_!?43Rk0k-PRG#AiZaErjL~%quU3k}-YQGuM7lfh)!&2bQg&$P{b4f{{6dwk8ME zYd~f#gtn|mk72=m+3K_*+6<>&&qzWnF?`p;wky+I~xjjWpYnmSI zL7I`fRaoF}J+G)9OKp;8IX{+XIf)mRmGpNE=^}+D1pk5%ROat$oFfkYrA3QOqZZ>< z{ZSkQ{esXj5Ie>N*Dp$R&&=;8Sa&_nkP;kSCjR|uW_^TA&;WaHoak`6~ldMn*@&w&~NS9_Z6XK8DTH=c? z_iw(m!CbMhEuj?)d&sJc)`x$IwKxo|zGpt373{V)$(^~StH4o2GeA_YWcl0*HM%Sd zsB*C_(;6rXr*NF_f56vjTZ%gg_E^vwP#JB$WnDP8&$n__io2y$ri;I@W)OsFcjtvx z*nu+@?4^m1i0sV#@WT9*z(yHEI$SY7+<9C|VC66V(BUrm;l7(v0)H%ueJ?eZTb}#q zyXIU34*DuRpW=2%%#7~##L{lgQLTnf5z7ZY=S2-zR@77Xev=%iyGZWLKv~J^zaXd< zx1=D{$ndmXygFFV+pW^)`)90Dz1DbIuD{GGrPI2;93OH%*Bl~rdw*zxu!oBtls%is`aA5+JgBv$rqSe)uUDEk9718s?^CDw1v-Mx2} za33-EUKfHL0(u@R|^KQj9WlKyg>2V=ZoVxGop!Hg}Xs?mnk*fIpVfa)qN1;UI zi|O;riO1i1JowU^Jq;Y?!*br;mFV5aKz#B<<6SeHFGp2y`tKZN@PV|qnl4`}S(g$x zeTP0xrL=_loHZQ#9Cg96ZVo+fryW-Noald`)#kFA)j(E)WkMRRX-|vtr|cElcAD>6 zE~ynbRX^RBo#{L6X3|LW=#S0@JVWyA%(eKtq6+lNi2EQ_NUeNNxR~1mIG(1<`VNIop}jU0|=FR-%7xSwja+7Vlj5t!GQnexR1{cV!uhu{B z7R7g)WdDbyhDe&qS|(2=cwUW(qhi-Z&e{HnV(37>Xf=I-f6|N9y}R0@hAi-}+FU(A zF9PR$mg{f&LiK<;O%*SmNHLPc+**M@^4b`&#i9|&GZPi<7^g&NdAe<9y7Nfc3gY0x zu3j{XAtLK(f2b%l$w}!Hl}bOE6gc@ly+&Ffp;ehqO;Wkytc1eb15{J}sh7++LWezw z__#Lxt00&vqMe~li2D!yZGUmRuV;an5~6D4(Zm4lM>17JtvZwX!nWzo50@SlOC!$ybjes>VD)Q?a~aHFYUs|WVoUg-OH?Gp}+g;5z}WEkJY{xBn{ zT+8h9lQ&m&w`6wp@W}nzsCJJTLLSS#oQ5)!1LE+Q&2?wtMsI6EWjN5<^lP)Dhddo8mw8qi#y~L2EQ&|^56o0x7~d9+#G}EISJ}>-dE#sLsXes!uEsu0JTIz z9KWuG^G0%25uR-JIrej2mxM^`(aeYD-INvfO^kFuw%lvxeryk|87RUzj}?@H+{wT0 zM(0?Ms>11;ArO0m<_VF=e65MBp&sXQB&t8+mN|^oM7Aq3Qnb05v-Fy(;_d||j$VJs zo7b}xw}{WOR;286N?lt*eDqv9gAeSr&VMZM({0cuYdeJG>79#jZT>UiDzP#n-Nnd1 z&OSt;riyu>p5%BdjZTgMP?=*gYSbbG^;)lc6zx=I?V}Ow^yD7=vhjD$z$Mp;q5sq} z_(0mveYe1W;gp)MGzOxI$44wBNa4Tl0(ZJ1rK~b!%^(>mR;dtuyfyN>R>LpJa*FcP0nAl&Io)6HR?G zYS2cNbH?lMGSBvJ-Rx&BPjIh!D^s91iIgCPGG}Jzk9{}1UDf^V_S=m!EC`JjL+c2Q zL8PSPxun3^U~yCpZMexd_gIp<;I}S@zl-f6J_Cn0*RprVGct{N(`UHSZtrGS2sn>i ztm%&YY_9*n_>{n)+;*W8yXX2T22_8dU+!QjeXA#55;1TXRH2_pvMSal8vZAGeI`{J zOO{)l??Zebw60ImCG0%EVzkAS)#E?iXYbuz$sRI%oIuWppH$pl+@EGhp(qa4SHx%H zDD_B+*mCG^r`oDI?x-O-;c^R59UeX_%8^m#Vsj_ltokA|J`)IkLY9U^b5Aj zWkuD0K~ODjNkQPvdz2{NB`Z$4L{pZ~FTa~NkxV|QuKLRoj6IfHIS&?|h^PLz_}4n; z#0M|iNv#JM_YIILq?X&Kf3pN)XZa95q*mT{zIBAt{`B$9o4y)v#Np0N%nv8+NeNtd zy`VX5AAACd_->#a&%&*MzuZLSK9QcgNdK z+3~osUmFiv;#m2V{rrZePKmrx?$)K*;f)ThOzFKdeQOVMzsgswhW52*y#BMVVZwNE zc2a)$nA~gr;KOzy?VV{(0rT9YwfJz;2XY!?1~HSK54~Y>9d`7WdC_7a3_s{^W}xudVYfuXlxW zDKt@@Hq_WrRwzTsIh>h5pPI`gY14bfK1b|GRs253TDUWYEm_u-s~@pX_Uqt#?}hQ6 zmaP0FCD6H5yAZZ(LTq?{eX!b$LH4Upj+gVGI;%$KDR)fI@pcymm2c~vTjQ0UWr^!+ zidvt16ui83x-rhNpRxbFQ(@jZN}kd)ym0h)<<6GpYvcZhiUU+Tton9f<+RYaFI73= z>9mm9=Smk9#EZv@uZ7U8yYz1s-JJB!q0$^qWxkOs@AF2>4573gYjK(S+=P&~mtDTS zjK45Gg5WaYwyZ;2C)hvbR`<34eVoyQ*lXDTihibzDPcb7^e2`H-+x0eReW<=o)#&! z(s!cWCvCfxnIhxudaUjKXs&U!KQTQD7w!+?egyhKCItS1o(z@sp4Xj!{9tce z*4wvh>p;U^p|&@b=VyMtf^TPHEF9zC^0g!X&x`*n7S26LR))(gT`jBP`n>Qayr*MD zwd6-pQnc7#(l?~+eFEu4J{sSaALgBLnW=Du>#H`jvajC8$wq%{9xc~uhg5%H-*|U; zUAV*RX|=MJRlPjhv~R$gsI+A0S68|%-)-j9-g}44{G->FIEu_ZpYzt|c5vKmU$gCl z4L;BYqaI5-Wr$6^gTDCBrWU19whEN z8oSo9JJpgJ^@my=tL@tE%KL*Z-ydZ86y9X@da&^RpjW0_Y4XP5fU)i^rPXOe8DWXg zNgz7C!DZ6jmVJ{WycV^rCSQ$oYkoG*xqo#H8-HokJ2`T$j9L#eG_@q{)!^ZxcdpCl zOQJZ|_DPPE_@T0AeHeo9S=O8u<;17|{Mz=B`|hT=PZVOP#KDvxw9L4e)6Q)>u&vW~ z%hfKfusIS!H%3rHE$fPlmy1oKUT%9=#(f43c1U zt~qhP7I*uw&(U+TEL`0o4qV+KzC!iz{xNeK;)!UCaVQ90d0|_K&s=%M+qFbr6nQeK zqS49s4e(Z*9<{Wa5zmLixdbV+tdW^BoCB{~?z>6dz5S1iH`NUE|5o0?dL!50acs@N z;w@>RCcozT`^r;2t7_8zhdd|a@+m#`Ce)6!_AKO{aD-3qS=P>j)1B69|8YKlsE2_A z+oc$CgXT2@2gXyJL7tOw;q*>nbTCbFsBjQI6UUzw^PQP*)^(mg^r(y060NhTyK-;a zEj%+pJMK|><-S2go!CqByeJi!B;0j=KJ4t<)!*H?sh@+i(_UeurIL@y$AE3MB%GWT z^3&-QYlQOc&?(<#YgD;nlV4rALh>S$ZNB=+t4sCiPo2Nws9LNh@>wj)DqM4Vd)wR= z#X`AE?J_^I>^Z{_6lLE!`b^Q7<;znSc^-h8ojaE<<<8#UKe)fcy)OC*XmQNB7IA!& zqr3@fi}IWmcbZO)sKD6Zqi2(yWm_kTcedyHTTE5+D|u(5vQ-(!qsBmdpcGj?BsbIR z*Dxwh&G(h`txv5n*dGLE;y?(NZczw5icCsm^fN+n*rE{F7S=+ZENfA}_0D52ylO`t z>2IuSafOYmN#?ug+8NhT61SHNOU;}LMnUi|)Pr26S_m!Amw*q4ej8dGb2h-a7U$Pp zg=;E`Kq9oXe0L8QeZO%XqAuZ;oTAG*IT7>yK5d(I4CNQR!Q-}ehJD4Isc_dM3^D)7t~j5 z$&?k21B~yPJ*Z)_1nREzOAF7vERcJDUqcxdFqe%fU9=21CeTXAd-S=_ zIUV=i7@Xd0tc&duKK58m&iO9DZHNB31^X6fGPV-N?Cg1cIM*U2NTJCG_Bqx<{^a`x z_wRKQTBHZ(ZhXj)74m`nMR9oJ5XZsB!bs|&SLls0J$J>2z*;6%3Z~F6fqhxThy0m1 zuq~{G&@vu+Ghjg%}FH_n#tDuI@e!E=5ZryU{bZ~R5h_)W*$2BY`V-9mK;zS zfz(dinBSCTK#L(?)qS~^c)Cu7;KpatDe4^E+rl}DGeW5-737VQ=KwHMna*H_Ey?!> zzfKj4OYaT-JS1JPzLFP)dW^P<`-A?KnZMvsBMp} z#b=8C9Rg1wQJLB$2!@usOEoQVbafx!^EdVJ{1RTJqFupUSn}Q1V5&I!>fYeUr%hR* zd`zj|J;Lv7*nY#UJMW(0qRk*2oD0bugFD7Hx9iub>ZU!P;i5!irNA<@tPlUJBHrlu zh|_*ay65$=E}@R`X%Wh$XjwJNG`H{lDcNoOUWSV&%&^xGw`KiVP)$rLXzU!GY0hfo zWimdL0{6BW=V+0UTT{AE?Q3q2Emze&FLP!Rx6C0@Xi~NN&atA}KozqrjuMJ;npEZO zy=2$l-6y!cyXte!Ah6*b^DPkW8^y;Be|_WJ@Yf(i+p#}PsuYak9NR^1Q3{sz zob@Wt1fG;59H_gj)ADX`q9rPy=o_4VOCN!4pBl z34bo|pKGYbcHI8(JOIw1`f@3qm(_gHQ)7|mmf)>VlqgA>TQYAJ<85N3kmBt+=RoXT zWc~%U4|UqI=BEyF*5sEKOB;4KdJy}d+F^Oyw9pUIT#)XPU1ECKMo~ZWn-;3is|6o$ zcI>Diy0*XFz=7@JJp^-)h4&`t#0HmR_ghT6iyS`pM6SQw{Qrm{i`bcyJw3b;Va~Or zOFX|Kvgk>QF z{(=xlp_gOJkvX=+^#ujDASK$K7kJ*F_IywrshscM{G#1M_O4sR^@28o8Jd60!mHv73<_qp~#n)Y&mtwsEw#Nn^ z-t5e=;#l3~?*@d6Gd=Qwv#1GyzaRuk#Ds{ayVy?#gyCi2xI>;yh~vv&@OEN&MrLkt zrZ&9{q!)WFzL$Y~U@e5UEP1=%g-i$$%3p!=Ih9e5i}JzN$K(lP`lHHR-*#Nx(e}eJ z_s==w4P|RW3Jn}C>Qb!FsPziZ^=e=xK+jbOUcU6p;0;Gj93Pa+4=;N( zRp#*u$T+OVM;KH*hDvlAZ??ahx0c}(do;SJT=7S>KTP%LPeJi&i|inmDUN^PA$11} zS6&JN<84@rzpGt)Wc!?8C2}44w}^Dsat# zYmuVTE#$?;b3`azmICtOac@9iEh_61jZLPXvOluFbZQ^#C=ffYKapB3St`Z0%YDG# z)%qiA^sY@4=HKJ=Yw(1?QCqvze1Ema)ww0~GA(Oj@Al$iR%ti)xy?3GHO|QkpYKcB z*DbWMZ(jK5GF2v8_)neXjHQI+gK{(dU8D*r!Eqxqg-o058~I|Ub7{a60%=ERJfCXr zG~iAQ?k<>AwVv~~v!!+?XX>G$F5b?3@~&+EuQ#U1JOcsaHmGG?-s&%V->7_hbcOE5 zeNN0Uj?gS8`j_sj>9qm+CCHN*%fL~@WspWX~wxF{`j*{p1T_?zm1 z7h1$prLoAEOiWH{jzF1xKI3qu&4;=d+&bW&DK65EIB0yZhRRWN!z}xfGsE`%`mkux zKv6ZjN?Hgh#Fjh=M?yFf!r%jI#qDz!X8`mQ%-LY*^0(~0Ggk&5f94UXSIWXYl3-dm zw0y;9Nh52CCu_K@v}Ex+iDKQk;m!x6ItjL~w9kS2A83PR{*s|D+Zq0^ga6bXX;6hx z&e-{b`;am^Xl+Msv1g;Ty%+#f6+36J=BwF&VdRLCr$2SH2BQ=g%F6e6+H;HyA-4Y@ z-)LA@)0@?5A4`ms45~6h>-w=c&?Aozf!MKDy=N06=PxRJmi0oZ?&7im3EnE2Ij8>M zGI1;JN)BASiPq7y{)l%@A0=vzj{~<27vZKVb0qFm;x0Rv6%NgNmcSfsnAr+1lGcJLVO6Uh18l5C=)rh(!1Nk`EE{!gh zg04@p!ak5%;@yZKEjjjt#wSmhw!2R}G36JhMX0B}@NizZPPbGq+Y|ae=o6VZNHc!# zr}PRn12x8g@FFbOgS^^8xfu`w>5b)M)nauQ#Io?lAyPtmykc<8z>=SYar@B3!O;kk z4@cOjEcZOU)9O?!Nv zO`C`iSPLa$@^R*fdLM^4?5`P-G;%8-|z8_dU%TT zGPH&dsiG|P(i%#-%#*xp`P?X{=jWBgv`;bwX54#AzL-8++ThV6JBC8D6Cwu})e78p znBLBe2Z6QBe0{11)oDYNJ6Z$&u6hu0peMs`WzbH(xmVPw?_%fFGgpZ0rTP_cs)Zhh z3Gq$+R@nTVR^C?OpVBLw4S0r|`(xXf8;1%+L2xayOI#)hoP#ZE^3bMEzxByt z)cFj7++rV~3}r6X1|{uZsts+>?@ZVsCKxc5wpUzh`bHhq`t51nQ_5wcTAD*JL}nb>Brg8 zy=|n{gupR@&?bb`5?kt(EA`6rOE4EJXI4d?Wc2Q(=3=5~;=c3G1RE_U&VAVbmeuls zruLq7$!>$cOMo98>{*#J5g@Riu@*whw^BfNkzUqU z)MF}pIBZFkE2;8i#l9Nyfp*@rC62T{LRuehHehbido}%CX|IZfz*?qXvM&2(@xiDT z-WbGL4SC|S;-hV#sa^lCB=_jECLgiBC{t@$2!XZG(?cnk5LgSn@c0lYAFPGYmNllv z%f80r4m#(u9~7wVI8t%lMwUd`5h_u;JUb%}D)T&Vt_QKL|DQ+3{wK|l@|17k8=&TU zheQkiWeLp8OO(*NBAn@%s8tzzSL{g<-M%j6Ogf(K?Jn`j#mc?%!;LoA@Z#-gW4L|# zH%lPx=!=^3xrR}zJEjCFlzG*n6k67I$rar437y1>cjnvv{tNtvA}Z4<=ADe6;V(BJ z?+Fi3(E+yYBscwzs$SPB&kwP4**ix#u8K$1?vK`lmxfg~ufaw5K&nvlsb&7tc~VL4*lXCET$}zibr<^| zp-l*mArcPkXA@%axTelGk0y&7uGcT7Q{S=_h;y`d9yK7VoG{*%sW_{8V9jHcM_6b6 zD+)17<^)`QTRWo`K`?Yth~vvu7C~&6%G{D=t@7;)?rKwAoT=40`mzIB11h5hx2)P% z9SELGO%W|eWV*;9)+$ch)oj4>q49xs9$Vu6Fd zdBeak@# z@OZ`G8tIkw7}eQD?PI+nx$PWVB{KYEEqM=;RueOW!+eiPFQeP0`nO;$^fF9{vJ1+I z+Lz`#%R=d5+~nlI*-2Hro26(U{TAIZ<2@GY!H08eh&B~Xs<2(gr>GkF{pDih_fI>g z>^ofK7Nu))ena2xV)3ymo;_iSk`%d2(nVb`-_2m`I7bmB{9RGCso*K6@z_k!tZamtM{r$17d#xuVKcYgkui#zMMlv z(JqAiS=Ps&J>%TE`4N%$_DCB?C;C*Q8s_>RpRRmuiQ~3u!EO6@`sy{G?4r+!KD`3i3(vO5*TsLCWjDC+ zi{q=`Q()8)DKx37`geKz$2Zsb+T>3Z*at`zo&%A2SO5aG4{IT`p;w0W!SNVh6LCF= zyZWXkDlAIlF>5wv%H}fJN6Y%X)z)CO$7_kPJvte)L5Vl!`%ev4US|8uT>qF+{H8^` zlQkupDBW$IDDRcQ`5DXVJ#_l}4|X`-=CC}AgY+T<%Fwb7WbFyQx2cZU@j-ios>ffS zFSFy5_H_y&g@$wu9M~?7X3Ki+`l_N`kFIWoJuPn?GBPQUBi~penNT0Fl`wOX&%CdO z^WbN9h?!$67*yd{F~`S|nPcrEGtc?tzsAW-JcWi7Dn9ruC!Qq5^P46_neFR>&)JjQ zilu+@M(vEwHNAImh>{jPXb-wuh(_@COjTxCDJ?;5N8P=rz3NRjg|q};)Ipixdn~%F zd}_j@a9}@UyNJ)E3iSt}O^5-1RTB@E=;C=x+-q#lxd*XlE$hy-9Ou6M<=jKnGTfiL z=lFvgl~ylopW{FIPW8aK+JR8$jvRl*_gLHaTuc`IMtAjaU|T2!E~^pM;l*#-PRzYV zj9T15puW~CEiLE3>fSqwbW(cwgN&p9^fdRqcN+?l0ZLJq)%!Sl#Zo*3*1|IN$KmOg zTdT}g=gB}vx63s-{$(F4?3?Tye~QdiP3I>r)y?sDkZ;$_>p{D(FRZyXn3LK;%($Yi z!AH-E^ZkpTsqXFYB2Pp;|7D5dWJU7%wR=)vkbK)o$?9C^b#2`T>I(Ot_5#N<%FUG3 zz8fD4wp=zstT?d2Mt=~;9YV_!zsItiJ~KzSH4aYoW=}!_e-yp}`FU|ZRqy+I<)}%gX z?2<3+ahfkn_qZ#7jBX_t3 zFP0EA1F&A9F0H;T*WbNYO>b{fj}0mnH#^gq;O}aDv^cZW88z^Ir?IcUcb=islhp&1 zjr+pu+5X`tt9v&b4;|0;uR2maP`*SUWLj!%KjeFNg>RoxyIkg|fu; zr$E|~C(H>d-#4&VJDqmjrUeC zF7n3V>~O+y#bNi2v%`1ZPvvGIlk<&hmf4l>a_qb_eFa)FoOjX2$g>8G%8I#DUv%z2 z(aAmQn;o9$}fOP zsvJp`BdKx`JK7JVP_Es9543&A6SgGJWu!c9ub+I@Uf77TO>0V!LUYt^{I!Z$*nODO zTjoySOe%D4iKCo!?iu5A9#v63kSgTEqzd^!4af2Egd87RRXmhaI7G2`!{&d59y z2eylGEz8Pod&vH7+~hdYudPisA`8N5!L1 z-q3!doTztquJhANG7A*MSZB3L4s5lQCu8>c#X5i5r3bjq(NP&LjtQiy$QX=j32Fw) z2Pri9KnSdb{8`p5TMpSjUUtx_dPNr(DWQI5xy7dnH4&{3S|!U`aOWD|E9IwnYXi2H zw8O_`@?O!RT9%B^3weg#%MgnaFxr+OOqAaN$c`O5U+Q2Wr+ zLl4k|xbEQ`{~gjdBpZ&k(0{b7kN$VsUi-%$=cB3_p4Ydca98G&uag4Do={qX5muR* z`|k

)}-QpL*>KF9YXY%+f8-4tDvUeIh*8lkTxw=XvkRl61LD(q&20clieBq6YR| z*p{COZ1R%o43 zZt~7gpVRjB)%H3=QkASQvdP{u%1y3uW*)ImZx}2FuWV=Vfs`D2B`13BM6L&)|J0cn z=`Y8m66e zm&+=f70L=_g0eylmDyXrxGI>GV7a3n?ISM8c+y~b3Z7z<=+EKpL$5!gd?3BZ2jZ6b z;mVy4K6Kz7_mf>E3>>&lKzuUS?W@x)-#^K%A?+^d zm5j*<`O2{;s||@sfu3CwBP1V|8Z6^NBO*NwrqvQHyIevj_1uAo{rIg_&_5 zc}mZPQ+j?ndrsKp$vi*ZMWr&GfZ#Lfas_!N&8cOVPnp7brIHO9-ko=l`Q>E?p;<>$r+*k2` zyGE@VaeUxx7k><*Ua=HN$Go+(kg+9O#+C%Oi}*~BOs>zP5I7@aErgcu33u-<9{yGB zj52nTJC}(Pl!6Jtzr@x;X!8ar`h(~vqK3+hy>|tD5BeW=OSju%XOy4sUn<|nATJ#I z9Cg9GGm1Mr*siJVcO81yzH`GrPOtG9#wwM^JV^mptn$s`xpOv6&9CX6emcXrA&nH8 zRGqjo*FIME2YdcIJq;~EUmbmTx#RxyerH!!Z?~#^D;MWiT+8CjU|FY@?6c>sJ?Wh5 zq~<7|mymYkNzS!%O1O8un&+ID*+q=MJI_y9lWBa&Q^kI|e@^3kMd>{M&kyqWD9$F5 ze7N1BHc=14EEn67xkaQmK(=;c2yt6hi`Dz=aL4bQF*Py-($3?9@L~MHvg$tak@It~ zlxr2F$s9rp{JC{&2F^94Y^pjQ@Z^C7{(+Ti25L{GD2|L%+cHiqWSm;y%z|SAXCljb zwR% zMR)NPZ3NlZ_CKV0IWmxTmUY|U0w-h65$DRY>7J~3jzZdTzOt-qf3M(98rjjE@z+A{)FjVd zC~0#<{a5Z!>SxRYYFcWf9eF}~Eb}c*Jm#!zc*H3Pn|xs3AWuflWmo6S+!&>VsL~lX z>2$(FQ+{-EYHe}GPU$RACfKg2CAfc%J4zV$!JRF0#~p1g)9{cwgrxuf01ellf+vl>bl`Litdja0FD_nu(?dFd|Ft55%KjL{Ov{!Opl zcv+K)Lw$Z%o;8WS9zl8~V|{I94v0-M2ZTT^!5u}Ew6s10YKRp#clKnZWn#I2`a8)AA#|;H5SDBiBapa)K!4Yy3UWsqoFliK<5%^$q^t1HoYindp_j?E>0c89 zYvG(IZQ_npv2Fd{;Or;N9z;rzLh~E|a*o{M`2Z6Fdkt$Lw84kKI1I<(C~{}UWX5C; z7e{J^yp^((CzYj@51l$ zRm3(4V)~9@&R>hu<=H58+K_rm$KE!2?@3c8aMgodS|y0)Zw_-Ry`1i1E!1|V5c^#1 zxO3(o;+D&_^2Rq6O<5ryNc-!r=SBS>nQQXp)xoKo%h|ivPL#VD`m8ga3Zw7(B&S-N}?_yZkglv&=7aeuKh(KEI6xSw59k+DvdRi zD3{4fm{A;zi*T9ZB_=dQGmd6JAvu?K@&gUtPK?kx6Ri*StO_J%B@tNZsV#qE= z8WEp~gLqG#Tt|do?r8J}o~OtDH)Lh_3`mtZJKz28Y5Ru<_Btm|r^{U#b#{zKEm{er zR^CvsM%mNcO74*}8OGfu)IOxpqzW|yDM1P?YsA9S_N=e>IOXNZOr!*5Wl{xkI2Uaq zLL+}h1k%M=7($y6nv*O;uaGCR&k+J^t$;YC2?6n4gDRW>kV1`tW=^t$ov%}G0FGLb z9nL7P$`>BW4$p0(-v(r;EO*3n*~n;`U(kQRmbmv6KSu{;hrg9Cq)`uIKVxs25On)p?I_99 ze+eZc?XOJmJf}#@Dv`y@Xs3xzz5MlcdC~pdWp>2ZL7uYEYgyD?)am#TSPP{f$6$rM z_P%uo?HUQ)3>+z2a{a@nskJlWQyeolxqFZ4LQ7?cUYzkKjqV&qh5uh-;yw|r#H+Ol3tT$}zS9Ep+siK-UqYvbAf z1)<+WDsbhyLV<1-k|Ok;0!4B8rD&NMZ%GBW$~(8YD^{x93B31@acXlHVCl0TI|X}6 zxJ^H7XY7AqZfz4{&GK4q^?r8+pZ3dhOR(>Z-V$02%bHMXLvZN(HIx=#6F+E+h6nX-#z zi)l{1@5UD4gHK$<@?=7AE#d=d=kJR1CLh%B+W+{+Oqro6&;P|e%I>11O+I%1lH?w4 z+0BFEopox9%Y={jCKL{>iz=4!Xjz40Uw)o{RZUe!Z$Q^4-9@U95)+~@=YU5Qb4ZkM znJ8hZ=(~LLMP(^4Ag~se6@;cM%f)_1N{~WbKb8-KKq(jyUVrdBi1={7#e~5518X6) z34!z?1WH|I{~nbtrdOF0-1AdSLw8YM%lq@geK*zcb^+xIHm|RJ_jfnBU-iA-JN>y> zS~${bBZm-V0rTP|f=|835f!G>Ez}3na)v3AN@f18`oq2dqHllcHtq|@8yi{c=wub+ z!+ma(bFyUoZX3SgrY&6TS!e7iln=_yz~Sng6$P%&OkrA76GCG*Yti@8$0~R>Se{jD zbB%cN;KAT;E!w+C74<)lu9r*Y`Ij}L(G?1r5J)>hn-EQ9oH}xDhwr*2-CXmLrIm3))$Q5KDwUYX7S#Lab+M6|Zm%rce0H|Hod=p36J+J#3Tsz$T=-SOT zotopDY-qL3KJR*4l5fC!mb<>HdBzLRbzuf7FFGh7IvCYHxoY%s-J@0(wG6aNqTYu$ zIY)_DR=r^t>}~J$^{kJ4KPJ#+AjN$OTwP8J@qGhzH{+wBRo&Y4y9$ys-_4+35JHy= zWXnIVPql9@sOH|-&pi8qW6+e9?!zo^J$TZ)omJqL~@tn?pwO9_DqNy^_r2$X`ZPdJb&Y!{(T2>b>4z?S3=@0XdP z%vis3x0Pt*HbhCA(ye=cRrjsNUB!V*kGC#fOA1`1Q0DY0Uqak6q_=z7(EXb`4UqS| z{!tlQ>BJ}dbEi(^_-ogz>D}|QtS7Q+y5HTR3QY`LVTJFY2myV)7839 zWtaxfDf*JSe0k`q6!+DRSKIYks(3rCgbV$)sFjE-T^FJeaxHshbS*1q)JV@gYQ<_& zg%J;oS>>&s8-3@?guq%D{W2lKO)I&_Yd&gsnUN`w-fz3*`3JwMG$a0s9(^3#W0BF? z!0MA~f5)K8#a|FYYfp?O8gXibz?ijxL!N-B96A4G1y8F>G%gb@>v2OkmjB#NOh5R7 zb0j0t$i|LYFHI||v6#EaX=!AjG5@+2L);DyoK>ff^%o8@@M0)LQw0^TE*@ZKN0Zz?sOv zL6MZm(pxKe9x~-&N!d%guilC82>Xxny`r1?i`0`JIY$~iXS4rF^1*fypMgWnZ6YJW zcNgWOMC0r@;{&CO>l&1si38_8gus?ehh&?ZDYT{0o$y@}`w5@k}Hj*(Tetly@U z6rFpma_aR?cM-?Vu?zgI=g~M1#prI+VO8C36Gu6pT6txP=p)$kr!?UW@2sAGfo8>=VWE;n0e9jTtgqSgQk6mukO8d&2?ln$%W7HYX z#>q4EZ|}56|G33&y#6k?_v{6J-%54H9JLRjrDfRsnq8w}2{HIgru*JfZj(P{f8i@5MsMum;x7yHbNy?6RqdKMzK%4ppRQC% z9NgX2ef5j^{?%7d)On-KjHcu5w2tn+k)SDRp#SI<@a*t}B&AolyMVS**C)G+zaWHZ zMKz3i`TYsGQ$KDAU@IeCywu_@cO1SxTbXs=ApHH>NDuogmFRyn)6SRZa|H|Zo#?*O-~S2*vgxfXCpOTEDVSxqH( z#DV9xb$zlW$OqO!XcK~Pu%*UYh?^j&ZS@z+N0$;+ymye0C;3*&plagtl1=Q3pQqD_ zU&FuRK4)Dh$~k)U$cHIiriiG+Ul0N%BJV*C9xi(4x}NXD*l9ek?UNiS@q>C_i@!5f zCg=PL7jjEwmIBdaLNK>fi#sNsrY(ZLGq_IF$Fw7$iRe+d>>0M&bJW?==NZ zol{@fhs$RO)TQG1P&jUQ@LT7dQhV*-Rhsap8L>8F@1)`XD)M-{#ao@`a!1b6U`ywK%KTMgg~mW7D8LrS1(=W4qx!L zT|;INKpZGt69W3&#Zg3eyH<2mmdLaW+XswwZz(;)AxM0cg3D;(RLl|~aIA5eY9X}T zC8;_^z>W2&*T>SOK0pu9J1rvMv`82t+fitO;8Puz)#1+J;`U#aWxzKkkSZ>-WngJ# zdACwHI}DBq94pbCQP2AD9L2OVCHx)7xw0oL6Os>7$ln!Jg==RI2Xe^mB0iH^XPZH7Bk`W%NV(?F~|w`6l%={dOF8NUdcR?nl|Q zABA%`)=hzAB7Ftnu5QisV>Q<*7LJy;wB{UXP96oSh|`rMs(*8=agW?HKu z?dCWKK0LpKeFm(B(3aJ!Uv;tXY-2m)`gGbe_q;yRQRbG)sAHD(s~m$rpKP@=KSV%>%m?84a54u#B%v;yb-jm97)NG&RMRNSleto( zhW+@0J#NTRN1W*8qTEq#rnVylj%Tce(3bVi%kB9fPic&?C@OPrt zgh1M{7JpZK)Two&dtSyEzAQ1+uA7<@=2vu3!_6_cx5jdNbBU1i!Q{R!@`1FY)wV2z zK>fj52+dlh_Bl6BPV`QEUfjRY*|$5P@bstLNqbwB{rw*(yx+~b#p9gDGmawuj&TO1 zTdWN?^WIQ&t(`RiXxDoe68$b<7v76P6etg zcfrIRCdQ4S__hRVA+%*3l~fIpR6Qf9 z!jrN{p-B}>OZJJ7J8p87s(c3YAIx0lJvBoH`uWYr2&gcPUM8?Dnfuj@q93^d8JLS!=dYy+kTNkAZ#DTM# zyayTKcUmm#$(Fs`a*rOhYrOQ5jq_`(vf1HQud7(!SCz8EAFNC%Jj3!(t%c5vp=HF` z7)>nBJ}O(HdCxLzBAv|ReZ08+VR%ajfjz4+&{#(g2_eiL%=_O$=e3$;#IN%*1lvKf zq9|RIx`9KWW}wF4NRxLO7L;@0eVnM=QS-5%EbER}2Dzor7T7(eZ}p+vU+y69n-uz@ z*iQyk#%Xmt({5^shRHH~29y=@r|Xk+@fUBSW9<-#Lj@Gvp0vJ#z4_3|lzmCn64P7xBflyHXSNct(Adv8>3b9j0Cp|5=o) z*s~1OYZx_obgdK5VsPJ#v<<(p}Uzh9EnSQeX&074`vA zh18l5$RXA;`N;b1UHjXn7oEMC8Bt%IXh&;@{UpyJ|MafiukJ->RyPv@=URletWr*@ zJ95E?!M+R91yUum14Zh5T*=E|hW#Wnu{9XzF73P5?$&dpjWf>qi*uuUI;h8{CZfjS z41gNLvQqu=e~evwoK02x-%1j>jTtixp^}P1ino}($2pQSD0F%0B2=?wYfA}c<|l`?YWEF4|0wY(X%hd zn)oZX*70U6m33fyj`cAg#!9GNYVvq}djD9ryQ#4gBTSk-ioQF}gfr`_oNjxH&TAYI z{()3+3_jAswu5GjlX8a{-F<%kr$HTb!maJ(9r4j!>()DU9qYdO#P8knuv;=F667MP zR{ydkZex^-rE3s-?wg>_Y4>E%I-@lpC7h;KLeET;gtOM=XLws%bkp|;&j~#q+^w#6 zm6qN;PwgwcF;cnoyW`Xc;Qg!qrBDtY@|{(x%klcSq~1j&=TYKbn1x=*eKKkJRcBWUo4E zX=^i=fi}u%vJ9**IRbNW+E{z{|6Jf-J*AGfXIqZ9zsB6q{?eU!bc&ANR4dyf`{=85 zHE(4zzy7p{r|-Oq&Ap>$5TmedN4W*Qr)}Q+QSIb+w_avwr!@1ie`x)1gPT9mdC|{N z=SU&y-*L9qZK$#~9(Q+td5(vchS*n;qI>Ga? zzkU1H?lpIIQHi;jb}q?yty@w@J=vy>-?uO#`aaa+(4AL$v?XRd^<2n~o$i+v5BiUs zqVc(u71x1vJ5H+~)71+A*kYbtLBEas*n~*F) z61dNRY4Z8<5$2aVWzgpPZ?9#l1y64)`f_H(<8tX2^mDcn?w1&wB7WFP*b=cH#Jvy7 z_umoJs!>VoUF9P%wsU=mAQb)OiWUcTj<#U(GG(}y}B?=bAy#8tU1XXgd`I?a2jxQ>G-wQM?g&nvcW zGHY<|!WsT;qa3fGOAqg_vuf*mCK?1cg*17*cI@P-`a$}%DYfEsz<3eFYvpB z&-7M2t8cW1U+n!p`o%FQ$#Ht$FhqTGO!@b`lXGROZ&PF4tI>;oCCbhSm#9<6Q)4@i z^6S|z^(k>{cBrSuM=w^$A?{T~i8#)ybJzHrANbpSLQ^$*Ztd6wzZlx}xw4qAOxn}u zItzThH9HvsbDQQ_M&3E^>Tc+&$1dfB?X_`16ETKr{lh1sD)f0|xDmZWb_+P=o$wfir3m8dh^&JMN6GV9r>P1L{RR9(8>fAFfm-6#Escj=MZv5!|7 z3-9#1e%0d*ldf{2cC2z~IynM!>3gH%wjdE`4U2THtKKnnNCa|jr6^~-qy}-cjU#OA zC*b}GNfmOAlpuwUQ}_MN?y6Pys(1SAx(cli^&u^>!R{We|8-Tb=7H-xj>r_xaaYGT zwP%M$>G$qvOzk*`Kzb2@CF$J?+cvxXR^F@5`XcQrx^JgfZxeTsDx}tN)_lI%t@-G^ z>ZL1EvNmfSoGR5hq9tN-(;@1_)@We6Z0)-q>Ja5L#b9Z>Xjcsn)Q(jwGI~adqAf_y zQ6?CDB{XMtJSDUrVg!jJFZ3?yQ4LPkj!k&2tZ!qKkW^vqC{d(VB5ru3G z!APX)`;@kaQev+T+n(Lwzp>*R_gM8V-u@P5 zWI{W;4?LV2^Ytsolx}@}YOL3l-0MR`{Q;@EC95A^RbRi|4!IDm*NUJHL|`sTQ%UcB zKs(Rg+WxWIHTzrt;+t|*B4Sv%R3U=Px_Afehf9qy0!xy0e0ObX?B?6ba*OEX2+Xyn zUurC(Us5NzNqwLWur-kSuo%5_0QL)_*CJZ)_^qYXmWUAm z>%h8$S7PG3!pa{(B#tKP+}&J_am|h`eN#Z`I3qi1M~#UHOIL6YOX=Mb^4>u#$>wK| zV*fz-AW!F z481z4*E#eJ5 zu<>{5cgZ?_*k@=bJ~&N$Fi-Sdzb726kTteVnrgc5I?)dHuQ@05VPn(3PM8BQBl=** zi#0{HbDGBFlB&`XeSqL!5_2J%_%Q2Tl%g4-Ds4^7p!ClvCe~7V-QmpASdwgPfI7gI z!ErinIO=cxVVnER!+L#iVQOqiB~u5r$P2g8j1Jv_ZtK(QYNu}Z$KH^p24r^@;}5hY z^e%}&E5XrAas<+j2rNnWEYFDe_x@a4wSGTGP=y*q3gd4a2IF(=O>mklgRPyU;5bJ= z?^5*T_H)$YzMVzf#X8W_Bm(EDFc+d7Cuh&&ZsXs~9gS=aWLJDQS)z?e1n1(}A&wvX z9sPr>D%WFf(YGm${VvMMf4QE%137kQaF16uy$u)RH_x#o{dy3@cKU^90c~`~*+G(S zy^+~!&(;g$`Y;G%ePrQ86_&&l(f_#~`*R}gQiI<=Fx?&X-F52p3a9HcCiYf8ycY@M zv3{Af&t`YhZG%+nTeoH5FRUAqG?wHz-)2s9Ge-;V*Qp5tym>j(eY z?{5@V(h%;KM2pccdY0325+!JToF*wa&cb(|^q*g4UI)f?U`~@|$ko^K5SR!{a7xk~#?tbo(HR;oI zujcY@Vm*p{f>*=o)`)8#F)QQJc3HPnF8YL|>e~^uRb)(0fAy3ch40{WtU5h(b46;; zTmF~#im>g&a%DTHW#wsE1?@RgMHa_tq7c!JvwTh!Z}eNEi(Y*5CU4QkwD9IG!I)f~ zU98g|(hIx2)y-e0h0l9d-x(g9P^eLKfqT=@I$rlDb3Bv}wqz7nXpg7S`9-r=XI1;t z+*OQsSYpKC@5vGL3nDme5QFX<@2$M}V6aaHY3DSp@JT*&gbw6Hx+Iy{@nCV<^+maj>w3r6cJ=~t({M^@Lo5-kHg%EsLi zEv0ThrWAEJr@puI%^bl8u16tHdWQbS`re{W^NX(75)n6RB88Hwf)Cy*YE<34{LV6= z_`!0cG=DcbM+E1hUoaPcC$zrNp-MgP>6U*NRj-gEWTMY}gqt<36UZm|4VbvQ4I?#1 zaQT8gQ<6wK`i;DM2XE!UJ8R_aF#2_1rC$dQ`Xw|UJ*d5jeKuX9FcQhzdhmW9tfTeQ z`Jn}+_wdNK;+bCJgVQ8w_H!d$@(}Z9?ttJseejf!tfTsyNBs@$x4OH2l0AKlYLw8J02~{AbQIFz0wL5}p|s z2=76EL5Sa_8ZnUH!p_!bR2P*0T3T>ZAtT5VD~_Uhe1qWcvX0iRpNrQq<;eWdl2_9I z2ZG);?9?W>fkfT9tt517i#jn~M}l(6Kxd757IfudDBK&-gCum zR;bOS`VeoEqn?u^uw1ed)_-yY-daU*g>SP;ity(5UK-*XBCF&t2`$-VZi_@c>79VP z#(Hh%GzwNsP(GZd7Jy}CT7zT=%*AOVUA!HicJ}h@5T_|J&{+U}(N}xzywg>`U9Y=W zrAjM7J@5MfM-#~qmF5w83!IVa&w&igDR*M&#v^ReiZSrT+Ag`MvuMS)eV2R z+TSzx9&gdr&xAsK)59wk{8*G#WnQRjzDZwH|C!LtY3bqV#lIFh&R@+csGV=D^jGTM zD^i7ZNNcy2m8)>43+@AvD<&sjTj~ybEL|=a3>gx3H zj&pDEB_E|@oS+9^o(5@eZE`-4cHHlQdrd4C#5wM{!(51VoG1HLP*dit@*kKl?Fwy4 zdad5$rB?m(OVA_ZotZ>C^2Faw4|(Ox)4fU!TBuQvRrHSkJufuzo%HbA!}e-|Hc>ACBk0X@B!g*VYbViEL}{|8$Liu5-#Cs84|6FNmPCYo9MR zXuV4)vyRs#{Tg*~>OlA1D)U1--z1B36jIVQGB0G_jd!%(@a{G|Q^{%SC*qA2@%7q3 z=S&I7iYdXgkyVeUx44ljJE-PcE9#p(tt}x{(ypx5b5+yQmY&*I9Dm?Q#^xt0!Pti} zF*yS3z+8xybzo#bFG{+HMd6Ao=0ddN=$A14(w8tj^c&mRzi!mbtGR2E zxLX8wi^v@*hZpYjXRkQq|JFH2ukhMgdDbRr4f~IRa}R09xYG8X)L6mza&{+p$T{Y! z)HpTP>C9c=AFM&*18L{)#y_llb3Ke?C@YMWdav_40~Oz~h4k_%Q=*E$Q(7X*%SE*F zcf$u#g*r#eNBujFem7k0YhZQ)Vzk6P?fji2A`zU6e!*P)y{xQICMYXx;q=U1VNurc zcH8{>z8dIZ-(X3n{LqIJ)Abpg(+jbs4(_>A`~n!sgkSwSu~Xk`Q2H7er;V%*j`_uH zHMO_;@Z*7W=W;yizd!1k&|eps7%by1N*DbA`M{pD&95Vzha4h8>ce967zg&;p*9h1 z^HUVHr+ejF0QS^HLDX?p+;W}!!BaP=DnD2B{#rUWH0k>~K|6SGM!vq++q8Y_Cg+Dn z*5d&RKig%n#Gjs*f>O=C1M_)wgXmsb6S;b8{neY1M$UXnK%QDux z7oHtam}|$mdBvezlS?8#KBve%e0?wV!SRhQ(vCb~J1_a*vt87lqlF_+@m_{USZV>x z{a}%xmqGW2k=FRT(crahQ&g)r2m3V^Mf9sJ{PID8unc?i8`iyD z)OWU|3T+qtUq`ve#;PlNT^RI`F&9$E-;F*H!MW%c%*Edg=Y!vVz@0cCQx%*M66236 zAIJ|?X=_Gzs2j2k{>$~y+RtQa`U~&ZJ@&@M>o1GN}x^2fg zZg?+KZF*;0(e#IR;SVCG>$5N~-YQ!Bx5!-eO?=@Y>J2 zMmhcKmab8j^prhxE)@~{3wadM&S~R=$Oqak@_}Ap^OIfWJu@rl`;h0LcOhEuVY#}3 zs&&sw|B@dgiu<*RTC?*S2|lQhDwL?KvA-3f$P{b*|J;9d2@+1g$)7or{K(vBtm=KJ>fODg4f zr~?|M(i#-$18spy=D%EJN4&BxYDcMwc7@h}F%hjt&kp7t@N;YL^DF5Sxkw3GqNFMr z=VTeYeu`3H9_asEZ}Pj(gw9)EcBMhi2)|nRhyUmctNkf|bP;V7%1u%Qb4$w36cxnB z&g73$R{BhXuTMd^`V@rMb4+Ti=#Ki~FRtwp#d&c#7oH4(xh8cnbN!P$bdE~S-`JP0 zSFOr&juLU4D{uJTfA7+*?rDp2#0))Bh_m$)(eshi*c*4&5BD6_HHx_qEfIHWtB&4X zKU`sD*C?WsBT&zXz>>rsNPP;z%&?FS(2k`(@T3KL4oVm6lV>v!fw|B(9jDK_4FB`h z>E7f;Io=Il%?-Uavre#fgSu(^etzhgW#+r%z)Vqa{}Ip0AWxEyWV1Mopoqh1)1D*e zXg|m~w|1r-LBZC^$G-GAPExA_xWXGCC05>c^EUhylp&@RS; zC?aY!$Sbbd%Y1j7y)|e1&BIkZ??xRN9-60j4ww}_E4@J%v zx|QKH$xYhs+g~^EW;Wm0?ycO2kQK`3!Bew}pIc0_ibfp=5$U~W75~uQND*@(TCBrg-;G*1cEoPV`!7 ziESP|;uhp=^~UWk^N(AM`6q)u4)0dqYjH8%C(m~y?Q}qp@X3rIW zH=M8d;0$$p)~oKNdIbw};o5{mSWa>k_AJrQkw1O!;Ls!PEthWhM{hO#cJ@Kk2iB+0 zzJgt$clLxR%2W}5`cB#Ne{i#h94p#8zi(VVB$MANr-d7LPcLUL=fx+Exn19S-+ynr zqzWlPiCDf#gXlS^L9_*lK;0q&OVTUVO&{`}&l?ly9QBNR@OPv0-hb@$3-3GPUbCaK z$88ji=&+xF?UkOP2L$#Y5rHL11ol|4TtrI*wzY`BlEiLYkFA<49QSoH=Vs@b=EK#T z`59A4mlFW7KhrR-}G39 zd<`YdwrhOwvt_IN@9uNFm3r0y+dJIJf$gKPcCqi3t%PWoe4t%nE>4%_9DNY^Ks_T* z(%Ny4sGg0A?NU z!{}UI)HeR1*S1|=+ty`;VFf&#Q@Vprk5a>SZ5zi1$T?~arJ#EN@6B_6=~Y=Bnh~s@ z$IG>^S!dIHGSsp3=sb7i#xvFaBRSro%-Z3ZN6pGQ=0dc-(K=FFopVQzfOEDC;t(x^ zzZ=`tw59fREko>X853T3+1Nwc>O2Czw)VcFSl5ZqmV*L z6-pP^JXoS6U6i`xgf{)?o;L93qCQRgLaZ&3E$7VC@VkRDG=H><)&A*QzJQfyN(LR^bCF z;W4SE+}8wE3%^+F?%#IOKmM)0Z5nRL!nNB)u%Ahva03LcXQGuPN8su-BCsS`2U3OQ zB3j?iaBjLcvuPXu!72Kz3~-2%dhy$-VQ*wc=?NY{c$|wOfJJ93MwrNeoMY|C6RzD# zJ`jPqq(^~Wi8czULTVjnXoHbn%IdtJ@58@PgyS^P&U~2IjtKrGF&CosN$(1EyhWdf z{b%PyJZrmBK1iYF{Ja8p)1XuS&6nm-^aCzM@H`g_g@oF`TG4qVY^tLTzy3Z&bMMNL<^4+=O(bF#=e$BpiD3q zq8;byb}4G|dxQNyo{K14ImC4%xi)d-duiTxPlx?;Hb(TF%f_lnR;U}68+}hMT}GpH z4Z?Dg>tU4P))FI;iEv;g;6)`uYnDQai7l4j(0*s7CWTFZpP+tvb#`&xj^+%`IB!ld zoxw@DIy*`?&7E37vma*Hy^V=qy*y9f;$UJQr8`!&Y5Gp_(Q-jC(dwfFWEI?P330dM zx3$#=KX>;Cn^*^z%l!w#d3lI+k@KURYiP=OQ7);#rS%arEfMuB zBbPT#+xU0X@awA)gm+Jj?bj#Dd2vLdOnj4MsdFCH_S zPM>tpbBOuH3#VsdF@=V6tb=`! zq{wNOF7*tIbeSTuc6ujn&!wi-w>mEgzW;og?PV|~SIyt^V{yS3O*MxlQX`?)Yx} z#NN`fYih-AIM2{)U#lol_AU!TREShrciH@+tB(AWKow9j`tUQwH=J%`iRB#Yz;aOv zoSXj76@1Wp(rto00VRsk^@GzYL{*K~|MdI*WX1*!&qxXQAWdsuAO)t?>U^*xwhyyXpZ?kdsRZ5=Icf6wp#=4mRWVn^ja zpI^MIAR{=JNQmlh+VpdaGs3M~hoga1;~vHFd{ANic;qDc@OP4%zFTDXba&p{BLmcc zO||r$vc^hUU!M}I`?ZlMrw!u6aX55rZW+C^ z&x{b;vECtsh&QLlPm^LUL_5y(J!{=6Pu-{K(k(8t(@s2*)c035?Uh7uE<#`~ z{!VCp=fJSq-V>dA1a)xCAOxpLRum;{WJrdiz9`q0SR^Pw&y} z=-#z?A%8+fIQDCHwE87^p@VN{==Wc!JC+Fi1zQ}pn6etgUl4&&N!DR|6Y?f#tXm?mEUW|DE<)ITN#O%CL)DK` zl%d;mW`?>?v+3!f^uQlw9oY6!|AG4nC^vo2-JTkSyL*;g)lc^TDomRdD*ienyr4Dp zcdRzCZhd=F%i->`g%1VM0e8^Zbjv92NRw2dce13}Yi-MEF;?e^xe#shqm>W>bD;+l z!b;cnuk<`6^tDiK{~f{7Wd!vZ9cS!Y$NUq^`UO77BM9oHa+>^(+ZFUd8GXn`k@iF@ zv6Ln1ocoOSyBT>|gymM=C}zJ?>s%fmj?*a0v|ro5Q8fS7d7-Q-+zy`VeQ(jaya|Do zpiDSTJV~k$VSkai5KTPrUvBWGx07pPRM$1LiXR+r{Nuv|dBuBso9`y~{CRbip1<(w zZm1bH@MfRdtJ|q)W`3((QU@;;=_-dwvXNr=eNS;h~Hl2)(w`jzAnhC<$qNKRCDM-VIr3rKC~i5)+BuDF z;*`N&RMtUM@%WX}Jg&7nITESDT-dWrjyTd|b}$|ws&IZ!#@%l(`_Qd<&o}Pc54(EE zdFry6p=%eVhnrNoGU{Z{3cUH1XD`=$oH_liqIXkjxt$&y>tR_PKg=s`F)l+RI_UEa zdBuggU)ojAE$SB}JGXG7{~GI&46uJ?qgsiw-w9E5%G+53V^#h87mrm~7S^|_vgI#1 z0&^XBcy{qGw`YVuJ3#$i^OqZFALFj2DqD;!q<^seU_Sx-52pRVu`~8}EVqfA_Z{`g z+S!M$bbs*2c&G#NiDjG9!;eO<3VN9)qLMytF22h>|I?=G*IED4w?@n^ZaO3*d}2x{ z8oOe4@!9$wKpGD&x_WkTY-C3GnfvJWZ~EKu-j(hx(J_G!#>)adW8GpuoS2hADR66G zdP`r-8|J<;_d>Pq$2NME%u-UZ&g|kxb#LIcW1%usNsr<_CwUa5$&1jt^jp7nf1*M^ zK&sHwBm(DQFc+dpQj#hfpR=DMRX6=$z6XeSL`l>d#}66dbR9_%7=7Y;a$sLZJUWxy zd1ivr$e-i%y5v2-{f2M+(EZ)i#usLUs_drd+%m8wq>61!pJVCvzTdgd*ZzfvyNOvG zjMP{Xan66a!Ce+7$7kwM_M^eAjx>KsY2K+oX~!A1zQ7-G!72BO#yN0bxPAk)bTzAV zEj{+`cYJmU+d45m(eopuIoB1-b9$N$17tV4yA3q(+3-+OA2PY@F|0ogc2W*LKeaY)c z|D#qcvj)xFNlK_BM*r`b39>7mu`qsq?Bv6K)mCyY!}KikL#vk1P6a(qDBWjGZKB?1 zSq|cdu??e`YyLcgUa_EIf~=538%1rqTUNT53u8OVP)Zkj7MKgsaXl7g=qbn`RzCQGkR9@+PrnGhy6iZ`N62|I3s2^RrQ|e5KvXKmu{Cz*UxO)5iv%u z$`t3Pw?T6)gU*tFi63Hz@&hEprd zX|h*2t9IevhyC@>Z}Tr$nj`2%N{~Xw`Rv`rS&xs5_>W!iuxM+seU-foL|{(_b0J#R zfe6fn{U8~ssb%4Kj{3)_?KlI6ZT4^5e6RZZ-B;G2bWx%>uR;D{+d=Zqlt=5(462@E z&kwa&VAIW>Fg{-v!O?&aoD0$ABPaq;E<|&E`Yc)7FS5R9nBk9kag0LwU|&?qs{Fnv zj<8FV^z&hJGyF^Q(!Ha8PCSw&+S0fQMj|+xFm1XmE7?p@Vr#&0kjlbxQ3@n0{*&_z zq-QhNlO2_|3p>e$AE19=FG}yzfA}>2#(Um&7uUT{pC7b6NbF^zq$L7#4Jw>nJiUKL zxbfSes6;RqWM61~Y?b8a*mmjj=ez6qoA;%ABM0Z``HTF}fX9u+(S4S?9y4j_=U7L> zjWa_-HrEY$#Ulnz4^h8_ddTEA)b3JR)`2>}a6~;aBNppE=9X#*Bl6R z!;z2pkTEe4!SRu!oo+dMwe&C8nWpCK&heI=nG$Q<-OTTxh07km*u5F;}B z3V)yUJ&kK$o_Mc2A^jrt`|oWOw&&P}<9sRW!^A5r3rEHL-SpvBo>@ozG{o%RE&N2U zxW~-shwslk^~t}YoHjkOT3`I>|8c;q(evs{tIF+z5gm{8_`8Xs{|mw6K}Itl^uL^S z#ufl)LL6t}#?9`Gcg(6K*3P{?;+DS?wW1CWeGub{j3w9Tdy|h>ucey48Szk7ST4(o zUT@u@0Y_EPrX{(G3R0r25>(D#&`y643$hnm6x@Dgh{W7br`lwnLue>-&u~yE|&mFbD=!qBW zs=fPiJp2XMaj+!E8TZ5Xq8pCYRo8xz<8geYaxu1JE8#f5O!>HI$iBL2?4cadTf+83 zBCND>RkTN5sQOwnBe>4hFCqFSeeJn@?gExU*|3VA|m^*KnV zh5vcGvB6jkYi9(_ws6{b6jF7@oq3@)t4!@L-<%g(vAR5}5P`XV>X{cRD&6%Y`B=OB z-NM|{>Z>jXq&_e*pl)mpWQj->mV5ENd7&OFSXTFcxyhe;(6r9w*%EOs?aJ1YtI(=H zY^;08r7LFG*K(ZL^@EFc&NAz@EJZ38*F5;UkuJ`jV}A$h!ydV%i8#j{(Rf1>-XOsU z(`V4Xgn0!Esp9WMEhFfEX^ALZ)TW%-#yR9e_n|yK3{}>PBmzs4b(|cZ z5?gkN`aTkYCCL#z>H~FvJc&9ylnKUN^n&C*$o_~vX!P;i(i#5pnIp@1E!r!h9p|;q z)r(qf$W(XymZR9>s4SF^l$E|wg$3x{i;oj zU+1#>@8m9jiNM;CDr|!#0)Ih-Y@ID8S9P57eKDT^Wl z5a)Jhf3_MIFE?8q-c&7ScKm1SXnXsyp>E~F&D5E{wpLi~s?O#-PQyvz=#Ks-ZDylv zExGE@m>POlkU2eIPot)xWpo#dnsYca$}n+Es0M=oiuM!wZrtRkb_q^u%c+jwox zd&ODD(pTDRid;t`!Q!XxwKjthAP>zg}g7GKfFoaVsU2t+%M zekV@BJ8^MJm?~P?kW?Xpe@V=RXu-LMzgXR5$Llcr8SXgyVsFH>iSCA)mwV&X%+P>M zb;F%jhoj!FGecb;tQ)NAqof^2zlr3RzWPRYC&cJ=H!2J3z`7l0?W1+Qtk2(dFCBBa zhh%fXbHDWbIh_-ZpG(u{cJ<6{dSJ(P&ohR<>UcZ8dLLZagon8FflNmvDZgBIQ;?^TF!s&ZDX?>(#Q`wK*eZ<`|v9Fk0 zLe5blj`OdUp5G?g!JF2*k%uEltOL=(O$a{Uet|P-+?%A{tL?+loTa|YLh)S|blRG4 z@!&M|eX%6n0~q(0&v#jHxs;33REI=NXqoNbH8kX{7}ij5jyy>|V0JJ#8%{HVR0sA; zEguD%4}Av&bFP>Yq@B_d0dI4NoAIy?=7Z3ZbN&UnrCeCI1Aq3s0reB?x|%#i2>{&- zN2|88z=;TbOM!xW4dN#<^||dB-(|qIYod?7L4YHJsKZ8s;FgNGr#a64OV9C!XMW_a zA9smp)i8?6IZJ(mfZ{s`kP=Rl7co`Fqmm&o7pDy$z`4i2P+3@q<%uHPq(SN4!dJJt zLswkpA-$_d%nCi|Qaji=DqDm7_m9i^;>lP1+0%z9953TpbR1JVPKR&L@$TN)(0g*n z&n}Kkam0FX`>fEQzcRv?thid+)z1$<*6!579e&1yd&C)citU@bnA1*FhZo5R|N8~< z+8MRey++kOa@D%lf)A_@dD6Q-Z|&%v%B|$heX7vKU-XTnp~Wpt4?y2r8+u}tNjuK7 z9d7X+o^Z@<9lc5P84xWI+s^CjRegMmTVu&&7kd^cQHdaXf8@{o?$wtM@KCzQElOJN z@oMy|duz3?-0S}6pb=JzNEJ$fYT!RTx|>uz<|`V1$Prz;{ncZA=9}-FoBq%BaP)&? zgCR|;$KL<69E8vy_Kv$@!;#SZ z-g%)*J~rc3>UI9_?MP7){K_UW6k_a5vV!4QRoTpYCb8rO9|=* zEnnZ{+5TmJc&wu8usp|Wcy*1~*^e|0`XZ=nm7bLBXq7)?OdnP+xgUTD-iQ!ISjtnW3R8{Q#vY-9j8ER#HsSm6J>(=Y1 zpVamjHb__dukGTYA0Q>D8-2^-%1Y|ka=K;2aj;y}KYur|9TA+1e!*P)-LxNR{wDv5 zqh>V&b0H=C-5}oow37GAJC}GBQcf4P``6)Fq0wj64UhA>={ZsxV~BeG)2n^3=0W3V zUjLBsiu3DOqENSpPL8nBEm2mw|7E^JpABX!DN)vo{u=^w;rxt^eAK5lf5vvPy+hkY zo7OKDZoJs*zpjdR!~WAmq(nbR_JxNLATZqZ|<@(*r$JDMEx-J!s$Ej*{8e`LAerl_7j59jYj5>XK&^$ zGu+)T<%M>~Xs>g3dPgrb=D10B?w1#uwmTz;60#3RoO53d`*17L=M=x6lM%jtJN4l@ zw5*{1`EG@KG9xFL(>J&2nimo1>;dt?=MBvGXS3Oh&rY;uddIfHVw)} z|96~IFLur9dZz0Qs?p3txsyMhr**I|lpT02>q$qS>XD*P4`!+lUNd|!y;ukG=Q!_g zzgRu-rW;rz+E1da*xn?9bFn3IF8*$Ge*2WgMdvj)>*rKEQAHYLsxWOd_`eX8i%T+y z*H7Ew_w9bzT{|I1As?s@NtKpvk(RE~(p4y3^lkKlKp$}g>7bdOb)HyHMo}zDBCuS{ zC8H=(g%JlS!IFf|J(MWRhoozDP9w-}(R8n<=M~;#p$#tfqc9p^JeDtQuoOw>oF+Z9 zpPO?Tkd1 zT{#}je$X3UL=~PZ!t+KtwyzlGci&)cbYSU{#c`UXE29r0_?N_7h&IuON08XoqLpCV zE)i%Mm3H|Sy?t;8ESJG6L4Mz9`*?V~;qw0MvIV!f~22mjXlMRl9{c}GJ@i=x`G zcF)sWbo$&JP-|%-KCrKbt-iHsqUva?kK9&8H+pyL+oq5bq!4}6ac~C&_9ihJkS)+! z810O3oW*^1`YRqeM$150LJGOUp{qU(z3Vfs;dD3?-cRk{tv45+(;L;oqe?ciw zdgc~dJ)^&VLsGpSv&}7nC`C@wi#luz<_%Cp;4hq}J_@5L9o);Q;9k!7O@3DY!5y8! zOd)xiZ@MIG_EH?nG5M{t*7Y2Bp3Z(3jPO?thiM^fM! zA>xqJL_1nO<)c5-k0U9vRaeq?UURz7eEx27myf_)wj|1{@61%CcV^Pvk8yhSJ()4O zYm|86xkcl(zc0ML{pRPdE4=zwx+Ax?YCca>$LbzSxS@6X@3EKr`_0P5v7(Pav?fE#Q8^S zKu@*bjjW8E2ur_kgu`5jrhN2gcoFo%X<7b`dnQV`hg>JePmiCkEe~Ppv7>msiU>1l zsQ-YZ(tmQr+!E$Ow7v=9<65ey`ThQtOM^Rpo~ z%Zk!0!=2qe*0P%1cer}|!^OdU$Q`Rr58Ygm=I&cYZQ9X$be<0Ne8_y)D~bntsAh9g zJd!Whq5GVoK3PXH1m@y2l_YhJXZY}(INm@c5vW^{3%o#%?ohXs=FuJ6f<&M`um^}} zeLG=;6m@deFuzf+h==-2DumR>9u>(g&xNBVhvF8(E`gDr#P&S|m|)~soxk|8h`r^{-Pc1`igLOgNE zdNT3qf(4b-s*;!VY(vCDdMECx5!?TxkrnbM_Y|SrDNVgFy4M-?#8$#R08158g7Hzm z;Wl@$sxdoO>K|5XtWA;+Q)^^}2+oDk01>9Q#B@=7M+=_`_kiN92qr&|SkOk9bDE8$ zG>?$=odbWRsHIu=x$};94tBTXJyb7T`Hhbh-S~acU-iO7Rj1Wyv7y6F+Hs2CxLLWG zX9V7e9HKt>dl^3T9gXH>DaBXTIi(lhG(DtmIirzgvvXAAmeWH| z{APZ^Tr&C~qTTJ&L!Uop5SR0^(f2Tf?<~%&ad*GUAU{|aI@*LCwe>Zk@+0$vN z!<{$zeTq6Of!n3P7cmRw#&IF&EJzF=odtA+92la9_VfT@RPu3yD0puo7z0vS<@FOw{TvXOi_-xgFq&jd7`wu?EnF*~q=zskZX1pg;0^@I&E0Al5pP?5T5QRHU{|qTQA&$_ zc%ZJHTkNgIskGP&p9QUij)Z@XKH{HOuh`vqbvMBWQkBy+uT-B2|dM zc`=-ULbT)bjsES2rml0xe;T28`$A1R8CjvEB~|@bH45T-YA5|#K?1jX_ZV&^=g_|r z(&eZ|cE#%F?|O_MuxhvYIAo$--w5~aE3)9jC9#{P2}vhlx_tsP4~@C*u^^f zy-Zd8#MZ3bagwU8yVGJ5a*V97ZmU0vqNoG9@#5i22q7(BB2XrXz>*{aC5i|vNh0>; z=g0l-*6H~new!ZAj7X4`mJdg2io0^hufZ4uwo8}`(XtNyg<1ea^LMI`5%fR3E^i|a zMk2Hxfe?O<7LFxJ1eS%l5Y33PoHOm%s+m3XvSc&%66`$+9gV#3mQ}ZK1 zTw?z~4@L_0%P=cbz4`w-*RL|5tB7hC?IZ%moWh@ZEJD65se(C~_?!jh!WbnHIA22Y z;c*7eMxg##y7Ygp_rf}(bLvgfOGHP81vlgAy^;32L~u`-5SRq75=3k6f6y&2#fDnP zagS8+y8pf0|N4`N-~-VT@tVH>q3y_)?&uG$5z^(z;6ML?khFfKa={L_$EGj*fjQkg z>~qqJ$;J{x2~wzc6t~;&zBp*F|CE0D9c#y2h<2P#z5ZC=`_BdL6}cnCnipHi(pLJu z3^-|{=faQoRk1sdyJYuh8OR5xDe~#t#hUk14f1{o5Ev6VooHi@li8%7TK?8A?q#Wu ztu3z(Dwolw4&#MpG=cOY9}|0-zSd(G(OkyBFS{2#JNSL~ol}E^T_GA-Rjb# zunsI2DUo#;KImWSW!P9!_`s~txcxLvka0!N8uT3LRlRYR|JjkoSE1LUr^*)R)@>ub z&K0Kz<3UD{6gf@$kO)JSkuK*V1nZe>m%kHQ@1buu#7i3-_4mx1btO`QT1#FBmz%5( z)OjE)@Av|}ma>rgxN;7_8<`f%Y+>dG^a=rt4KU*1I02?%_6vjcMP{u?rmZ|#vvnA{CNpi%3<*w3a%nVgT53cZb zesOMmmoJ`o#noQz=L_`fV)goF8E)#t=v6CyN=V-Xo~BP%nQ^V-nD5jZkb4J_5A+H2 z72UIZGgEzg-PWwa*%1$EFRu=&Ti*%zX9I7`!i9xr^@{|3QIfJ3i;2QXn+VTN$<|arHvZS?`-F3iJ}w?#vo9GsI_uuadbI)5Y2k}8OY=)}7-AAcj6Q>0I68^=sUWSs@zif$*UXvrtFBXx=hZ&m_T|_UB=urQZ z9;x@wtkL^t^p35Jbno(yzAI`ly{m_Qj=p_j=giPJRWIl{>pSA7ja7%nHx2k;9aOqx zr+WPFv{*?qeY$_yjs)E-ORwvtc#ZtZ?IIq|0%N&YA4`?~H++zlP~VVfr}X(POuBN{ zjPQn9)W0&;LH}C>=RzqYN3cw&4$ehsM(Y<`X4dkWAHUA8SF5Yw18J906vrPJk#Q^{ z5fnoV7nTpYHG(Bdq{ePVoqdNO275_k7E=0>Z(0(Y* zcJ<#8?5UUw(R%mi51A@-?zXJR?UBIxD2ienBq>OV;OY`u9H$dknt~k=h5BXd_WEUO zFOd@TdFvk+FMZJae!;|G#KQ54%H?=fwvI8`nX2{uJF`C78A+hmSU72rBQ^0S_hlee z*xzM6k^i$@mG##beiG>{c)3R^h- zZrUzHa4z}D%5wYq-{oBTLRr|L1zR?u_G1 zLIGGlEqE6lLjV)-jT|7p6?VEeD7EXyM+czwU zmrIBOJqr6w$19^j9pRLYa9KLSiC?e|8R0rEYN}3*Xr9&f(hj0$LAj3Va!;K2Sk&h@ zh`?M}F4m_tm@&ayT>p(=1j(9WKPPPlE7kfY_;&|!-^cr;fmh|8szsmniFoBnm-<0i zx8tl|URZec1HZIivSWfmUn5)UrtcXbyF%a8Gr~{@N|9-&I#B8ofwdz7OOgoGEtZRD zeW&cTDe8uU`h~7R-NZU)uRmt#mp#bxqfzV)NY0Vl+uxj9JWX?+n_3R%N=r9OOE<1t z;ua}HsRw+-5flMv4uC8Ub0OMs=B+$S4O!FC{i$(JG2?}N$krM4fwqK_E+gGIRrm{{ zIbKm;OY(sT%!Rs<2+W0bAcg-O!5)QjD~n+1Vto>!=Xcxb`CVVn?*{vKxgU*vEp9)k zZzo3+R4$L=*!n1*%Q|rU!H6c6c4#SDv_vGEbxux|o?G(t+)|N=z;?`uwuBVwcXbM$+)7y?0^3wl1 zRUX!{_m4TnLx-FDc5qC^ob&92(JjS3lrp3ju$gIc=s z!mgL)`|YMYpioxW8^HSXd9@w&)b!auWi5OqqHqL>?UIZo$q<+erQkUApBk&a{K(AW zSbNQma(Yba4?^nt=C9OU?dRq7a--)wEOd^RfjsG+)MI1S6}>KWYkXO6t(A|hgZ4K| zS&eIc;wMqqgJ&N59z9N1k*~=9LEOpEgypx;<+9 zC1qo+tuJUfAwLvASUUi|xa^JBd1w z60{z{htm3u&pIX3jU3(4IiHH7XdO_tgXmq3^Y)A#?Js}mI``}O4|_;2`Um#s9p{~C zW4#8WO6LGTx+p8I!^|@xf`1|Da+-1>T6!%~g`SEON?9edc9fyMW9v|w_v8hRdv)b* z9*+lU42brMcB~`ZyA8bE`)|m)^Af!;14fF7mIyqyF`+ zz;9*fo|wM1XG}NYwMe0)>hcOF{K<=6cJu0V_bPmw8l&CH6A1j-6?AzC23^GfL@ zDen8g&`#;(RHeOXa}7+W`w_4xBut_g?kMie#4$7#~33um^t07@REOY($Vh3O7m(H#jc+J;Wzax zCfB1})P@rxb!%E|bj0LBwBuylHcH*q)T|FuS+wJmZat+aL92+Eo$@j9qntk2d! z)=uRE`z6E&r(3tCyVdQV=A(F4=)7kQy-#hhe8@Tw zL3=CfZlhMMfL^eVbB<`oncBXA8ui$j>wBJ&6X=7rRvv}rPzBOO3b8)N`TnYNv~}ry zac)G^f!v}kIL_0j*HRtZ4s}zy)4hXy9wQP(s-%@n>6N06e>>Qnrgzq$C6;F~#!6aV zpQ0B1XRy2YDM=Ngv2H6{>Mf1EF+W5zza-t=cjSj&$+R}cwjdE`8HgrXm5)H%MFf^4 z>%g8RmWvch1eS{$lvZ+1{S5Eyqs{!M^?DS`gzOb%CH?%BS{dGL?>F;ryGJ5WABdLo zqBs}2Xye@Ccl5mIwWlS{i&{={J)~Xm1Qse|i5+>BC>s-T#7a>VqmRv{@9v84bi;^B zQPlqBLb=&dY-JEF$IkW_Nr@Z}{-=MYYWZnJzhyyZF{_3aBdr7xXc;&s_y0p+uMg3V z)BdMws!xZh{!h&#k}8N@NTK6&ZQRMdu5nX$pb_k$kxwvl$^$=V3T67(F5YS<<^&ILbJRA;!a`>$Ug zQAi1Ts-()+Li0;zyi9E^$6ZSEY@|t-H;1gp0&xVkQS{w$(5|rWjFy2GlXPZVP{I^a zeG-ABi&Pyc`N@W;`V93Rhy0LdTh#d5(JJ zhbyjZ{BM1#v2@2Lb4z_KszbK5O)mI8>-K-n_WpS3dOd$Nw|K`RW}XtuMTzL0nWvrO z^=et8=!LdscLJA-_A2YJ!ZN)jbBbT?p+*@x&Q*6c@MiseR?(u>vJU2n_`v!c=Z=w? z-h#8Y6g{*t5{#F*&xyGZt@q7;ezrH};)(8e8_X#Px_g|)wdh5(&w*C0%}RBh3iZ7a z6}A`M-K}h^#`VcM$iJC;n#I{WI@oWl_br(joq;p6g7n*ZcG!#{D-~Ds-l;v+9eHC! zv}zbRB~>`%g?`Ryk`+^BY#|u}b8*^u6e9Q+Di`bEw22Iez+V`h7+2&x19FS)63!q< z1o|50l6J+qpnm(FOY@6I<{7zXRmm^jezVmL>&fOP1k#Q?QMz=6PD=#mOR#pN3V9NB z1h>{D-o;6>;(f11x-Wl|;rUe?xu5knJI~lgQEphDtONG{2Q%BHr|1&uu$WvA5l9K# z+@d+RfAn%zYV5ax=B8V|MY1d(Bvu?{}%kXSDFGL5Xz2a$G8Qy-qv z_P*Cd1ph+0_~uzgn>uctkgnE6TDmvSi>O;mN5X$CeJ9Ek(oL026{YoEtTj{AFZ%|& z53P&DPtnjX^n&QgFU)9iqCPia?hq@`h>Cf;+Y$G3PSI^|GL~@s*t0di_^U}7;r=zL zjXLeCTI!k_L)@=-M--NY6tZRwRjul$sKaLraa+G7`9RtwqW*nV)F&U$agTo;Q6VQS zcIPeTY#;I=5&IsgqTalCt~+3p$*o!2 zM@JOW&izu7g5=|+M{1~-9+~d0dia|79027)DM-ZWk7atRGq)GL{$>Pbah69#eIP^T zBR3dDV~j#sF&{=BRoho^f2{s<*4O8c^`7gPU%W`izP6KTuXBEJy6$VyJ~B#ke3W%y zS*-K2R$?%QD$YfmBZXK}@;b`ngQ5f@=zncjddAC~|H#(wN!wE}R0p4kahyJ#|8bjt zzRaEStL(k<2o#wR=I~!FV!sfDw?7%*ZrBiM87gO#vX{HetfTgZb?M#zfRw`6uc}}AS@Ai!di@Ux!fCG zsu`>Prn&9QN}cLxJ7}%{@c5tn8TGFfvr(BtXNOv3k+nyoShv3QbascV4GllY8aZmb zx9U?f@_O}V<9FG~Tc@0JwJ}7S)9|YP7Ve8XtMdu&L+PSi! z`%RZIdK_h=OkxYiajYz2%xrp*%S1TNg=mSuU$8z(bF>S1i1TmtA>*$7Zdx@XS;ATl z4Y$UQ6FH}x=1=&!kf<%mN|!L`A98*-DMGB{pwE}*=Rq9;fw`o$8y?CcFc(^-$;l`y zMPrGj@hZVeOzuS6MSI1xwcVgDuyC|jsT-z;5p2~3dX9|aRU!gMsW`47TjE|ArH}OB z882H4t>f5orx*WT%%flHQKfbj_#Yvytk9OCAS>IyGO`NwJyaTNX&&F!XRRa}WttMD zn^=dHh<-(>>SIMy|J}%+)NO1qK4-r}FVeHa#h1*=2%9%@5rMM8T!=1P2YV;w!uo8# zggGJqK#Rln6|K_dCqyy}N3=xD4OivfWE6X0R!@muds?$I;|N6mzYw}-8Lto8$Lx5d zBI-nBD1+d3SMTJQw#?1z@~iu4&Fegr3Eqy+?;Dhzjk0`{C~P?`g$X|B;V%-wy?%p` zJsFG!*c;HLmChk+j?3{66H81kOdEYjgz4$aT%-?1JI;_pYuv~0_|5INs;h@GK^sFE z3M=ufZc7x(P1a#CsKF9tJs2q@S^fETiQD+_UU$#g=I$Ntg`)-&sgj(RN>SJnQN?4Q zz@CJ3js2KN#JMbg0^O6geVR{*8`K2<9N~$ngQkvr+#>cV4{p33I~q#LwkhI7;Uocy9%@P3@+gAh~)&0l~- zgLHBPN|bXUnt2H7@=j}3S;29^@2-BkT#_2D#4uH5S7i{vxu`5gQ<}dUKB#Q-XZj_)SB?4% zFI-h4M!KQddR{B$-1I-S26pZqb0L}$Ccb~HZ%-myx^`i96xYvjPr5|ldOsqtBz-s4 zn7xI|UOeKr`mVo9wr>eb;yUR6Ts7h1M?<&1Wk%TPbti=iQ%$=1kVisGHkEVFwxS#H z4{lG_wp*h1j-DQB^`1$e_WH!)o3=7y*Z2~*!PdQQ<8yNqmfP%_NuiwP4T964Sd!e| zj(p&rcHG;N9D%uT_m<_4>~3N$KIQ zUVgSv?)b%WamO#(g1&F*jKhUTUVW@+%Pq1FEO*GOvqMcDCvDQ-S9dk?|1)xlzy7ZK zJk0gN&9g!c9!?LhSny-fS55Ll>mnv?P}(d_gcNDZzu_=OUyEsg?S`I?%$gKItEr z3u%`KJQa@!%q367udMi`|Hzju)$>zRyh+Vwg`T-KJ^c3YCH_fwR%m12^ze>zZ}BG# zni(pbogUuyd!DZ)v3R=w%)UD6q2nDq%!N8YDM*h(&e7VXN8wI#l%+Rzo#xjsv$9etKVE>P0tNr5TcMA<70!xb9RnU(^KB(p7UIy|c z5tu8PRqFH3ug>+4y)s1oxOAZV)xo^bw%_Xn`Z)CGtk5MXflsK;2l7HYkJcgo(6rzl zFQf{49MX2@TtC-;;?p7Ou~7qDEEnrbIXzGBNjA2iPc?Si<#(RgPpzptz`gd|S)oN& z8%hu@5vW15KGdevAWMr{wb6&|Ud|Su+q6WiY`4qr_;f$@*wc5pSUcJ=Qp+`%z9L2g z)EeqZB2bE$3#A@M1knfiUhLZ0+HKg&k>JG~6{Ls=hjt~Y+H`h*cUr|1@7~Ed-t>?@X|bNXGh4suo~QdI zCVk+lywEet>Xi0N)@Js1>n*S44c#CSn5)HYy7#(=5r%hTyU01)6^%1d3MN14n^O1- zB2csX^`ZY{xK}=v?&TKKOR<*rQ>n8<2k$q0Y-}_;^x90Os?WL%_w&{1-sD9&9{z%S zU`cVR0{_5s!Wa{=g_Er_`XI&?iP-(!X!r8aLqQ!(6`d?bs`$IP2bAd|d7)Kf9a2^^ zPMhssf9NbPSKrc%I!CSjb&~qrRP&-JyCA2Y#zNq_{zU)4 zTv)e03vk6wcf!Trxpyp!csRF!JSF8raE`W%QV>*$IuL>NNd$Th>44`&B_9?;`>Aa% zO0&-YJA$nQb0J!lbx_+ojhS52?bqf^|F255qrp`y4#vE_gD>Ln-3?3`$+U z6ni|SU9(#{uK&Nrt~XMunFL&jX6!+Cn%97vK z(O$32jEWlGovH6`GwHGyGD5pQPYiFJx=W9p&Cl>*9+X$Cby+7N+TT>)?RQllx4z1h zm@oE4?eRI@_>MOX;r+{4+v)Epc52}kH&Jf+*$jz!q3p<8?+}`Hq1)lx0q)>A4_H#+ zXbUA|&FSB6qp+^U@@OFx_CK+FtocK3D1H?8uL2BxH$3RQA_8*?=(SW90$UkG+X(a^ zr5n6vR(qUPc^;oj7h-1d5AyVy`>M4cShsU;(A==oGsPSX`mJ=-+q`O9Ng*p3xQOq zlV14=MyZx{5rO<{J@^gkK~mXzu*a!Hp-s?M0~Y7k5?5HFkP6WO2ja1LU!J%0BNJDM zm>bFS;=P(8v2v!qV`;02AC{eBiG6P3D&UfC+3Nh~v!c<5b_?jKhC{m}6{2kfMm18| zu{-F{Q_jE@m&vaqlT~3sw)d*OZ)44^y(3F2v%K5(8*NMDv;Fi{>u-)&JQQkv#Sb-G zq2~IEY*Lf0^ooGyfi)ac(HpiXrTMwB?%HcEaWke2)KM%1Qn7@Hu8v?Tdc$Z+^K&EB zt944`(ha5zqPCnyss1;DWk-aO%GlSm=bSG}f@#C!_Yg$IIT^&=8AV)aoR|AXkRBc>5XJxDt<$Gu}+x&{}4pQIT-{-3Fk|1I88iQr|JlN zQxn2yzOU0!XVl6|)wut(vZ4g*552l|!@fGpPLaXSO{<0o zrlL1U#m`M#!ARJuMVX4w9EpYpj5(uLq&HXx2jeJeId`U&%cQf1!=i=~ygvNS~MDK@#m3&(dM4){T zT{|M^ZCB`#cW$V8oM}aaJ~df4_@!HYHKam*0X?;xxFZ22L7jwn@XTf>Q+_F*TQEqW zO^SZV@{;y73x7P~FP5ck1h$sw4@BEiVavkNN2Lf`1{;BOIHGGs=GL z30UW(y8YV1X>!IiGpCQXqWz-dUTPYySJvLLn~h+L#!?|#h>IRda6{W~QDbf>kZ4g# zKlY>111+Lg;K`FS-D>eKy! zw#0*avZxcKg}C>Fy-vcJ(LN8(m-6B?@nGLj+D7mjL{OTa8-$4d(iKO0tRyHQlbd8(>uZve-f27y$wo8;Ak7@x9Q-nglux_^ByYj@if>+-w-rOm>X zGjG*50^#_a<)YC9N=3WE_`6h8+nF(E?B4Ts-)Dw)yw3BK*&&{}*}h5N#X8eG4>%By zDPuE3$@R<|%oq9TxEjB}S=;F%cTl_DZqVQ98o_*nvO?u!Ws~l*Vn%&c@ZLacw;}HF z!#O#9vr)%BPM1Cj?$NQgyO^)u=MicYHWJ!AmVR+aPN?jqTI8OTpFE%EEiP*oo~8Ol z(7Ih(<$3Man&(1%_r?KvVpytbwf|Fzk{}hL^~o@p{Xp(PT38lg>zXLx_@P-~v?xEX z9#=?({;vr^yvz+W92w|;M6*;rLYG?ZNPO=S+tkeJucNAsdJ9P+mGa8X;7op>;B8-d)B3eiH0 z9=zP?a6HbHL;G5hh>?%Hg?MkoF4?#By=vG`*|NuuCDB#}bwa!8RsFxMabEr+&KH1{zKi}Tf7<<5wZ;8ZqJ~(yY^ijM zqqxOE`*51-bM(LdGHLJEoSzEg++&y6wNIc^*9h9pZ$BirIG8V|sr_I-MO&OGg5Sha zA)4dLjJB<^2KKSz%3urvBhjJ)w9SJNWOq*cYfv!=lRsgZiV<8U_&Kg%nfeM_PHruU zil0|UFcr16oJNG{0o&D4`_Q*+W|cU5^Gx3d<>mekNy5*KR7HPY?!4$sah*2BTlo#;OL{O5M3YVVM=MyS zze5PD;V>tC!+1fOb8=osb!v2Xg|oHT|6H^!$NPC9m)aHYEONd+H%WErF+g%3hawTF z5G_Q}wn+AIPX?s(M^M0A^JUF?ds;JxD zT4_LwqMrf|#N+g?x>a}Vm=n3oqvJh`L-Y+l;wQwI{tKPM-ZVv6^dP6H#zCEI1iy); zLbMS7x_h2;I&Y#HQs-fbwqh#s0q11=@$9I?HxHkDUlx2e&bkv2zgB_e(bC)+Vb6LZ zFVtwR8Ew}(c2?M%#1f@_6CQWZdA@J-2=cqD<%S&tRcifsODb$Lu!XawLP_*`U1;~b z-;v72*=&>@=O6SbkrOHMkyAs|pgM7uRNH^b^_I^wy-Ac%h*ia%c{w{2kbKm?~r5=3iz z0fOJeQXyKO^!$FJocEQP%Q!3b37(ziL`~o6b3$oH?6jE|{XGOxaZU!&=DjBJ%9Lhm z!|*WSGqZY-PzC*vg+zuJUY!juNmH z%``{fu&qd2Tk{nktxi7I)|4ou;xt7iBTVephCnJ#8|zMJb3$HFu}r4#8KlrYnXfJN z9=@)*KVx32t@J7~+sZBz7{@})KJaPsOUq9rpZRd6z8g32M~O~1)V|3aYWs#gNdL4N zzBpuVqezL|I6|Mn)8GG~-V63{EQC8VDc{eRsFsBDy|+i2{tm6Hb51q_-#mJ3sW-Te zL10dL|J9yXWa^0aa^K5osz>j9z2Bp`e}mNr?ehH?quZ>?8{~U^r|Ykd`?qFa`AwF* zeMWbA^5i6iR12CKMEbS8Vi08)6w0Zugyr$hX_l?f2R4s2TNBj}mG8=SQ}tb}HG7bBB5$_Px8LY} zWVIlWimfm=l@P5Ha^&=#adLO*WW{gDK8(2F>R$Rb-GH}^z*s^mL|Z<$&Ot7pH!n1M z2$gxe4z>}vw+_!f+R+|h(iP^5Wu+#B84a`MWRt>{CQ4}T4RvA;27zx7VSA7@OM#K~*iokPxdX0=OlvA)Vm&G+bZ_hx-xVp z4rC$=P+UEB!px**ewz{6*nxV*_MC%-fD^Z5T;6V z7090AYYT`ff234d*KqQCuhBPmm+T3R8bE952F<-%L;Kv8ma6pXRK@a=?9}eIdApUr nQxbI&;@7d)c3Zc;r7BFaJ&06@Haxf-G8Nf``B9pm8=wCd#)*;t literal 436884 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

Qkk(O_qXqc`#lu& za86Uc$j={*N+9@6G8LlD7t11ZL&faXj*&_u_q8|A4Bu;3P$oyB)Ci1MsFU&b@IiM> zX+x*)Rk<2RInZBEYhDnpe?tZ1qO>a|;fbgd-V`nTD$%Nu=17HTf$(sZ)*-WEYh{Hi zww8~q>HV^Kf^$mC9F370JrS*-)VN7C_4t_++~G}ggzut#&=<@Zjqz&wn+3DoAy4P% zv5TjM|H`EAfv8JoEFBz7X%o$}?3oi*2gAcNJRHMAW4-c6W32GDJZ*#7i~+?2R#nkMD7{b`VpX_Ix8zZvgH-q zav~L?1A5|tvZGG9a6hk{mEnA;)*?Uma9ZTy6iPVFoBDyu8jpesLv4mqTWO1_RAYCEl-7L zrEY6?YUq=3^>zEQ8D1J^ps$}GUvnams2{|mY`k3~6>CmDh88iWw~nl-O%!!a6!nIh zKF)+wNUE4vDT_7OYEcmn;>QvqKc7b;Qe$2iwK3+)xe4}$l`mu`W-!PzB#(+_GsxqR zigU7lWf0}YED3@3VYID-h``#3RERd`C!Th?zNyDK?px>Q2rofx(dreCa#E=wKgpva zsglc?C8X!RRGyK_F;Z!i1j_?`S|ZR#kqXh)OH51P_m-GDmIqms%ER_7gKss92;Si6 zX?CJCZFyKOk_Tys{DPbU9)yc(lpS@FZPbKctGoA9sk#2V=f`MlUx)X$?JJ#CEZbV_ zWni0u<&3pJ_Dc|fRM?`jb*&!Qp0k&b6|k=*XGTX&3BIF(8O-G|PTLWdfJ@Y)bMAT# zEFZ6)Fmde7vN)ES2lJ!VX3WE`JTvD&@`;Py{3irEvJXGEw!(f%MO36MKew81d!xRN#`+dFz9`2-E21Q5 zkyK;I%l+1X<1X{CQW+ke;Sn-CH0Fz%BX6Y;F~XVU_aNz;1Ir)LN^R&q#Ov7mC8zsU zhs0>qUF-A1Bk#1MYEN#+4g~*n zoU`tzqvyRDtnnf%;&(Lrv9)gXn)i4QjacAp|9F7Ye|x_99X&JL32>aBsewf~C0)dhs6{5|)yIp5!DwESoyNdEiwi|sVQx8xgh-%a-8{x175$z-V zR@3m%s9|z_40xpKC!!TlC(>~Y9?jtHc}nwlDcbsM8yY6McDkEKT77d^JfsS#L$Smvn_ zcoHm9Av&-WSr@@cR|{B_nKajJT0s@fRff z81=mQIrrft0%!YpZUWJib9n^k%e_fPq~^h26UhksZIH~vQrW&JO2}xEihog!JumE$ zVeJxMcZroX$^8Tw+aX>h=9dW(#IEFTPH1rw>uCuQv^Z-8+O!5iq!v6lIw$iJxQiT+2u{o(21hTqfN@7fscckRElRtcrgt~EW}`D^=Jw9bk3d&zpBg#X@K zBD9Qffm~5f|2!?heeTuIhVM4tw#gC(^rXkbYXT~i9d(ijv=#1xK)XoKD3ra((apYjQl47t37oFoBGvwHriZ^c)wTxGcPDQ+*ZE~hU9WeN=Gz8N4=*uu6Etdsyp>9YKq{$+ zLAZv8Has-GLCq1Jq&djm|BM;o<8>?2M*3y=2vv>0x((Eq|pDf!0MTMEeNW@X&^b#y8>I8R5G=wH8I*R&N}E zQVP+QCwCG-)lL1=@}NQF{iPC;py)Q?s&=aJquy@Mg?iD(7sB?jRdgf<9`k{|+o%-j_Z2+Rwq5G`$mHbFg5KWVF@ zW(>JY4Lehb2$WVLFfXJ+v@G)=QU@c#RL)rbN_}X zqgP&_v25{l5cCDJr+V7MUc=bNQ1ibAh_gi+zm*sNt51f1w#cu$^5QgdYgbb>soB@7 z6}`}@dD97kNB8-8@!@7oT=NwjVu&^;elP8*4}FsEkIT@#RJ2Nq^2&X2N@C3fKezoW z@GFn*U|HJT_K@iY7oL?f`zYeJEum2yvnovUsxZ0@h*yPizQm8ymdAxRj?n!NjdzF_ z-3G)OBATCFW+H+F{(3#2G@;x@Mf3=GFY!KBPkQ zOZBEE=2#Q+YCZzxMJhxmMz;OAJA8wFg}kL6_-2^Vqj%ZL8mUKsiF!zN-J&UplawT) zY%PvIi;M{5hdL$Zo&D82NQHV}PJv9+ze3FsEfHn6jM05w{w-tdKZurPUN#>^_mXLp z1QF;l{(Kb8VEG8l3#kyTl!*);M~2`3%8PR>;WWh(857aEXhkd!sd?F~zHeQOONc=I zWO-m-NQG#*QkG?>$S}V{ew<@4Kew?xnqJkrX3k9avv0e4bT?SL8TR`O^Sx%$)WrHr zQ__IIH;6!s_y}!yIEIHtDzpOfHh2BLTFD#!!fN-7<~inmgMfR#T2m9NX3HV8K{y8C z-(<#mAP;PPd>$1dkP7(;Z}$$Hm_d6oXaovJZe<-bt5~Vm=dWT#JrFHO41Po`WZfArW_PzFZSK;BX%#C z>W?juBuK^2ZI6t4mDIZ=`5Kuz$ltY`CUj~9ze%P-wA36&Yp`zP42>CYzwaXQ1+%#y5^_t$p1W_ajf z)xjzC9uYU*A{C;Qs@DI8P;75)r$*^$y{}DSJk-VVKz@i;s#4eUoGXv^a3{4I;eFJ- zC{AP5BnjT6EpN~6v+}63pjWQ1`8DQ@-*;a1d3gKQ<;8z|kkT#9y)yiqPUT8(Z?t&Z~dT4c#AC^UmBk+wJfmtq~3o_wQsx z)I~Jq;E%U^W>>uKwRUPEubKU(CiqDnRo=SE`#tuz>)t)`jS+5sd}!y)$l$>*dB_8K zTORgr)We#JzJxv|5vd|WN`&V9T;_%o+S9-{lbTbf>~2|lE_i6(Ek|#V3ege)_q+%m z$Xg;N2KS;01m+|Wy!$L!56np-NM5@6n-Hjz)Z^^`*72U--@^I*!JNeXS~Lg6`BHlH zD!Yfj^nw*Jr8aJ?ByBNnetLYVz(-bY7=IJ93a&z!SuB=GwT zh?o{JcXNDapZojO5(tz8sSqvp-3h7Kq9h@r6Qfb(`X%U<*sh2hLlSrUP`<%V#WYr^c>iPO1~K2=!_rZnax_F4+5*!z+t zOpNvU{VUWEqcd7TA~2pK6{5wCTyrL%y+fEJ;TlEh;Pwz2%LsnvRuYIMXe+cxKu@-! z=u9y&*`kOR2oEC;w(Z#3352eGy*YXI`3w=^h+p2g{P>cSDk?$L1F1MZ5;`$j>yHSd zRA}8>+fIYo3^RsI zos@zz2h6Fb_RN9ge9_WMt!xl;YprPI);#@AjsA*$Of`*q97FG@WTXmyQE$p!(<+?R z#ols2Z)&Z#z##TiFb|A5CFY9!`Ka#mrzK`}kxKGFTcPHh=2nz#=<}dCFMkFL^THCu z9(ig6QlW$upW=b7GnEZ`s6?>rNQG!h%bR;KFO0#Q{{JC}igU7vpbVqlBO9hwxK0L3 zHlU|6$2BY%YcVIKUfy%A`|2BYy~>?(gqNU2(HG=xf~+Cg3VQ&YwtAS`ffF|tR)iob zer^%wZotHiA)FWSz&;A6|9=Rg;+!nPXzm!zwb9&su>@a=Xi>C+u&zcbv}mr_;bw07 z^UU3V{wx5?OL}lG6Vq0ze?t%z=VTFP#+~NR{W*G!)L3d*(-Jf8tB1X9WNBNYOvDDHCmm{^_QuQfmoG5Vktn1kKp-n4(svOaap z+@Zi}>WiL|=xe7&AXSi##bh1CQbWH&fAbLu-^CFRM4(Sg1m=ZQh*qlRJLkG{Ok`MS zA_K+}q{6jd5`lUk6{4lB=1k`=mTYgxO#1~%6jXxN-?B{~&i-t91aBl2qJ60xqlY$n zXylG|L;Vswd~RG*=^jo_n|hbHJC*KHWd!|?dbnN?SGQpdmI$1EMJhxqwd}Kg#eMSY zd-rtD5o_*{Uur$@u2)Wz?5LB^BV>4J!^8CSgH?0L1MMae$Q`K=&6?Xayv&_Wu;TAb zI#q?A<7rkFfoHlP6`~~%Lu+XEBWA|;)(-UE9kJ6{mUgd$qs}P zidr15H@5w#2tiah8j%`-RBT-unMjR5Dr`SeBlr!?e{h;)N3_+#l!w3i6UzYo7|Thi zA-kJ+^(QZLe);19jaJ06k?R>O7y293*aA@cgk~rCZDJ7HlfSmj=w^v|Yg^9vFJ-qE zCbu64U%JEl@z^G3{^Ya8nhEqi^h%|!eqgZI^4;Oi*%|8u0%s8s9cV#%V0(xC9odr! zFj0*yC!$j$@aqoIsSzj%wpXbU7~3%trA8nXdQ55rQlT%UMj#c&`IHDR@RDplZT%|S ztbwjsV%IawkCt5X$XCYxsWM86ha(-^V z&%sN~Iij^n_yl&8-AGho_?TJ{=wag(-YtoDcrE+D-rKjKDV^6B{GxjBTeV8)w6=V{hz|579^u^mW$Tl&W0Wqr%txCYTwMN1`<;C~_%`F<7T4rc zXag>ER#>ePI(atPq5+R2TWRz-qzY^mAZ#D*hQW0Etbb-nY~KKzCVu?9{_!8B@A`4q zdiB~E<;&@c;;!UDc_EM1V=TX2{p`uZ(FCXD*iI7C`gV--Y$?lw^CH!rXXBQzY1N9t)6Cvy>Wff%Qs0co#B;+jruC7&b-DdO%>%0^wK(Xb{#Qy_y^9gT z=9KIuL0;Lub^jFsQkD8%X>BDV5$hpsb?lb*rVZyZ&yKO(3{R;!>LKDFNb8qfP=d)8 zebPVQiO$<93UB^~)>2r_QzMv)5N~zJh?Krv5u$6)jL6m{?aP&5Y6O>UvV@#d#kL}w zpsl!mpsl30)0@Ei%*~5XyO;<4k3zJ}HhZu#OB&|Wj*)+g3}koqM67q{m44ouIgz$c zw53`k%OKghRwDXKJZ#;L`TolFJefzu2&4+qu^3U)&)O>BA!7+6L=V~5r6L4T@pFqf zcJF)cZ_8dQZoA_Sf5wEzadBn?$9=6#_HWd$Q6@iQt5T2ir8G&!&jkYB$UXz1Eh5|0 zkMzsNxr0aUbY4CqSHA;y{o=ib@6;%W_cixE(>hy;z*ZQk5G@hdo+DZ!0!^a6wq^2` zi#|qs-+P$e)?6_k1#@>iA7x6~l~SSXRUa#e|6H8ruX{y{Fc114)ogbzXOfW9B$X}m z08<{pRFo5^&3PHcH+gUD{oBZ=6ps9(?3}hUSil23!}_kZoAhIIR@n3poz_E7@wWeX zrMM9qZ)iq~5C>Z~C`GlCR-SRYWLKft8tk2HqeOYc6~EO=)N{T!oN`Ky_e&{PkNyl8AbIrgokfYyb8$i8MXu9w$@N|EPylo8~?f zuXm9}r$!*v_~2&7{BBqNwZ5U;3} z!G1fn?Y0CX+0);;wVJ-;+1bwC|Kw;o`_cB0 zl%g{sYy6MmAg%Gjb0Dz}VqTQCJ!Jfv2>K-?8I3IkwxaZJrS|I%Ey6lj#Mo~p$49Ly zPlafuHVSf2R6o}L)u%B0Qd{a3D>-a&ew!Sh(2Pp6W$c}9ljGZW6K`5UcU@$y(|^FX&ZWD12n0%kXyVDgs74-n<0i$| z6ww(%(qovK{zrBF2PgS;o2bZ39`{!sX2%dM5z``*;$Jkj`62>yGG`79ZtTShZgWn5 ztBuB!P4JvlJi}P<5IwTM$LOs4%o5taXrxUy?CSZ2u$x6;j>bSqlz z5;~_J)4%NMW}dHWTi5GSa*;FJ>=Ggk?OmV!yfI#8N#Uk}`-4UAo zaE_j3sBSYVfjKGlj$6YU`cPK!ta;Z8TcK2~x90m}9ArbEhc;5VMk)`vV;LYn zi9jm!vD64G52Ql0^b+=P>(#aWnp)aGdmF29t)=oqzd{63ne*>UHsxA>ON~G(S<{dQ z=8I*3XvqVui&Tg%I0>lsGLFEzL|8aANkzV7r6N(p17~tHJZ~bT4gNxjE zp2-hSJCWjt^1^fT!=F{o@NXEfJq#)rx@8P`V7`OVCo;5+t-)NuJfp&8j;jbpDD_LMlAb93@ohug|u- zIUgy11H(Y7R+7<;>~wQl&zW$FSy{wjNV3XSrMH)mXbVRb}gpmPYUK zOHi9K_s4xu5>8XTY&XlplzD{+q~f&I30KhJ+*Xjzj^SLGQV;g+=B|4ArgpFIdPMXx z@YGw>$&Apx8FA+vEDCj)@rXDZ7fVngf?7zYqy^p{^jJ$hDHS5vtI69DfjI^ARL>`x z{U3aL6(TSvM%Zx~eq(EnjYLQOyWRWseOm{Kw?v@bpa02Hy?@^OiF!k5i9jluZ@^C? zI3`jZM1K6-@|f6qq&N7f9B0sdheOm_uKCHfmUtE?p39ox;mgPQT8|52F!QkW-(sRE z5#=SE_wv==ia|As*R`yxFLb1Pzn@tAzgB}B>{%fCuF`{svc&W9h* z6H?(>wJ4$4Cw$`d-r($uoCiNXQKKH%13+|YsW?j9bnfAQ(1Xf@OA7TswB&&Zq(Wa1 zy>QKa5w`AE=F9u3KWw{8{gQ1pb{OlHOuyQ@cub3sb8cOsIeI15G|7YNGwDG*P!Gx5 ze1B;3?OaUX&iDoq7{~nYj|2j1CsHBW?`3H7MPE!`^c;OybL?>hRxrJclnACmX(bPQ zgHlP}$8R6&U4Q4({^$qRgP?A=j0I_m4A>(h>joud(-cveccMK{^!gBiRGhXJF=H~? zjLG;T4)})C9JQ%rZ8{Z#%O4SzN9520-Xjkz^!uXNPT;xD!E+kx!+r_ICG>E9Zd*=7 zaGjtxNQG$00})8YA0b^W17yqCW1;_D$w5Y8l*dQeMae^FggttAPi?=pRIFN34q zKO-=Uqm9-xX@}c#eK)o9!FYT>H#) zH0weCqq^X=g7B&>c4YgqIfdclPudv)Gxi?lxfgk#F!r6X=N&w!858^}LaHE5_f2qr zK6#F%WVJcR=|(&AgOVI>R}^mgsg+Rbfo~9jIthgLRS}HH_*0>bw6iHcyWQ9%|K~od7#~~G+Vu!Su)d{fN58fH@Rz} zTX4@YXa0d69_oSoBoAfIziR$w&Cry`ax~_3smb@2vV4)ZQaNkhb)EZua=xnDS@762 zw=kT3qSXWWDfQgOdiuW2JBybN$?-5>^fAe!eO{@X^VuF})Yn}E4=e-Zr_>+$hunte zeCS+%X=e|qg80!gCJ{jy(tK^rk}l8GE}^J)@A*^1hnCm$M?%hT^-28R&Gxx$YdOkL z)aR&1-v<1gW`vY#eBX&)!TbfzXZyN(SU*rIlveUUuf}|lpPVtln8*l{FnCT<;T#K7 zk-SL7&uyz#F`_h~t>jVaM_ab9Kcg5n^}<+`&de+b)66)fv34;v{f{Q{B`UOntWg0b z>UBJtQ8F^e=8N?)H3CN?5Sm0Od#4D;XFXVxBUP^_n3{oLlA~0TIOiYbH9!Q1g)I1P@am<{IxA|1B z_rrP4qP3lct+3TcyD4>FD8qZF=JihB!CgEoDJsF5cUeD1w2;a}`=BJKpG2gx6`~~q zZG!oxL}+}2w(7Vmvt(pd_A9#N5l3hu&A_AAPlzB8zPV7|yt_8BOW<&DemZ?B^s z5{<*s{V%*LiS~a<1XG>Y79q z@RRKa=S8;SG@(&KE_2%#rIj@tozW}#IYu~(;D|$SkP6X~2O^M)pHs}2da&K8JUC7E zx%R8fl3TZ>NBVB;l!QQSk&2&}w=U+3REYLl&T?PE)+Tmbqr9an`V!_cU_a(|#Y)B2 zqIMAN6Y5eF9$L*t287aL&|G4FYmjEV2hTg z3eZYDQMBLLKDDto>AU)3y(q2`ZTMk+ym2*-C5S*OT=AP4f%|-r3eigKx~YvjdFP0B zdzO##>fcZlZoV@kGQ21|h88`$e^Ge6DVx1_lJEZSxE*_KbAOJ;c!e>FEnfDc5ut=O^xXD?i>d&06$&bAs87W^CQh zKl{b~?)Wn2w_J%ps=uBx=jAkK#7VD2+}*EFZr9zhwxYG?CBJ0HjyEj|SL#r))v!Na}#|W6Mc$J^wFpX%8tDKc$Gk)yhw#; zrOw*4w)jZp(~6tD^QiZESv@%NY5ADQF-EEX44dM@L6>+_!jW+nQiSewmS&RM@WbJE8ZKV2CLGGhtK%M{iw$H;iFf5^-IZOZ8ckE_RkSZ>fk*#FO{Cc#l6-S8wc5)xmP+=tB_) ztsr?|z71OzgbVz0GLv}(7&BJ{{dUwtN@dOvPQ*l%WImjf&gpXd=r!9USzF|1^m?s} zcivB@>U%qmcaR5KfqB@ti+Z58sFT!VTkDqIsS_*fTQW`%y;tNRt=qm+eJ}lBi{gRH zb380Tnw7I_Ia|ii>gFtq5%s+*4m1mmn4IGUv#e&1L1H~iG6F|&a2yVM8Ns*)jb-#~ zRl_^ES!aFCxap#G-o2n8PB%`GeK0|tJLD>`v>WkF?)KB*%RsSV_NH>b{YcuZ)5LJYmRbHPixXaX zB24E~(+nm*x2uXzn|_yj`-EnC#KueYgl2{DiEGj#zdza~w)e8a_>oz5gl)qah4G@f zHf_!zsPcmQP@{A7dDmU4Uz$}Af9!)azkiNsiP+!nM0fw>4!ZKg4fK;63gbKGr}_QQ zqP|7(z9ZB8y|3L~FO0W-GR?oiNvT8Eo)#Lpv%YR|bB;zTM4R?1e$Avb|MY*QzSt9T zznvP^GwyGoQFcT~9;i7YP!B{a^=a`&=YhWW_}2a1nGkOHp0(&*$0vkWEwX8TZr3yP zdg5Luzw$_dpf}w{JRUxBKq72;m^0#CJ|mt^G3OioI8BiOql8lC9D0|}p=Th=caQa+bFGd{~B)+x~Pt^L29{ z3zYe3_dXt8vf1)O-lo@=^`Nurn>78pIgK49K`PWqsrLU(cNTtiy6)LNN26yT59F=X zf`MH^bzZNp+h&uk#)oYL=;t8z@&SE% z&+ZP|1Z{`D=c?Z>hryb}%4iIr#m zJ};yi<7Gv7_nAbLtt0dIk|Ba53HGi9=)_JWe@7KkORI5-$kc+7ait>dLVC6Ydwx7R31T1Efr;x7(Mq_w_$m(6$s5~TWcZu2p&PiDHZ(u zc>`Ll?ytY%yeMCkou6AC5U+$^p-$*y{#=pflT|ri;=$#S%#Z5_{imIJK}l5|m=$Sy z+#eV9B_t2Eo)}=FdiYQ?YEu?*sE@+6mUvf;z5q#g@qpGqSeN?=qz77B zYOc-cIaS-+J?B`@Ic-l*!hQ)_l+#oO$WN(pp{lz2AN@@IGb@ateMJO6CkZ8jspt(- z@pD_|X3r>ld%`ma5qNtk)F_HR74-m+2jz?WjIE}B=$g|nv^o7k^p?cAAL7IlD0AV} zxH?68BE)u6g0?jvse*WJPHsuWdC~*g4}st|BN;8)D3LEBFoG+EeIKOaG}%fb@^5|H z-HT49OCIPM$WQVJFm^`q zukYxLlv1%yN=AmQ8&C1xo0Fpl<`jx?AG8ljXnOjeqX*^zvRFbYO)2E@$#1qimS505hSDlEt6?48t#@;0Wi>M@1$m*}q^(jRkP4+W zcUp`|*8^W1;Vhfg+1v~goD}hMXp*_%%AQ6c5d*gm_qMmY*nNKW0EhOHWKK>uXAkaj zahDK{gzzrogyz2QqD3p4`>M$Ef2)^l-MMZ=B(3v)@w~(sW+DYbX+e(EJD%B}^ z$k}ykk#lSOI)T8GFc6)Ps$6-XgjhBbk*a>AMx?4A60xYu&(8CIdd`_6yNYu^@N^KV z$IU&j_imcp!oB3K6E&6r?cf=1);*gT;L2TFRulV;gLo2_oO609 z{JQ)6-aXA5#Q&FO(~PiD6t(4ishkNxQkk`>F^OO*k{zk|x%Co@u{=^)7tyAzZ}Gl! zRp}XNo%iF9 zIb$Zo-50*h@sK-8MfH5e7%3I$AJuq*5k_sZDk*Vtj~P|#{E^dn#wYGA=XEpvouH(U z2Ui;|Ar$zx~UulR>*# zTKhMuyI*Qg5hKLl^YY@nvIfrxD6;um^zk89iU}Km_K?p7GB-xYkmAMoAFu_Zd9XXK+oQ z!FWk&Gm5PFjW5&^JeW5{jEWJ-vSUu=5geB=UrGnoZLxfeSJ?7om#}Cn z&X@VoS#cz-QvZe^D$Xf8lMqJpga?!VaD>CU!q2%EE)g{UL2r->(SFP6nU+)NLEO32 zC>pR-q?1H26}>?!er{vQizk2Yw(YT?IAg>>jTU7D@ngGLTctu^zKB-p$bt*J(;u(z zwp-Umw1e12VVkHF^1!-{b$-I#dGW($)QDCgN(5Pv>oZaz+Al%B|3)c7d>*b9xpVpX zetA&Ze(B}KZ@REnr26hgh6j2(A@~iW5kYAmA-sflfDwXE+@my~E>|8w-p*daRERDw z)vRV#UY3e=Vrk3sz)%iiPG687;ZwPS$Uu@% zUepe9np-$7r}BEx%waMWqUAUoj<@lc9F4tk+P1Z2XL9&8ir*xkNzTtLBDu^_DxTXU zsRBLB$zOEF7L8MT_42bKTfQ)NjDRGRer{@3WdE1xk?*%0G5&!FK7pG~E=MYsiqNSM zNQD+5>+&z^eQ-rVeEaow*PodOj+dRM@0Shx0#nofsJH)`{P?D9f3`wsOGVe~v2zME^>hmr=IU+yC-n*(ok@n)E;)lk*1XiJT^MY6Rz-OoeE_ z*3yk^ejQ{4Ny2GDW4);uK~(JR|BPTNsyUc1KPR+O6-5Sm6U^fU{A?WzYDm=Veawp3 z^$dY^3Egc)@I0WW8inPIRA>c>2xd&AXGrS?n5eKQQpx&(2$TvXNsYjIj?p0WR6+c? z$8E$2IFRP2btp_koF97?#m6qTk?8-2Kq}-Xd9=B6(Wn|#lKAIoExXaHej+s6AZ`O2P?46}U8Qp|bc=J0-XugVW+!hL-UQ3Uy*-Id> zG!bof7B?Chn)vz|+UwudL#oDR?3LzLNpp#?*0p^TtaqHgYQlG-HgjoM1ebZw&yNTy zM9Ve`-_Xn`orQ&HN}Ds5YTf5_KmM>LZh^eY3+$u3;5qg5mmjL(?d(6zZO|Z%v!a0izjMFW=v}zyX?UtKVsB=mhNLgL?dnAj6No* z5G`lixeTaAahl2i%gM}=)H%F<$f{}1x~GSE$er?~-qM^Y;TTG5R)t0GTVH+bN>{&e zKdn7a$j*qf(!(*7R;jP2eC-aH-q3wzSgyvB+BUBse8B8bpnkOMGt_wb{PhoiUdze7 zbBu>2HEEfRsHZJ&AIn&7)BjsWtD{pPkcuSy<>}gy^J^p{=*=ZB)s8egGdqSJlNy0i zAr+#{&an6PghpMk$f@6Ph=<;HSD7A@jqIpXY6MatZ?Wpd_@!O-Lf#jw7NGNFcm)jg z0PbD-iQDbFo7{1uWO-nX!m^QmMfHR01gFWzWc^6?lE3qBWhQ+oSL4eon$_n?)9EFF&_D%65AD{dSa!+eD(`=eAWt1XIx)q~hn62U*qrWIvHgjlWW{G?|+I z(`oEQ@s2Os-Xu~X+MKsk>C57oH~rLZOxH)v{=s0(0?QfuL6Qf?53~>3Ej0qE*b3z} z$Fjv3^$!S$WGG=u1g#7AElOicL)sU_=VjGSj5G1bl<8$W_Gj^%gRU*UddV1#_QCog zZH0ctao4UR31YD985~_a(tUr!DelU5hKusReC6r*fqm(W6x*jFD`F2hwO{qwRXbuw zwj|=od9@?<{3421!7rMKeZ+%S6x&g}z}w4}pbp9)8(NucSWT5JdHAdDc}3gIey=3f zq+(7ilkJP*cNCW<&4qB9N1X{}5!jQ#zDR0BMLa0qetm5(W7&h$Pqe?NuMtOm>L+sj zpf-b_qpd6gsW?qk6(Th8s`}W}gzutGQV-hCK-Bh3^1%DZqBPeD~l zE>S-(&Nmrt*Cz%%Y zJhG0IVxEmMMrP;T4e2WCzj+ov>)d{Jv*yM=eyjp%>SD7R{f_S{MhQWvNPf> z7ppn?4{HAN-PW&$zX5*bmmz%^+|g=mSO{?0qytRB@C6~-?dVAH7)$OEYmZS3`asnf63B4=>=bzaK{ z^5d7UvGY+2^YY_GZ`<_ePvpl(znd9Z{$eDS8i7=g56O@Jv^q0V`B~b1R^xKl8S&-2 zPPgONdYEsM=knvd-m8cQB5s+JA8++hX5`?aNDO%(TB*nO{o+>Z{kB{8;m#W0piY>R zM4-G#g=llG^N?oF!G<4&x|-8Z|H>|ik1Xp`)wr@CJ~Xp-q}`)e#g3ZiL(8613C?kD zZ&t}W@1E`+`Yz2!oc_37Yl7Y*d7PA;A1~OG8Ckq7JBIb+?91}wKYx%JX*!?0efF=# z&V+u-TXcG7v4#bCAn(*`KXAQ=L_GfW3TND+N_zNzb3D`*t$@8urJkSloO@vEdv2pH z{WaPI(Gv0W2MwH^qb_$wu6fwoyFEYNr%~<5lkKJEXc2Q>c=LPR)-CrA`vDC0M z(PPXQK;KEB<2S$H9)9Nm57*pb?UL&(kq6oxC6rPj4_rZqJdn4P3fI=|?Z_~5 z@()r`L}j!@(3_hF){ZP1nH@XSyC7c0+}2&s^d?gykOxvB+MLVTqPBPSr?cIn(b-~L z6k8b_(NU_~%)H|2&)0MF2aWb{Z7r5F+RfC#^J;j9PFU|=7tI!JEw=5Fhr0Ig`ejG8 zyT9KkjrKvE!ntNI>9y9UrBt}86eW~Wp&p1ps_JHq_@cpS{%J(=gr@&v>`LHts^0&x zrfg#tOLmf^h58Bc-ZS2j43aI$o-LA{L}5ylkQw_rSxT0&6q+*cy{|i#R0yeLO-a^> zY%Tuhxo4jDe$OoRe?K4QeC|Ep^Q>pNXL$}r_`(=V7_CX&k1`_Ky6t*3Ys&AVoQIku zyIuFiCNwYIDBMr=&PU&lO=x&`LU{i}$?oDsu?b(Fr`g)v5SZ&|uVlCPj@X0`%KaMx zbG@&k(QNrLHsSW)$rF(VdIOFVP}4%(x>mwDcy+L~Qk@3G2zVU-jAE=kH7(Y=^QXjW z>Z1^W(J3((qD=&97d4tY0%>3_L<{lAx{6WCu^7D&LM{;0{O*Uh&H)G zPO#O+ozf-(`9-veQ1PjyifA2D5v?7JNXfO9_xR9Q{rFJ5b13_`{fDXko1xSEw7I{;Cz9l#S7RE2HqRE!+w5Ae+N$@VEc$C7ff%@ zDeg7ZJ2g)N@!N6Sj^o7i;VJHS32_N^CpF44hV!Y=d>=--jNHu;v4@&J3wxgEs7UDn zij>ZtIDg*y@R)aEGgkaU^Gs+!3e~%!O!k?+1;k zmUfLx_$S&NQ{h-k#hLJL&XRc32H9M%3CDYNQ?(8>tEOr;?k_=|;D{V)n|q3wcbb(& znbFVVBXl%leDHI&l)9nH^i>OO*yYT!>og78(#)WG4-sRAcvICN!$IUfdR>*q)V$ut^@C_=Z}ji| z42S*ui!n|0L;wB_krwt#0))qzU#=dpX7cWhUMa0dmYFniMNlp-2@!-#GR7rr8(hPbLt{h7F2o)E_zZW~AEAmjU zKeyF>QAh0;^>&MJea2dg`vY=EU@lzwWv=M2zg|lkC11*n=@VIlM!)hAoC|HhtJc{O zXf@1*Xy!_LV$S+OA0u7iR}qdyPA025STio+{*N9r>SJy+%pMtOn+V^|i12+3CD(GO zIuPl%p zp^u9?_J9-pCF&jRVItIS^^n@%?x_9k65rrH35xLf(HN%D?&GW0vNqj4UHNOYdWUJC znO+n2pVL`@OzlegOEZml7MapC8o(8PAy9JMtAZS&7KA7>u!K`)O&gEKj>*&9K@UYG zEQ!B6%xOKU(Whv2|ABj*ac>OnXF+=A&Sm5Z(I(=D1{dt^^Lk|C>QcF6_wge794vAu z1R@^nlI-^Sv$%JMqRlTz>if7K#GVZ8ZzAvwB24Xm-fENeOua##&B=m%R+rPn z)mBpEtE8cdr{NHa=DbYM9UL0s_} zW$&a#Lv_-^RwpgIUEX}U0=YtNxqSMYB>%jq?p-;iEl9TE^pB6GxYhUS=O%)3P54s3 z!CZ(oJrQ++-iLl{(jW=B4syBFMlrX#z49^U+!D?j;K<3(PkmvdQhE<0m4!2RL|e6_ zG=>kG2rLU}AX*4{`F~da2MRl_3b*n0U$LdKT98l6n+UFJ)G`n!oD0z=0_z&0O$4?+ zTrRdabjBUgLi9a8+d5k7cBjbXW)AM4!IqPD-E)h|y3!*6v>K<$!*jBrM(~@gxe%?q z9qKtF&@%{)UYR=rb8$MG%_Y8}{#^BY8AwkftndiylhndQi?tJ8g^yLUWI)V1U!2c;1$M4^i#1G}%6 zaoh{d9YoOi59XcDMBZ_Y&@^VKz9-6BHLR4gq_&ChCD$h>8Ew{Dq>i-<(YYfq7ji4a z)qP#8v!51shK*=p)LLJo`rHg_+O!Ae^3$em$PWB7V^d*$M6cxB^fyT&zdwF9!@b%x zyKPJa*_=)$&?s!@Fh9+{pl6Ea6(8rUYqZuok8^$hG`IFW)P}bTFWolHr8`Y14kSO< zH&oo$X{6Kn+<1$q@f$*LnsVLzXPP_pyJ!zh`TY99qk9?&bDI2$(wX!7;eSVPE=K4v zHDUD6T>qfl9Q}kxYz%cUjUKPU{t3j#Zr-0&`(n z(@-M@Bl~nF-V`%A^o_r8=NiswGQEoFLjnWbPdB?x{uu&R>}5 z%v+~vEmb1FxITpF$l9HEV>%)*7t)UGlcAMSiTXhrSdzKghwC4>=7A+;x|H|FoGC(I zLLXy<_IUh$CH+uN_I&o^|3;9%a!GpjQ{7l72}kpyR4(_gWHm~YHUEDI%*7n)`T?t! z-f1Tt>wJCqz)K|)cD+EY1kL-EOxW+;l|%E1nLD<;Rb)4Ngo1+?}a7i}Ti?wB)fFo!3TXkeASNN^9*N8me|+H>+W9EIL@?enH$v zIBdoA;IU~XywkZVI>dd;?6RpryZEOA3h@Fll-I7P zcp3gr*ALyw9Ctc=deANQVVttZamR13jw_pmtbL)3W$%aH|9p(Zaxp#!a_Cc_afyE} zG2WOL!_`c+A?3&rXVs4PZNg$KM*jp?t+1aKo{uw~B;)L3MxE${KFf8)6Tb~6IsBiA zpgPEFkf!9VC-rj1Z~DdK%BNl{jAzOG=N?z_gPn^jmfNY;xd6VwxRWR!^Q7x}PIZv# zIqujq5%`Ad9U*es37F*R0BK+i#*&0+npd5o8@A70ablXa0ZwY+St*pyN>k+l<9!oN5poEwUcMh2de1iz2C&bD2y`5(F zt+QYHeVTE85G6-zMre52MH>P-PIep4)4dw`vEQOH z6+*OMk?gMDu5&&1TCzLgx1115tj?lpp6P4qImeeZX;4`l$qx}&lA1&QK%I1YccXph{iZ$8OVBpzB+^~~ zbB4!%WWO}6f^iNKPo?ClD~bG~w5SDB4)k!$g*x=)aFiUDl0z=dya|!M8c`0u$xwfD zD#;@Vln`?vTHWG$Z=4f#`;+$i*Ak5=H|UAEO783#p6vcwNRM&RV@xkm(Lya1!!)2` zn0j-T9BUG-hC1}3g+>tg26e@n)+4f{=z_9U>U{gi+2%$aT(0Wfgu=vOIE?jQ`FJh} z%w_5-H#v~2$6z$*(Qp)3mf}icS!hk9XU0iI$uUkU>P?7#XMeT-T2|Rk>(bqb&wv)h z_(diSEEnmaOr|}s4k9O}J=TvZF8|mu!7i*~E~5?5Gfc@9!choIAtb&*U77PGxgjtY z(laGT-cbuEpHXX_6tx}|`k(gpGaZuMwJo!IzVfpRrR7(Zs@mo1BswGiNp`0Nwf8Mk z=#H6atT!IQQ3y*RB)&m8aMmby1m;3|Lj3Y`39o1VrBfR@?X_v{{cU2r6=_Nzc~_@f zE}iC%XdC10hA<^ZX}h;c&RoGr3uB!ZqMrJ?d+d=Op?8(!s4L_IH4?dP(~FsTYHMNI$k;74PSV|6w)Y03KL$$gPTyIB}>=|0% z3^MG2HozKeY8OYA*s5V4Z2B&0wEh)!AHAC2rTznJLGB35g}&e+BA$qE&?^yb$l+kU ztKFKp%325aJu=;XZp^^YHz$UxIe=+ybV96mXDR9jwP4VYIBv&Ws6!!kCUvnhHdnNV ze)gioFBTksBJJD}m<#C%@ye0%&eTgC0>4F@wHD{wOQa$^7JSi7(# zG7(tUFc+dt1de2o9->VIwtbijX`2YNAR@5dmASY%J3rZlRzG1cf2o@+vvrz# z?oy0*H!-#hSRZ|!=zEYj;e89p3390BFMV&9?9~)q%=h+qXVmGGV5<+kRXNqGb?H~f zX|q`OIQW%<_p5PQ-wv$KS~}{irLE3dO8ojo-mxVz<(T>WboYmw6niBt{BW7+?oUN? z($&nG$E+z!k6N2QO_WnhO%E>I8s*(ziZYpU_*6`rqpotTwN9ItX1Qet=^gR7a|E@X z^IdfG-N*OOVOr}7xRU;je(`YQDV-83sb&gGWT@|RZ-ht~Jx9jl4;le*AC76=pKBVq zBPbV_gb0t0#0V|dYb3iD-}3KM@Z;QR8X7@5;Wt?k^kqpiA?g-3xTl)+LptF!>56X+ z*5A(mbx$?r!aJFLo|L{!PgEQ-C&;0RK*>=ijIblbj9U$zzh~X+?2h?1@ZGZM!Hhqm zyc^lZ+)}mZ3G!p%Y+F1%c>OZfC=szB(Mpn77Sg~7JCu`uDx&q3>2A|sb^XA3pT$qi zaQmxUUG@AG=O<4=8YokC8kJYw=`_F9+}U(_hI^nM)w^)GN0gtYx?<8`1X9Obi1v9R z$&orrzGZK+d-YfL5+9Q!@eLwAFOcFE$(z&JjM3_@_{zU!*A?neh;>Jv3A9Tt@4V15 z(LsJO7s}@$LJA=jLgE|tKJr9F3sHR6T~_L+rJeU5H)*t7I^A9KxYjgsn>zw?Wusv$ z8dA}a_y)N`w69z85^QTjr&HX&O6Sz>`j{jKb8S+HTR9?Det(zsfs#DGk{qSQc0O0G zB-$2jj&YHEp2)B84I<1~NbcLG?YExH>s&qjs9bevdhkkl9r637Jw5ncKJu6(yW)fy z!HV0Wyr|$N4J?ax9^r{0|CErD+*XoHCAmZi(H>?Cmm30eq23IxjEGqn5em6A5jZZv zwgjyyM6kp}Yf}5-&Z&lphRxAqdNr8t+TFAtn+UWy=0dcGuoVrdXh?j6y#e~0`eI4h zXia!0k8`SiqJ#WmE~F>Krww=6_2oKyPlsoWD1vBzT)XvX*ouZ!G$fXbTp?|x-Kw+g zg{@}Vp9cELj5;%dlN#x@Uo02t8TK$FM|viW7NsXzquUmDP6x~yg?cl+L?LX2kP0D@ zcSN9%sgrYnz_KtGq76A59OL518-2{QAX*B&(v)1;JYo+Xb5dK22$avXAeM!>5N*nV zyyLfsDaS8&?XXta=j?-jHg~WrlnFJW=K27E>rt2s(H_E9G%Q6!A`R36qJ=ng=ry~1 z@fYl`It?~F5m(01D}~5yl?=6D(ohInt*cpTT}`5X5P{ze9*qbBb78r;BT!n*g=lpP z-}cgWgRgG4=kFM8>;u61Xzn$@FBTjR)_gqK{qj|s9c*f><9X3xBHuXpU4!2{h&KJI z)Q#wb&eLe^pW<-%dwh-!icVPJ?Fpd0CQ`nmgBJF$2a8P)KHOGEx5bgO zic(N9;FKF()!DkbvxT{EOl>0Ki?>wq8H+lJG0z(N0B{EcqJ^0BS5>FXj^FH0z9=h^ zU)0b1dC6|I?Xj8j?Fr*rI`{ru#Hp~!){)riV?;4CrtEvy z@;D!CIAfQw&2b6lLLCaRd3zP7-py#IT+#dzbD`c$MAu*)=a;9i*%J=sGY}{TqJ_x# zzKB!!j%a6GxpIcCP(O56{6~MYu2j_1NMs|-h2J0eUE;+swN(sLTg5Onz6}sJFae`U?v^!~F8X7^Y}vtn= zqC}lwF8q?o9f7%U94th!<+nRAGn+f-hE21^sSPW?e-!0K1x77Qs5vtjJ1{CUcJy6u zmUcqxS;93AG0QT+uC&*)lY3R@(XY+XtLp1rHir zq4yy@6}xq4VW(2p63+ZT%S$X5>m%w=t$957k6nKFozB^96(yF7S}@1$D$;Gluh0hg z{fU~Ume7mjAt~jvcwxF8JsL`2c2bl^3DQJkil#`ia{l;Z6{+A^@2eh(@?f#lV7r7E?`E+UbyI^y)V_lq&Fk9qeACDJxe$oJT$Gj@ zb3(8bq${)ma%I}%$Rqd4KOd1EXKX=g;n?Pw)_0Hm7lLweNgA=Zep{!;vM5i_I12OA zwZi6Tsq`I|GkIc758=O|yO;ghQ~!BZ3oad%qJs61#~pVr?DEr8|Nl9!pZl63UD2Da zUYj88nus#ZUXeWq7P7lX zeHTC%`P3YMLeY+g;|J<)C!~mYmWig5Qv?kavEb9l_<2 zelQoJnFjq$lAMcZuqU!@*iI%QCeMtZJ|}!U;(dhZe`R{)xe&Mmg1F+ca-yN-Km_Na zH;kq3+$l`zqTCaW}b<`WDiJpql_#X(ABRhh% zNN+ezoUlyUx#C=ez+9ZxG<+K-N%bT%1{p?#i4Uu)<*Mi;UOVsSCoh5c9$vH_9f{3E z3jync4%R!?8`VL-r6vnbYgk7%*`?PxITy8LoF)X8lq*+W?3GQI|5kCT%y=mV!pXaO zeC8cR$DLvWUJtI>q0a(PytQUi;xe>$eN2+UFXl39)Sn+$bIMjt@Vo?DPJeV?E9|GK zE%ARzk|M%nYE+%HI1(<6QUHXtwIGe)x zLh+vDJZ>{3AJ!wrY23QCXMOxqq`B80@1(W#R$+clb56>a0KvKF4d&wKdNykK_2N!m zb@zGQN}a59oym(5F`VpzW6Zb}!5JMi4WuVT z=?(AMF_Q|)_g^r%LbQn}cXpS3dC5iVzG{i`Li+o`%C)l7K(v~TXuT|y_~1B6)<+9+ zn%XPWx;h(v=RiCCPkoazzoA^L>FfyYS-QRAa&v1F32k^uggU)pG^KqDQtu3&XyhV< z_P*m;5GXmy!D-?U=?U>#prCWdpU-%@LM^h*i7S4t)CEhIu7^*B+>s8l3zUeb*$} zs1Y>>=hs?;6D${HQYSL!w2*&H|2`BPUCN+=<)RLa*2j>8y(GIQYHz3ilMG$qxm1%Y ztWm5*@;;_PX@0K#Dz@2H`_;iOc%H~Mz+9B(=h+ch7UtsTgf_h$bFqgb4UKrZ?R|3l zrlXqXp5jzNSc5=ozRhw5EYj_p$gbC(dQ~+KpFoh>hiBn{CTO z4|hs5Y>u-n$gR4+)^9}}ZbeCpEIFlp+EhP6*LK;14_>sMDv@X)FjwBQ?*~hj(PMZ+ z4x?p2$q{YPFxqy%+<4%MB$s`!SPvC_EtJ%`yD_&EJiaJ+q;ZUQkBuq0&zJg+ituah zF!Z@18fS*w?L72qP!bY##cA>k)LYI7%!O&~yU3OA4JKE<_YhZAn%A`ozS1sqZ2Ze= zJ!(<##~-2->ThToYVzWu;IO7K6geV&%&mpNmP@_)5=Edw@5xr4Q9q|2um7TfKwTkP zh*qa^F@f7zs?KtSzYAaM8Il>XmYQtfVJ-p6d={5c?M;rw4xWN$XrJ3iY*Y25Lx0=InLSh^Q0*-w31!DxM!A6gU~ z-#yw}X~>l;Z|;R=gsEJfRiU&wpNL%H8$_`05?Y;ck1i!IeAq$`{`==Z-NXgnSCJ~k zsd?MN;Ab^TdcM2mj)lPqHL2$$-}QeqQChS| z#>Pd#n$PL+icf*Oq;jp4;HcZ_{8)VWuNpIgg<9xzgKjCoLtexJf9;NtNe-?xlH`2q z0!uP!U@oMQJ0j3*MsQdm+F4_Ag(aCZuw440-*JXoocORQN2ABfJJF{f2tB(#(U5%C zl;q&-d?b0TENiK!1{aZ+e-FrEEw))rt}Y0UsaVq6Yk(G9(PTmJrLmk|aucULPQY*XE zo~Di;r=(UGX&`O$L@x5{r-dP(=_TG=j~C@a-7zvYC9@axBA^B*sW^A!F(v|YAtzK) z&It5A%!Oznn*A@s+V|~U_H#wlPFbj(D+(?OX2eA&s9EUrI$ak9$K298v(*@GTUzL1 z{$in;yT&?H?)JxG5{`eNd1r4&U&tMSxo}-QcLe6bwR;tzsdu#O^X5pq(%PmH?TjrE z$|uBaZOS^q)i*<}qs=;qHutSbu_li`_K=+TXDI3(2WjgjSTAyJn76z;Djq~P6kV7H%TpI0kAJ@z~AMR^Z zsIP5q;Z*%dPY$L`C2uF~BErvQ)knVdDRY6pA&4=-k7~GSa&D2 zd`XIzoa07etSF>MGzR@0FW<78SkJ7lB+=t=_XgGi6G3k#Hqbp8=0Y@i6aSJNd^4}j zjNs-Hy7&3J+kzmSmC`N4OGP@#%d_%0MbZujaNM@$@kPO#V{;mdB4S7LMZu58=us+; zSP>oJ$n$pMonwE}jvY>8t7IZL7x9a^__;oPrZIZX5_2&ZLeuBx8Ew#NzkMZ$=lAtsl)RSJhq=>@hgb>p2l^dI?LSd`6~xm=bKCxzhzX zWI41wer(FJf`<@$F7*E_5exg#*wxvevT%@675y(Xga zfP(VDL&vPQ&zQc8T0qNc{#knBok!j*2h|Bqv*fyt6DlVJ<>KcWkx)0yy3n+h{am?z z5_?PR$ttf~7##6&32)9xh&Kv#bu-jdb38x};XHC?hGSnPb9Hz&su&|hs2J(r~fb@iT?A71w<#U(Wzx~n1K^x!>G4ur? znw-2~r_EYsZ>ZANXm=4|ws21c9P8Ehd)S{Z>?28|X{maAj$UHck0)O{Z7+5A*`@zh zQHQ{*{oN_JZ;e_}>z$qUrZ-O8_dLp$45Q4W+(#iqKnLY*xcYdut@pW(ZU=PwLC-!RVmVnH7hV#(!gcK!0F z?Io?AFyuhVO|D)X^?|*3SwZKM^N%}~FU|fAjh5L-1IleI3bOvbMZX4 ziNIWV_Az$^o}5GkmSoaUz8g7VkL4mdcLe6b(~h|#Fc+RHG!Ym{Wl8_p?wE@7J&+d0 z6MQBD<-l^ylX^ZT$w8f<-po1uLuHp)PklYXexp%8udnUXM7KWJ;!G{IFgV~jj=8){ zw6*fKj8Y-cx1#U0x}CXE5rQ`~dw^>cLw>xZB1fj?ApzW=qn#63{B(+PKonKb_DH_g?1 z{%NJb=iQudf8m~Q>^2!aoSlC@W$}I}+518uHy2-q1SXG|e{*13-_!Zs&hukVJ-Q7hdEWKqBf5^#F6|e8$8WlOa&vIu~?Kzo| z-)M#E*NCmsONa)U=lTt>YyEkB``A?XBI_F_o8jgdq(jM?t#UU)QvhbTG>B-bisbMS7*a_@is~HV|7|~O989Uik(*PvwbD< zi*lIuP`A+7bQ=w6jcXL{5v4Rg*ZW1^T{p!3_)try)Pr{z_58=rrn_Z&>HAVm3#Kh7 zB!3MovZkwuS+N(m=BQa*sM~B!s`F}x(5SPao{fh&ryiPVRqZsx9n($kttC0CcG7j; zq|vYEd!c1^d*{a2w@ZA3TwzJ-8>hv_&=Q1nC z*7~r)?)yhd%vHJ8JU68%&8n*V(F_DV;r5;TD7`wV?=hh?Kj*&7N8oKIW-cGCM*1B- z3k`F+HOzNrtVB-AuAS@l+Ds!dWzCo7xy7D{^}a>aEtSRlHeB)h-iE*YG|oU^u9|Pm zbKCtCleveb-nUikm+BR90*|*bw2Sxlp{CWY7r7&J?Lc#9+Tqd?->B6$cmDwGiKfjP zP8sEV+cnWXvg5mex_8KpeOsT-YcX=ZtJfffv*z*nuAZT%x$sY?Obu1s6XiVJrHw%Y zxk7qERPHb}bpBeDv!hWP6?56=1QB>cBI%BQ)UTIH$h;dj%(g)bYRf8nN7`$$8X?HG zY(Ye5n`1r4b{9RIpHrPTcar1ig>zABz|S>eQvDz7IuEZ4^?kFCyyLrh?uCVV)f@eF zcE0&;V-<7zqeZ`|$i8@U7RKV_sHa4OpX=7={m(}@`+r;!NdM+d3v*T5KF$57T};9l z`9u~(lU0-L68Fi5mmYgjA}8p_CRd3U#(CQPa)h0Z)R6|ITQ1e~gn0i_YiG%rXb-hi zMPqN=U&pfGH1W<+DzvUD6&vTIeX-VyZcK6<+)Z`cmzHuNZT1lQtKyM0n;1ElN>5-c z8d+DR=ln}DPR`+|nC3qcnXn`wVq|CM&?8g8DV`VKeM!(?zTgZ-7CR@@kUR8|D{SBUUr@KD^VAr0M= zVgIPPVmkVb_7XoAm!#3;Q-q>;0OaABH~nRabjtTt(Y{wec)7@OG?zj8q1dQoXTPq{ zbN`p*M`W_XhsML*;2_yDLt5$~Unyyil_B9f(o~K_JCm$)4?%mDC2;IK= z2!5_h!dlDJNk4R_THh4aq9)ylaHw?!Ttzq`8eDGndcNc82zlR?sb25Q<-UH#q=B@B z$PIzHIIVT{Q14fq@eONQq-Uloo-ga;Y!)kIw$%K&=qBCBf zdCNenuhd)+NWF~`P{WBUc1X4PBo|F&om~9_39%(*EJ36AlKB~>Y#p( zTyblOEj6XHw$zN#H!pI}g1M+9Zi6{D{Y{drcPf{4MQPR*rA-7|jou(ScSMt`be=lK z>nE0}TU^!t2`~L%fFh;qv`ORPb~)!lv@s%+EFq0pSaRym={fiFOhdQrS#yzo5RH;+ z1k<25jHWa{*P|t-LfS2yRx&~D)6by$+UeHF@uGy6uDscQuI}`nKTekK)ywlMDvSF* zKkduJT$z0>^NtASN+Xa4^G^EVG|QoB(>Q2I|EuS z`Cgi4Bg{Dfs;w-&&xx*4?0x=oqEYaP3eLW``$HKgn@TKqLe2T^26Yb_#aqfsgDE6Q z)*|Vh%GIN=_%LfdyFKU>mHsv`5m*wJPk;5eopplcB0V8ig@-$pmVX?&Tz8s<^I}mQ z=DSM^#CSXQHVxByTQ_ut*9YkG>3=Mj)8sKZaiu+x-(<~&Xw^qORmEv^;!LQqn;`M4 z8o##9FZw5k4RvmRq_VvvFwMfbK9mFHQ}e1No^t+rw!QsV?|f?R)t?=_^7lM<>KuKJ z1<^ue-f|qG8@kaRh1T*&FFw-xbb2}=Od8@}l7V0?ke#`9Ww$xESM&zy<&Hp35P>BL zQNP^{d)Z^x(yPDN&A3Gg@Bc8htNKBy#wDKhk$O&YkYyt`zk3MIm0Me)B_G=DZ?~m^H>K``a}4rlq5sVl-WI-e+Eyvd-GaZiYG+PBi9TQCFx# z#go2oJEZR0_Iey{anMWXw&o(i65d_tksF~ybmu*d00==}+t_}Xh)%aPcY3ZW>O9-_ zHH+szy;;u8xhzVfOlCibG$>7dAJOA>UVr1lcdf)XX6x*8n>!6epiDwMyRfWdC;l1Q zaGw8pZ$0i767YYVUnq~y3YDirs} z>hxzunh0EJLbN&v^>jbSt}h+M#;`9(hq~iES4@=P?7JG=jBAZ!j04O&a)y(Nym^t!X@Q zA=>Q_U%81L7tAG_0vI_tiE&8~Xdb!;5%;32{B;pA-l!-F7|6Ln{r&NKF@8xTkpj}nb_vqQ+O0koS+T(JAs~?2(%y~ zup|?KxloSWX`tko3(>iKJI9A}LTlf}uWhymy59K5wO{2lmytCWqRp8JEQ`~GHrp$lncz1>oe`Ag=Y;mHK`kl2pauv#wdp5&I@%?+yS$)`x4zlvF$be+(e*P(|QzpJCLM@mGEQ@YM+}%Y>Ya-t7cHAm=<*2n%-D`>bB8R5r3SldRtq=xRSgwiiwWaTm z;(CsH!!|~U>qm~+^zTTmM2Te~4fL_x5ts`tD@4t6kB5FZeOt(#I!?Y@Ypz>xiQe(s zCT)&eO`Uclu1!zGd1{SiF^e}U2>hpL4I1oDfy z5bf($wG0lnoU~K=^lfq3T5TcfX3V!5A1ok;-_gRm&x`GW<hmIo+d!P-ll`th=ea{RxPl@c(q85a3 zuT8K%s#RRZcGhY(HZPlh(KS$T!{8)gcJ=& z(eQ3di+DK5gtUdIIOv@~x%zsS5XIHnzbnpL2j(=*q%VB^2RGwDT;|GF`wq_rx^*ls zdkju=kQ3TN-8WYIm`Ot+LJHw1grQwR(;i6Dw28>Org7lO7s@-mlM>a9o<4Qt%8vp@ z>uUZl$!HVt)CIQSetsG=U>!sRwlO9G>j5ILBol!xHI|EL6M=q(xsbMrKyN?e|Z_T8)c7^iFS92}lK5u($T?SW49YdfWj)m8U29CSHe zboJVY+yOh{GSv7pOC7x0A0yoFJtkj9o~ zhul`@xt?#CTitnY(-HgnLKO=M?9uYXT=&P0`b-0AU5E$k<#isru->-bPn1_z%ys(? z(ciMjiHW$}=M}5%gJqmOH4;=zS-szfS{&pAIrQyE{kcE0l@`t#!OY+LGv$Tn<>b4! zTW#7O2~fO*b6!6voCXzBRcyOhFXjNn#fn}=?XFO5$uI3bu|G~4Z5R2lkHkI|CvUvVg zGY!;&5WipPD|aVvuu3)SW+0FgL<>>-zMf8{MnBv4j=pI0wLVuAH3Yeen>5&2dT6;_ zukW`3%!TU|=Fa8ry*oL}2mEHIF79HT{$-wPSJd%d5se-y#0$aao&V)oW53n9tA)7` zjr4^0`@OfV+5;;)J%`kn=yA9U4LwxFVJXzu`Ek)UyU|DaB$kVu^!R$7+wm^46P*Qk zc0#H(YFZxW%b1ob*2`gcRANc5PsMVPo)EX%b(T+b$m{iQe%y~*Y9A^`s;d?DpOfz* z!p|if%;i6)bHbH&_m}-z@9_KzMLGPJiCMU+6~_30K0Tt*?~M-5^*hq-XYSl?*c?ZIXdCsFysC}!<}0J@ z&g%R*S`b$kOfT`0+P#W4FlITCD-!`+$;Ef7HY4-id4HcoJa84SxblCx71ig}^qR1adrr5xa6EL9 zWA@rOC$!~B`?gqfRR+02YYIVUacHkT(ZW5=+*{Ht1wYq4Cn7i(y}?}koY2a5bJ=^2 z2;O_HY2bJlN0ywXFH;_6>aWzlo*SnY8zy`E0BXzmF6*aQ{Cs!oK&1;mPi=YQ3JGXGg4a z^&84nRqZ{`iZ&4`ibg008c5qf$YBrXtSgpW??Uo1Nlxw7$(d&n)52#uB)g+m{1;c4 zi#TDKPzzb^uF2$z^o~~JwB`!$u3!vkg(+5#dJ#CWPY3QE~*791=Of zT7=yC6o@MvN8_xTX%8QhNAh}=X}RocC>;F-W!rCrns+TY|#AsmGWDTKt<01+sY zy15k)SQh3&v=FD4l$X2e_6)RoB+;vb?0uMPw&K{0wthKo#C>NKc5sE8Eab+v6 zB)8$zA|qEQlP5<6f&5}FMEhPvo`~Lu-=C&mef?|+DMq%n8r*1Z=!(v8>$5B2FnXnm zvY874bD3NzgrjKKiiX5Ds0Bouav<;c?QF_XXFze;I(>q5{Lw@QdB^%_(ohITA#8<^ z_y)PcZ(JdALtrkX$8zYkZC*JhU*a^aBIDX*?g-4qtCm!fiO4Azt=*UiTxmew7K??L5XtY*pdksPeptCJ!U7AOqlScUNaAhk_k&6qaC!g zUfc1djPy<=p0tZC8!c7L8u$5y6sJarpQ_DtC%1_5*0!6qnBnGcAC(y~YqDA~NxyTW zb-1BvbL8FRDmMh?GA)Sv0FZau2O_#_nVx=1?E_fM`v4RTM{#8&w>&ck6zCRfM_TFvB2txZ^JHAAY^ z41)&F2qHao7eJoY^4Pu@uieEu!D;ev)QHl=rWNVuHx;(aOdVr*N!^_@-CZAOkEwoX zrW^HAROadBx3^UdZLXi+9=m*uth!*9+iI82_2Xx=+!k|mE)(I)o@Dem*an+3cZk3i z4s#*e&rdeT)&~(-l8M0H8T&*;n+Wto%!RZ~1o|i$z5{S6mj+ z;53zM?pCjP0l&eB?(9;#`he~2}?s6dSoF@5*ACs#lD}5Vqxv017h}^WxXm6j4qfWkf+C}P| zChc<1sku^naUuwQlQkEji7Wo8SYer`cBm}eWx*w}E+#>u0lp64mcw#!pB-|`9zuVU9DlaC@CpX$9i`>xWG8i2e?aF@ zpVe<#W7@tbv8)S!&2-z$E$NN=I{rMV(yQCFtq&&(|#pYPt$ ztF_D(c>{9A&vmVZwF!e?^n4R>>)aO&zr5U3wis1GqMcDD)8;#GRSgZRliz+N%Q!LE zeYRWUuy?0PI$BokZu8gfBI|X;FLHt$s#7WNO-wKM*4c(d4v#Z>XQY8WwTf9Yx3P@A zRmpNM>-$*RRgLvL5!ayTjsRXgQ|<53OQD3s9`=X>BPDtt@{aUW4AZE)?K6X3l;>{i zYVEBu%cUDORm0-csW8hOc~twDY4beR?e@?r!{qJXCR>;bwQC~qj0x9NYH_fp@^gLa zzwgu%b`7V4EZQWWoKbp~yKWzGm1H9gq;0J58umaNU`u42f>7S*pPgr}ayUotpR{l= zmw(bC>pi^pqKt#L${*qdK9!&-S6@oF*HveA*s(Qjc?GwICztxw;{*<8LARnI>{k(TWo58d}ig z3ibgQeFj<(XKs!C?cR(q?PDkEes7rur>khz8TwiS!F^&@w9(@jHfMh&1lnH+7-cxf z3DWRK9K_XznlFV~Z@ywZ+qS#cigMqFeIi;`2=puVpRB%wKBl-*r&9iWE|07;th3=I zNCWL8!~nIbKjLC>r&G&#b$i`x_rP4;58fO*$E~<6%3H6mxNWv8lA;p!R_SD$d(T-~ z@*f;o@^kGac#fXm5Q5W`3pH(?K4Xs~1m@!Bn#PC=pQqmt;{p{1jPt%A175TiA*dbv z@lM^>Hhp%sd*}vzWzY{sed;E5p0i3bxMGLf}HTaVlnwUoL&IGCgx7 zqbbqAAI(_$1_rUiQ5$0bI#;QKXlkrCY@v4=&(Y=9PeA-TXNNOLW z|3Lej{dpd{aALpro<2Xui-5_}(#}lw#2-gbcR!n?$MZrQYk$LPdEfVT!_5iujc<>5 zzC>*aa^?FN+2hbp@qsm;><#qpI@YLB*p`^yp6|D3?dzB4*ryK;Fyz273eH%l_3g*i zX~qXDNb-8xz0qNmS3A9(96DVqY~GbJq(W2Kw@GLJ>D#BlnUG}R5+R4jZKer0z zneA3pC;90_H_{ulZ?-#oydKZ1-6B`p$jxp6IpWUl1`T7U6UZmT+5S82+sF5k)A~JY z&_FqmUS!t5p;-g^O1a}2MKRX12J>$e_jaDqII-%V`nihVK6R$OZqPt^sGLayM|wyv z^2Ort7fas4QQqD$ESJ7s3g(H*ybF8qSFL4%dEZ;F{JPDM9Ic6(Rxt;(Upeeod`A)a zQiF=#Oq#L3NZt7|=lekP{MDh2E5^t+X$yjUVgTcXW6W(K2LE-R{H69+me^?CL__yN zj2GE&rHOnGI`lnA+GUNRw5SCkrkp7hc;=qzp$GmqP9k;W%8dT~p>y3j*ek<&Se@p; zTU7Ao3-h*upI85yUQ~2;?2q$G! zzx*Bgrd$)J#jOhRpV(RMhwpNXTgkVl+T*92-I7oA)=653q&P8t+ zO=*5kXw^GEyfl61r3%j1i<)}hwJgWDduO_`PIj5h5gC??y(mA|G&1j~a(bvcs?fu! zPO#@w>+@5!5}7rs?CGnaz7Ljj>WpgYjr3Wg$QA04G{nCoCv|OH!qiV_9gxls^2z(O zFj_X!COXt6A}4rviOJQ8l~05|Z2f>!@DBA=1l~vU0jxK)rVvjbu4Wgj@}jeTd{6JY zmc5U@ipv)F){Pv~6YshfWAEMer1SW%QHGbG@0v7f6|E+ZJf7dFR3}Pqc}v{@^l%Ap z?2NplOlo&@IJH4s=&Bv_WOo(S(YG_MhT( z>6;&@oBjr?dtd$aGelrXLfoHPLEg6XioLymMeklRz5xvHl|lK0D0H!mUHHU#duE?* z23N=l%BSv8ocx=0&x{N97xD3iuBi3lI~(YRs|~;E8mwm3;wL{kwZqePuO_1n8n~j2 z@+q5_$|v7^>405A#v8lUk$03ywW2>fo1U-r5xd5|K88Keuh2F^oWF9z%6NLKUG5_l za{z9;K{-qsTs!F7pz7wRgh@YE_eS@f_nZi}8(+#xx4#gTP{u1YG`L2{&9wUdesTx|ex>Y2u7R}-y0!tEN?Swnj z+|}67jE~wIh$3!D6^m1!F+#Kuaeo}M3p{(ws;2r{+{Nner;T?mq`x1mT&rY)p7)tq z^O!wl=}~L5ipDzNP+3#gYtNsr&A)$VCI)Z-ydKP6$OgM&1Rf4LYoMPjAukD z^z9s<1#u(eWBYKOymDN8qU_aRVK8Ha)^3}Z76b=9q|@c+F9_<}N{B0UW4axzmsdWb zPUL>qb74^5yAtmp+C-dfH&!MMIPLANMael$K8EtCQ8*y@P1an97Gm+3z4o?qXRRZP zOfNwW(PPYra!3O`oS$n?^sR25O2K(C?Aw*iyYI7~e(Ic6ys@cW3`k2{CzjCHnN1oFQ=(K4mqM*J}n0#{I<``g=q4tSm%@XT1nz=(7xD&_5-y}xJ9LM z`MGWr5rH%?7ovr@`?q_YR@1F)G!S9SxP)d!bQ_~?&u&=9X|n5o9s<1qTQyEoE%0?q ztq<)rKKj2nuf0MJ>3RH6{oF+Ou@n6Gl380j6G8ip$+IaJr8!C-(l!xUIbjYFZ6Z)V zh&B;N9=X@~^AVX%SFAVE54J=?jO$uX?yj~d)H;;toKv$8FSje{oqffY+HXavHweYt zDf<`BV>kR!?L$`45UajiDjNbzGUY(t(fg2|5YVeReqB56pd6;n6AFB7^?YYy=+7tn zIoS3gC#D?G*BUgiT)*EX$@_i%oAp?}YoRxzx;s}3l}t!WEv+R_p}Qx`c=k8tINA4t z^+xrpp}U56ckm7B4NFpIE%goEo)`OLs#@V9@e5TL^r(b!7ar8Nb!U#XOzo}$PSC@V zc4St~qk(6laNOoUr_)YgbIH6@tIyh{v`>TjL9mC!Tx^@{y|c6F6?tfKRqxxGbCJJt zIx9WHcMTf8o#V4`1^uAox38vOp}z_7SMq2%{!nX=E0iNAE$G$<5uA(OFq+c*oMig% z7LE|;`D*$MbcN-zu8^Ll;rmGvoP#n?ZJClI0^4wIiKsU)dmKb?-Oic|(SCkvsS$y> z=sEZEgz!fIg+5pqJo&!2E+6JJwZW8LruGi&ey~o3Lb6WVCDsL*=zV$d&8>7l=hSO@ zEgk2zveV$Qa-yO8L0^(2$<&z>;*iqZ?rOwc%O8@lXTP#ODPCI5(EIayIQL3(06gz2 z1h(zW2}#K1Vp`MqFGN-jg;-y9rak4ufwKL*U5!W>5L1wY>6pK8dr= zxT=dYw?eGG^LBaa+a*>=%@m>JXals35Y@!%_D>%M<Y01rtH|rQ1)%R*>h+bqRgV*| zPN<{?{WEcW4*X_Uh^`{*Wt8{USiY>R_W@i;pY2v2taXL7g?LncXn#BDQMrF$X^FW| zTC}X1FDdY@{kvUPex6XlKwvJD#yx{q*_*8bvRCs&gDYCKs?#+)hiVq5_yqgO#>M5w z!|98~w=;5xXf@xORMILvEXw+L$!PC>&RzG#c{`}^R$aU)T8JLCH(4KEc-q<*-Op$l z5Mg@a#zuqe?S(g6_0_5PQw`?03-jxJZ^#L)(6QEqc=IF6UbFj>we;=Ih8&0}vvroc zqd)JUE1Xu_{yOoBRcdNyV;=x&!9)bg*0J~RpJiQ28EmXOV=knpMj7FNe6Igu>xmns zj5>(>h_EFR;_bS#Lhp8-Xw7Q#qQr7>g%5Y^3Gqm|#i5MrEv>0%Mj2co0!tEN^7OLy zPkR?y^QR9sw2N!$rW~&iJses-@YTSuTVo`y-Xj9-r1tytj+TAi9BEZr+f<^o*b-%I zTogPuP4^7yDfs58pVawzX&ri^yF`A`n#dv9 z&AVI1p_^#NtxAcMMJLft_tASwOd4}4T@IwJ>lk=`pIRS$X<;z$Sugg6pnI{?+vzlF zMAOj!CwX^(wmPpRQ9rOdq4~&SafnE=2qJsmH-Lbk8Kyqq`^%7K_V) z1|l#Q?YJQAYOdyd*3Eih-v)csk9{R_Lb>>UPNc_NC8@EpzQvU-h4f4s8lw?t4@Qvv zO~lvv-?uk!A8*b5p|7`Rf;pKMOi>Y<^i8NERg4_IHCBlIi4WUv4RP$QHTp?)_mx}c zsMh;96`k^V6`hi#MVZunkoyW)tG4X48=llRda@Q#S`%^VlVw(qs*~(Nt4yv?Z|KKD zeE#y+R)h7cLnXc;#B6uXZJLu}AI^3gyrb_+HEE=O{*86%QbNNj`%M~%z}r^Uy7Q85 z)`8Fl>((#Yf_zgf$-y_%nlvUHTxLa`f75#XgTBTst|SMeO~j$?pIcwv6K&b=np`0# zB)M;osXHC()n6X6iV|^w0QjLY$9_TTqLNcq zcFSuM*~7{EIGwe%;~GVOlZ+@AxVI8d%Nq#8uee1edgw7G0&Rc@(;hx1Nur&xTto}e zeae-D^3@jnbtZC!5CH(D#-)Hn4h2L;0ZY?1A zP1amo5cD<>%yH?LNw_8eV}d8DuK6DWL4ys_G0iz7JCUH z*34gTwV2T+(9s@b^ihaLEkx#hy#Ac#diH!r{gSzZ%HP98ql_wJ^U6veEU_0KYaxpS zkGiQ3mh$$b;SMo#R~XFc8*>&o+rqk{SqdR`zdAx*`*@-?J^8x;Mq*0qni`z@fR0T? z5pT*q$g!!)F0Up}Jdog7katH@S)8UB57e}>V6#_b&w+)k?orQ-gaxp~wWn zF=^npGxE!6qQPHeS`KUE2wA+xL@UplBLRxa!?CnbCX)uv_2Jx`Kkp|TocB|=Z64?; zLwQGAryts8;r@S=3F#T@QO1myzv|%6OlUdm5AK#X$F#M+zVWC;8r3f?3i8>51NBma zTka)$&}garSKVdjnEqD6`EM3f}bS@)<-&D8WUS@u=;8+xG<5M7A;Y<;>UF^r%+N(&- zA>L6YzrD&T$4~Dq2-XPd`L+W276#RgIv(%zoYQJf=C%vgrj)$aW6iqD*%^z1X%+N0 z0Lp=5Z9@(@(tamMGukxcL1}eUQzSj$0iDi{;5QvUT@krq7fTZ2t5Vmj)n7jpSoT{t zxkBxA?7Ke3JIRI`MQ(|P9#v8b%c3+zW>!%tB5{f+P5E+1kewO9GIl; zb%oT3Pm>({OLE4C7X_>D)n1LcSaPo%bAddH0sOG5x*D*7wJkZXUh!6$kax>D>jvu0>)J zcJGc4Q!6^VXiP$<9aPVALtrjSkFFY%&`+WN9l^N>@r6Q+|4#(xBE-@9F$wP+_%9lq ztNw-s!OE>-ym$v{ug=WC1HVsAwotp+@1mxKc)sp^^0DuZ23B=!AY0T;4a$xB z7B(DlU=0>R-W(!-UOTVh;e*SK{ycS1YEZ<-cso~38hxx-yYl!#4WDd2Ceq_jyNkZW zHA=TWi1=lN8nLPtCnn(`qoqc)5Qso;M|AFpUe|T49XF;<7!g>Kak?flDkiVSKHNWP zL;ZPb`^RM!`B`Aq`3i=1(H^L2PYz4zDqZQy3G7_pwPas4jt`?Bn>N4ii>6+U8oJx0 zLDnpy+7G%@59z6vx?@ZEMd>=}oky4QxZ+%BK@&l>Pydn}+LQ5EvfkrC>1I=O+N^^m zA1xy<^r>zqWi&O~T^g&`{+!z2T47VW2kt5-d(~ST8n`CWKwvwFX!ZSZrkvcqab@UM z^+X4A`RxZr^`tMa*^|pjId6I3#>q>Lpe|*Dh_>*b@uY|Zv~oc z93&^Ieu>67oulK!=#{1?A_CvU?a^rJU$G>U2DW{ao>*A-eOQv31BjYptr}V+eZIQw zrpb$HMBg;Vn~gw?qNYt6$O)E<^ik>6HR=LE0y*W*N#Pp$Utnj08BwVZ6QJW(?5 z#BbT(X1XuWq?1AMjwuKE6Z;mngWNjvsElfZ|aI@B{}3J`~}gY z)q>!b=k?eZLIvXDvRk+nx7Lr zRcpszv&T$ut#^M;lvtzCOU!*_h(Nt#E<~F&Fc;5}B+jj7jDt)B=0e_)TNA-vP3;Hf zVlC(|NR$K1#axJ1C*0PZwVv#>&;E5pqNE*7`=5yQ;w|kx5tk4=u46Cxr=Vy|ebs#owmNyq(1yij&#%VXCwew>&|eXOv?J#^9X`)lqoF>1 zf->P*DYfE$`K-0}*?o4`?pjy>$Jmtz+Eji2gOViPNTyVhsevSkd(LyOoE=E=@`zPwJ`nT1UOty6U}F@W2rO`T1|cF$6{iM4;6r0%xgMFQV1{ zt3NEKU;nl44obZ6ewyiq>_@%y$K**p^ea5Ir}|FpFDzORPbHy6V&tk2_IoXRB2tka=IoNe zXaxU)2;`@3ENnQ|t@>i7m-&%AKS;Z&xUb0mF>}g?Zv8cVyz3vm-$rc_flaNnuj*1Kd`HGl6QTNF2?l@} zjY~Yg;xer|GjHAIs0YuG;;9g=&ZT~q?hdG%;`RBWlgRvq*+J0KC1X2B>H$O3L!D3S zIDf2bdPrrSR%>T84wfbr&PAw<(puIZa~ipyK6;T?bZw@{-G(hFrD87BCcLMa>P1O- zPclkHxUhq=BNd_z2SV_EYN`wQAzJMmc>Qwkz>jU5YMXxw1bgR1+n3Q~VsStsY zvvdTl4w^qXs^R!y(8S}tMTgv+ZY`Y;s+MzbFECmZEzKNs6vh6*W%4oXD-yxK#8V;K zvX1t;#-6gHns>#6Dg*x$YA;kfS`nn2yJ~$s)0FS*m|l3;BRviWR=D@4RCDJ2cB9z2 zj5KvRe5!mL4R&(meaQmI7 zM)_^d>m{`AgZ1+B5~~IdY8!6_eG-i{H-BMatMUJ)hV~^HTa}JLs=U!@p)Ol=JU8dR zh(~hDJN9|&E$>P7Rz&+B-yEl@5JCH;zB?z~e_OJwGCOM*EM0a}VBf?EDyxdxbw5P! zt;F5GayKsOfjrn_sQrwN1=}+Jmi#c0;s00m?kc+YMEbXUb$< zJORoG(w55-O^DSaF7C(g--kC7pcrGInlR%)|rN|{pr5LN9IsZqy0XUf2`nDTv6RA8;}T$ zgNRmnIVtw)&~a_ys4Dtb3flv1H2GK!Y= z-2gQw9&AG@m;R-J5J<&kEmhg_@7Nc-Yk8AK%h-;RtW8Z1?OCo@!u(OqRim2UGH7?K zm&;lzH4dH?K~!9mMvSZdj$7{X*X>h1dplPhQ`zx9O!vQSVcXEXmh&d-cCxG;U0-$W zqwDR<`bz}1AfhenzCX9wXF45pNA#C#eK>yLxT5ZTz3CaZ+5^k%+Y9;%sql;m@>4V9 zKepMgH96>3eLT}aE7E+9->D=I_{IX?RZI)g{DJ+7$|c{`Xs%B4cAQfqKQ-U|?M8R* zj!t&fJ4QG-3Zouqb+ziez0khqe>yiV_j6kJVc*4a@wyLWLO@?)1X1yGLd$WGspuD^ z;^&$NeEIRrmzW}9H)$(;$HDes9#k(s*HR&ZspuD^;^$f_^)}(C+zEdFKq_nley$N5 zO;k)2df?Y^GhR_ld}n8CuYKP}&PRct19U(5DgV|5%fqoxzH<_f;xAY#i!px{M&XSPkTqdbdTFbg%%>nn4rC-=LJgje>=FtnsB`Fnr zG4W5{)0jc^qJ&ba;uD8{^uaHOrfhj~y&c9V!GmKI@iSu-`4xoQ6N9^9Y4>;5!{C-Zo2v=M9x$aTBlWgz&35|UO#y(SS5|RBJ<~|;3ixQ$v z>b=&?;e;L>;o@}?b5YO4zI8%#L|fKBZ`bo`)(yq!q3$e(HAH;hQRjp~bEBcu)}ZP8 zVECOJcT4wSzL%gk;CBjBCWQG5$5y;(1{qTKX0+O)XXM--dS;1;+Nq^eAzH1Zc3Erp zxM8rbIU{I3$n|1b^Y||WQE^QgQJP=TFUW&^OwUCVA&`p8nuj`x(^p{a(wzkmk&T%KThw?w#MsTX*xh z&e6Ru+H|A%NLzi``*Vhi<2l`V|3*81eNNS!S-qMQoYc}CcYmh0U`2Xpq+7j2_9U4L z=|06{T*igY!M*p1*^-GwmdcusJWQ*H#km{Y@kt)TJ3-a1;l?^sjTLD^9! z9OqS*O*nnVJH~08;4+ORxT{=w35+=0*9gIp0Y@JytJ@vR1f7ZH>-+72XKKp?P40V@Ze#*RuF|Vg&ty2rg^HsJT6yD?Tsp>w#yYSazb~=UNX$FctlR zRQz1?cz?$wUeiC{wrjlE)LF4AH+st_Y5teoU+d>aPc+bP@z|P{_494p-JgT~e5r5; z4US8uY$>_{y=r>9M{Kl@&TZ;oz33T|2Y9=~-cEY3hf~>P>!KA%$Q9-w73PYPIkvR7 zhkZS8EaK6C;yFLpvAurLNaxAJ6I?=;#)B-1{6x+(Ar(p@^+2gu5*nAdj8f@Q?W*;| z9J_UvFBRH~%On*`tJ^#g0;#yH{c7BqD&9M{eqi5nQ!CMeIB&<+w5&w7;(F0mS}OSR z2e26IH(#cSpZ?PUqE==ZY??y4-z#-(dUkll>f& z9lf$)ubgP(htrF1KV39nwcF>>iT3sX>+9ezh&Z)BC)%zmWwE0>+}=2z?i?C*v-`K& z>2xwRIrL<6$}pS}i`pf9_lCjq-S0O{vEQxIU#wrDgvgtGM8Ba@DPMj6pw;Z8!+{cC z;`qBrNd#qYBwr%58kJ*ZuBjvfsi^$rft!7FVg#?T6OZ`sgCuQ99w-&pOX$RU@Gpjn z)~t1QO5JPYZN+&jkqXi3R-3#Gch`fN_QGx>WSc{t8o3VFtn3E`H5Pr?x@-Ou;=3BQ zn)H%#AN2_=&z;~$pTg!T{x=Bf&u z&YTxVOGP}e-bFVX2_>TM#*|Ro0W^;)@{kJAYJT<8Ck0)T1_$=GleWSYPqdpl`EZ5p zzT>vAZ@+D%ur6A(=YpK*$7MK&Q0nXr?y~y^I^<#4wx+D^^u9ecv^A)uwX6;o-&C-z zO!>fXFHCT1F3*YfS+8@*;8#+~gX-3QVfb=b1UVCpC+bMe^fU`cn{e9@l^G3aJ<7sSqs@_{-=? zS}OYPh&4$BYySB8wxB|^c>hp&w)xE@BlZSCZxio#O${}^UGE~02(lH&U8EX2GZnsb z!dsEL$xOcq;aduo(T1W0g;cC9X)g6Jn6QJAAOiJMyLV1k@_HpdZy%hTDdwVGp37DD z{OF8gIPUt<$5!#m?U5Y1(>LgJXnRK$;cL3=yKUH*l< zgv&&QXtmb2extkIX>a#^zORFE5bc9@Q#WDW^PD@R(g;5$a$OWNN{cHbp+q2+DaU(z z={zJAqE$`~h}7m69XWYyH_yqs>xS=ek6b>~-dw)7)9Ha+KT>ySF|`1#AT>u%G&>#S z&H-w3=4a?>?ts5gobC7G;UKlMl*(Yj4({bb1nyc;Uo$eNxX$-&1J|q{Ax0b=Wl$&P zpx;>7GssJ@-(f_R2&BTkoftuya|}l+L`xow;JG2ACE}7Zj(cQGP9P_LjL;ml#g>&k zP!hHR^$#wSMKoe(UTr_4+;=}FhxD37M&yq9rcBT2u5XHV>du$e7Y4qWSler(vi##O z6-TCo=6#^4uqKsRwchRCh3_Z%J<6=AG>PD(Mj zdz~p0O2zGUl^%%TU&uaOCMrZHMj#cJb-bc+T-#XPV*}i|%>2IZ!BUlmU@F>M&1Hia zyQE6snVV~SUu@2F_6$x5^;ElbsNZ25VB3&9QYx&M%5>U^Bs4tK3?QIp8J?PDIM_dM zOvJYF$MYBhr9uSO#8&d96Ff`|&WK=5mesBESApi8YkIFlGR5eORPmZKpRlkM@<6*W zwU#QrPjFvBv_xR+!w4r4#rF^To`M;gOga91)b7@mozYKEbDufT-osT#e2d4odnpxr zA9*;obCrK|_IKSsz`CBX=(^ZyEv?Y9b@ghk;Sv^7jd%7(_1nE#rGShT>dTMO!(n;p zz2E4O0X1dB`jT!B)B|Pbj9FR_kScb&3jKmqZNqbd=PgYtjtq$qNY#A3&N_5<9!SMG zi!=h(WQ69p0*O{IGSOIz+BQF7S`Bp)eNcTrH|zM=nkKr&eKB!RTdWuPsk411`grIK zrWdV)UQ0Y+{P2j1Mi%lPL|{!a?s9yk2#4*@66%?yu~t}on=pNFT?D^VSl0FzzI6Xg z`o_+Ax}(F{&?qNE`f+XD8#-L>-vO#`VWcmLZJRt4xTAPw0`)-I`MDlB5y4dS3sUiO z-J{feH#Tp_7UVLa6C?PScq&B8bE)W87#YwC@;eUKMe_29Ol5wqH7`8}oxE=XtuCb^ zNqAhsn1~We1X7{wi4k~u7179B-kX6`rW~J34?U4)eR}RJ-zE~T8sHrh=0>*o`zACG zz0!%j6E$b+(#;+$lSc3_~a6i4ra(-&o-l0=w9Tw7Q>n8q*Gs~nAq&d}#zKbOvn^YFC6qP>@-xJTy1EspCpXTi&M4Qvx zhx#B%LS;HFP37H5`gutN#XhDQx?A^PM3;_W9*E$YN+Os$)=OnZ6N3N3PPZeK3-ukc z8S0+d%7yx#*$mass}%B=U!s;?g5zMnpOZrS2H)swjyxoSQ?|?(qz- zV)l~YTbt-auDnx`skL-%pWPqjyKwV%9#(q?b;ia2@b==CLi-_|!7{qgF+&c}^-}rn!dkwi z8EskJ4?X7WefBkf9Ax{@NXF&(F|i~M=FYOSPRvhzo0wg}`z7$Q{gS#*IIl-;u+mKUFHl+K?mRL(NH-!-ng6u*jL9q(SypSH)p7b3!|E2R@E{*;~5#T5suIj!SCams?*ZxEGR$i7DACE0+e`CyqT=ToadG3R_NtubfkF3=5Vpe1nlgX; z$c*w%-#Zq%DdQ-!>i#ItcS@6rq*Y#WW9xz$>oN-(44B~D(qTrh-V_}N8}^zJbnf)O z{Nz_YJR?}Qm40qni&M%wOWt|i-TGdpWBe+^Lw>AzF%RR34#p)!v*sExAvnbza_fx1 z#-1ZYK7GugkKUu(gnAQ|CM?ljLY~NF@?Grz5`mt9REV~$8i#AzYZlfEJhf$<$li)x zg4t009_4V4;<`wxk?zb`eB|dOp~`OD&$fSbuU-G~|Hg_oM;_SztOxxYRyQ@x3VwBw zzR!v4C4R3g&kFYYO~*=!Ky8r<(PC7KMQ8F+(}MA_1iVBbjF%J%v}MgZFv7Y2s;B+v zLz&q4P83sCr+Mm{yGNuR(}S~ue3KQ*juw%K(%OJ*g*92$C7%v(`ro$6mx}TL9!l1G z{!tS1oYt=pVW@P*J&lgnwV_6qnQrqq_=mY!n{ryxfJ>x$(;z;Y(esXx=`RljYw;iJUqs+JzkEVGS zSz5G*XU5th&&;ojJTvYV#Ubz)L`Xdhm$1+f5$MN;o_Z9mz0wLgz01Vkv_Usw=y#mL z_s?}Jys_DS=wLrFTS6_Gk20l-9D;y=1nzAztqIAQiSVT3X$gnW^%gSKVjZ4cdEXD}R-{F|8Wl4Oi69d*6Q4zW3x7cZ}Ml zhxM91kpVr5TClSBnBDcdvF?%uL!9=n%?_SAKiSV3@m#ez!9fov`#bH&PnaG2qqZ)q z6NlGq2o#+AaY4uD$2&;Xb=~aP{6Qja{j;94dwpogR9Yg+x^u$W)r+N+6h)aLV=q}t^!sqR(!GSlf+ z`EWGpr1saQ?GHtRMY?R_BO%OR*x5K;?b0cZeJBa`P0O0}d5Znhxa!^)FJ?MeFRqtJ z9>qCj>8=zHM^5A?dE~b$urI%VtGg%XPN&+=*}>Jn=uDR%^qv#!+b-G9MuR>b%Z+Pu zZd{HfX5_@tnR-;}Gr4xTQ7^cU-_qZ~deQSGk6(tK=bT>pwEf4uo&4Om%mZ5x`B_$< zb>}%FX3n+WU6Sb`6^`K&G54(#_LjHS+pFKdRUj}*pued*Uj`kue{Pg-_xPlvKp++J zQ#osX8e#|TPw~RdGM!D&9*lN>S9`{ZHx8X*!LIo3~WJuPAkO{K`S>n zMsXR@r6Xv}U^K0y|2KlTBNd~|%?>4yihd~#LHt-M`Zw&~f|0*k&l&JWjOM#%2iq>y z&m{u$sUsDlC1R4gMd^ondK@Gw=7(sBz+Xl_F*~^R0gc9*emMtoeItIm4GM4s>dg>EGI+@8D<> zK`MN+P~%{YT26;6mj{ln)l#uV(LNH9d|7p;)zbQQXq&!Wh1&yTmqcKM!+O!L5Unya zIbnC;WfcOQSB_L!PmTYeMdfWCi4aIt0C#~%FG0`XK0&<;rIiSj9jOpa2(yM9--3KU z3btnKZVvy=3lV5h^PEP`;@dn*yg?!rqUAd$+TE1#?o1jD%wO0;E8?9W*iMF?EI>Bl zuWuL!*;Xbd7O!7<>Pa-`Et=`Ai%`zHOMk5zqMc4E^H=e$f9oQGhc`m4H1P^MdUMQ8ZW=x$2+X;<0_5zeB8a#Eoj@_X>3rHz8)+lp9R@Oqb(% z=#hZ9p@v+hh)QL(58eN6NOUC;Ohuysel=RRlp&~F3y3nJcVH#@j*h|Z>MS=V-{<~+QpgEQ^o zZv*&CyFQ^mNq%_}=>a5=C zIE68n7nI8eTi!F8lDm_Wa-53&h{avZ`ijjPdXhnukW{dNU#k5x!KKs>oBwVyTM!=bB%U>QUw|?3ubsBDf|)PveNuyhxyp zesMfd50Eee&>2!HA5m-{&_k_}#jL9lF!zD>FjVV&OKUwM5z^zo5D_1ttzL|X$!0Xy z?ZNGj{Cpk>5n2+IO1F7wQt4LXHZVN?e+ZN?F+!a(k9ndlYkrBXE2+RDzRuy&H1}Ig z+e+$`&{ojSh$xmy@X%hOEy_Krgsl=HinRqV(Y;o-M``sM9z|MnhqR$TV^Qq2S`S^* zSrDLkhF{hQsu!~S$MSX2N*drj6}Wz1DhK7IGJB%oK~h0Za*=NZGo4C3 zAeXn$9J95^+@D6SuxMu^Nd}$zFP1PP))KxR;uoVw$rfZTVIRTgcG1$nFY@2_0+5ff zPI~Q?IZ!mEdes=>kAoz;_7a^jjh`EOLYVf@y_TaWq6Nakb|%?56PL-%Zu~0jTMg?n zRHFR}!Oxl6m&~`7{zdm%ZQUaO zmRf!;5ZLCzW1!7rex;)v{NmfESQ0b--MSFhRa$^Kg-Wje0=kGV69CDXBlt!VgV`2C|;LdD~o^XqzF zUZ3hcKBAmc=O&eNxt!)fxx1KOJP$JiF!gFL(e+|kxA}h|v{Wpuwh?P$cpz20tvFT@ zDjvZWrRPTT1PIZ$4WfAN6Z1#l;Ujdt=q0+%rRK%lfd}TCpf;ybfc{H=hKJPFJdgJ) zI`8_%LV90b7op6dM|#oTv9qkI`M!(xVNaxyfuCz>^nb&`e+(72jp^rv5eUlA!)+j} zz&y0}@lb?~PZ*?E%phdAg-mIl=`KXW_QY)(Y zS{l}d>O$-4vgT)cE&CLq;-z9LQ&S{DblPvJWPZ^-mD_`!7yE96=n^BC${=)`OIv9w z-5#0;wvFzC5>c8YMq1rJq*TR{z`RuJr)T{cevgs}{fneBdXV15x2w2xy9#<7-FCw9 z5nD5ntx)p}kgznVO0f?hij*Et{n*Rx{86rZ(XK%vQll>=mWtk^G>?dy^>LYIfad*5 z>OsHoyR$*i*-l22ROU~VDc$|CY3+q}o-viF z38eCE#oj;&q%t-<8v>~ezq27EmG(DUHKKOozc9?gGd#Rm4&ERY;;lLXuhy8l-iD>U zgeRi+VSlu&(Qn@9)##h#-G1LjKdbzVb;Bf+HepU=iwR!QK#U9;RjPVtzFe+KrxOexs?FL-y9e6?BY@L^z9X+-x z$!~wWxWyW^xnNiYUmR?o+FxvQS9?`3^hN8IU+?|_K5tRaId zdwDJEd%us=cNVi$NF{yuvJZE-;e+RU6NgD}M=C_CxzB_Pyq}sRdHu@O5&Z+HP(sU^ zb@~>2a;=$ek~`RGSSv4B;Z1c;IC?yPNz=Sw{>&tQr!;-}eR7R{-?gk;ZoAgbo0Q{T zbMp`f_ZuUX+%LN6sd;wqy{TT#QyKpE^LY;?`8yI2L8s`(PhcLy2Mn~wT)N#&THM?J zCd}MXDv4O$dz*dNormlyZ8M!`59LJXY)Df3hp7cx7yR_x1R+(6 z%{glKhTa#B5?WT3W@*lqYER#$tqDj?%U+DEc+7s~XG+yf)ce1Nj zt8B7Al2Crh2Ubwz)OQK-jLbZzSaLT-=^xz?PJ03+~qIdDZB)CN=r}tH}J7ty?V&Y_^qsi8q)rP%~>Q>*rh!o z?4fD|KfcF4_x?S0y^eGf=KN^2>a^mO;bE&C$)6v+vF8zn)%l2Sc3bd$YgU==T~ zZY!~q9C=8o#ul8izuR`17yY`LgR-M_C8BtTkl%vFuXMg8&KhB!lb5Xj_-#9QLs{qg zfb1XUi&92huQeljSZI!Iqh@AsJMdqHZ`MhA&^7VZVO-0_R_a zKq^F=Z($j}zATqIO%C@IW1p8&F+I&okP2HAG~Sf*tM!(7H3|F z@~BZ~Cghf$nd) z!KHHKLm zs7z!vOlTT$N8MNx|QTmva@67aJOdzsX4YFTEVhT ztxk3pZ64+hh`YxGsSurL{J=3oj#t7Hopa0OL@7H6c^`W?mEWpjp2xC_`Tc_tYF$QU z+|x4)Lhy4cOCD$+)MHTnDk09cqS}1YulA5tJ-tVMlp`mOSF{r_aEl&AE$c{w^>*Fv z>h`A|h5l|s{sqSj+7)`TnI7TP7}b4~ouAvyOCD6{?>6L-9ubm9ah5b+bBu|sIYkLB z>prMP#C(x3cF3>u)Vdg=oJ$=uSOfD$buql5`z4J2?2-q>z?sPSDKyVB~}`yvXCxGCtb* z`+eLpOD}LvW@S3a9d%-UT5~mixMuv&lF%=RsGT=E$hX;B*7VlRopxKU^YtiA5<+7P zmVSlxqDAq2*RqOt?LGrF+&yz zGY(3$W$m@zvBUKSd2XlQ17~LD2B%)CR|lWY$_@T~vF;P7lVu&eZ=k)Z#Yk`KT#2Z> zEGL*!P9qR4<|UpP&x?eFQjdS`9czF4=4IZp{;iyr!*YWa@6zuw*ze@{VcJlw??N6H zJk^LN(F{G!8Soq}o_$5MWxd?&O1ss!4ZN5CC#BjtFDLlHCHgH4B~<4J(}vos4kUZ& zQ{<^eJRc{|#KHVZ*b42#5kt56=r!~01>4JeW9G_pcYOAhyd5o~V*B=Uoa0~h^gR(J zVFcC7W!(pjwZcLwT0Q4|OJ?3hk$UE#1$M{l&hvh_jPBtzCjgP3lnUmFVke-P8>)Lo zW3xfxQCbuw*-NukNj*?r)C2p9(VOO1O`W_b<+h`qS~(*xy5Uh>e!Q7^uKM6NeeFJ3 z7kkYoWcZnl_&ppw14jnIL#-#8{9tG|>4^ptj@`sfQt{2!R90txq643<;!A7jNe}v^ z_bd7rq(ZccaC>jCAGzu-@2zNA2R(e>3%S9^8|Zgg)JdEs7r7JggtX~t@#A^oz_j=h2kV!W%Lo$H!$yfBQZql)REovLfQZW7$!n z>TR_VR8$kA)hg$;4|<2T{b=Xa{3(F9YkYN5-T(3pouab5mVe|%@7Uw!hfb_q=HD|0y@x zVSAdt+YImIM63H!c}nvFrMZXoq9l(@&5r)@VM=IdH~R7evEAc%PTp?fmD(E@8-uBz zqjgc<@A_m%DIeKYt8R**e&RH_;9=rpk>ID+^jF>P6{H@rAK$n@XpY*J@GDn&dx7$H zp?THO+0lEHFTJ#1`myhcF$7X=yC*w(lS0gUCm7e}s(-`~dpc)FXY5D`E%{ASAzFR; zG2^+2C1`1BU6^GETX7x*Y8$kh>S3|Ju=h!Z_E$Q+$UT+HYeU)5=_6G7X`1IV%QPTJ7-wsZe&5P)daeY!7S$)JgKdx{wOdKEhG9vX!lbbrFry z`fYBjHn&xqJC`=ej%KNw@d}U2_CU1Ct=@L9{lorI$_DD@8^{#GWwH<2P0dArTx+}i zYuTwk4sdo>&W=7iP4^F!1bK^0A)+pm9i%AE+xxA5)(+GxYkyZ~nA4=J_KeX#w~1iA zCoa{`$8Rv-wn>YyhZ%HDUKE*iO5FwpJf>N?uBT2&9>|;O=D)CrWY|+>KOg(YV*AJ! z9qen*3=r*s{LqH#<`Y1y{xi!Tg$MQuMvw~85|Q$QM%29}BoJ7W%KSB|t=+U%N6)IB z?BLuG=ZvQotFI@O`1?oeS|{wgCd{>$ExgUCu~qY+Uc2I0R&?!*6n`{8-iiGReTmC@ zreALHBktQLe=4|t;z$o8HI8s{#7Q1eX!o5n(Dz-gi~JSiE$;f$3fAqlx$QYx$qr9ytbR53j;QX>_jB?4mx zq9tPZ!1jU3kJR>RsJtK82eF^ibG6&r&y8$Zt-IW5Z#id}_w$3jZCuMh@55CJDb?;) zy4TWphtWVrQEWlf1F0~sNFMkLB9NbDHLLr8eOLNGufx=NHufmg1NBokNY-l`ICiF% z*ZAv94`VIb2kj>3)aZ%W{xlmHR68~F@;mW!YD6Fvm3ek)$@ z>q?oV_MtXN4ZT?_=+8I~woeW1+#8=42j#^$i1ATq?y$Dx;cNveo0>9I?_Rj)RN#}> z=er+(#bt^HXgAA3 z1pg9Gg=nJ%t*V*PQsz3x6*h^$jMli~fq7sxLS;Om`yj<#ZN{QSe#9`5q0$BO1Dob8 zaTlvLN1Nc<|9B*K57Z=@I`@BR&-tv4H={)v2YvV-Nz=$Qq^N0q_s?+*e!rj7DeJ>1*IsE<^Lwyahs zHwCueGs?TN(StVr@`vJ4@lX1$VyP_MW|iBr&b+uLf8f;7-e;2}qSt3x!S+fj$^n9C zmG@)JbAe+?9lcRETqIf$`C)6S%oP2f%y0f#NAGYGi8%R1RyBACwCcFgE@~b7an*P%}uvJSH(#T2sEWa3}%Vt%T zT5xBp?1Gxt)po9InCa9!niCv5Q-7)IdNMoMccK0^^~kC0;184e3l?*rSn}3+<`?`D zBN64c7foA$7JIPF6UyST}53JUS)-u!yY4??j zt2=4xOB~jPJn(y)W&QfgvA`pB>)8)(9pgOtRbDXZqN@I`u+QGf3w~hv9-p7~=qUN2k81*Si%yEK$4?8=3e}3BU%q3$S*;fc(H>|~ zw6sLvFDPMRsc^o7BN>ixat#2ZCC+^@x(caOtC`Uf=X1!L5n+GSB}r&)(%Y-&BK|t1 zdKbav{d*Ok8eowtq2h)FRn(Sex+-^ zS7q5lDnutnAQhu&b=b1@@0xGF@lcxc!Pkz+Ktta=IC~P!wLTlEv)@P__>PRTVzh{5 z-FRxL{odGW&eq&kB8L#|zv8Sqw3~`E5UJ>+<_pA$<_x@(oMtjK%g}qzsc)yNev@4M zHh~B;7m-vF&6-fWqO4VPUkSw${+>-`dd~No7J!08A}d%{(^op!W4gR+FSw|`h`Z<|QV;b-F}4GOivR&{Q-1X{nGq zN`-x1tyxaE&rZM7vukhetL}+2-iM>8Y(eCKu>^Ub=WBZMTPm@~?S1bjkISSJ&I}SG zkc!LA-ah2plu()nN`>0~bfF%Jmi3}HVT?ZSuFzxnjz-74r`M(xPO_2<`~Gy)jcjOH74s%|wfpob zAa1A!m&v-QlSJ?@@l=RrJ?P)CLtl#v$NDExBB#%p<$n#Oc_}^rbeeu%645CEf@>;? zC^w>X9$ZsN!~u17g(QiWifbx~7&N$a1lLp&LEnB$` zmT~Pv0^Kq@Zl9>qPDc#ypOZh*3Lnfp1PZYv!@R9q7y zsCN1b3)yitz&x}bnpz{UA0Ps)VCablwg=XWXv@kD?svx*U21o4+uNzQJvUmrXPTdr zq0souvCWRw~qMJ@NNJw)(b$6I}nYedq8@C+&#-o=x@S^_UgqJL8r#<>z6S zdFXKvJ&w!N&fKyT^Cg0RiKjxeW!2wR!Kt-P=r%4}EJDnET zcBeK2ZEyTA2jAS$uW;OzzB{MwtmybxlS3`0whbzaV0Y;$fsh1ae0zM2j|u zwk`5Zn-_WP3)*+Vui}0&?|{ayX#BWxlH*SKXKUcxT4U5XmfUFNj%ofXPR->xeoQ3) z#`suzk0S0YNy#2Xb?Cpa7`<>s2m3!$)4yS%Ey|8)i9jl>H!-5>FR6ue`kJB-S~oGG z-HFt~{a0uNQsKxTrNT&tBUxeuQsF3*5aBQn>IaObGFw6S4M+AUs51e?~rfSdUcprikXL=F|iei zipywen$=1KwgH!k3elGJ(wafux<$EmaLs)-?*2kc=UdHAa%ggrR)pLGMR*(qN zmOT-v_&M83&PBOiv=t*X5As>IF;j6HFh72-dA#ve8}IH@&)PTbspg=DD^}%3Z}}w6 zKc9~lv8*XyRQ1x22JG#(XR2?)W(J7}tVx|W7+uHf*Zm&5%!mvz7e%y0eAMp?_x)o% z0)wLcoW@V*M(_9`)n8Y~sExB))|vh_{hTx;ZFR1}j98S=nlF9nJ@@?uS%H>|1_`OM z%H>5j9ZdCS%g9^hV%<>Fdvw#bg5^Upoz3bke(sI5DxVRd7<_D7av^2$n7%Tt@aZ1< zxq72t_K|yOnco8auIMj#pdNC>S$5w)1qasGUf(Y131`8ITz_vRoj<>{NpAGT3+XGe z+9wGXq5tQ{E>iMIVutSTf1!T9j z7ihalZ^wE|<5#kOa1393dxnVTh*qmy7d+$c?)GlM!a>6wI$iT zA3T*i@!dtL9CQE*LG1I&Rtsu-SFNv7F!RYw2dU7*C1UX#cYBeweFH^rm37cQw{*yh zF8G!DVAx&zxVGDh$KFu0bzCEpHqqKrHY4P1Sq)m>^&;=aBHPUJmUIWQwlc@%n%5y$+Ch&>v>7)z4Mu| z8A2)?mrz2Ov|+TUO?P6Ye$T&kKAM z=@{=o!dQw}(PF>is<7yE9R-)ph?s1ph+q!DXUC2`#JMAIsfn!=`~N z>kkoQEm{}bNu3x;@J5gC1Cj?K@C|~?q&cEX=Rw*c6{1T=#9LG%u+8xo9N}0Gs>#rk zUzs=4jEH$-&4^%4gwXMjO4tTm=C(0w8Rsm%+dI^zZ$Z`NWyR=>u~v=-@jSSv5)ZBy z`IVH4qfb17YbuGLdMU!iBe*6xd&P*%@torP_*c^kdv4&_E6#Uuj*C=?mOStmoKs;< zYWHWw(cYIwpDx(j^g+AB$h>G)Ie(7pp+(<%n&&8%TE)5drqN!#R+9tsC*Nly6^@)# z)7sy4O=K(n3p?mPJVuc(p-z6J_SE>{s`102nV!`<#h>Glb-4{Bf;q%TIOHc0#hM35 zbJPQ6mzpCFY(cCSb+WAMi-vj2&ueF2GyFaq?St>m$WLmH+QwVK_*K% zl05L;8TlD4$W~|{?B`MsjnO@qJ)FFq<2j9@{JiA6gsJEkq~hm#2GH!*Ufz^(0|GD3 zDC6L40_}$Fq}I=Bb@sMStZ&bpoFwLOs5zpQ?{<2%b=tvm1223&L9IZ}36?$RuM}A? z4w@6(qVB?062|Q#JN57c@2>vO2FL=~Ql{J_BE6&-;lCxAU(~(PvEEezF|@w@V6Sxh zwoRiQlmyqQagAJMBLS(9hbdbgN*K$w;IB^54l2Gajdq*rJJp&*Oqu%m!cd1kcIJU?Sr z1gQ`$d89o$Ga8($>qYec57DODtSH}ih-h_&_v-8HACEO~DxSJg+>nPBMN6x5MUVBf zuj*LG>Au52iF^~2R|o%mZkDcxW#$ARK5hA(}n6XnN-ZaHO=GI8Yy16 zCPUr!_h&jdccz%g@jNS(Ryg@%{bnKcV0lpwD)V#A19wxgwnW7eB3dJy)0TJj%WK`G zDzj10N-LaqlmCS;@>~mgV@>tP-5>u*EnIo0e$FjO|H@e(w*lEl>R~Wpp*d0^+RzgZ zlnQ5=h?WSH7ZF&KL}1&ZB#8ERY`JQWmyV*v8G*=(xT{#Uhnneo>T91`qp&Rg^7Gfo zHW4nzMi}#)dTnVus9qy`JP$-5cSM*nc{^t7G2AWB zl$)rC%DEd!s-~Csc8=furytu*T}7UGH^4ISC>@azDIHCSBV}%L_H0Y_+oP3dzN?us zzKawonDV-vGut$vu@FA~y{Klk`@d|mX zSn@_qZ^iXr6x{ffTqDD|IS{gDcx|1-s&E(d%pz}BbbU2G>cL!%vS)9^&ol8%0J!O#NYJRDFl3J5C~r1k4LL~edSLU z%&q-|Z(%-HL|)D3n5fLpwI?o1derW8N@rUz<7<JzJfYwzd{6SPCbe>Cn|of zZB?3=#MjFnqj@AkAQhK24;Tl9mtZWBn#1TUY{k)z>}E!4vX%bR?@^>7^*h#<`yjTa zM4-G}CUjy1@<1v?i!+Mq_ESEiSmc>Aaq6w8_*|hLanzR|Uh5N@qqgWVVz%V(RikhJ zWFL$xGM2FJs(%QnaKu3g{jbQL+8yl@lG}hr7Un@^ey;mDoSYOqP+Rs&tvRgkdZ;bd zn^=$Ue&n-=>mt}6rC*`u_zPMTYclj?EBpl!C~aZ{Qb|43SN)iE*`j1c)SRE|@f^;K zirF^$n6z$ba|YspeUSNS9@x*h)o7gHda2CMbqlIDme>pcM|zBj{9Jp9wwCU-2X^xt zi`v5ydrv6xc;2OBN%0ND9-U<6K1ic5l{q?Nf0Xlfv=7h1NOp-psgOIDX$FYWs@13t z-?U!%z+QXAq=%e8SL$89N1xA#e6vEA&rDb4zhwu< zq>?A^5n+C55;0|owk(`287iE;NHp2X%oEia*WiTWoS9UnF^W8#%F9%iP3`SxLogL1 z^ys{MM~lF}(QSbR_sf$ncwPxl!B`d|&i`8b>ow)&Ss6UpBN6xu){Feq&gF>{TOT<7 zh1=}keopOOSwW|{&LM(10Ji^-73|xWGo?@3zb_D;)Z2cq)+h)20ZJ%Ob07jGK?K&M z)_3>sD^NUK#ls_cKT)TIXti$jc5MYJ({nln)puGz`BnSJo7m4ZY3X!r(AdGXX_BV)@4M1+PE4$$sRu0fGlo&FDTO+I@7gpIuP7ZtO4YRe0m2=#}?r zTP^HAGy43!x{RmgW8|t3_N`mm%0GS)Q18ywj^qznon^oG>@ctTIWwatXQYRQ&(L2p z2>r^;U}Vge8U8nf8|+}jvLc~JTUVU$w(Yz-*v~?H{MqzS{Yq{8?;lrBNe|^_wTWO& zk_Xnc^j}?X&kKWbi0dbuYrpo)UG{|Yq$iSRRD3Hr)W35Z-%HlKk{oJ1hSuTEhF~i6 z(30oXn2LDt88wM$(|UrPf5`}^MU^9gV=v_fui94C&kjP7=;ZI@eU?|@&75Gr->Md8 zJ#G7bxZva~Gwp)MhIy#%_o@ZSx-+kex0R}+_)oVW_m3`HW<`g-Tw0q~T3kPW)b1p^ zcmMIC1@XI){8p3*fmBp(wlF<(X)UtumA^h>-}={fyTS9lMPwjbZ7WC))oC8`+k@Li zt(R1K#BQ^BnDa@yR(|Fdwh!8k-bIskXuGl2^sm$$JshKiL|~s-{o%~$oIa)5>Z+wL z6)Y}4#7=HH%3Gr53@xUn`{xo5y{X${;>YT2=TTk$`%2RMG$AFDmeLn=hC z9-$H2YEVBPf882;-{+4wuU^{9Mr~=GT7T!XJgIrjuagUM$9)jkvET_I6-t7wX<3NC z{)|+JCR^zlAC)-1a;)W(rTm=o_?7JE|Gr=%1NV8^&(T)+3wpb>)xtWDw%Y#S+kvI! zCit<0J&wGO`C(16J@6N-7u!bNC6x40{-2u{1j5xOi2i|8Xg9U)v$2EydjAKUmw((Y zS`hoT9C6~Uix%aRzS6q!2&CfE#Ain!6`xp^h@Z#YZg>9U9_Qh!f3Z z7w12GeNE@+#9KZ5E?ckN43(p=nu>7rjm3P&wX8RPc-bCbxtp`H^)EKooAYR1aQpnK z{w`L@$~^8?BKi)^ga;Ef5m%3 zXqK_mZFt>j`@_B+g;dyTD4}j^Zb!0W{f)_f=3%rbm3f3yYfJ00-N(Yie7`apTAs14 zC2XipD74t&j<~R29HL1CB{5}c^Z!O54?=wZ#rfWE@7?9|p!=Nmb)hz}JgnC|CvQiD zp=uIAD)YQFPsG_0kNRl0lGf$S4MfGc0nU!#Sr}0vKkD;(jEawwt=e}{BB?RM{fru!Cq8CD&MDw8*x9|sHWf5 z;v+T2D~!|}!F@dhk9gUsUgFI)l|&@c+#u$*{2?&$)5G?bL%r4dm5CW>1-a9SxTx$c zj>?8TvLFz?x!VO1#oDEpk=dadwS1i2U?b36k zx8>QaXqhWgLOX^BBfDm1MOQRR32lBl7(xBitZDa4ZiVNkxS_8Gc&S~oqCcFI66!E8 z7 zR^u}1fqhfcGm82I$HbGV+0n6IQbs`?+c`d3*1+eQ1VVdSIK4JW>*CxOEzLZ%RA^ls zeNaM)KzWf0(U$e;kp6*CCEGduVwWaP?SJQbtm3jN+UcNQFheE{z?v*; zW2c`3y;gr@H|n6y(ch(R!W^pS)HrXG<2g#zbly-jTTh?z*l07G|(f%aZU+iy3on(eTwX*H1 zwQyIhh5K!e^F*HYVcS^N{mWOcZ#_7}zGv`QhwjJ?+~U6vT9h4~a(}9?R{7FaD{rsg zy2Zw>_Ek@g5$^_wKneZT^8%Iatw3da^QGdsD0&9<50(FD9<~V&c&EnpNY|{qHs0Q%im^QQuf%2#l}e)%TBJ zINiTP0poFE9!P~~e_b@7)~Q{!PVJz_;mCjyH8BFIq_?ZDmIdlNXMy_8DIx>TGH~4W zzgm`xKq}eK)fbb1`eNd$FD4FZh;~Dr)EScm2&6)bNU1Oapd=`vM66b^WVc!=y5nd@ z1pVsupJzowAL{rh5m*;eAv!SvsZd&VXK|zTfoDE%Z?8W(T4YwmUW-{oE$jHLF9hDa zuDg3=#%SRs7_a`eXGNFXroB?#(7k?r;PP`@+Mli%|}f2R{vbBSDkv-n-zWfdKy34`|pNq5%t}9 z{fWQ}FVuJ6euFZYnNf!9bF6=Q=*P4SVK<3DyAxuSLgZG{bJ2~x(nDKbqiig*W3vrOEbn@dr8@iw?8OuNjyX z{YI^kOq`>#xIj&b5lAI@ke9Q)$m2LtQ<J+Id*BSv^pAK1`%gR%M*FL^wp!n{)%vc3nqwQF75og!9%oR_>tQsf zdquS7ltG!xq__FgD@DA%gPw>UO7!wO4tpFS&A@fO8d4co0G zB9V0&eRc#>5pV7{{;FC)t=t9F%AJF;9cLUke~^eJKW0Tc-I)?vu%k@`(TNcl6EWgo zO{53^=^ll#ggudF9HsB9`E^lNbln*}n?x$KI@eGChCM_S7OCF#Wl6MU)tI`#O`TWS zsc~*w@75W!qGKBBH?PddtZ2BFF1Oe`E1FVQukNUO;@-Hw^_^q0ThBZqXMH%+!;CJ{ zx@b|f586#-#`}D`dw1bq_IE2o9!m1ThFQ@UYLq6`)e9yBZXZ7|uqtJO$YPG~{ZcCR zw(Y9-b6dTi`zv=Cqd0caO4#6Q)BUwx%R&U&1gWS!7%eqNFTqGHHCL;(G2g}5j#P+N zXQIBX;Bn4=iZYz1ALBX3c_|gXb7CyPH%p1Y_gX|?O%j1|2@zP6L|_a@Nf510{SF%M zUioRB-DTkbbrQw+=n+WJPyQO!N0D%{*5{QS}zC_e|iu;dnC;Mjzzuzoo|RCP(gwmI%}8VRgnNC)nk1 znr~4a^~t(>s^kQBR!;Yy%bS$3UbHkyC=qBMq(Zd6UQ(deOKi1XB5bv&Qg*aWI4!g+ z8j8$SJ0O~`NDFPe$n1b1ZNg5k>A68?O-VgaKchDx$d?{(UlM^em0ZPPuO{E+7>p5B z@bDuw&qZAtdUuL|fK38$WbEZjfTT3;OwMWb`KVc)v0cjER&-W9)UhWrZHzV?8tvTGR7qWX0=# zIM)&g2k&h|ZP5xUzt1@b-80(`*twg7-sZJg(FLk^()~fG?ZEn)ccbTM1rib1pAmsI zNd(#o>qWGTyJ$s>!7}cuNNuY~?W#!aBtqO*qqv>UkRFIYd65eFB}O0>T11U~4JX<& zmk)Dy>>uo)w#Wl{ix%{6Gw1m^wllWBKscK}$%?igpuHN~zwyGXXtV=+yTODVydxD6 zSd*crxQkTiOC%NDI*oe=2^m(m73kRu{eo18R(lP+OWg&Vb_Vu$8SA087>R0sm=&GA zD=l=+oyA{F3e;B_TYZ)BBQ?L1Vf>)D!f$>43cWyZyh18Ot69cFpA}r(`*h%+)#Lp2 ztA?l2{P{UbB@xD2VF&Gwc0((uY;P04F6eM(aiHev@q!0xi~Rh#sIBIru9}NF^uEke zkskb(ifD;Ic@cp%Nd!@`brFFzNd&eaN`h#%lwQdpo6tP!^$XfWN{e={{!Obm`cJQu znX~iq9KAfTUX1Wp4wwgfBJrbokzb65Kv3L8Dz1s7Wd!{jc3yumD|*<`eGS`Rwt21Z zHy2b|I?r7*V5o!Vfq$qsD>%BpJ~RBtsae6M>ehLE_rUQw@8+L+qJrCg;dp1zqO9PY z1+=5hvWBN-1(QbU)5KU4{YHPt1@qj2~o$qTBTIzpgOfiZlYFC~HdyjNqCB z^T3FV2&_q+b~^b}{%2j!6pTC&r^oHHf<2W^>gLmY)JgI{?#Kh9tIG1L@Goxg8mIVr+%Fk z-SDg4pBA#SqE}VcUP%&~Nc~jg8GGFPC-YMu9N|am-fyLbcJ6Hxp}WFsewOO*lOe=$ zRi5aPx34*8ianvxO9e#_X$1cgk7$~l7CJhW{HoK$7WTT|?SfZd8tY67XGh<-BF#VV zO!dBMo0Xy=*QJFHUi@DOrXuv2w6sv4CkWB{!#?>rx18hl_;S4HQP|GdZ3nd5OrZ@nPWVTF>OC6g*KvbC#VDEmG4$w}nj~Bu=sgvEHp} zrKsW0d>*H5g|g0tH}@$xePJ&rz74oFzw4uK6TE8GO%b(w2N3uR@n8g%X^wi=nz--I z4su7Sda6~tmAhCfv=#n>2(+}JC(ZE}8Z)?UsBHFGs#&{_)uAfvv2&v~~aNuiq4>lae~ zij%3yp(mT`vSqz-DB0PubGX~HL8gaPh;FO)88m-I*Q7P4dy8pJpK|Yfu_fKlzxv&e z$ssP&-JmzUkY1RwiM@mocg#-?-7+m*Ns^&XR2eEnTUN^AO3pv;Hw)aHd#CRuO&jRG zeRx22^i;#t(1?m{Bj^hfk<>jqI=OMGZ$+fSw=lJDX;^uuY57I&8`ouesA1jpNujCV zYx|%@RBqHmk2!;$d(F?c#P*^5E?lN;Eelqpheo>9i|^D#1pg9Gg=otfHMfUz#pmVy zxQkM8nfN{VRZ{58AN7lQO#Z%t)23G?d)~-99en3RD@e_oA0FVOyBmEyuwE{cgip}E+vD7GlMB_ii9*Wh z!ex?B_4mSEnfkdz%-xk-IH4kWyQD(2I&Uz0gT3s&fey*n?DpistwCKE)%#CNUFPRh zlSCj7q(ZdHQ}ojiJ8*xB7jBm6d~vu+sQbGOeE(^+r%I^doCee%y?K+Xgv!6K%WB8g zx&538-FNuwqIJ}|;d9$lLi?{+8R4>Jb%~60v!a`x)z2+!SlUo~)q!L$eM+YD%JeFs zV3Fp5{3MUjYv$VvwwL$D%#~8rxhW~s^C^u!)HEsdUVoM<|Jb$8Zzsyy(`sMmVB0=j zRmI1>DWSigxFv$UK;1`v&vW*WN+U{G7j4ydV^U$;0lJ+mYv!Q^cE{_^^M1HYN`;c3 z-P9b;`owNB|5x{&*D@WH{r?!d5_p@c?|%%b%x@y0k`NM-Uxjz}bFT2plq4a9L}kj9 z`AUA$Ks+8EsZ%h=whCIcEDxy=tWjb`X7+zf)@`c&O%Im&*@oQMr7sMQ770?63%pw?$eq+*dRkv?s>td=@-ZOBKkm-y{D_>$y-2>t~T|11?s@^Tv^ z6}3?;t!b}bF6O95O4TVO6?-4?;Iy&szajh{2XuK{ia4hHGJC%9x7uK(UR|xSd z;MhjVT8jw$1#1-M6wp)8gH%`_lOlu_SIkb!ziCYszc0aBAb5C4g=K(cBN1qyz+VeI zi5QbrN)70;%uSsjM@w94RDyv{WZgOMw^C34)yy99V>N{>Kv`#gtW$%u(5g1sQEV}i zONEkPZI%dZGmr|=qD_o@9LXM(O+kVl(C!KZ)-FVgw%tQ2tX&cT{YSh7AgKZ$D-aS& z&9SHFc92>LIW7q>;kaKVQXx8^r&g4Gi4aJI^rBv%|Dj%G9{dGPC(iTNTw%Yt!< zC=YC@v24WHM`+G{23a9!SEzn;9y&x_)o6-6_^$ujSU<3@#k!(Tq&zfKy)tX2d*?v+u&Vr9#r*Pv&CH8SkY-`zB}dzt?*TovSL|1bREU;{O-Cx`cNJu3^52 zmLq-a4T7|O-vZ`W62ZTaO*l;+gJ?NUAcpz_ypcu$gtrVJ>ig${+1vkD+c{7gtyOj?r(W+rPMznf}qswUeyKY2qh&Btsw-r%ic)Ux~R|PzG6XUof5s zJ*NtKmMrkTthgT=1eAGvEK0KDyIaA`BC$ zB|4}ZUznQta9U;ks&25RzoxC(?V+_k>5150u^!l7QNGBJ^`L*{8bGj1V*JXqT~r5y zzpz3ov{kTgK#1Nqj!=g#dpWaxqdXf&^f-neV;h~!=+*Er)@6&5715&novdzIKdsDE zGjDv}u5qBUm~G>@4SOQX`smz!>e+_x+57fgXJcQ4<5G#xr>Sgx{>s(ouN3Y(;r=l0 zQ~9T<;t1SdMk+*G)&q-Y+S5{|Hk8-);}S$FL`xoc3JFghB}b5kkt>4}3CvF-dOuMk z^Zi}b)rgMSBC0$_lCR!9C)Vkylu+f*T1Wl<+|&KJ-_{jX9_jmTjAF?OJrv#;AU*gt z7~WQq2%^HO$eNfh^3!M4N{w(=ok;QCy*oSJ*OKh06R)IpsL(=djtKk( z5qC_`J9KtNzBAZPK%kF~pPQ0ja;NzK zuiW75Meq=}gwUeNdEjad@<5&R$$=xUwHWkk54H94;=-@cm-2tfiH*?__$R9N+E%!i z%JNdL#+IhJ0jEuQ{2PL(&?3osAQkhb`IWGhLYrWDbiOh-R_iq1o6u6(dQVspmg@oe z70S-vP48S3f_^~+rws!4gz* zQz2T%%q+e&bLRYEYC*S`?Xr*L#Of|KdZ6rBA1&+G&q}-F4)#+OH+*H!cxO&*=hBqW z;G?%j5iJpcTw#S8qUey_xHZ3jx>(|r$lTIk1 zl1#UYE->_HJ-XoWsmuZH+lndjzP;Tt{Jsb!K?&JQ%*+ed^v6!+ zz3nWqzOP^OeEuuQ)Zw`MG+Ee!yY406>p_dX^gj`r3x4g2++t%y2NO%RrW3 zbb2h(^A6=U=rm5p+16IPBgKzSi1{KveOLd=?=!!8ro1XYr?VKBptfjf%er;h#>j_D zF7_^6*j1dy#gpB5*4?sZUwol^ZqaIY?$N<&6r2S|Dn#pA`@jzS-gkScaaYZ>oj&to z_kU?x>W0;IG|Uf8k8{I^b7Pe^nD2Tf{O7luvoD(-d8zAUafTkXMc$Tm`}BqOOM{gv z@p5JL+041I%oQnq9mMiSD_GY03s*({=$FPgt-*iN|XA;T-b;7c-tgG&AnK|X-{1)|JoUG8Is4ZH-vUcw1U^mO? zs!oUHco%y$Db-KCTH1YHAFPVM`-0FM5vZTOSG4GD`^!#4RrA+oY({TD%_XAc`0L#9 zQ#{vdG)R=-bKU1Udl#4%M{2(4kz#J^u2;Do7LHS>E!JSPn=ZkPrM#!^>g+Wy)yJ;b zEyt;~tRmHIufvsdoj&)P^tAeOo%A6U{nuP9Yr=-F-PR9W=Y9Wliu&E2>saB6p`BOu za3|lN7Spe6dE|2_QDGEto*g^J>7yU z*SJUjBg-615N)X6K6_=b+qwNlx7vvT3b`W{qVZ$+BMF z{CnimuI1hDW{(#L^f9by`aSx&7e~IEI^L`Dc5|Cz9+f_0UXARzJ=bYltfK#N8onlJ zS($bnw?)H;yhO_y&fZH5S|VO)+1OqD+$isw75!|aLa8JoDD|*7 z*Ms}qxYJ}=d*-ce)@*NCZ^M>56y6NNcN_a}(r@KdH=b`eoIiE%zmZF4^UbMiKKHmj zegfOP`#NI#MUgpgUhReM&Js6~&_KltHhfUc8&)S<*a~lhHTh|tz9-C59aw%i zvT>#0Ub>V#Hus(r7=s<6p;|#7d&pGyn`K9^S zl|loS`FrUeq76dzzDymjA$efF_y3W|qbLMY@e9O8^FXe!!hBH@lrW%A)MJ)2*BO4G zuuhhB(`_3w_tq-yJrL?DMz1(xl`($HJp4)K%G|%*Cp+~N2&AG>&2!y(HsN-9)PA@9 z7~js+J2$m6{1fp!@}|@A{N2oPw(Y;xeqwkxug-Ki|G@FCo(~)#G5lpwk4@0 z<~em+nAQi|6&+D--gB83{5Z-Rbk}1x&Id4Gme5Fb?)SNF?_NW^%q#A(G2f%-<~paZ zGp(rP(ea0!?vcE{-dop61oq*G)-gFwj&z63ZspCsO4eHBhc(!;dS&c#k1X!%br{vh z#(Z&|wcO)Zls9s^Q&p zo&NfTX8HvYSiAHX&d#wHlq;(iDBUtZUWmY)xYnAv^W+ut;!y-C-X}#Aq{tl{_eIxi zegEj{$lczCumARMB4OMQq~f%R`*FehcYD7_|90I6#%|zBUoA+&^MfhtcX0@ z_W||vrgz2rIA|-hp^jhj>aQDL{bsECzCka$?~Yuj!D;hqB)%&m5qaTLn`gT{)TZhs z6uvlv2+WCnm;Mba)DSgK-bbyNouRd(v-w%x3jOXx*AB)ru$=T8JUzY5-#v4!dZcP| ze|+`vJLZ)_v=vG#$|LT5G|C7hEP(Q-k<8l{kJ!BYy#sdY+XEEZ9eL15hIv~Sc)Q@i zo}b9ivi_`B*BxDYys9^2UuK6x^PHte%=?U32GoE2=)cctX{qXMpVYik=XASYyNQa{ zMVe1GZ*v@MmK%S20;Sbwo!8WI)qSJYhHrZLW9l*b?QR;kW2qrO%c^xG#a(f_o67&b zxF~Z(P>;hoS=Jk^PecZd8m7{3eo64ad{IA9qlDeLMv<+!rcv6m#;vLE9;{qXM{aE< z${fpCN|o}|;>e@}?bJrc^qjL|mHfFZmYPK9yD}c%uHjOn_KMSmrP})I?#Q&OtEuLP-|smQiIR!@%m*eEGa}_$%+~!Y?a?MHAFk3G?xwP2l;OB zN71H(TgpgU#d@H3r=4P-RSKP3SuaW>8T0Zg)sLDZMntY%AF^XR$BFtuD^RC9SMuXbIC^H$ zy}x;zMV}FV?TW}*8hAsaD2;c`8@ZMjd?zpIed}i1 z-QUIQtoGVC9>ljGXr*v>1GCGaqd>j!tzCD$js>u4kBwC6tMt1NIu0c52uMV!L%D8N z?GfsiD*G~#JGO)9(|Q%>&ocJp`M7UIxyiKoI!g2LUGBu*ebteAX8ysy2noS%mNjquIQ!-6QoQi(*+MFm z1m8Natn2cYxFU*Z9>r2&>nsr%of5gzxfPC$ zishvBn7Pw_>0EE`vhbr~Zh)mm`w0hi>{m0pYwL}3_cYH|SGP-1$5M1up5>MNwO5o1 zb<+E_rv|#^Vy#ry)G7jjJpiIDtK9YN-C0*wR;TN<6$os15v@;>Pu*)@v9+5w;J4+% zcTo?V`{*^x^_|=~*OpU}w2q>WLY+SR&pc=Q81r7PzRmIE$jFGQJ2G3|Fv;JQ;g*wD zvzs(ABaUAO&T}@_H7`C`)?FQMiZng8FEi9}lEPoGmB2PwzZ?G0%FSzfKc4w{kI4do zZ3&`v37+0>A3k`WuD_PW8YZq3a0$|PiQr$TY&o5X)@RybWddi7%#YCg-S8NH!P?B1 z{+Q%Tg}>m=D1SG8Rd?>%NV#(cL3`M=*GPGBny3)1Z>(3_7wMC+)oz-p=LS$x*w&)Q z=ss#t1NY1~VSDU}5uyYUO>5RodztZyW$o|rNo4T%Gwn5FMv9&j5wZkzTxVOyb@p^z zXNBjluua5sQaZNC?8@%!N4D5C-Wn*RLP^la{MgZP9$23-U*xCn#HE$?2F)=qbYq(s zq#NnmvN?`bqp0R=N~_>a_?TH)CKpYDEtLm2HC=4yNl(4Cl9e~ENjb#VqTr0Rn&^5m#Hax z=Qyj5X85CU+Q&K8*o??OTsz0vekQ};&9bb9?Mtc5zK*x%GJU4HW^SyeJ_$s3oS(Zi zH`e;obpPA|wsw}4{>4`JZ1i&V{;vA|eiY|hzs+2y#xTQU1z5qdUcLX2z28mo);-Wz zVP0ry2l z0)IgSp5)RuUw+-{zVg6nyT#{i{arGa1j}4Xb++Rndq$lv-EXF6E98Os;+ZM^y5pdg z?i;UOpgL}oJg{t#pJlz-_Z9clmXd1rF1>Q6&ylcH*!mz^ub15Vr(JU2W!}2?t19#c z^b(ZTvYxIy*1h}FifW2JQ-t|qnM)pJO7?WK^QYMBM-CSyIAZx6r~Z8z{s|bAR=lm`&Z7FzZ2TB7Jo3! zZd`SYFBShn2u>3fjRsghy&BbaPbBBZ&olefny6k~tk;cmX#{CmXdf)i__)O9L1Pg< z!-Dy8+DNtA%7_emwpHc@GbXE@OXoUY{APG`KAYq0JFMUE)9;KTZ_B#nqmt_Q-!I$M zs@|f#JvUaPlZoSm_gG}S*JKE!!q}GjwSu!b?$e7G*t`EXP}C^Y7Ofy}NTVbekrw&s zGc52i*+|mtYAZT6^O7Ym~R) zpgny@Wg!*bB|-@;Yufz5k+(nlCG*7EiNZ^8L@viy6YtNBv@Y4&o;P}&K%gWjp&sdH zbyvlf{9+#)+{MOQxF{9cu;`bXboHQ{9r2f%aHUYs4XV|1yAL-vz4@0RdaY;u$Xut# z&y_+eocdAzPC3byqF~P1NURRws*&Dlc>OkY?2A;t4zeCp*Emgeetoap*x)wg3v|x% z-`5%BnuGsthT?ZKN><8=zW_yhI{b#l&|UnU_HpWbev#r=l<*ha1;U*CT^Yr%E?~Z6 z+_~{r7ceKwdgZ#1YOwYqRlMXT8%qkcMJs3v>pzY=h?3x55xzuZS$cO#@$M2y!ZG_1 zEu~6U&ws3=UzV$4>Z7cKMy{|feH~{6PL<+Kcs_Yb=lAt0XX`)hGHQ>#_3@C1*o#p; zk)LJhSHNxk3b@j*fQ#6l7-dx=P^v%@9sL3#O$FcS#^Jd4E2_WO{B4IyUM*T`%ooea zvU2s_$Hwa~RX4QVV^dH6-W93-s2HgbE%j)(ZeFbIL31J&sZb|EtTzet5i`vm&$V)czyy;Dp=OS&r{T{)lJp(tM=H)19d`v zdTy|+k6o{Cnp*OrzKPUqo>OP1*?q17n?4bb2&6&@ElYjYNTqzy zKs898WMiE`>!O6F#Lt(z!d+e5=R$sZH~iVk_LE(zsGKph%Y&RrjoHpf29{ zq>u_Fq0!(iWx2h&?#mh~zg=q;8Zu%t{(^{|OXtPDKFRlr&d-GX8b$M0KA#w*O$*0o z74_I>;nQ}5_aC!c9e6;YH=r+Jc8q5$Uo*$JwTMoRSlnt}Y~r&i{yX=Gz?`ICp-sLX zS~0)7zw?t7m2F9Y2`i+c$e|o9RwBARtLzfje_-GE<^XYq9;HHQ4F~QGFkg&Licv}e znP^WKe?dtwCmmCE;@kG}Q5ovuKbi@@!c+IO{=ld4^*Nc3`bS=0Xku~%JTN+85GU81 z{v0zYLv^WrgL?J8cWtZ(SU<2;k~}!-DMjYxH02xc4&oY^I4Sr`kd|>-E$i=s_v{j7 z8mW?ZRu`J1wo{ zBMx;luN5RBD5s)%EW5F21m#p1fqJkcqzCgW`b;X88rh0Zo|=*6qEcrIonj>fQgPZ? z*N%>I*F9v4|-f&Z#gWnN*A>1pkHAdbg5(L5c46Wa+uuvks@}yVg3NzU!7cI3o<_ zbc6Ds9dPz`vm35$CG=o#Ae~qeO8@b3YG^{o^L~{SfjTjobdWr{z7yDo^F@Ao))kyw z_JR|?1wyBP)`L8pYZSk8PdvD87M6;CA*w_~yq*iq`CSRlm#7e3G!L$|i9AfL#Tvz4 zO(n%?Iur2knzQ#M@*v(Ml^*SzGuvKp>bgK!I*~`w2&CdO+w50{57os3FD{IIvCx$H z7aMdL=oXbEd}`Xl_)CvWP5*|y@p~4=#$HVEqO+oiz?>wa|KWwP%_9vWZ()$eoFoFN zkVkR^Qc*dxA4@$t&8zMmQVk=Qjm#E$v>THb%Pm0?Hj1LO`jo{pRlP{9bCDbNwiSp~ zZSrEXpCVf|iXxizFtv*9PM*Q(qUt%J41!Ay5rzF~(B3NE%ULDdKYq&=C5TcR-M7wu6S?P+F+PH8 z5mF)AvbuKM8)@3Hs<$MXt) zjS_LZ(qrzJ>`|Lf#zuP=ESm4Pi9_a@@eYqs<}Wede;P$E93cWVM=H{s(a8}=MQOI1 z@k5?F^Q@6(kT^d>{q&nr=k9aIez9cps9VQ+)jyvfE56dS?IWKvvR53~QuGWGfwH4c zh}N&&+&9^~bI=p|Ou1zR?W^Ujnx5ys2BbfG!FQ^)+fR-2`b@sXzY7qwWJsma&}z$Q zh*%z@R~tR3KBC&g z%Xb?-X5t}ZUPVQ8Ft-8kI56B>vE^moR@l}C=|o#y-FT+^+woC;tz{mR7wW{{DXxVs zpZK3?;n-Ga9~sRm4$z|vvM9&DLMlWvz3Dmidu{P~AEy&rREZ!SG_vG!rZkPhuqP@S z!Q(_i(Ae ztiUi;5naqfd4Hdjl0Tp|jh5C& zQ9ltKM(Dv2Xh?I^NyM!2kc#8i5F&_KL$=bfSmV*&5W#7xsfZTQdIS&5S4uVd=Uwje zjec+|jmXyb+SBrPw@=r%ounj^N8l%6FX&&_M}syou>=tj^snoqh(@ai^fY6^Ur=_; zNg|L6HBXK}svy!a-NNS8Pb!bQ7F^)n-^aWXgQv%fI#q7Qa9DzD#l%v>(v(rsuzqlw z(8&?_3#X|x8BJ+@O7EqaZsQ>}yne%P(!E-6A|6k{*J=Ec_J&ow?R7)yom;-vuglXN_q+65B;Y4`z!=WMe9=oJ57_z9`I^xyNrIk; zXvm@imeaoB*rB|b8Mp|qWG#-k&X{m_wEg6E0V;-9JotJf)a`vrO-3* zrUmXt3WSHUV-1#4;n;_Llsuf%RGO%hzLyFk87>1tAQgW%-mYWz7dc}=D)cu!PHc2< zq|5o8AM!Yk&%ji~kJE-nQ3#}>H0GrH!QfU({3Z&u8C*Xo9aueKey(4&O3&x00ZZRY z&p-ACMI*`b@;*Br3*sTaKCQG@uJxoy&YNAmva$61;`KB9*z?{0m#(SP{d9mP9zS%M zUqV#=Ej@qK?$jcr zf;&IrekHfT|7a^=Me^67sZ(RL{vG%+X+Ed_WbeK+Px_jpyet)3!Dx;MrlMaMjXD|4 zgBlX{f|j8`zrhnom9)$~EU8N0rseB3IbDhc`c`XtzPZ(!;3XbX1<}zH5pZiucp}<| zZ*UpSQI8-(q|6uji85DgAF@fHQ&znEjjh0U75h>m0&}vg$-Sz1pVWFLa$6)@9h;q= zKfa5(eHPe9$5w~BVp*XJcDVhX{cq%4$3X&tRLDEfo5m$*A1uM(UNV)3e#6bqE=hqxx*{>6<6Hx^^5syEf9_LN{;x>OihzL#- z4@Aq647WH$#cATf5*n$lE}rkUUt?ye*jsX%s2EK->6RK0{7WJgqD6TKdASS-9h41e z4rMM7NF{CMt)1X~@kCAER+ul^hrb&=5W!UR3sUiSV=F8V{H3V!Fgya!3M;DDPM;(C zy^Jgmdt_SO894j6|6Pn^JhUQ@EJzY;WAtsnz^{b2qf~*dvb1$S-SePZqrzC7(q~6u zw8UxRfxPu8?|~=W>2-dMTs5+f!hC9JJOwJUUxFbwhgoh=FN-^v<1!w51D7ddcf)`A@C$d(o)W z95v)Ll^R>Yl%V?4@~(Ymt-JDGeF_Qk`u;0!sk5To9{)CmRtJ+IkP4+0<91;yw2$mR zj{Wq5`}#e*++Kb3%cSsv3rfhdJ{qG0wxv}AL|{~TMC+58tAB7i_SofqtIxxsMKNEA zfH|i^Dx4t&GcsDs&~K%9`gIlG6A{5_8igTR-^e|)%l)gv5ANte*@6e=i~9L*@I?3x z9xU6UM$4w2(Bl8-RSaGWbsG?M3gz;qDuz2@(8-<57ob{Q2pGxemQ$Luo!WOX+}~+LCiW7EOg{ z%le?xTKldWhbqD{f=-@rzL+*V{tZD?oRdL(-u#5!XJKET2j@$_aGH4Vt{kQH>R=KC zQgPbw2y_oaA6}r-!R{-L8U6i1Pwx-K9>FrEKk{}hQjUHIfv2F)xb3-NAKi6+N zMG|{8%8Sc`q~f&UVSG32dm`2x_C)d}{%-sV5llt?%4tNH`T-~V#mS@Kgt|OgrEd?E zZK#IaaGAGh@%#QAlMYMij$&JJhZk>D`Vq_&M=;YTN#ilkin={wqKj2tS4B;Tmh?W@ zD{p7wjZ8YT&%A?LPAwe9Qv15X0_U^xGOn88f%j4|FXSQbr3PHWbZ;UauWj=Exz7E6 zr2Dbkkhgr>38U^KKlv^I@)-NwJg4bbCST+?%h7QT7n|?;WKI9m_NiYEx?k1``FF|K zCMbJy9+#$SHb=($HxzV~e_iICM46*b`o!;pOYKGZ1(EDp!xd_d zuL?-So!vs}VEc=_lewD&52T{IORXL-yxCHwe(-%IDqBu#UvOo47>q%n=19fg39V0A zs4^-)cC+`~doPO{xg2MLtU#xjgLpDOm29f?|NL4@CyDtEFP-IOyYY8(es_ev_0sCL z+X^9&3i(+UBKQ}|i_;_(qVZ4Aw%<1-Gmwx7+IhG)nzh341DJ9Zk_AYmH{Xq(A zDwcdCD+nfq(+a+ke5(68q#FCwr$vX{`mVK11`o3r_57GL1ed3u`Fn>O)-vs3MM z?<{i{eLYZNoxpl0r8+ZshyB~?*CNe#4pg%qnH#rm={xmU>)Et;%fQm===eML*xz^P z(&EM)QV&GDsbf%%zuusAyZh=jYDJZU?t(p)72U{uwP(5?xgM>HR@Zxwy}PUK$A5Nr zzHop(_Jxn8*o&W+QlTVx`_Qs>XE(7QAMUxm>XKgt{)1(JHngmF zcU|DFc;`d6#gTzJ9@zrDA7wl-vHSyD&EMGDeQ?(rckID|s^_eQj(Xc55RJU`D16-u zZr_?S+@UL^9_a0ulO6$#-{CfYV`U^|&p=iFwLB=bpsq+Bn?Km&o;nq3api8wf z@lwN_v~PWKcl+&GkQ!Ny{ke2g^>{qUTEldLL3DS|U(eq{6yc81dPv zRKKPoKSb*{6iU8qZ+d^KyWn$K=4esmtyd0%JBs?HP>wcT;01RE3*w_pGwOr;g93r$ zPd+Ja5ct?wHs(g=Sk3Smabh(Ib%6BXxV5P`MAVw_l~@fR_(J56sE2l`nSMAH@8 z;w%Nn+TsSNunF2qB2X&K7ZKF1n^TB1D+>O?LMoI!IfBm~(>S`z;RSvab4u$|J^sxe z9EB67ut&dq;hFm%NQGz}xAua8YI3*zem%!A4!t?5-+K1PTAao^KZXaF6mjQs&y?2Z zmg09$0=-Ep`epJGc`GFmEf9L;PDiN!z#!O52tnUJ$~WHyB0kqADx80C3DS3o;29nL zf>emMte<;yv-@{m5ZN$ktarzlMNV&h`{=EoB8N_b-C8;;ifD;A`_xkV;>`6C>y_bNiSvk8DrQAjU$;odi%$)$IORk!C(A+v z=8IH_)_W{H&)D6+e~j0bEi;-O+!!`)TNUPoMsB z?zz_7)S`55xwKFZecBYQAQAWrN{Bh>cQY>j%^qM4iagt-x576$Q7V*H@|aS4k@M&p zb7u_mMSjT%f1do6(sZk$n<=-u|d|WB1$_LxgqFq7soz5406ZDE0W^T%Pak zy_>X*A{FYVUz~chw@SHxhx=a78DgA>V?%CzXl9{r_rFxb-CwY@`M3`!D6}Y+4W-A` zObZRt_3@t(O!fPuMLH6As(*7@A}FtqbY4?+UPvW*=$66NEkmYm8H7}bK)c1?cXsK0 zXVex;P-?F0xvN`-Ox-dl%oi;xc?4}-*uyfQHu%f~bOtgjN_wz|#^0%S>78nn3OxfQ zENrW)6p{+NnRQwsv11DQgtH2)^;dG(Sp3g60(_ ztJN)E&m=1s^;S6bmh#)cu=D#_It+RY% zJ*RjFwWa){kzZ0PD}0IFf1&+6S|YOb8x79Xo7@TaWP2~JPRk$TR`Jgo@O~|g^j6GH z%Qq3!X(R(XydF~VZm*9JCsGa!%vKj1nG^ZtbTy#|N{E)$uP*F3>E2x8OyseOeZ)xz zlmvOpll^3$##g6>UajVcH|Xg+b#T+7PQe&&%JIp*r=aYZFMl^t=z~vviqP{PkhAYhu4h zc>aAhmK2tt^mgzo!2`8Le)`SgUoyO754UlD*Zb$VdyiCzwk(R zpM63-a;JnkNVej4m*}LNjuPj4`*-h`)oU<8+MJ-{aXa6xVFcM7&)G5Bl*eB;j8M+f zmm?q7%@ej_2}vrHkRnHBtMT{G$sD5V2U)jM1JmN5b^RJ#-_-x0#A!?&*otDde--O8 zwX)Ww!0URVe16qgb^Nq`8&H>ErD)&GDhuwjQ4-{Vymd5^9%EF`V^e+K<-Ull%jv>; zbRIfHUDarcJNT~u+NdG6oaj9|7VASp)k^~>yZ1g6wlQBsU{3nAf_kmg@&{VGk=@nA z*aurU$>ZCPFIJWI{4X+L{~ZE>ttg`PX{t5)b=40?x({eiJbj&Boy)4@pIZqmngv#; z`hlK^^0KATD=DqL{aA{(|FcnU_p7rN=8ODVm8p>5bcx|D%L93E8q3D;7?V}X8_;E$ zn>ry|$4M=p|JTnZubP|6=g&Auo{{BA9{)BUqScHN_1OyZLLR7} zj@f_eHue0(RDVv)>$sE`r~O)ce!boBpw%1pd1}KKtfI)X=5E))lN7bkr1{l(rlo(w z3MIkQLP5Qu5)A&r>R99898vSH%jMTyY|a-YM=YIIF2B?}hH7w~a`{i~D;gp7pjW3^ zc1pig#@r=jopj8az`F60qMjwNXn~IY&!uVFE6IaxLU!YP{j}!C_lhJ!NTR8p{XJ1C z@GBt|O2YnT`oY8!&Te3oO z#IWnrLqA+*v}Gznu+hzDC*zuI&B0WZUS-|soGO+;JqcVjC= z6h%cN3;u3K8TeKT=S9D8n)3bUI*8ixO-<5+E#lis(SPX=HAE^(Gn(jRTY{cgR9z{I zU@Kz2l;)g#L?OQ_sukt(Cj|e6A(oceiM#n}y5UqHe4450->^rkvP^~JtDrY1s@+BF zvLvXJK66*ARpj(v)x7$jW_vt>q*8n0nsWIS&tC11OM||oC?050wvXg7>cO^=Y4=z6 zE}bNKV7|n=(0Es!*_5p)FYIf%FVXYp_;+C|nr+8_S+!+;tnQaV@65eVas=^XD&(!> z=}%tbre&P9+l{!*!+f83b$*Pa?tgqRH)dk%(^)lK1Hid{;u^q#7tQ*E-ifQc(ye>_ zpY{g>+6x|-FG{Fi)LHw9YY+L!{^pXl0>$^8lyCdqJ%Hs?2lK>cb`Xm9S*IF5+Xmg75%GUScN))b>-LP z3t~rmn7X20Ge2D3zJ6$D_rz~wyq=TuoNA|1LY+ouMJKPw)9)~wmAeyD^PFivq=b5B zP?;w~Al0n#2Jv(Az)O6oJd~F_k?)BkKmF>$mi?J^`!9;@+c{B4Rr7^Br%py{XvwQm zLWw{gm@lH`T^YQ6g7;(iyXgm~RK3T3=EqjP* zG_uqPS0ikVP{_T*tUPDnAI7?fCL8fzSWWaQh0;&>9_MYJUn%s|7{3mB?e$|^ghYsq1!ju%iii)n4@!tukcj8L*QZ{_pWnNK8jLoS2+Rwqu>MQU@fSp+ z=Su|YfmDbV@4kBczAKI4@CKlKg%94A6$pG^57AO8Y(G#Zl+d#7&~vqswai>?MlpR~ zOs`*&R4Cy@b=;ZKlvf9J|KaK$$JRZLLN7tjSl88f;p7VI6)X=n_ zvqXIqQYn^-+VDV_FriT@cMQAiht*AdP(I*ust=swd_kf;8GDzi*)&CViRJ`JW`68Nmn9=Lb zHFN!#HUD`sE4uGplfJY~7M=a@zw`PPp$r14Hh*LgD;oV10;xXSVGu7>`6mQ(rxuyh zB*~v8jZ~(kzOqZ6+vUw??P4nis4vFmIhplRL#@|_qUp6w+06M+?~I>McgUx4$*S8o zyNeIKW%nJZ-@FIJ?kfzUUy38p$!&#Foq5CPbaG~5twqnkdR~;5m{~pMm8@*^UTPA} zD_>*uxM4=isPuM3piK~g7Ll5xRH*qEtBvM=%_7b3pZBJFH2YDz*mDCEwk4Ral*({1 ze$`}tj_+|fjax={7dQE~`A^H}#r@28K{Hgig zuv9QBGG&hS87+-DNgmjKV7`d9tlO@B$}K(YbG!A_o~qrMg-*BM%)1$HA6@9r=*XAO zUSR6V+xODB*JKE!+E&gW#%B=1{Fz$I+)?uZPi7{xSBSteN1d=_WqXBf6xJvy6}E7w zIZ`3IXgx^wHT#0nEV4X&-^E{wDox5s^1xCZhSatPe_;<- zYsTo4M?3q*cYzA6`xsBe5gE4H17YsN91H?|38~Oy;t1bX7zd8ibRLp=YF-bJ2>vCJ z3ejeJlEFVKlPf^x3revGIG%cjjRbNJZ&B zM-0_JBRKjqQX#r94@MvrrQiBlN@YqAHN^T+WC{A#Mf+fV#GF{F!aNXx{1{-!%w&W|S=S}jq+1IT)Z0G*cPL&JKk1c!X)mWIXY`!;PY7Ly17&MJhx~ zsgQfJ^0%z#ru`DR<-cXTzC*frJFleI#i^tk>3CE@si770JBsrzaF@*N;okkp7!Uhb z9QC0Mb^P6SUu<61_mDe!>b)LP;V45Q@LnqKdCt)d;9d7 zasHkc^%;{!HWIZKYjbi0Qc>If^5%-6o*7M}Vz*DRhm*YMyMe!D=@wl}wOLE$YN>Q& zilCga{G}eS+ov#Jv{fMxONQG$WiO2)>K(Caw7RR4hgE1$)4!8e? z$ltMDkr(foq;K&DZ9BH-IJOf~sUTLAJokua{3IghlH)Nx$7-5Yr5 z8MM!3-a%{R$EOawB-yS$?&NdYczcyHuewuTEae?8*;emi2V)%CwKQ=*8by(}j)VXR z`~?vxp+2!y%<RmUG?Fn4O5PtPfz-@&=sKO4v2jZ}4WpKw2%SIR4B(?LjuJr44- ztf}7}$qY~JV{feXu)-2Vzd~O~j=*x3}KE}2zM$Bi1J66cVFzC+IXj5f>^d#2Elhr(;*_DGJCZA zhF|cVRyiB>I_Z{A|HN%PUY<5YFOgE!zjLd5=Di=?_EWOeFA{C-_Ll17%06$EEVU1bN{2lX;j`&ht|F2>yk7PEHdQqAhD=`f&Hn?^C>t|4ON_ zMxhPkQYlKIeV7NWm!K6Sf~iOn)QP{FmAj>l(%cePRPoC0$yV4yqEuYZO$#@5N2>eH zgeu-{{T>}sA-X6%NV>2ZF>tny(n=ANvZ4n!=EQz&YvxY$ecH$7JL_Q(B=2iC87h32 z3U!hQ?Der<3eGLjC?og_D?DkBREQ4fNe_(Vhv?)8)D}w(b<%BnU|o-`OYLi5QM&cZ z=WGkK9#99N-W3Q0*Fn=#gC`0eNQL}_=7L91qY_8@;8$W^gE~n)aIS{7!g(9o&9c_5 z`Y_Vvr3`Ox{SG?LL{6-azF%AGvMZzdjqMn{`d91e8d3UA=?ijdMnwzfp|+?;&~}k^ zkq1hZ-*j$_-#bJJrLAx-gL9mqr6wNGUJ0qVjiORR2?Y-o?3rfiTM&mFa|$ z;%+FXscz#=tUSxfza&y2+DOHBOb+}nC1mb^QzZG65XX_mSaA|Tk(f9#7Di=~rxS38 zH_)~K_EHPtd#T3TyB&MTJM_f!{;nnNzM|~>y)c5Q=oh5o@1{*8O<421&ra!>aC8d3 zK+kc?hd52&`KFE0-27MHSO-L~CoIv1Hkc2ZyofvTpnN&a^F+&n)9R|uspAgcd^pnS zxWl(A?%#ae;oA{HDiuhg?@Byz+%Y$5^gLm9M#$WWOKe4#3_am+MAF<6CmoJRnjC>t zzb-$iV=S550}_GfMbU~~%b#-iylBoPryMgcp&Iqps1c*u`LQg<>hpE9W{C*0?vHybg)Y9C<{yYa9!P~~9h+)SH+#(0 z6;!jP?S)iWYKYc1?>nxyr+qp^k<~CSqGAa-{X?;9v{ZnL_L`Sy_!r8H(?rE%JHrDJ{7WJgqJ?!u z&xySy_I8#vaqmetrS*3A@{6+-Qk8X1IJ{CM5hq@Bx!iygu`nNQYxq)3aPNCmWZNOiV~$lX~ig9N7Fs& z@HzvI0FWPhA^jT`BVqJ*9A68BLLWunm9-W|;X-qiP)b!vk1Pj2Wk!~KM~O7&G?kjX z83r>ip*gm8QYyF`E}{_xv($nF9_S^UFGJA{J+zhXK?T!k$lY}ETRSMPpv4!u6EUlJm;6ssjW>oT?oYH}IE#p+kgT8-tpi*e% zivL9QIe?O{w`l(R<=*%Y+V}|m<>$zJJtwd1OGSwKe;Wzqsv5VJqQleTiNY z^b-YM&|4b3hvW!_Zo68nKSCwN!}RGQpMp!di!CwUvZU_1lS^gXauVtJ6Z&AMM7 z9l3OYulbWl8~E1ca?%mTu>_&sVX2{|g;c^mXocjq!n%f3h?YEp)d;!n6O2)*JWvmm z*DvSuH5jds+!GVg?3L0JkqYze+tygx+H|ew(~jiR1~)8u2^Dw!S!5&TOc6{4k7 zi5||LkJ8H7HuB(kR3blFqY`lpgK?K^(*Q15j!`6EEbA4{ru)UIcXwBmYUNso?TYWLUN{+x$5w@b3lawl%MNvYD zz+bQp#+)R=Z*g=zSoWX5OQ-}9EoP9yx;&Ciw6vI|dcpdx>~Rq7OBMGk>|Qln>}gxKaw1X5u;pB#a$K2jmN=+!9lEA|X6MZ#)S zQL_mu1D+31nyqVEYHWQtU*duO%HN6Kzt2C22iGXW1J^R}7fus`>wIAZ|B^_BXjvY3 zW*f_2j!TlwIhh|x!fE0y@5BZBIPxAG?m!5s#NGtXCNL+z-Obc3wIVFnPM!3)JSffI zsXpqLPi{`}c0@A?%y9oDn#qIIYO`5tt$_PEbvVQ#j8g)x(i+$Cd zS9qr$%X9X8kscZ}(urceD6Nn1G{V&g_3q<&PNjnMQ0U2)QIrtT$q`7EoCn&Z`x|*q znyX(ydA?;dIRd3ZDnv`EkO%rwazu~cjE7I@=|qtV(UJ!ukSe*i7keHw% zOXdUGThhwX@_$!|9a$c6~ zYgKRxDGS~ZPCQMuy6g+~il3I-4^Qgn9ZbA#w1gy!v} zo2(k)Y96lUp-@}20`jx0Lw{8FwP`jqTUk~{e$Uq{`fvT-?WO0FAK!WfjYTs27nV(& zZDTDnlA)7X!6_{~v1QT*aq3~mJu@}UJ-p;$g}oZKaM+GnRx$)q;mE+q#HXnePlAzz z)L+R{VY+^}x(<4}4*F~1&NUgKVb`{bV%^T(yU=;KiaxufM;tn;UyX5Y``KIET^;%< zv?7+KL>Rf~zhS>+$PJY#vSr{F!?GIum}>8+vN7}HHWNJTaauXL*FTpYD%so-eWE!- zMjR*x9ha0De`Ms7A5)rcUGN*(M9Y6+@K<_mGdN8rU)wbF<~((>yN`IgE}p-ZNJjyK z``JiU)Xho5W9m1-?QTS1PLc;AkP7ei8U&wPB5yFh8@%X9whFw2>v@1+`_N0{{4yz} z4>+8Ys8RllWmKc+?cJbkbo5^Rl9?$F`fmPAjl!Fgco((uHRi@T#e*Eh?WSc zxv_$&AE*aPh4GK@elsWgCY!=WxOXnbCVp@v#UDRP1X7_+$r1PqA`WUE`9<=;Ul2ih42`9Pn!iLd z7OJtj!2LE6Z=A_?FlZl%mjA*E;|prE0!J6$q`6JIkAuV@nmcrNypWZbUeJ{jO_}d{m2xyj-=!2NIC+6RM_TA1Zs{{ zh-S;uzhQ+|MC)oj{K&(FS_XkYswuM&aZ=x>UfF7^eebgNdN(785Qz~fF_xx&d2!uy zZsRiF+70L3p|JlzAH&{9B9My8fJ-nrf~c<4?MMBOT1Jry(Ux`HnPT3}P2RLmypt{T z2%>B@ilR=Iwc_z_-3Oa(wVytDt3aT(7)#T#%G^6Ab5x~`ky&jgdDt3YON}k6L}2TT zREQR3?qM5F>8~o9b{^3ZfxnP_j?6X)N@vgG{^P5z#l6!t^X!%PchGkfgW8FGg`)(uCw%?PR5*n=E45NH!>U5>FEYX(~Mlcm24$RkgB5VH};y&FMeW&}P zM4cFIS)X23-s@U(mc4gITcHOG7fPcRc+AFcdbYN-5R^Ii9xFZK6s zX#0&#Sk$m+%`M%kWAr^7O`!LoPbWtp73st=Iwb;IPOP=Eg+r+*FRtfEg=n^w8TIM4 zd%x|Y`0d!L@prR&ZZHx-uOJkKFz*5&LQCcIpu8|&L`$gVRx0FrSo><@w-IX5dI>e-d zHJJkKSI7frskoAgGggVfxf)U-+8>wrGa@rrtL(2cn7LZz(2AWYAv0GC)*k{bNDs36 znFr1Iqx$FbW5rjRh}QI-qgzYF7aMd;aua`-TDUkBq9p=Lib{~9u_JGZpcY{Jon{}H z+IHUgk-GqA7NmJwuIXyOdEG5S53J|NJNbGdu2W0v;+kc7FVE?^BRzCvMV43#N3>iE zPqwy{9D#H4omb{LIhSPk`w_Ti?VozteEuAnhqnQ1wa$r^K0~)x8%6PEpj^d4J$mQl zIXC?;J#@2vK~idt>ptj-NQG$01NA_(M2!7)bL65HOCyV`Oj0Nn+D9Tr)X&a*?W4-x zoLGDBy8&}zrSCL1a#3@%i1aJ;CG;`viE$s32>NBuJ;Aw0_C!Q8!mKmktxrx3tj8wYNO1BO3+&iuOTiEoP~*HPi3#?tJtLKk6x^sch)`0R0Z{WiMSGB|3?qUlOS}C;CnZ{_}f- zxVNJuvfV`*_{j{TtQqY^boJw|3`gg!cKtZ-d3eKzV(vvMbGg$Sl1&2QEFQL+1JEhCW!kC2E8 z(a8}=#brQfF3rL`PC)b;kS#Yl@bA0WFUvR;aEsWsTppc3rWVC*j8hmEO-4x4?Pa;hG?=7|AmEA+CK3SAo1YQ8Bt5W z!V+A0Q$}dPIJ17qKF0YQB-$Oz18))(MqsJ&9fRZujJ-j!Q|uLLB`D3YI^-S;Ny1)D zX_ozl84I1Jy7!?MOQlrE17l>!7!U!*#1`QgA~+U7v}Fz3I@PUJzr2?{>=qBBGBv&^ zH+K3u(xXvS#`jsWd#_ui?LA)0m+o^>c1m-3NIf2&e52c7VVXCqWIGT0i5otg7pt?g zLg?+vL0>}siawVCh@j_e6h)~}T78x?I?7)6s5u?YJqzVk6c5wmAcCp5kK$g9zmtTP zb?=%tBBMW9;5O_$LNz$Oz$x3;l+?793!LE-GeV2s&59noZGqEmESKO1oz}W{-8j^5 z9awYX!TB=3pyxycQ?Y%RioY8@j^4JVp?y{cI`RJ{I$dVi4iqbm9HPqRZ0PRT$}zr50aN( zEJGgjo%`M7QXv(hNgna3{V!Kows(-`PGU!#{b3XPxz1t&S6BZznG1FRc0>4(8F8psF4@$e?PcDVI${>`zlQa@T{vw z$Hxz{$3X;9@n{065H0mU?x+*m&6g^o?_jz54wkrghb4pxe=JdjHBi+iZF?mv||OQ`$vD=T@=?e1td zi0HTI+T_K?4l--($OCy>*5lvmcxNR`*k2#d_V5?<49v;02Hf$uJN4$`Uf;~yL_bIp z@(6&^JW`Vgv@Z6d5;5t?s$S=L=Q1BFXzQUQSb|cj6VLuP(xmSq z=p0#5i0|x{@l*Fig=nHLEESDw$vz|rr&+?n2$q*E%4N=I9qD#RimI}zvtK3`lvv=` z)YAKEM*BBk5X&D`F+^$pZpPGzU@BS{MJoPIXp)Nlj4rFcHD{fvHNex#^)3wTW?2XR zQ_nm1ALaWm=C!IqAR(uT_rD{EigPlE31>Td)rzP1JZNXVQ+wJoHM{I4ZF#ge*>|=1 zZnQA}HRt-YJ@Uy%gMCiDLa)cveBMtW;`Sk%u9(223^Z?x2p%vu2WSAH7kna_Vcgf(47fL7*fn0h_4R%LKNLrRK zpr=}eza;9!{gprn>u$YA$IE!ql(T$6GQfnrZ))q2_w>S4h}Ne?!X>;5Q(ts{@NV@` z53F72J(l%-kK=B&nS0$Gm$wxNI>U1IC$qwW=s+gYoa&$cpYN|!=Vrxz(UA&F9pt*{ zza9~fFrH{D?xRpz%j(?qgga^H3vO85?w`wGZ%0XrY8gxmhdm44kIJuPTDU%M2kTb` zfxlooi0vb5e!dljJ5hKd8gr6}d)gZA#fM}?kqXfgfqEbUbBZJURuuEXGuu*++OddR zZ_L+j_k*{2Sk71mdW;&6{!ToM)|8^QgwLu_y3H$Qlu2nmqf;1xXJZh-ITc3W$sj`Vi4B3hSf0ee2lBY7O&5m=N@ zw;{j62tE~rRFvlPsf7_NZz6(oDvaQ~3L(y)ZjHa5?Rz5n6G zJekXNp6F!#Kq@|gOF0FIz0I3?)+g8do}zydB}n5dDsz4T%+zy4@Gpr}oD+R7EEW1L zOF~ldne@U4{sm>HH0wkN{?j`qP4eR2r|&StbbssjyDSyAR{_Fb-_tLi(l3a>oC0b} zQM<%*8Eyw@gv{ULnu|J^tOU6hP|mWRCo93^2(}4Yl+wu&Xk9EDMEH{V-pJaLhNvxn zFFcRpU&y+gMqANLkMgHKDjj6!DYa6b;(1|w&MsYDW>8y>69G7 zza&y2+Ondj-i`cvdreg)H>A++sFT!#?MuEzdGY84TLb1z`UUiaz+G0Bgs8BUu&jj@ zCacvgU(Y0LjYfL+{%TsA?iA(pceUS$jiy$R=%foUOL zVd?X7TIfQ30)NJoMb3d2(?Tmw(J1_{l$zehf9{Udn;BBH_HySz^S*QE8y7i8ek6Wv zqgM}J&gQns}J=yL1~65y%~>5N-6(H=g{s zoW)m8bto1mog^;Vb#jc;^u6bHbCcP!KHgB>3rD*}YBkLErD93Y3dq|>D2>R}2!(Zx z{fc}kIRbw{1oG1nHp*A=?(TS{`+l8lQG!@%Bfgy%n^wlyO(M`HNQG!0p)?O$^HBH; z)(P|;%c|YIp*p%DWIN}YcsTo=QhSlJ(J_$_aIP->D%K-6_Qv~#J@F;&p|_v+P<=vZ zYz6O^Ez{gGjj}!b1tme9e1y^nTO$-wp&po%@RGP^(5+AQ7)q1J7%wUCy_R(eE6nTT zj33Z|&D7F7dWrQPZu~RQeTKT9!FlclC9PoIW?F`zccm?l=!6$9l&2MI3=EX_yPqIwFv(VhFh^hLA*^AU#~A z;xPv>7t-J>UKphS5txh92<#+T25pT;ir_ueXkf>d(8{Uhey`oiOKgPX2^aoK6l#lnjs8OVWy%I+tbK=WE6YiDn$K7f7a>q8sEUWs#s`a!O+ZaAV0M9IR)R*2>ZT2-<2 zL1}wWgCnqSM_WQUuvgNO=Zyv^A?89f=L+LrAt%ToZy#76*gk42zdcK@0n!{N_~X`& zG=`2?5?;U8+OBGYc`XWQpcV?IQ3@hsAq|u-;E7rk)*vFVB#yv(#t2r3R_8@igQmt;Jb*Le;_Bw;leIU!-p@JwHhu5 zttZ*OgjS<4O``<$sQ)*@=Ax3i_qiGZxk66pyIt2%t5L^335{AC@16a(nYZ@+tZ+58 z%Gvo;;~ZQ`d#Yttcv*^#s!|XFb5R?#>-(Gr{bJW%qgQUPj=)@Le`SU5oEwvvlVom; zTpfXOASZ}cCo^xk7*Xq@j#?L$d;Z7@AD(Zb+@R!GlBo~7mVq8Jdd0Y|Aw<{S%_7$g zjhEY|Bx#@8u6SVVHY`cq!hYvcWbIPTC2AD8LT-gv-LFNY+&l5IVFIVoYFx5^ z?zCBLL3%NUWq`UdY82QeV>iwvHrum!K8X8-_p61V*YY>Rmu`D7g`h}ySU(k71r^fYmT(cHpbMRBREZUEFuHJEQq@#Spd*NV^uz5#=|(?3SKWRK7Bd%YmGrEpS~?xt0^O za83i|!1j!}5UpwC)j1-t&Urh>I4oFGmXI+y}N+i5zkS?hoM})YbNi2x)e( zEDbD|pL7bSB+GIYX87eQ7+XRsLF)|dLaZ0$_d+O3 z#cDA7c-S`8OMkz$lP^w=)uS%?hE0ajiTJiTHcjihArKGexmjElRCeD;eFx? z5lEfTHW#ARyM6DjjyQLkSoe0^CQh*aZQ5}4zYr*sK^V#Df0I452D(XLEo0{5g?@*B zjKv7i^Wo1M{qjk5nfO7XM1Dz*OG8cjK>0Z0!P;5jJxV9EQ;E3{t}?%5zUpgS5D(to!+6|yYF+0rA%UWg%-oxAaP^Q}2C_X*IuhxTjZ<{mvj)ne~4rO(FwBJn|gppJ2c^D6X z^lnE>N(a3w^*-pmBK2K^v%))vnEFTgI08?~VlG6hH@FvWiQIJA$Wim?f_%J_Ok57t z1|zD~I;z!5v_7;-a1V;P&j3M__ONr2%9%tg^itc?Zv zi3U=~v&YCS^Wj(xVyy*ZE!7}+mU-=t>NyxKPq6yuT%8Ip^v_(EzfGVPnBUH5;7Eq_ z)IJNGvOvo~i@~7 z=0dcZK?XA~WegAmB!mRE%Fo#rV~;R6Ap# z*^51sit^=0*j$9LCvXc!&`rjJTVr%Q3Cx9PKAv0NqsMR@+jUf6SH%%_R2*R~hdl|1 z^t4QQCzsP_e-VkRUtV4)-^#<@2Q~UpzlDBJ?S<2REh5maFc+eARA5)d5q4A@VHwSd z)m1*OLW(O-aV4=Vv>4=8h@+7m?x?QAwC`ibSJD;g$9^}y4UkM&oK zzl#X_3+czEDHo!JINqn4`}q3ua^`>}4=n@r!)s7Qv}U$z&%H)ljJ0V^!%;LmMMGj) zXeIaWS?E*b7Sop~uC9u}T*#r0hwQ5O)Q*Zzty`4kiZp7^@*;=%5%!EQ=0Y^D!G}^a z{oCHoKhMPZrx5<7S?-(lOUg1mxpr~J%H;^C(0g9?jR|@kw&Zpbll%npQG)zri8wPw z1eT<^auipd;!1}5X8PY$GE(;uFh-`cSiSSidp1M0`7X;y4?g(rUVBQTdu8||uF5Ypb8z;bQc)`zVp6-BTB z1eI%Z*)(!R@+9jsUNbkxYMqR8SL*t(JMR7Nv^zgrAK2o|f2@!<`N1TKddK>}^&mB` zE&zeKuBKhX6>(yBt!TH;a)KP%`Y;H}Wuq-%t`~k>5^gxj$fw@pICk7o|GCH1*+E>V z!um%JIRg2`T!`jeq25!cr}!NQ&|ja+%gOP(F@8elZuK8CMb`zN4n`6$6gIUl4(BD{usj zMfTnuB9L}|gx#Y<1eU}R(YX*!w{A?&u;H6Ra$UmP?#!y@ERNMK>IzqfISqV$1f@mV z48iIdXYn{Pa0HHn!Tw;hl?0e%=DlK%iZhuYKlKdg$shv#V2;3%6A@SvN8r2`IYD&6 z2+W1OQo#t!g{`?@1m?na!x7kW=uC;Vn2FmK4CdnI%x zeUop}1tTyQ$#FE(B3f;Y_v#Gp7Fw!qbKozCz`G|xfF(+_4Ad@aT?j=(DjE?*L(;kV z!|H|;)h*ryLD~f)Fc)&jC8u1rrlM;wkUaXXj71;~E_pyDS>hOl;}Tk^zK^3@le)np zsa$&-2suP801QmBIBJ)@reJVS6-)T*=i8JJ=IMgw-x-nj@5CdAo?wXmi%cA`DL7gA50cF7l2t3GvjZa&pk>R&ssQL!ocpOVuZYR5{)+|IGK_s~MM=J?1m_tH0*^vucws zA)-bcv?UxrUL3k8S8_U?pnPgi`P7c`sXdef5jYZQ#8tg;^t=%*ME1sZ-r28Wb)PlP zT@t1{IOZgWNmH*)qq99v&vd2lTH0|5W#V#_O)KdgJUYu+T#3tpxj0vQ$`q2{E`C@J zc=!XSbBR=?leonFmoi+`E^1x9mY7yjDjKe$q3?N-{Sfa+1GT^rNF8$_T8J{ASCn5= zY9cd_^mbP5O!c=7iA&t{#dt$Iw|AcTu_dcP9A$897os2p=Hgr(-B4Ig z`MtjU`S-#Sxf=0lsz0MISzj{aP}7i#D_3zPu`Ie{V)cgfR6lHP>d`Gab}to2WRCFD z3VYvP+2|ZTlEi$t3OkmB?-?DNSnhDsoRg=PsF5Ky_fEBf27%Z^JnUZ&3jznQ?{X;!T1eKaEl7SzsE^E4Cknb6gw~)o%E;gS@F-ztrc#krP`k(X(koiX_WdASg+V-9#h z%mJex-HSTvR@)@wUIa}|AxT+H}b5V{!elZuyr)V})D|YoN>%P7H z))b#&sH<{RPh`{Tow!!>)qPI$o!7ao=V;z-eb9FydR%jteD6{NnKa^12zzHNmyd&^ zZ@EkMPi-KNUwb-)xe$G-?R>xK7iIM*D#VCCn#oJI#mo2ho(ToKt0;@WJ4ft0Rb8&D zb(ie*$r=ZL!Jc|ekNGN6ep%gvt7z=yt9qRtUF&?2crWX(aGr@arXoi^ThCivqlwe= zgL@?1=REs{>B%StM2(_U=go5vt#(YHPsFmYJ@VPa$OhHrAF`%A>g;0UAj*V#6QV@8 zm$&?b9Zp>JH4f6iwu1CjFI9E0xAoFyXHu~q4%RKAQ6?eA_)X*|@ug+8v#Abham1%7 ze*ckW^+=8Nq;5_ge9W7D$5`i<#E64-h4eU$z}}O+gX7~8r?!aQPAjyuzBefSXBDq+ zYtH1Aaf#h`#OUv8Z+l@AIc@e$^7Mw69i)!BLT-h~Y(C!WFl1Y3b&-LLE9B%tXleN0 zj-?YP%ht-;&7YZh%?!`et+wk;C30-~{-0~+%t$uhuc;Xug|NR+v{0L-T!`j0+T5F( z*E3MhX=bcuu10CI|AAcDa_JYFCK?u&THWX%c9;%u5`kQjNKBcgja z;+@b1BW$_Rxok=Fowq@>S8R7!n|WO6KJnV6=EZ;~G8^YSzrv)?k8PY2{gMEoOr2vc zd^e$B1in^)xe%@5`y43d6?&|@bEJ4%iTq-}^7oXb;Zav&^}EmPodzX~d8dKKsB<}S ziL|HFXawz;lp_n-9;^Wv`IEgxiE)XuKFZ&su%!u6@tsk+zQ?a#>#TZsX*hLNX+6GD zn`oob)FycQNNseV*L3f_TDvLb=KITbl+yPmaMj4B&FbJa=UaR4)wwTHV^ujBO~bak zkNPbQFIrtXvF@7>E1817WJy+Sqao6FJ90LEalYUA33KLBh;ePocu&qv4!vUuSu&5spk zbxzWb?O>$k+FkxjDX(kio}qUav}Xw99npalWWT{KnR$c0#QL&|lLWR#D#YA6J$0RD zEh{Wh@5l+K(QEL1Ui%kJozt3bi{j?ywM~)qcHVX zlO>Iu!lUoS-Z9^WKm_I5uYQTng=l_~16So+U0NLO`d5s$C0u*w2waKBT!(k50y&uo><=dqbceT9Vox5(Hzf;MiwC-{_@C|7!Ys=`x;awjYu8=l=Lz-45 z>~0_CLbRHt7VfFrU+i~e=t=c}uI-ljYY=bWn>Z2Wnl2*(K}B z&nI3l+dWiRVp&K7y-XoeA2{QTY*APaS5|^t9a=r#e`!-$Z5fCbLalarYSl}(5z7_L zEyH~mhldRs`F3Q1ajO#kX+0fxl=brro83H-nGCI|d zJy|yK!OhKi&%jR2ZFS3Rx4lmg3H*fW87e)w#QE=^6;7)i10|M)Tp_n={J5*QcSG&w zvhDON$J!D}h_!~b$@(kr`OHr>f8ahtw;_Kzw;$Q=+}Ki`DJnnTZ{O9_ z0ooXHD8#bev)sFG9;dB+^c`8@j;qNlYO7vL%Lud|pW$>UK3L)}NCQg}A~v>=Q}>Tsoz|~U zWL%*fh~_c2R%~3N-k&R@*TOJf3P$%3qT{|Jp%UHKg<@7tma*IC>r<0dugD3fF>2^T z&KD}9e1+0;KrfZeYZWF-F;W@@RqFS z(SP?fo9<8#VE5>!by^Z$mt97C{kA02YMZ`V#p_l6oZF(}EfRHw`r#2z>WaH%@hkUh zOAJgNQjLzt!=lmCt2Ye4Fyrlj&x?rN=RV7bAnd^C+!KRzY<)qO^?vD! zEv&f;a@EfXRw+1IhZd!dZ>;V@%UI&%)V@erRO8+{M}7v zB@MY%?PJ*|?z2nEdbhrEkHoS@4_X}lsA^eFkL=3QR(EAibeHY6>~|g;@v^h&_j$g% zvW%V^piG>`kxE15?VE-;H^g&<$eHKws$E8}Mj={xey5(0{oD6Ug!Hd7TX}{H$mI!jfh)7oG#*5rL2f=EA!tLf~jXcZuwK)Yv9yb;rJ6%@OnqzT<9l zAzI!4_-~(EQ}*)GnlEN;u-aG3>rXUet!*DhyWb4?)J=R(mBm^s*O88qz>ClU#Ov_poo*rUS_nyxZ^k${)TJr#}J zRngd4WNz9k?E0XY*J6A?t}Bd~1p4vNLUk;pd~y(1mUl{9u8bT#u50NHcX^qY^1n1lNc^~?2 zB=59!thc1ctC7bO<~Y$bY`L~1gUCI9KU+Zv9Ar#ROi7T(%_yRj$J~0|6Pp6ecz)!+fl?_M2soT5xBRBxey)jWJgZB zrdw!VFb5>AtVYxdy&UgNZ{kO895c|tx~1KB`+|$ruBngQGb}EhVZmHis}F;i`sN64 z!P!3}bJp|yb3`L;E=Qnu?uDawu3}9-Hppu^W2f6?#vQCrL>kz-)E>*DExo_)h;=7c zEXV2t5x5gi@iO$jbAgETOnI@06O z*zp&PrixKk`DlO$908C+A%<+M0TWdd&N3U-(=jJ=?CmBRB)e5mR0> zzeFQ!NmM#VV7Xr(i%Wd{wFXf%CcX2!ll<$)k77*b58Qx4y=mNGYj$`Y5l=SUaQC@=lrY}8y&9OSMMU* zJ?v3x4SCQTrS+~A(pD#127T?2G)FQAvVCVnaIO}W9}yYfX@sodyrsQYOC4vzIC~Z1 zkr8v9%#tOuJGFgEV!55?r}(3r>(gf0oU6`@lHJRDTFLN?8)e3qS>b24#OS>Ol$_HT z`SXTI%-+dz!j~V0Fc-~)?A{dDRfQH$%K=YZ@AfTqD1>J``o28R-@H3kuZ7df?OiIZ z6r?OFcU4W2zU+DeS)xr-9nkuf-R)Jo`o+e}ed%9EzRu()QjiAH7UK4}?sCw8Gm#=+ z6=tUsXg#^fN3nX<8BbrR7omR`Bu@`2=5{-~Tdz9XTu6f>&Yk=zl3lmDjJ-R|w2K<$ z>kJiR9+lHR9pYBW;WTKSx>c80y^@afgovv)-96iTq})AvxPx_ob%T0SGvPILOrZ(indAnzDqMXiOmO_JY_Zy&k%d^~F(*alJ4%68wJ z?Y5pXN>*ssM$fkG-X_X{7Rpc7Aaz=8v2kDUJPSu)E=t>TIUG^r@+)q!Whb4t`*z|r z2r;BMqI2sv+zU6~CyTrrujkIw4#wzR66BpD?tEjiTu}c8J$~4B@b5k4_32MKO_kcK zbdLRQ+6Q@i)Hdi3t(wwm6rdemjkc$(c#Fc8gO*{xn;z~~XG|!gdTjOw&rX%gip*EL zR=RZx>`NAHPw~y^c;Y1O(GT5iseR%gy z=4U_f7h0#Lb8Go~hGt)!axd(xA>UfXPdXuoygs5w96E*hQ1^S;C`03w9evdP$BrAl zPgW$!en|`Tdb>U2fgB<|(pFG|R2IgnwGln&yNv^yA7R&~F&CvRIzIww*yybs(dEHe z&aq{yBN?5ZlD#LU_=nXC4m5JccTe%ZITEW!wT8!2{29ry`V@f>ca^-~d8-g4UySb?HB6-{=~Ioe7Efk!An#oA{T+XEsxLemSsK?@c5aj6*M2-!pR7Sn zP=~rcn73r>mN>z>v2n`sBQTfcozMj%P;#4#OHNeGU$R&K^Ng^0wS(5-g7gjhGs3OL zQtKkmvh2mP_}C!o8LCHQkb!^XF$7;YBlIb!_As+cLsQ(=As8Aut!oG)LcpA~_I& zzfgKn*qm?gusI{V`m&9rg9zjb(Hv2E=hn!%A|)cV_fGM;95NcMaYI55YMN`ec- zu99JA_;tf%+803`Aetj`&ok)pgH8zi*@1LYU!Qs~X`!M8r}$M)k@rgeRq&VWVOb=H zt^d6rXN2z^Z?)U$!c%h0_p|fS*m7W=e&=P>gm^|Tpg_GTmW45|khWTl${Z^f-!|J# z$v70k@eci+Kt7V=+m>&*Rf@KDcfT;i`{JvNaQUZW6RV$1U{*5eSVp+r)Y!xdbtzWy z4daH$LG?ax>lZr`!m^5oQ~ZJ7$7o-a>k4V097wPHVWYPPOORb50<8~i7fa#@%!M=x zMkIf2s4sscAqP1@v=GV?L&_3E$`U2!Ds$YR7gb5f;WQ9|zaWAvX4j9_O8V6vB-c#Y z>c*$_(Puxb$BNoTt#d2sbx&sap_OE#2|1g7&j_DsYRW~6QIT$EjgY0{=ex}w>EmEo zXeH<^tMQ|0*c&@A!QH>Iig$KLM!4lyragOq8_DS=3btmB_~ILrYvh3hmJ87wf%SoP z@a+jxQulRaCFOtn!m0VzZO&T@AC*Ys%y%Z&JO6QdyubQRS^L&mv5Buf(U@5~m!t6M z7IN>pN8QZ{F{-Cd@h|j>O+0XG50~kOdHV8f6?aklPa?0*nB+aIETf|80cxF0$SHc# zaMf6iqFj!G5SRa62=(vk6NappSy`mlSewTX74<0U^ zc;Z9jU)i1$dsG#%x8tVB>f-j)ONJkudNFC5<528)T5T~acY(H&y<18x^qc=cy{L+Y z2hl+&9$D32&37TL%=_1wweVo1&2;XCqxXtltq=_#e4x?k0lg#jmQIxyuB7gx`zY=$y}5seQ}2tnB7b$|^ADtfv^5Q> zXgG?7B<;3rS2}UehQ``^wVFnH`V5O>&r?&RQ(9**YfC0g+NBt_fp$?2EDL*T?1{MK zYjS(ehWoiCB3g+4o6dyp{jYtb??01ei+S_?>-Ah#2$Z&9?V^RF9djBe2l9)#xV0k! z(k%5Iw#6 z;iz+cdd-BQchb5c)ic(={cc(mN{%`~U7@Cf7D)as_M+GiQY->>R!+A~E(ex{GNIn| z>W2(&zGV8rO+Aw~s~<)_BL_u>u?Q<+bS{eOY1d9TS1395UC1p*pj{yXOX3J@QHa2j z)cWps3G%rWuep!K#YpsCu-`4NVvRoYM@;Sw9#w;RJp*bKc}IHsE}69VASvpljhKV_ zv1y~-v5PM{hl|e$eOR=wER~fJ{-wBc*HU#Am99bCmbm;$B%f z-OI=!Uw*!aX;K2 z;^j4alS0QTBr&cKjT~~@#gQKEwLqVNy;F?{^jA0yY#)d~+8lwc2t5u&bM2yCp{`KV zoCf_eyCLoOC*0o&h+PXq*=<=oFb2A`n&EnY0j0Je@Hd|aMb)mVof1e zI6msxL>>a=z+8w{5goo?`eeexwd>0qx zK>4)yny1}sel)t;dn6$T`zt;gpmq^~xlrr;oob|xy&ZDM5!m-(E=23K3`ecWIBHEs zB3I)IE!1mE-Tr9IWa0>{1C$)m>K&6;k2;xC2e==7*N3fBV;x}K2yx(t>ty3oJ)K)W zZYKxDEDUeSh}CCL(b{>Pe_wr<`!J$$*Phiw}r-@JRF@Ae^k%gIrvUI2l0j=2!6 z=e2ojeJJ_%!bVqxi-vPJS7^J9ZZWwA_eo^A5Usg#lpKzdLn3voO_Yz<2bP5#^7?pm zMIre@yPj^dU7gfBKfx%By$|+EY8N2=ZFknnLf&Z=4H5Ozvtp+IPx<^kszx{pAr(R* zzbJ?GaLnkeXj~P6xsV?9B>b#F?f>X>LVdmSgS$Y%&QCOgay@#mUOt2^Dd?>T`IPFT zzRc~TaIS`Zmx`=fezrTYLrL#U$h&wby3sM}K^Hcl$V zMNtt%^1d5{`ClDdB=48|lb#QkQLj1B*p4M}1pR_1QY<}0GlY(kW@pt{gIKfbrg!lk z@_c3?ulUxZI{ww0lWAPytMWs#Q~bZDm=$P_z|~XC#n-8C?O4Oj+*sc0+B}Kb6>5~; zg0a@a)^avua$8Ks4tH%fdAvq|Fgj zgLPNa-6d1cwl*KUuqZrmjrpD*VRNAt3PxbA{g*Ps4=yzNDHuUo>@n5kS|k>Q>3%qI zh-h`=EM~Slr*lc~bR*s;Vy*FZUJwFv@gDAlA{(N)CzCv1dRI3#LJ}Y5Oar#}Smv_HdXB(drHsv=63H zSQkTkQ#U71Zw)Qq7w4TxZ_U~V(%?1N;kmt`D$~n*Z;4hCe?dg^Z!*L5hPcr#whyF^ zZ35ehx~qTk0jJ+zWxT|HTS(G-p~I#uO8=xz)6F0AKn|yY2;>TLA)2)hZ~T@Ff2g`o z7QLQ`>x>+s=1W&aU`gub-qX#UCFe_c4|i?DbcLKy+O``Z=5MR+UffXL>(Dldt#YD% zww%xK4?bW$GDKjVV=hDs@#*;+L)nMTX>w~hyR}A1|~H(l}nJ7j-Jta=MRtTJH{{95zk7 zZymEJ+~Y!A;%njBN)AL=Tbj_Y4zs?35w={?73Q)f8SPf9*DZ4Q{CMwkRp(f1XiHpI zhqpfOJefR3%YkLtG;v6FMeU|V%eqRAf)JR?rt`Q8DXygAO22DqSLl%|tW6=59C--j z7jq%n)L+%tDtaydYsqR5bD>7^5KWy*FaHp!I^3w+n z`XcC~P>h_lvt#rLN)?&nShq;Ww0JqJjfx`-)`v9sZpNJtr#ZLm?BI?*GD62l*{W{H zQhX?!LGZN<=f&Hzw?xLfY3;_#=z6B{Bk4#jUFV-4k4rprtd6R4M4zKilncN}U8$ky|WRINw1IISo4&kxz{@Y%4H519FAE526c3;4er6p{r_xokeZ8vptmwh;#wOZDHz)lmBL!z|kIiU~F5%>$W zLF>Ix+Iszj2u^?6c&IcVptL=IWz!~3>i?$uB_!@oRfao2Fd0Btl<((j5#>CJD2F2p zMPK`@F8QSJ=k5o zV!ZaLtxhZ_#JiQ8WD??y+r#p?wR_!R1FvB#UdSPiiOREdn#vakN8Dc?QwTV1hPzof zmZ(S}_ohY^SB~P!LraXdF{`(N5e3Up5DkeR2opeI&A_8-vd_tVc`TD&IAN6wYJUfBjf(VC`%j(yf=dOD`{EsU4{yB}+onf5O z*LiFM?v${)L5H|I34 z){q`=QC6dhuxI;VN^|XE8?*>)wfPZ8-nm}w_PyxV@tU(94mm*%b*puihn%lxxSEv^ zJ@sGSU$VURnykEty+OaLS6lq`57HZsq^saB8AgK>-jZ&w_&xX2jP->6Zg#^@C>psj zwlp=0t7X>6Ok6EMvAWocI1D-8{8#^5(?~)8}3T z8n|+Y=WJ=c1W(H1=~#QBm2P(6xkZk!xfG{52AMs-Yrhj(2)r?Z_djedLfh|jdqn+z z7;)$qx)~CEO9XF^wUaE(WE142{Uey4ukBIsYb@0{XSyG&&zfxoIFs%lRQpEx zxmvMtfj{UsZcCJ_U0wD+4wSrDmo&fON+UUHfg^_eli{D7MSAD4yf<7Id{?np z6KA^DOkCp}_-2rb{vAk&k`uRNyQ2pc$`PXJ`Q7eyGh>`(FAmZx6ZRLZ1I|_XTjJfe z!*@ELoEfCzKnA)(dYnceNwSC0zJglgHl|MYPa7MV-{4cH-C0fp%SElLw;&FD?*7=O zW1|N?86;7oh~RRZ*w@QTT=kzr+}Zk|KEtM|&QS}hB>)2J*`^6yFv6A_oeR-IBqmi2 zo!F2RSuuI4Y|$#!uc6jOh{FS`()@Z?XtWffMXNNw=^v$XZ&cA2^Or1xR?DsA=3f{3 zlNK85p}fItBKln!+QFiJ-g-5Z7GhN8=5kQec<=t%U$OltT+yKjpAD;MZgm^vH0V_u zESLIVq%DMcXH?pkNv*d{Ubsz@=UuMbOZwe4`mR>!_coVlJ<53E$^H)d(G*A8diR{G z>7k;s*yV1LbYRP(ayMM}vcGw)d2Q8xH#A=RsJ<-IyOLM4*#{1mg_0v}6^*^c4rkiP zVVVY(yK3jle$`Ln^y>)ryPl_wqXS&V#OMv}y`P(Mo!zwDpdWVlrxM%1=0a{&Oxg79p%eW+ zjD!~`uAmJro0;lgh&P;Yt~PFa*(r3csJvKR-EadN#d5i>ZfV#t6f@`PNR`^Eox}NE zRxVp-XwYd!5Ws<~l5zP_ZzHAz5HZ)$Ap2`uytSG@lbf8=6 z<554Di|Y#72kQp|O{-a0UW=lc*DsZpIrH0hasP^1Bf}HeXfZ10zz>U@AFoMp?>Ig} z;xA~sxJJ(8@B&-nb3o*f^$dBvWpv-p2Lm_R9-xN+lx}f zciYm0fOekOa}o{YkaLyR;&mtKhfVJCC;RFs=C)jvoYR=Re4DfNUFOER{AX?oF z3;JDFgSICk4mnrQx3lpz=;u!`ne-iAC-)97L*Psp(JG#PFyb%->IykjZ#z|slPmuy z>b*NSUcc-vcI3osdfMlL6S+{u%c^T$C9%CI&3E=JBI`4+(OPa*beKEhO2`O@AJgIdv$9h8uqPEo2FbAVYots{UtgVqOBbCZ!)Z;Zq@I@ z)0!Ne%fVZe7GYPTjK4!RN_9@Y52dZ`8c)Vzhz7PIw35I_A)g`lWd|*J&@Y+SNNwL0 zd>1-jP=l5eqE2bEB5eFb>z%39k0)Zh3LDx>;%?X6RDZ%e|Da=bA4fV=bTPtLLBJYEKti?K5-4f;1(A}1ID717G~ z>HDeMrPEobWD_n2=E7JVoCfAX8U=F2>a`p)ubHrVWk%g`ixv zq=2hj58$dJ8MWHLc5R(opCR~#k1`~O9es@C7D2yU%}=23G)Conla;k|JGTG-SqbrO z>j2ZH_qm#tMCY=)%HLmMzZ9f%Us2Mt32L?USCDpbzt*O?2N1M#;RSsnwsWEZV=auY zC$2g=lYE+~-2Y)~ORU|YrWt}+Lr|M$%^{E@z!?9^)H$Em5Zd&WWLGdcvwk-i6N6T3 zM^hz^dlNtM=ANsEDhmqEqd_@>{Vz4A3noNszdQ5uMy>#d)wT2w**B}j!Sn+r{ zS!q!#FRRkgP|zlXhcoY>Jqjhq<4rC){}$=vrH(qv=I3ow()>^h<5_UTu<(hvC-rmMfC!K;hIo81oOVa#GJhmv~Z-S?$^HchqJnUUp-?_)eM2Yy`^rtv9w;$ai&hzakvUVk|oz-ac_C47XPfnF+;fLE~_~WLSePE=m-j==Zr$&GMTHalG?PQ6$ zkRC@=Th*{p+o8$sOCOI@{Z+sTBCsSOj{lhwsn~Uz+p*+0#ucJD;#={KlU!rC=e9W? z3N$Lbn@6PkbE=xP#q{Cn{@<1DtmtBBfHPufX|LmmB#Bx?%fNm`hGP zckmaK2}@GD_rni5T{d;~#;khP!Cctpv8|}p!PmcWj$Z8MO-xT`2+YN4q%L0JRJg0P z=loijwOW)MWl}Mh&n|MdUVPA-{A*=~K>Z+Eog~j0>%KG7>{NgAP`ZEnfs%T4Xy+{p z{Orvo_1?DqZamA~ZMV4H9vC5Ml&+`F_&j=<=OWL7BSx+)=g#X`L1v6glK2bK7=C+t z?&+ii)m9T0_jRwVE-kyN6I=L8YB(+TtWrW0je2YPy0!Y3mMdQ3G!TK@swnIYe{uUR P?w?N%Tm!NQ<1PI^=t8$f diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json index 4074b93881..1ecafe3f8d 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json @@ -15,11 +15,11 @@ ], "printable_area": [ "0x0", - "250x0", - "250x250", - "0x250" + "220x0", + "220x220", + "0x220" ], - "printable_height": "250", + "printable_height": "265", "extruder_clearance_height_to_rod": "36", "extruder_clearance_height_to_lid": "140", "extruder_clearance_radius": "65", @@ -28,8 +28,8 @@ "support_chamber_temp_control": "1", "auxiliary_fan": "0", "machine_max_acceleration_extruding": [ - "20000", - "20000" + "5000", + "5000" ], "machine_max_acceleration_retracting": [ "5000", @@ -40,12 +40,12 @@ "20000" ], "machine_max_acceleration_x": [ - "20000", - "20000" + "8000", + "8000" ], "machine_max_acceleration_y": [ - "20000", - "20000" + "8000", + "8000" ], "machine_max_acceleration_z": [ "500", @@ -56,36 +56,36 @@ "5000" ], "machine_max_speed_e": [ - "25", - "25" + "100", + "100" ], "machine_max_speed_x": [ - "500", - "200" + "600", + "600" ], "machine_max_speed_y": [ - "500", - "200" + "600", + "600" ], "machine_max_speed_z": [ - "12", - "12" + "30", + "30" ], "machine_max_jerk_e": [ "2.5", "2.5" ], "machine_max_jerk_x": [ - "9", - "9" + "10", + "10" ], "machine_max_jerk_y": [ - "9", - "9" + "10", + "10" ], "machine_max_jerk_z": [ - "0.2", - "0.4" + "2", + "2" ], "max_layer_height": [ "0.32" @@ -118,7 +118,7 @@ "default_filament_profile": [ "Creality Generic PLA" ], - "machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM109 S[material_print_temperature_layer_0] \nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800", + "machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \n\nM140 S[bed_temperature_initial_layer_single] ;Set final bed temp\nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM190 S[bed_temperature_initial_layer_single] ;Wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ;Wait for nozzle temp to stabilize\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800", "machine_end_gcode": "G91 ;Relative positioning \nG1 E-2 F2700 ;Retract a bit \nG1 E-2 Z0.2 F2400 ;Retract and raise Z \nG1 X5 Y5 F3000 ;Wipe out \nG1 Z3 ;Raise Z more \nG90 ;Absolute positioning \nG1 X2 Y218 F3000 ;Present print \nM106 S0 ;Turn-off fan \nM104 S0 ;Turn-off hotend \nM140 S0 ;Turn-off bed \nM84 X Y E ;Disable all steppers but Z", "scan_first_layer": "0", "thumbnails": [ diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json index cba645a1b8..6214d686b7 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json @@ -15,11 +15,11 @@ ], "printable_area": [ "0x0", - "250x0", - "250x250", - "0x250" + "220x0", + "220x220", + "0x220" ], - "printable_height": "250", + "printable_height": "265", "extruder_clearance_height_to_rod": "36", "extruder_clearance_height_to_lid": "140", "extruder_clearance_radius": "65", @@ -28,8 +28,8 @@ "support_chamber_temp_control": "1", "auxiliary_fan": "0", "machine_max_acceleration_extruding": [ - "20000", - "20000" + "5000", + "5000" ], "machine_max_acceleration_retracting": [ "5000", @@ -40,12 +40,12 @@ "20000" ], "machine_max_acceleration_x": [ - "20000", - "20000" + "8000", + "8000" ], "machine_max_acceleration_y": [ - "20000", - "20000" + "8000", + "8000" ], "machine_max_acceleration_z": [ "500", @@ -56,36 +56,36 @@ "5000" ], "machine_max_speed_e": [ - "25", - "25" + "100", + "100" ], "machine_max_speed_x": [ - "500", - "200" + "600", + "600" ], "machine_max_speed_y": [ - "500", - "200" + "600", + "600" ], "machine_max_speed_z": [ - "12", - "12" + "30", + "30" ], "machine_max_jerk_e": [ "2.5", "2.5" ], "machine_max_jerk_x": [ - "9", - "9" + "10", + "10" ], "machine_max_jerk_y": [ - "9", - "9" + "10", + "10" ], "machine_max_jerk_z": [ - "0.2", - "0.4" + "2", + "2" ], "max_layer_height": [ "0.32" @@ -118,7 +118,7 @@ "default_filament_profile": [ "Creality Generic PLA" ], - "machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM109 S[material_print_temperature_layer_0] \nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800", + "machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \n\nM140 S[bed_temperature_initial_layer_single] ;Set final bed temp\nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM190 S[bed_temperature_initial_layer_single] ;Wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ;Wait for nozzle temp to stabilize\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800", "machine_end_gcode": "G91 ;Relative positioning \nG1 E-2 F2700 ;Retract a bit \nG1 E-2 Z0.2 F2400 ;Retract and raise Z \nG1 X5 Y5 F3000 ;Wipe out \nG1 Z3 ;Raise Z more \nG90 ;Absolute positioning \nG1 X2 Y218 F3000 ;Present print \nM106 S0 ;Turn-off fan \nM104 S0 ;Turn-off hotend \nM140 S0 ;Turn-off bed \nM84 X Y E ;Disable all steppers but Z", "scan_first_layer": "0", "thumbnails": [ diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json index 7689480ce9..5f56e1ff87 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json @@ -15,11 +15,11 @@ ], "printable_area": [ "0x0", - "250x0", - "250x250", - "0x250" + "220x0", + "220x220", + "0x220" ], - "printable_height": "250", + "printable_height": "265", "extruder_clearance_height_to_rod": "36", "extruder_clearance_height_to_lid": "140", "extruder_clearance_radius": "65", @@ -28,8 +28,8 @@ "support_chamber_temp_control": "1", "auxiliary_fan": "0", "machine_max_acceleration_extruding": [ - "20000", - "20000" + "5000", + "5000" ], "machine_max_acceleration_retracting": [ "5000", @@ -40,12 +40,12 @@ "20000" ], "machine_max_acceleration_x": [ - "20000", - "20000" + "8000", + "8000" ], "machine_max_acceleration_y": [ - "20000", - "20000" + "8000", + "8000" ], "machine_max_acceleration_z": [ "500", @@ -56,36 +56,36 @@ "5000" ], "machine_max_speed_e": [ - "25", - "25" + "100", + "100" ], "machine_max_speed_x": [ - "500", - "200" + "600", + "600" ], "machine_max_speed_y": [ - "500", - "200" + "600", + "600" ], "machine_max_speed_z": [ - "12", - "12" + "30", + "30" ], "machine_max_jerk_e": [ "2.5", "2.5" ], "machine_max_jerk_x": [ - "9", - "9" + "10", + "10" ], "machine_max_jerk_y": [ - "9", - "9" + "10", + "10" ], "machine_max_jerk_z": [ - "0.2", - "0.4" + "2", + "2" ], "max_layer_height": [ "0.32" @@ -118,7 +118,7 @@ "default_filament_profile": [ "Creality Generic PLA" ], - "machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM109 S[material_print_temperature_layer_0] \nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800", + "machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \n\nM140 S[bed_temperature_initial_layer_single] ;Set final bed temp\nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM190 S[bed_temperature_initial_layer_single] ;Wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ;Wait for nozzle temp to stabilize\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800", "machine_end_gcode": "G91 ;Relative positioning \nG1 E-2 F2700 ;Retract a bit \nG1 E-2 Z0.2 F2400 ;Retract and raise Z \nG1 X5 Y5 F3000 ;Wipe out \nG1 Z3 ;Raise Z more \nG90 ;Absolute positioning \nG1 X2 Y218 F3000 ;Present print \nM106 S0 ;Turn-off fan \nM104 S0 ;Turn-off hotend \nM140 S0 ;Turn-off bed \nM84 X Y E ;Disable all steppers but Z", "scan_first_layer": "0", "thumbnails": [ diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json index 1420e1213a..00d3f3ff44 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json @@ -15,11 +15,11 @@ ], "printable_area": [ "0x0", - "250x0", - "250x250", - "0x250" + "220x0", + "220x220", + "0x220" ], - "printable_height": "250", + "printable_height": "265", "extruder_clearance_height_to_rod": "36", "extruder_clearance_height_to_lid": "140", "extruder_clearance_radius": "65", @@ -28,8 +28,8 @@ "support_chamber_temp_control": "1", "auxiliary_fan": "0", "machine_max_acceleration_extruding": [ - "20000", - "20000" + "5000", + "5000" ], "machine_max_acceleration_retracting": [ "5000", @@ -40,12 +40,12 @@ "20000" ], "machine_max_acceleration_x": [ - "20000", - "20000" + "8000", + "8000" ], "machine_max_acceleration_y": [ - "20000", - "20000" + "8000", + "8000" ], "machine_max_acceleration_z": [ "500", @@ -56,36 +56,36 @@ "5000" ], "machine_max_speed_e": [ - "25", - "25" + "100", + "100" ], "machine_max_speed_x": [ - "500", - "200" + "600", + "600" ], "machine_max_speed_y": [ - "500", - "200" + "600", + "600" ], "machine_max_speed_z": [ - "12", - "12" + "30", + "30" ], "machine_max_jerk_e": [ "2.5", "2.5" ], "machine_max_jerk_x": [ - "9", - "9" + "10", + "10" ], "machine_max_jerk_y": [ - "9", - "9" + "10", + "10" ], "machine_max_jerk_z": [ - "0.2", - "0.4" + "2", + "2" ], "max_layer_height": [ "0.32" @@ -118,7 +118,7 @@ "default_filament_profile": [ "Creality Generic PLA" ], - "machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM109 S[material_print_temperature_layer_0] \nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800", + "machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \n\nM140 S[bed_temperature_initial_layer_single] ;Set final bed temp\nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM190 S[bed_temperature_initial_layer_single] ;Wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ;Wait for nozzle temp to stabilize\nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800", "machine_end_gcode": "G91 ;Relative positioning \nG1 E-2 F2700 ;Retract a bit \nG1 E-2 Z0.2 F2400 ;Retract and raise Z \nG1 X5 Y5 F3000 ;Wipe out \nG1 Z3 ;Raise Z more \nG90 ;Absolute positioning \nG1 X2 Y218 F3000 ;Present print \nM106 S0 ;Turn-off fan \nM104 S0 ;Turn-off hotend \nM140 S0 ;Turn-off bed \nM84 X Y E ;Disable all steppers but Z", "scan_first_layer": "0", "thumbnails": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json index 068b22b074..158e30b6e7 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json @@ -102,9 +102,6 @@ "deretraction_speed": [ "45" ], - "z_hop": [ - "0" - ], "single_extruder_multi_material": "1", "change_filament_gcode": "M600", "machine_pause_gcode": "M25", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json index a3eeeedbad..1743f749ce 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json @@ -102,9 +102,6 @@ "deretraction_speed": [ "45" ], - "z_hop": [ - "0" - ], "single_extruder_multi_material": "1", "change_filament_gcode": "M600", "machine_pause_gcode": "M25", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json index d9dd67376c..445e0b0bc3 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json @@ -102,9 +102,6 @@ "deretraction_speed": [ "45" ], - "z_hop": [ - "0" - ], "single_extruder_multi_material": "1", "change_filament_gcode": "M600", "machine_pause_gcode": "M25", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json index 0657694350..f8930b0d96 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json @@ -12,9 +12,10 @@ "nozzle_diameter": [ "0.8" ], + "bed_shape": "rectangular", "printable_area": [ "0x0", - "3000x0", + "300x0", "300x300", "0x300" ], @@ -102,9 +103,6 @@ "deretraction_speed": [ "45" ], - "z_hop": [ - "0" - ], "single_extruder_multi_material": "1", "change_filament_gcode": "M600", "machine_pause_gcode": "M25", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json index 67a76a08d4..df750e458d 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json @@ -95,7 +95,7 @@ "2" ], "retract_before_wipe": [ - "0%" + "100%" ], "retraction_length": [ "0.5" @@ -104,10 +104,10 @@ "1" ], "retraction_speed": [ - "40" + "30" ], "deretraction_speed": [ - "40" + "0" ], "z_hop": [ "0.2" @@ -119,8 +119,8 @@ "default_filament_profile": [ "Creality Generic PLA @Ender-3V3-all" ], - "machine_start_gcode": "M220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nM140 S[bed_temperature_initial_layer_single] ;Set final bed temp\nG28 ;Home\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nM104 S[nozzle_temperature_initial_layer] ;Set final nozzle temp\nG1 X-2.0 Y20 Z0.28 F5000.0 ;Move to start position\nM190 S[bed_temperature_initial_layer_single] ;Wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ;Wait for nozzle temp to stabilize\nG1 X-2.0 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X-1.7 Y145.0 Z0.28 F5000.0 ;Move to side a little\nG1 X-1.7 Y30 Z0.28 F1500.0 E15 ;Draw the second line\nG92 E0 ;Reset Extruder", - "machine_end_gcode": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z20 ;Raise Z more\nG90 ;Absolute positionning\nG1 X2 Y218 F3000 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z", + "machine_start_gcode": "SET_GCODE_VARIABLE MACRO=PRINTER_PARAM VARIABLE=fan0_min VALUE=30 ;compensate for fan speed\nSET_VELOCITY_LIMIT ACCEL_TO_DECEL=2500 ;revert accel_to_decel back to 2500\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nM140 S[bed_temperature_initial_layer_single] ;Set bed temp\nG28 X Y ;Home XY axes\nM190 S[bed_temperature_initial_layer_single] ;Wait for bed temp to stabilize\nG28 Z ;Home Z axis & load bed mesh\nBED_MESH_CALIBRATE PROBE_COUNT=6,6 ;Auto bed level\n\nM104 S[nozzle_temperature_initial_layer] ;Set nozzle temp\nG92 E0 ;Reset Extruder\nG1 X-2.0 Y20 Z0.3 F5000.0 ;Move to start position\nM109 S[nozzle_temperature_initial_layer] ;Wait for nozzle temp to stabilize\nG1 Z0.2 ;Lower nozzle to printing height\nG1 Y145.0 F1500.0 E15 ;Draw the first line\nG1 X-1.7 F5000.0 ;Move to side a little\nG1 Y30 F1500.0 E15 ;Draw the second line\nG92 E0 ;Reset Extruder", + "machine_end_gcode": "G91 ;Relative positionning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z{if max_layer_z < 50}25{else}5{endif} ;Raise Z more\nG90 ;Absolute positionning\nG1 X2 Y218 F3000 ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z", "scan_first_layer": "0", "thumbnails": [ "96x96", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json new file mode 100644 index 0000000000..08f49d3512 --- /dev/null +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.12mm Fine @Creality CR10SE 0.2", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.12", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "5", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.25", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.25", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.25", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.25", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.25", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.25", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "4", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.25", + "top_shell_layers": "5", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10SE 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json new file mode 100644 index 0000000000..0763c0eef7 --- /dev/null +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.12mm Fine @Creality CR10SE 0.4", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.12", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "5", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.42", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.42", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.45", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.42", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.42", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "4", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.42", + "top_shell_layers": "5", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json new file mode 100644 index 0000000000..7aa30a730a --- /dev/null +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.12mm Fine @Creality CR10SE 0.6", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.12", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "5", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.65", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.65", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.65", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.65", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.65", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.65", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "4", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.65", + "top_shell_layers": "5", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json new file mode 100644 index 0000000000..9fced98b54 --- /dev/null +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.12mm Fine @Creality CR10SE 0.8", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.12", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "5", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.85", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.85", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.85", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.85", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.85", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.85", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "4", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.85", + "top_shell_layers": "5", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json index cb7661aff6..9521fc51e4 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json @@ -23,10 +23,10 @@ "top_surface_acceleration": "5000", "bridge_no_support": "0", "draft_shield": "disabled", - "elefant_foot_compensation": "0.1", + "elefant_foot_compensation": "0", "outer_wall_line_width": "0.42", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.42", + "line_width": "0.45", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -81,7 +81,7 @@ "support_base_pattern": "rectilinear", "support_base_pattern_spacing": "2.5", "support_speed": "200", - "support_threshold_angle": "45", + "support_threshold_angle": "30", "support_object_xy_distance": "60%", "tree_support_branch_angle": "40", "tree_support_wall_count": "0", @@ -92,15 +92,17 @@ "top_shell_thickness": "0.8", "initial_layer_speed": "50", "initial_layer_infill_speed": "105", - "outer_wall_speed": "250", + "outer_wall_speed": "200", "inner_wall_speed": "300", - "internal_solid_infill_speed": "250", + "internal_solid_infill_speed": "300", "top_surface_speed": "250", "gap_infill_speed": "200", "sparse_infill_speed": "300", "travel_speed": "400", "enable_prime_tower": "0", "wipe_tower_no_sparse_layers": "0", + "role_based_wipe_speed" : "0", + "wipe_speed": "200", "prime_tower_width": "60", "xy_hole_compensation": "0", "xy_contour_compensation": "0", @@ -111,6 +113,7 @@ "top_surface_jerk": "7", "initial_layer_jerk": "7", "travel_jerk": "7", + "accel_to_decel_enable": "0", "compatible_printers": [ "Creality Ender-3 V3 KE 0.4 nozzle" ] diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json index f4dc4ea367..0fbd9d9218 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.22", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.26", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.26", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.25", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.25", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.22", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.2", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.18", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "4", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.22", "top_shell_layers": "5", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json index a1e2e3e46c..bd5a636f29 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.62", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.66", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.66", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.65", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.65", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.62", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.2", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.58", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "4", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.62", "top_shell_layers": "5", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json index 30a8b1627a..d8b251a1fd 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.82", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.86", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.86", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.85", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.85", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.82", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.2", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.78", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "4", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.82", "top_shell_layers": "5", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json new file mode 100644 index 0000000000..644ddc4fed --- /dev/null +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.16mm Optimal @Creality CR10SE 0.2", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.16", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.25", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.25", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.25", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.25", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.25", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.2", + "support_filament": "0", + "support_line_width": "0.25", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "3", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.25", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json new file mode 100644 index 0000000000..34f855f799 --- /dev/null +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.16mm Optimal @Creality CR10SE 0.4", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.16", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.42", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.42", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.45", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.42", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.2", + "support_filament": "0", + "support_line_width": "0.42", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "3", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.42", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json new file mode 100644 index 0000000000..6b2ec5c2fe --- /dev/null +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.16mm Optimal @Creality CR10SE 0.6", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.16", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.63", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.65", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.65", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.65", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.63", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.2", + "support_filament": "0", + "support_line_width": "0.63", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "3", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.63", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json new file mode 100644 index 0000000000..11285e327a --- /dev/null +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.16mm Optimal @Creality CR10SE 0.8", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.16", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.85", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.85", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.85", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.85", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.85", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.2", + "support_filament": "0", + "support_line_width": "0.85", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "3", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.85", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json index 02c6ca2b97..e38e4c4089 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json @@ -24,19 +24,19 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0.1", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.45", + "outer_wall_line_width": "0.25", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.45", + "line_width": "0.25", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", "initial_layer_acceleration": "0", "travel_acceleration": "0", "inner_wall_acceleration": "0", - "initial_layer_line_width": "0.42", + "initial_layer_line_width": "0.22", "initial_layer_print_height": "0.2", "infill_combination": "1", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.25", "infill_wall_overlap": "25%", "interface_shells": "0", "ironing_flow": "15%", @@ -50,7 +50,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.25", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -59,7 +59,7 @@ "skirt_height": "2", "skirt_loops": "2", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", + "internal_solid_infill_line_width": "0.25", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -69,7 +69,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.18", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -85,7 +85,7 @@ "tree_support_wall_count": "0", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.4", + "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", "initial_layer_speed": "35%", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json index 99e42c2e21..45ca5389c6 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json @@ -59,7 +59,7 @@ "skirt_height": "2", "skirt_loops": "2", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", + "internal_solid_infill_line_width": "0.45", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json index 7ced645cdf..0bd95f7ac4 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json @@ -24,19 +24,19 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0.1", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.45", + "outer_wall_line_width": "0.65", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.45", + "line_width": "0.65", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", "initial_layer_acceleration": "0", "travel_acceleration": "0", "inner_wall_acceleration": "0", - "initial_layer_line_width": "0.42", + "initial_layer_line_width": "0.62", "initial_layer_print_height": "0.2", "infill_combination": "1", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.65", "infill_wall_overlap": "25%", "interface_shells": "0", "ironing_flow": "15%", @@ -50,7 +50,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.65", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -59,7 +59,7 @@ "skirt_height": "2", "skirt_loops": "2", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", + "internal_solid_infill_line_width": "0.65", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -69,7 +69,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.58", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -85,7 +85,7 @@ "tree_support_wall_count": "0", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.4", + "top_surface_line_width": "0.6", "top_shell_layers": "7", "top_shell_thickness": "0.8", "initial_layer_speed": "35%", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json index 8df4a85ac1..bcd0c9d992 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json @@ -24,19 +24,19 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0.1", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.45", + "outer_wall_line_width": "0.85", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.45", + "line_width": "0.85", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", "initial_layer_acceleration": "0", "travel_acceleration": "0", "inner_wall_acceleration": "0", - "initial_layer_line_width": "0.42", + "initial_layer_line_width": "0.82", "initial_layer_print_height": "0.2", "infill_combination": "1", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.85", "infill_wall_overlap": "25%", "interface_shells": "0", "ironing_flow": "15%", @@ -50,7 +50,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.85", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -59,7 +59,7 @@ "skirt_height": "2", "skirt_loops": "2", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", + "internal_solid_infill_line_width": "0.85", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -69,7 +69,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.78", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -85,7 +85,7 @@ "tree_support_wall_count": "0", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.4", + "top_surface_line_width": "0.8", "top_shell_layers": "7", "top_shell_thickness": "0.8", "initial_layer_speed": "35%", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json index 4d815b6e11..5584669a73 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json @@ -23,10 +23,10 @@ "top_surface_acceleration": "5000", "bridge_no_support": "0", "draft_shield": "disabled", - "elefant_foot_compensation": "0.1", + "elefant_foot_compensation": "0", "outer_wall_line_width": "0.42", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.42", + "line_width": "0.45", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -68,7 +68,7 @@ "support_type": "normal(auto)", "support_style": "grid", "support_on_build_plate_only": "0", - "support_top_z_distance": "0.2", + "support_top_z_distance": "0.16", "support_filament": "0", "support_line_width": "0.42", "support_interface_loop_pattern": "0", @@ -81,7 +81,7 @@ "support_base_pattern": "rectilinear", "support_base_pattern_spacing": "2.5", "support_speed": "200", - "support_threshold_angle": "45", + "support_threshold_angle": "30", "support_object_xy_distance": "60%", "tree_support_branch_angle": "40", "tree_support_wall_count": "0", @@ -92,15 +92,17 @@ "top_shell_thickness": "0.8", "initial_layer_speed": "50", "initial_layer_infill_speed": "105", - "outer_wall_speed": "250", + "outer_wall_speed": "200", "inner_wall_speed": "300", - "internal_solid_infill_speed": "250", + "internal_solid_infill_speed": "300", "top_surface_speed": "250", "gap_infill_speed": "200", "sparse_infill_speed": "300", "travel_speed": "400", "enable_prime_tower": "0", "wipe_tower_no_sparse_layers": "0", + "role_based_wipe_speed" : "0", + "wipe_speed": "200", "prime_tower_width": "60", "xy_hole_compensation": "0", "xy_contour_compensation": "0", @@ -111,6 +113,7 @@ "top_surface_jerk": "7", "initial_layer_jerk": "7", "travel_jerk": "7", + "accel_to_decel_enable": "0", "compatible_printers": [ "Creality Ender-3 V3 KE 0.4 nozzle" ] diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json index 21823a3011..8e79d226d0 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.22", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.26", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.26", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.25", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.25", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.22", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.2", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.18", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.22", "top_shell_layers": "6", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json index 9075f1e446..5c9cd487c7 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.62", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.66", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.66", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.65", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.65", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.62", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.2", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.58", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.62", "top_shell_layers": "6", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json index cc50cdfef3..c9fdcc4187 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.82", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.86", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.86", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.85", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.85", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.82", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.2", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.78", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.82", "top_shell_layers": "6", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json index 6a5c085259..a52c72adb6 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json @@ -1,44 +1,118 @@ { - "type": "process", - "setting_id": "GP004", - "name": "0.20mm Standard @Creality CR10SE 0.2", - "from": "system", - "inherits": "fdm_process_creality_common", - "instantiation": "true", - "bottom_shell_layers": "4", - "infill_combination": "1", - "infill_wall_overlap": "20%", - "initial_layer_acceleration": "3000", - "initial_layer_infill_speed": "150", - "initial_layer_travel_speed": "120", - "inner_wall_speed": "300", - "internal_solid_infill_line_width": "0.45", - "internal_solid_infill_speed": "300", - "outer_wall_acceleration": "2300", - "outer_wall_line_width": "0.42", - "outer_wall_speed": "200", - "overhang_3_4_speed": "35", - "reduce_crossing_wall": "1", - "seam_gap": "15%", - "skirt_distance": "8", - "skirt_loops": "1", - "slow_down_layers": "2", - "sparse_infill_density": "10%", - "sparse_infill_speed": "300", - "support_base_pattern_spacing": "4", - "support_bottom_z_distance": "0.4", - "support_interface_bottom_layers": "1", - "support_interface_pattern": "rectilinear", - "support_interface_top_layers": "1", - "support_line_width": "0.42", - "support_object_xy_distance": "0.8", - "support_style": "snug", - "support_threshold_angle": "60", - "top_surface_line_width": "0.42", - "top_surface_speed": "120", - "travel_acceleration": "5000", - "wall_loops": "2", - "compatible_printers": [ - "Creality CR-10 SE 0.2 nozzle" - ] + "type": "process", + "setting_id": "GP004", + "name": "0.20mm Standard @Creality CR10SE 0.2", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.2", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.25", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.25", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.25", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.25", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.25", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.25", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.25", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.2 nozzle" + ] } \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json index 9a3aa71cd7..2c7643b16c 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json @@ -1,44 +1,118 @@ { - "type": "process", - "setting_id": "GP004", - "name": "0.20mm Standard @Creality CR10SE 0.4", - "from": "system", - "inherits": "fdm_process_creality_common", - "instantiation": "true", - "bottom_shell_layers": "4", - "infill_combination": "1", - "infill_wall_overlap": "20%", - "initial_layer_acceleration": "3000", - "initial_layer_infill_speed": "150", - "initial_layer_travel_speed": "120", - "inner_wall_speed": "300", - "internal_solid_infill_line_width": "0.45", - "internal_solid_infill_speed": "300", - "outer_wall_acceleration": "2300", - "outer_wall_line_width": "0.42", - "outer_wall_speed": "200", - "overhang_3_4_speed": "35", - "reduce_crossing_wall": "1", - "seam_gap": "15%", - "skirt_distance": "8", - "skirt_loops": "1", - "slow_down_layers": "2", - "sparse_infill_density": "10%", - "sparse_infill_speed": "300", - "support_base_pattern_spacing": "4", - "support_bottom_z_distance": "0.4", - "support_interface_bottom_layers": "1", - "support_interface_pattern": "rectilinear", - "support_interface_top_layers": "1", - "support_line_width": "0.42", - "support_object_xy_distance": "0.8", - "support_style": "snug", - "support_threshold_angle": "60", - "top_surface_line_width": "0.42", - "top_surface_speed": "120", - "travel_acceleration": "5000", - "wall_loops": "2", - "compatible_printers": [ - "Creality CR-10 SE 0.4 nozzle" - ] + "type": "process", + "setting_id": "GP004", + "name": "0.20mm Standard @Creality CR10SE 0.4", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.2", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.42", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.42", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.45", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.42", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.42", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.42", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.4 nozzle" + ] } \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json index ba652dd607..e6c4204f03 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json @@ -1,44 +1,118 @@ { - "type": "process", - "setting_id": "GP004", - "name": "0.20mm Standard @Creality CR10SE 0.6", - "from": "system", - "inherits": "fdm_process_creality_common", - "instantiation": "true", - "bottom_shell_layers": "4", - "infill_combination": "1", - "infill_wall_overlap": "20%", - "initial_layer_acceleration": "3000", - "initial_layer_infill_speed": "150", - "initial_layer_travel_speed": "120", - "inner_wall_speed": "300", - "internal_solid_infill_line_width": "0.45", - "internal_solid_infill_speed": "300", - "outer_wall_acceleration": "2300", - "outer_wall_line_width": "0.42", - "outer_wall_speed": "200", - "overhang_3_4_speed": "35", - "reduce_crossing_wall": "1", - "seam_gap": "15%", - "skirt_distance": "8", - "skirt_loops": "1", - "slow_down_layers": "2", - "sparse_infill_density": "10%", - "sparse_infill_speed": "300", - "support_base_pattern_spacing": "4", - "support_bottom_z_distance": "0.4", - "support_interface_bottom_layers": "1", - "support_interface_pattern": "rectilinear", - "support_interface_top_layers": "1", - "support_line_width": "0.42", - "support_object_xy_distance": "0.8", - "support_style": "snug", - "support_threshold_angle": "60", - "top_surface_line_width": "0.42", - "top_surface_speed": "120", - "travel_acceleration": "5000", - "wall_loops": "2", - "compatible_printers": [ - "Creality CR-10 SE 0.6 nozzle" - ] + "type": "process", + "setting_id": "GP004", + "name": "0.20mm Standard @Creality CR10SE 0.6", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.2", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.65", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.65", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.65", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.65", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.65", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.65", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.65", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.6 nozzle" + ] } \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json index 3e95bf04c1..d6c78d4b32 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json @@ -1,44 +1,118 @@ { - "type": "process", - "setting_id": "GP004", - "name": "0.20mm Standard @Creality CR10SE 0.8", - "from": "system", - "inherits": "fdm_process_creality_common", - "instantiation": "true", - "bottom_shell_layers": "4", - "infill_combination": "1", - "infill_wall_overlap": "20%", - "initial_layer_acceleration": "3000", - "initial_layer_infill_speed": "150", - "initial_layer_travel_speed": "120", - "inner_wall_speed": "300", - "internal_solid_infill_line_width": "0.45", - "internal_solid_infill_speed": "300", - "outer_wall_acceleration": "2300", - "outer_wall_line_width": "0.42", - "outer_wall_speed": "200", - "overhang_3_4_speed": "35", - "reduce_crossing_wall": "1", - "seam_gap": "15%", - "skirt_distance": "8", - "skirt_loops": "1", - "slow_down_layers": "2", - "sparse_infill_density": "10%", - "sparse_infill_speed": "300", - "support_base_pattern_spacing": "4", - "support_bottom_z_distance": "0.4", - "support_interface_bottom_layers": "1", - "support_interface_pattern": "rectilinear", - "support_interface_top_layers": "1", - "support_line_width": "0.42", - "support_object_xy_distance": "0.8", - "support_style": "snug", - "support_threshold_angle": "60", - "top_surface_line_width": "0.42", - "top_surface_speed": "120", - "travel_acceleration": "5000", - "wall_loops": "2", - "compatible_printers": [ - "Creality CR-10 SE 0.8 nozzle" - ] + "type": "process", + "setting_id": "GP004", + "name": "0.20mm Standard @Creality CR10SE 0.8", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.2", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.85", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.85", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.85", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.85", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.85", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.85", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.85", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.8 nozzle" + ] } \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json index c91ce87e47..fbb57bcb08 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json @@ -24,19 +24,19 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0.1", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.45", + "outer_wall_line_width": "0.25", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.45", + "line_width": "0.25", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", "initial_layer_acceleration": "0", "travel_acceleration": "0", "inner_wall_acceleration": "0", - "initial_layer_line_width": "0.42", + "initial_layer_line_width": "0.22", "initial_layer_print_height": "0.2", "infill_combination": "1", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.25", "infill_wall_overlap": "25%", "interface_shells": "0", "ironing_flow": "15%", @@ -50,7 +50,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.25", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -59,7 +59,7 @@ "skirt_height": "2", "skirt_loops": "2", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", + "internal_solid_infill_line_width": "0.2", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -69,7 +69,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.18", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -85,7 +85,7 @@ "tree_support_wall_count": "0", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.4", + "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", "initial_layer_speed": "35%", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json index 6fa24ba5d5..57f9f6c6a1 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json @@ -24,19 +24,19 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0.1", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.45", + "outer_wall_line_width": "0.65", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.45", + "line_width": "0.65", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", "initial_layer_acceleration": "0", "travel_acceleration": "0", "inner_wall_acceleration": "0", - "initial_layer_line_width": "0.42", + "initial_layer_line_width": "0.62", "initial_layer_print_height": "0.2", "infill_combination": "1", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.65", "infill_wall_overlap": "25%", "interface_shells": "0", "ironing_flow": "15%", @@ -50,7 +50,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.65", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -59,7 +59,7 @@ "skirt_height": "2", "skirt_loops": "2", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", + "internal_solid_infill_line_width": "0.6", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -69,7 +69,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.58", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -85,7 +85,7 @@ "tree_support_wall_count": "0", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.4", + "top_surface_line_width": "0.6", "top_shell_layers": "7", "top_shell_thickness": "0.8", "initial_layer_speed": "35%", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json index 12aa910763..2562ed334b 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json @@ -24,19 +24,19 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0.1", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.45", + "outer_wall_line_width": "0.85", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.45", + "line_width": "0.85", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", "initial_layer_acceleration": "0", "travel_acceleration": "0", "inner_wall_acceleration": "0", - "initial_layer_line_width": "0.42", + "initial_layer_line_width": "0.82", "initial_layer_print_height": "0.2", "infill_combination": "1", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.85", "infill_wall_overlap": "25%", "interface_shells": "0", "ironing_flow": "15%", @@ -50,7 +50,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.85", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -59,7 +59,7 @@ "skirt_height": "2", "skirt_loops": "2", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", + "internal_solid_infill_line_width": "0.8", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -69,7 +69,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.78", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -85,7 +85,7 @@ "tree_support_wall_count": "0", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.4", + "top_surface_line_width": "0.8", "top_shell_layers": "7", "top_shell_thickness": "0.8", "initial_layer_speed": "35%", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json index 50255e5e7e..d02539eb45 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json @@ -1,3 +1,4 @@ + { "type": "process", "setting_id": "GP004", @@ -23,10 +24,10 @@ "top_surface_acceleration": "5000", "bridge_no_support": "0", "draft_shield": "disabled", - "elefant_foot_compensation": "0.1", + "elefant_foot_compensation": "0", "outer_wall_line_width": "0.42", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.42", + "line_width": "0.45", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -36,7 +37,7 @@ "outer_wall_acceleration": "5000", "initial_layer_line_width": "0.5", "initial_layer_print_height": "0.2", - "infill_combination": "1", + "infill_combination": "0", "sparse_infill_line_width": "0.45", "infill_wall_overlap": "25%", "interface_shells": "0", @@ -81,7 +82,7 @@ "support_base_pattern": "rectilinear", "support_base_pattern_spacing": "2.5", "support_speed": "200", - "support_threshold_angle": "45", + "support_threshold_angle": "30", "support_object_xy_distance": "60%", "tree_support_branch_angle": "40", "tree_support_wall_count": "0", @@ -92,15 +93,17 @@ "top_shell_thickness": "0.8", "initial_layer_speed": "50", "initial_layer_infill_speed": "105", - "outer_wall_speed": "250", + "outer_wall_speed": "200", "inner_wall_speed": "300", - "internal_solid_infill_speed": "250", + "internal_solid_infill_speed": "300", "top_surface_speed": "250", "gap_infill_speed": "200", "sparse_infill_speed": "300", "travel_speed": "400", "enable_prime_tower": "0", "wipe_tower_no_sparse_layers": "0", + "role_based_wipe_speed": "0", + "wipe_speed": "200", "prime_tower_width": "60", "xy_hole_compensation": "0", "xy_contour_compensation": "0", @@ -111,6 +114,7 @@ "top_surface_jerk": "7", "initial_layer_jerk": "7", "travel_jerk": "7", + "accel_to_decel_enable": "0", "compatible_printers": [ "Creality Ender-3 V3 KE 0.4 nozzle" ] diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json index 7d8f89a63f..b685b84dba 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.22", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.26", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.26", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.25", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.25", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.22", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.18", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "2", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.22", "top_shell_layers": "4", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json index a21af6c10a..1a82bd54c2 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.62", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.66", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.66", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.65", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.65", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.62", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.58", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "2", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.62", "top_shell_layers": "4", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json index e096287f0f..1c36e38e18 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.82", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.86", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.86", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.85", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.85", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.82", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.78", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "2", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.82", "top_shell_layers": "4", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json new file mode 100644 index 0000000000..536dc77546 --- /dev/null +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Draft @Creality CR10SE 0.2", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.24", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.25", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.25", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.25", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.25", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.25", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.25", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.25", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json new file mode 100644 index 0000000000..b9f3144edd --- /dev/null +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Draft @Creality CR10SE 0.4", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.24", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.42", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.42", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.45", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.42", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.42", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.42", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json new file mode 100644 index 0000000000..b0f98c9699 --- /dev/null +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Draft @Creality CR10SE 0.6", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.24", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.65", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.65", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.65", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.65", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.65", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.65", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.65", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json new file mode 100644 index 0000000000..32fbed681b --- /dev/null +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Draft @Creality CR10SE 0.8", + "from": "system", + "inherits": "fdm_process_common_klipper", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.24", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0", + "bridge_flow": "0.95", + "bridge_speed": "65", + "brim_type": "no_brim", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "5000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "outer_wall_line_width": "0.85", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.85", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "5000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "5000", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "1", + "sparse_infill_line_width": "0.85", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "44%", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "35", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.85", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "2", + "skirt_loops": "0", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0.85", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.85", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_interface_pattern": "auto", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.85", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "250", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "250", + "top_surface_speed": "250", + "gap_infill_speed": "200", + "sparse_infill_speed": "300", + "travel_speed": "400", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "default_jerk": "7", + "outer_wall_jerk": "7", + "inner_wall_jerk": "7", + "infill_jerk": "7", + "top_surface_jerk": "7", + "initial_layer_jerk": "7", + "travel_jerk": "7", + "compatible_printers": [ + "Creality CR-10 SE 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json index 9e5f90cf88..fec5ce6f54 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json @@ -24,19 +24,19 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0.1", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.45", + "outer_wall_line_width": "0.25", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.45", + "line_width": "0.25", "infill_direction": "45", "sparse_infill_density": "10%", "sparse_infill_pattern": "grid", "initial_layer_acceleration": "0", "travel_acceleration": "0", "inner_wall_acceleration": "0", - "initial_layer_line_width": "0.42", + "initial_layer_line_width": "0.22", "initial_layer_print_height": "0.2", "infill_combination": "1", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.25", "infill_wall_overlap": "25%", "interface_shells": "0", "ironing_flow": "15%", @@ -50,7 +50,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.25", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -59,7 +59,7 @@ "skirt_height": "2", "skirt_loops": "1", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", + "internal_solid_infill_line_width": "0.2", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -69,7 +69,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.18", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -85,7 +85,7 @@ "tree_support_wall_count": "0", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.4", + "top_surface_line_width": "0.2", "top_shell_layers": "4", "top_shell_thickness": "0.8", "initial_layer_speed": "20", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json index 29493e1541..6961aa3c67 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json @@ -24,19 +24,19 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0.1", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.45", + "outer_wall_line_width": "0.65", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.45", + "line_width": "0.65", "infill_direction": "45", "sparse_infill_density": "10%", "sparse_infill_pattern": "grid", "initial_layer_acceleration": "0", "travel_acceleration": "0", "inner_wall_acceleration": "0", - "initial_layer_line_width": "0.42", + "initial_layer_line_width": "0.62", "initial_layer_print_height": "0.2", "infill_combination": "1", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.65", "infill_wall_overlap": "25%", "interface_shells": "0", "ironing_flow": "15%", @@ -50,7 +50,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.65", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -59,7 +59,7 @@ "skirt_height": "2", "skirt_loops": "1", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", + "internal_solid_infill_line_width": "0.6", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -69,7 +69,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.58", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -85,7 +85,7 @@ "tree_support_wall_count": "0", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.4", + "top_surface_line_width": "0.6", "top_shell_layers": "4", "top_shell_thickness": "0.8", "initial_layer_speed": "20", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json index be87b75246..aa5bac7b5c 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json @@ -24,19 +24,19 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0.1", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.45", + "outer_wall_line_width": "0.85", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.45", + "line_width": "0.85", "infill_direction": "45", "sparse_infill_density": "10%", "sparse_infill_pattern": "grid", "initial_layer_acceleration": "0", "travel_acceleration": "0", "inner_wall_acceleration": "0", - "initial_layer_line_width": "0.42", + "initial_layer_line_width": "0.82", "initial_layer_print_height": "0.2", "infill_combination": "1", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.85", "infill_wall_overlap": "25%", "interface_shells": "0", "ironing_flow": "15%", @@ -50,7 +50,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.85", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -59,7 +59,7 @@ "skirt_height": "2", "skirt_loops": "1", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", + "internal_solid_infill_line_width": "0.8", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -69,7 +69,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.78", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "3", @@ -85,7 +85,7 @@ "tree_support_wall_count": "0", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.4", + "top_surface_line_width": "0.8", "top_shell_layers": "4", "top_shell_thickness": "0.8", "initial_layer_speed": "20", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json index 69af1d0ff9..6644c9ba84 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json @@ -23,10 +23,10 @@ "top_surface_acceleration": "5000", "bridge_no_support": "0", "draft_shield": "disabled", - "elefant_foot_compensation": "0.1", + "elefant_foot_compensation": "0", "outer_wall_line_width": "0.42", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.42", + "line_width": "0.45", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -36,7 +36,7 @@ "outer_wall_acceleration": "5000", "initial_layer_line_width": "0.5", "initial_layer_print_height": "0.2", - "infill_combination": "1", + "infill_combination": "0", "sparse_infill_line_width": "0.45", "infill_wall_overlap": "25%", "interface_shells": "0", @@ -81,7 +81,7 @@ "support_base_pattern": "rectilinear", "support_base_pattern_spacing": "2.5", "support_speed": "200", - "support_threshold_angle": "45", + "support_threshold_angle": "30", "support_object_xy_distance": "60%", "tree_support_branch_angle": "40", "tree_support_wall_count": "0", @@ -92,15 +92,17 @@ "top_shell_thickness": "0.8", "initial_layer_speed": "50", "initial_layer_infill_speed": "105", - "outer_wall_speed": "250", + "outer_wall_speed": "200", "inner_wall_speed": "300", - "internal_solid_infill_speed": "250", + "internal_solid_infill_speed": "300", "top_surface_speed": "250", "gap_infill_speed": "200", "sparse_infill_speed": "300", "travel_speed": "400", "enable_prime_tower": "0", "wipe_tower_no_sparse_layers": "0", + "role_based_wipe_speed" : "0", + "wipe_speed": "200", "prime_tower_width": "60", "xy_hole_compensation": "0", "xy_contour_compensation": "0", @@ -111,6 +113,7 @@ "top_surface_jerk": "7", "initial_layer_jerk": "7", "travel_jerk": "7", + "accel_to_decel_enable": "0", "compatible_printers": [ "Creality Ender-3 V3 KE 0.4 nozzle" ] diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json index 20add5298d..9c65d0b440 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.22", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.26", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.26", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.25", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.25", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.22", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.18", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "2", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.22", "top_shell_layers": "4", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json index 9399833fed..e5bb153a68 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.62", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.66", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.66", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.65", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.65", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.62", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.58", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "2", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.62", "top_shell_layers": "4", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json index 9953e95710..b023f761aa 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json @@ -25,9 +25,9 @@ "draft_shield": "disabled", "elefant_foot_compensation": "0", "enable_arc_fitting": "0", - "outer_wall_line_width": "0.42", + "outer_wall_line_width": "0.82", "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "0.46", + "line_width": "0.86", "infill_direction": "45", "sparse_infill_density": "15%", "sparse_infill_pattern": "grid", @@ -35,10 +35,10 @@ "travel_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1000", - "initial_layer_line_width": "0.46", + "initial_layer_line_width": "0.86", "initial_layer_print_height": "0.2", "infill_combination": "0", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.85", "infill_wall_overlap": "15%", "interface_shells": "0", "ironing_flow": "15%", @@ -52,7 +52,7 @@ "overhang_2_4_speed": "20", "overhang_3_4_speed": "15", "overhang_4_4_speed": "10", - "inner_wall_line_width": "0.45", + "inner_wall_line_width": "0.85", "wall_loops": "2", "print_settings_id": "", "raft_layers": "0", @@ -61,7 +61,7 @@ "skirt_height": "2", "skirt_loops": "0", "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_line_width": "0.82", "spiral_mode": "0", "standby_temperature_delta": "-5", "enable_support": "0", @@ -71,7 +71,7 @@ "support_on_build_plate_only": "0", "support_top_z_distance": "0.15", "support_filament": "0", - "support_line_width": "0.38", + "support_line_width": "0.78", "support_interface_loop_pattern": "0", "support_interface_filament": "0", "support_interface_top_layers": "2", @@ -88,7 +88,7 @@ "tree_support_wall_count": "2", "detect_thin_wall": "1", "top_surface_pattern": "monotonic", - "top_surface_line_width": "0.42", + "top_surface_line_width": "0.82", "top_shell_layers": "4", "top_shell_thickness": "0.8", "initial_layer_speed": "30", diff --git a/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json index 29cb2ec76b..e8d734ca1f 100644 --- a/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json @@ -5,7 +5,7 @@ "from": "system", "instantiation": "true", "inherits": "fdm_process_common", - + "bottom_shell_layers": "7", "overhang_1_4_speed": "60", "overhang_2_4_speed": "30", From b021c615f5139db0f16853f7147d5aff57db6bf7 Mon Sep 17 00:00:00 2001 From: PreyK Date: Wed, 22 May 2024 12:00:48 +0200 Subject: [PATCH 21/66] ESP3D printer connection for wireless printing (#5399) * ESP3D connector WIP * Update PrintConfig.cpp * Update ESP3D.cpp * Update ESP3D.cpp * prog * works & ugly * Update ESP3D.cpp * ESP3D prints * comments * this fails on *nix, use format_error instead --------- Co-authored-by: SoftFever --- src/libslic3r/PrintConfig.cpp | 3 + src/libslic3r/PrintConfig.hpp | 2 +- src/slic3r/CMakeLists.txt | 2 + src/slic3r/Utils/ESP3D.cpp | 183 +++++++++++++++++++++++++++++++++ src/slic3r/Utils/ESP3D.hpp | 43 ++++++++ src/slic3r/Utils/PrintHost.cpp | 2 + 6 files changed, 234 insertions(+), 1 deletion(-) create mode 100644 src/slic3r/Utils/ESP3D.cpp create mode 100644 src/slic3r/Utils/ESP3D.hpp diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 3380c39623..c122b54738 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -103,6 +103,7 @@ static t_config_enum_values s_keys_map_PrintHostType { { "astrobox", htAstroBox }, { "repetier", htRepetier }, { "mks", htMKS }, + { "esp3d", htESP3D }, { "obico", htObico }, { "flashforge", htFlashforge }, { "simplyprint", htSimplyPrint }, @@ -3148,6 +3149,7 @@ def = this->add("filament_loading_speed", coFloats); def->enum_values.push_back("astrobox"); def->enum_values.push_back("repetier"); def->enum_values.push_back("mks"); + def->enum_values.push_back("esp3d"); def->enum_values.push_back("obico"); def->enum_values.push_back("flashforge"); def->enum_values.push_back("simplyprint"); @@ -3159,6 +3161,7 @@ def = this->add("filament_loading_speed", coFloats); def->enum_labels.push_back("AstroBox"); def->enum_labels.push_back("Repetier"); def->enum_labels.push_back("MKS"); + def->enum_labels.push_back("ESP3D"); def->enum_labels.push_back("Obico"); def->enum_labels.push_back("Flashforge"); def->enum_labels.push_back("SimplyPrint"); diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp index 836d326e7d..64a360e74d 100644 --- a/src/libslic3r/PrintConfig.hpp +++ b/src/libslic3r/PrintConfig.hpp @@ -59,7 +59,7 @@ enum class FuzzySkinType { }; enum PrintHostType { - htPrusaLink, htPrusaConnect, htOctoPrint, htDuet, htFlashAir, htAstroBox, htRepetier, htMKS, htObico, htFlashforge, htSimplyPrint + htPrusaLink, htPrusaConnect, htOctoPrint, htDuet, htFlashAir, htAstroBox, htRepetier, htMKS, htESP3D, htObico, htFlashforge, htSimplyPrint }; enum AuthorizationType { diff --git a/src/slic3r/CMakeLists.txt b/src/slic3r/CMakeLists.txt index d03a0c20dc..d2242c9fff 100644 --- a/src/slic3r/CMakeLists.txt +++ b/src/slic3r/CMakeLists.txt @@ -542,6 +542,8 @@ set(SLIC3R_GUI_SOURCES Utils/SerialMessage.hpp Utils/MKS.cpp Utils/MKS.hpp + Utils/ESP3D.cpp + Utils/ESP3D.hpp Utils/WxFontUtils.cpp Utils/WxFontUtils.hpp Utils/Duet.cpp diff --git a/src/slic3r/Utils/ESP3D.cpp b/src/slic3r/Utils/ESP3D.cpp new file mode 100644 index 0000000000..57b917e3a1 --- /dev/null +++ b/src/slic3r/Utils/ESP3D.cpp @@ -0,0 +1,183 @@ +#include "ESP3D.hpp" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +#include "libslic3r/PrintConfig.hpp" +#include "slic3r/GUI/GUI.hpp" +#include "slic3r/GUI/I18N.hpp" +#include "slic3r/GUI/MsgDialog.hpp" +#include "Http.hpp" +#include "SerialMessage.hpp" +#include "SerialMessageType.hpp" + +namespace fs = boost::filesystem; +namespace pt = boost::property_tree; + +namespace Slic3r { + +ESP3D::ESP3D(DynamicPrintConfig* config) : m_host(config->opt_string("print_host")), m_console_port("8888") {} + +const char* ESP3D::get_name() const { return "ESP3D"; } + +bool ESP3D::test(wxString& msg) const +{ + bool ret = false; + std::string url_test = format_command("/command", "plain", "M105"); + auto http = Http::get(url_test); + http.on_complete([&](std::string body, unsigned status) { + // check for OK + ret = true; + msg = get_test_ok_msg(); + }) + .on_error([&](std::string body, std::string error, unsigned status) { + ret = false; + msg = format_error(body , error, status); + }) + .perform_sync(); + return ret; +} + +wxString ESP3D::get_test_ok_msg() const { return _(L("Connection to ESP3D works correctly.")); } + +wxString ESP3D::get_test_failed_msg(wxString& msg) const +{ + return GUI::from_u8((boost::format("%s: %s") % _utf8(L("Could not connect to ESP3D")) % std::string(msg.ToUTF8())).str()); +} + +bool ESP3D::upload(PrintHostUpload upload_data, ProgressFn prorgess_fn, ErrorFn error_fn, InfoFn info_fn) const +{ + std::string short_name = get_short_name(upload_data.upload_path.string()); + bool res = false; + + auto http = Http::post(std::move((boost::format("http://%1%/upload_serial") % m_host).str())); + http.header("Connection", "keep-alive") + .form_add_file("file", upload_data.source_path, short_name) + .on_complete([&](std::string body, unsigned status) { + // check for OK + if (upload_data.post_action == PrintHostPostUploadAction::StartPrint) { + wxString errormsg; + res = start_print(errormsg, short_name); + if (!res) { + error_fn(std::move(errormsg)); + } + } + }) + .on_error([&](std::string body, std::string error, unsigned status) { + BOOST_LOG_TRIVIAL(error) << boost::format("ESP3D: Error uploading file: %1%, HTTP %2%, body: `%3%`") % error % status % body; + error_fn(format_error(body, error, status)); + res = false; + }) + .on_progress([&](Http::Progress progress, bool& cancel) { + // workaround: + // progress bar disappears before .on_complete + // ESP3D can be super slow, the user could close slicer before upload completes & M24 is sent because no progress bar + // M24 can only be sent after .on_complete + Http::Progress prog = std::move(progress); + prog.ulnow -= 1; + prorgess_fn(std::move(prog), cancel); + if (cancel) { + // Upload was canceled + BOOST_LOG_TRIVIAL(info) << "ESP3D: Upload canceled"; + res = false; + } + }) + .perform_sync(); + + return res; +} + +bool ESP3D::start_print(wxString& msg, const std::string& filename) const +{ + // For some reason printer firmware does not want to respond on gcode commands immediately after file upload. + // So we just introduce artificial delay to workaround it. + // ESP3D also locks the serial during SD transfer, this is safer + std::this_thread::sleep_for(std::chrono::milliseconds(1500)); + + bool ret = false; + auto select_file = (boost::format("%1% %2%") % "M23" % filename).str(); + auto select = format_command("/command", "plain", Http::url_encode(select_file)); + auto http_sel = Http::get(select); + http_sel + .on_complete([&](std::string body, unsigned status) { + ret = true; + }) + .on_error([&](std::string body, std::string error, unsigned status) { + // error sending M23 + ret = false; + msg = (wxString::FromUTF8(error)); + }) + .perform_sync(); + + if (!ret) + return ret; + + auto start = format_command("/command", "plain", "M24"); + auto http_start = Http::get(start); + http_start + .on_complete([&](std::string body, unsigned status) { + // print kicked off succesfully + ret = true; + }) + .on_error([&](std::string body, std::string error, unsigned status) { + // error sending M24 + ret = false; + msg = (wxString::FromUTF8(error)); + }) + .perform_sync(); + + return ret; +} + +int ESP3D::get_err_code_from_body(const std::string& body) const +{ + pt::ptree root; + std::istringstream iss(body); // wrap returned json to istringstream + pt::read_json(iss, root); + + return root.get("err", 0); +} + +// ESP3D only accepts 8.3 filenames else it crashes marlin and other undefined behaviour +std::string ESP3D::get_short_name(const std::string& filename) const +{ + std::string shortname = ""; + boost::filesystem::path p(filename); + std::string stem = p.stem().string(); + std::string extension = p.extension().string(); + if (!extension.empty() && extension[0] == '.') { + extension = extension.substr(1); + } + stem = stem.substr(0, 8); + extension = extension.substr(0, 3); + if (!extension.empty()) { + shortname = stem + "." + extension; + } else { + shortname = stem; + } + return shortname; +} + +std::string ESP3D::format_command(const std::string& path, const std::string& arg, const std::string& val) const +{ + return (boost::format("http://%1%%2%?%3%=%4%") % m_host % path % arg % val).str(); +} + +} // namespace Slic3r \ No newline at end of file diff --git a/src/slic3r/Utils/ESP3D.hpp b/src/slic3r/Utils/ESP3D.hpp new file mode 100644 index 0000000000..7ac3c66f48 --- /dev/null +++ b/src/slic3r/Utils/ESP3D.hpp @@ -0,0 +1,43 @@ +#ifndef slic3r_ESP3D_hpp_ +#define slic3r_ESP3D_hpp_ + +#include +#include + +#include "PrintHost.hpp" +#include "TCPConsole.hpp" + +namespace Slic3r { +class DynamicPrintConfig; +class Http; + +class ESP3D : public PrintHost +{ +public: + explicit ESP3D(DynamicPrintConfig* config); + ~ESP3D() override = default; + + const char* get_name() const override; + + bool test(wxString& curl_msg) const override; + wxString get_test_ok_msg() const override; + wxString get_test_failed_msg(wxString& msg) const override; + bool upload(PrintHostUpload upload_data, ProgressFn prorgess_fn, ErrorFn error_fn, InfoFn info_fn) const override; + bool has_auto_discovery() const override { return false; } + bool can_test() const override { return true; } + PrintHostPostUploadActions get_post_upload_actions() const override { return PrintHostPostUploadAction::StartPrint; } + std::string get_host() const override { return m_host; } + +private: + std::string m_host; + std::string m_console_port; + + bool start_print(wxString& msg, const std::string& filename) const; + int get_err_code_from_body(const std::string& body) const; + std::string get_short_name(const std::string& filename) const; + std::string format_command(const std::string& path, const std::string& arg, const std::string& val) const; +}; + +} // namespace Slic3r + +#endif diff --git a/src/slic3r/Utils/PrintHost.cpp b/src/slic3r/Utils/PrintHost.cpp index cf77d4ff5c..b6dff85052 100644 --- a/src/slic3r/Utils/PrintHost.cpp +++ b/src/slic3r/Utils/PrintHost.cpp @@ -19,6 +19,7 @@ #include "AstroBox.hpp" #include "Repetier.hpp" #include "MKS.hpp" +#include "ESP3D.hpp" #include "../GUI/PrintHostDialogs.hpp" #include "Obico.hpp" #include "Flashforge.hpp" @@ -57,6 +58,7 @@ PrintHost* PrintHost::get_print_host(DynamicPrintConfig *config) case htPrusaLink: return new PrusaLink(config); case htPrusaConnect: return new PrusaConnect(config); case htMKS: return new MKS(config); + case htESP3D: return new ESP3D(config); case htObico: return new Obico(config); case htFlashforge: return new Flashforge(config); case htSimplyPrint: return new SimplyPrint(config); From 95c3255c27d70273f72b7d6603d5fc892319a34c Mon Sep 17 00:00:00 2001 From: StimeKe Date: Wed, 22 May 2024 20:37:35 +0800 Subject: [PATCH 22/66] Fixed not get port when obtaining the host. (#5423) Co-authored-by: SoftFever --- src/slic3r/Utils/OctoPrint.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/slic3r/Utils/OctoPrint.cpp b/src/slic3r/Utils/OctoPrint.cpp index edf903e55d..707bcb01c3 100644 --- a/src/slic3r/Utils/OctoPrint.cpp +++ b/src/slic3r/Utils/OctoPrint.cpp @@ -50,8 +50,15 @@ std::string get_host_from_url(const std::string& url_in) char* host; rc = curl_url_get(hurl, CURLUPART_HOST, &host, 0); if (rc == CURLUE_OK) { - out = host; - curl_free(host); + char* port; + rc = curl_url_get(hurl, CURLUPART_PORT, &port, 0); + if (rc == CURLUE_OK && port != nullptr) { + out = std::string(host) + ":" + port; + curl_free(port); + } else { + out = host; + curl_free(host); + } } else BOOST_LOG_TRIVIAL(error) << "OctoPrint get_host_from_url: failed to get host form URL " << url; From f13dc1fdcd5345744f79f2415d5bf9439023413c Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 22 May 2024 22:54:56 +0800 Subject: [PATCH 23/66] bump profiles version to 2.1, change most profiles' top_surface_pattern to monotonicline as default pattern --- resources/profiles/Anker.json | 2 +- .../profiles/Anker/process/fdm_process_anker_fast_common.json | 2 +- resources/profiles/Anycubic.json | 2 +- .../Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json | 2 +- .../Anycubic/process/0.15mm Optimal @Anycubic Chiron.json | 2 +- .../Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json | 2 +- .../Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json | 2 +- .../Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json | 2 +- .../Anycubic/process/0.15mm Optimal @Anycubic Vyper.json | 2 +- .../Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json | 2 +- .../Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json | 2 +- .../Anycubic/process/0.20mm Standard @Anycubic Chiron.json | 2 +- .../Anycubic/process/0.20mm Standard @Anycubic Kobra2.json | 2 +- .../Anycubic/process/0.20mm Standard @Anycubic KobraMax.json | 2 +- .../Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json | 2 +- .../Anycubic/process/0.20mm Standard @Anycubic Vyper.json | 2 +- .../Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json | 2 +- .../Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json | 2 +- .../Anycubic/process/0.30mm Draft @Anycubic Chiron.json | 2 +- .../Anycubic/process/0.30mm Draft @Anycubic Kobra2.json | 2 +- .../Anycubic/process/0.30mm Draft @Anycubic KobraMax.json | 2 +- .../Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json | 2 +- .../profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json | 2 +- .../Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json | 2 +- resources/profiles/Anycubic/process/fdm_process_common.json | 2 +- resources/profiles/Artillery.json | 2 +- .../Artillery/process/0.15mm Optimal @Artillery Genius Pro.json | 2 +- .../Artillery/process/0.15mm Optimal @Artillery Genius.json | 2 +- .../Artillery/process/0.16mm Optimal @Artillery Hornet.json | 2 +- .../Artillery/process/0.16mm Optimal @Artillery X1.json | 2 +- .../process/0.20mm Standard @Artillery Genius Pro.json | 2 +- .../Artillery/process/0.20mm Standard @Artillery Genius.json | 2 +- .../Artillery/process/0.20mm Standard @Artillery Hornet.json | 2 +- .../Artillery/process/0.20mm Standard @Artillery X1.json | 2 +- .../Artillery/process/0.20mm Standard @Artillery X2.json | 2 +- .../Artillery/process/0.24mm Draft @Artillery Hornet.json | 2 +- .../profiles/Artillery/process/0.24mm Draft @Artillery X1.json | 2 +- .../Artillery/process/0.25mm Draft @Artillery Genius Pro.json | 2 +- .../Artillery/process/0.25mm Draft @Artillery Genius.json | 2 +- resources/profiles/Artillery/process/fdm_process_common.json | 2 +- resources/profiles/BBL.json | 2 +- resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json | 2 +- resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json | 2 +- .../profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json | 2 +- .../profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json | 2 +- .../profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json | 2 +- .../profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json | 2 +- resources/profiles/BIQU.json | 2 +- resources/profiles/BIQU/process/fdm_process_biqu_common.json | 2 +- resources/profiles/BIQU/process/fdm_process_hurakan_common.json | 2 +- resources/profiles/CONSTRUCT3D.json | 2 +- resources/profiles/CONSTRUCT3D/process/fdm_process_common.json | 2 +- resources/profiles/Comgrow.json | 2 +- .../Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json | 2 +- .../Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json | 2 +- .../profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json | 2 +- .../Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json | 2 +- .../Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json | 2 +- .../Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json | 2 +- .../profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json | 2 +- .../Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json | 2 +- .../Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json | 2 +- .../Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json | 2 +- .../Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json | 2 +- .../Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json | 2 +- .../Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json | 2 +- .../Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json | 2 +- .../Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json | 2 +- .../Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json | 2 +- .../profiles/Comgrow/process/fdm_process_comgrow_common.json | 2 +- resources/profiles/Creality.json | 2 +- .../Creality/process/0.12mm Fine @Creality CR10Max.json | 2 +- .../Creality/process/0.12mm Fine @Creality CR10SE 0.2.json | 2 +- .../Creality/process/0.12mm Fine @Creality CR10SE 0.4.json | 2 +- .../Creality/process/0.12mm Fine @Creality CR10SE 0.6.json | 2 +- .../Creality/process/0.12mm Fine @Creality CR10SE 0.8.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3 0.2.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3 0.4.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3 0.6.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3 0.8.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3V2.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3V2Neo.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3V3KE.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json | 2 +- .../Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json | 2 +- .../process/0.12mm Fine @Creality Ender5Pro (2019).json | 2 +- .../Creality/process/0.15mm Optimal @Creality CR10Max.json | 2 +- .../Creality/process/0.15mm Optimal @Creality Ender3V2.json | 2 +- .../process/0.15mm Optimal @Creality Ender5Pro (2019).json | 2 +- .../Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json | 2 +- .../Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json | 2 +- .../Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json | 2 +- .../Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json | 2 +- .../Creality/process/0.16mm Optimal @Creality CR10V2.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender3 0.2.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender3 0.4.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender3 0.6.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender3 0.8.json | 2 +- .../process/0.16mm Optimal @Creality Ender3 Pro 0.2.json | 2 +- .../process/0.16mm Optimal @Creality Ender3 Pro 0.4.json | 2 +- .../process/0.16mm Optimal @Creality Ender3 Pro 0.6.json | 2 +- .../process/0.16mm Optimal @Creality Ender3 Pro 0.8.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender3S1.json | 2 +- .../process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json | 2 +- .../process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json | 2 +- .../process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json | 2 +- .../process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender3V3KE.json | 2 +- .../process/0.16mm Optimal @Creality Ender3V3SE 0.2.json | 2 +- .../process/0.16mm Optimal @Creality Ender3V3SE 0.4.json | 2 +- .../process/0.16mm Optimal @Creality Ender3V3SE 0.6.json | 2 +- .../process/0.16mm Optimal @Creality Ender3V3SE 0.8.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender5.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender5Plus.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender5S.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender5S1.json | 2 +- .../Creality/process/0.16mm Optimal @Creality Ender6.json | 2 +- .../Creality/process/0.20mm Standard @Creality CR10Max.json | 2 +- .../Creality/process/0.20mm Standard @Creality CR10SE 0.2.json | 2 +- .../Creality/process/0.20mm Standard @Creality CR10SE 0.4.json | 2 +- .../Creality/process/0.20mm Standard @Creality CR10SE 0.6.json | 2 +- .../Creality/process/0.20mm Standard @Creality CR10SE 0.8.json | 2 +- .../Creality/process/0.20mm Standard @Creality CR10V2.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender3 0.2.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender3 0.4.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender3 0.6.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender3 0.8.json | 2 +- .../process/0.20mm Standard @Creality Ender3 Pro 0.2.json | 2 +- .../process/0.20mm Standard @Creality Ender3 Pro 0.4.json | 2 +- .../process/0.20mm Standard @Creality Ender3 Pro 0.6.json | 2 +- .../process/0.20mm Standard @Creality Ender3 Pro 0.8.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender3.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender3S1.json | 2 +- .../process/0.20mm Standard @Creality Ender3S1Plus 0.2.json | 2 +- .../process/0.20mm Standard @Creality Ender3S1Plus 0.4.json | 2 +- .../process/0.20mm Standard @Creality Ender3S1Plus 0.6.json | 2 +- .../process/0.20mm Standard @Creality Ender3S1Plus 0.8.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender3S1Pro.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender3V2.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender3V2Neo.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender3V3KE.json | 2 +- .../process/0.20mm Standard @Creality Ender3V3SE 0.2.json | 2 +- .../process/0.20mm Standard @Creality Ender3V3SE 0.4.json | 2 +- .../process/0.20mm Standard @Creality Ender3V3SE 0.6.json | 2 +- .../process/0.20mm Standard @Creality Ender3V3SE 0.8.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender5.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender5Plus.json | 2 +- .../process/0.20mm Standard @Creality Ender5Pro (2019).json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender5S.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender5S1.json | 2 +- .../Creality/process/0.20mm Standard @Creality Ender6.json | 2 +- .../Creality/process/0.24mm Draft @Creality CR10Max.json | 2 +- .../Creality/process/0.24mm Draft @Creality CR10SE 0.2.json | 2 +- .../Creality/process/0.24mm Draft @Creality CR10SE 0.4.json | 2 +- .../Creality/process/0.24mm Draft @Creality CR10SE 0.6.json | 2 +- .../Creality/process/0.24mm Draft @Creality CR10SE 0.8.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3 0.2.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3 0.4.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3 0.6.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3 0.8.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json | 2 +- .../process/0.24mm Draft @Creality Ender3S1Plus 0.2.json | 2 +- .../process/0.24mm Draft @Creality Ender3S1Plus 0.4.json | 2 +- .../process/0.24mm Draft @Creality Ender3S1Plus 0.6.json | 2 +- .../process/0.24mm Draft @Creality Ender3S1Plus 0.8.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3V2.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3V2Neo.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3V3KE.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json | 2 +- .../Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json | 2 +- .../process/0.24mm Draft @Creality Ender5Pro (2019).json | 2 +- .../process/0.28mm SuperDraft @Creality Ender3 0.2.json | 2 +- .../process/0.28mm SuperDraft @Creality Ender3 0.4.json | 2 +- .../process/0.28mm SuperDraft @Creality Ender3 0.6.json | 2 +- .../process/0.28mm SuperDraft @Creality Ender3 0.8.json | 2 +- .../process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json | 2 +- .../process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json | 2 +- .../process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json | 2 +- .../process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json | 2 +- .../profiles/Creality/process/fdm_process_creality_common.json | 2 +- resources/profiles/Custom.json | 2 +- .../profiles/Custom/process/fdm_process_klipper_common.json | 2 +- .../profiles/Custom/process/fdm_process_marlin_common.json | 2 +- resources/profiles/Custom/process/fdm_process_rrf_common.json | 2 +- .../profiles/Dremel/process/fdm_process_dremel_common.json | 2 +- resources/profiles/Elegoo.json | 2 +- .../Elegoo/process/0.08mm Extra Fine @Elegoo Neptune.json | 2 +- .../Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2.json | 2 +- .../Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2D.json | 2 +- .../Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2S.json | 2 +- .../Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3.json | 2 +- .../Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Max.json | 2 +- .../Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Plus.json | 2 +- .../Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Pro.json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4 (0.2 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4 (0.4 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4 (0.6 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4 (0.8 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4Max (0.2 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4Max (0.4 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4Max (0.6 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4Max (0.8 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4Pro (0.2 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4Pro (0.4 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4Pro (0.6 nozzle).json | 2 +- .../0.08mm Extra Fine @Elegoo Neptune4Pro (0.8 nozzle).json | 2 +- .../Elegoo/process/0.08mm Extra Fine @Elegoo NeptuneX.json | 2 +- .../profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune.json | 2 +- .../profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2.json | 2 +- .../profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2D.json | 2 +- .../profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2S.json | 2 +- .../profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3.json | 2 +- .../Elegoo/process/0.12mm Fine @Elegoo Neptune3Max.json | 2 +- .../Elegoo/process/0.12mm Fine @Elegoo Neptune3Plus.json | 2 +- .../Elegoo/process/0.12mm Fine @Elegoo Neptune3Pro.json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4 (0.2 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4 (0.4 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4 (0.6 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4 (0.8 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4Max (0.2 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4Max (0.4 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4Max (0.6 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4Max (0.8 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4Pro (0.2 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4Pro (0.4 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4Pro (0.6 nozzle).json | 2 +- .../process/0.12mm Fine @Elegoo Neptune4Pro (0.8 nozzle).json | 2 +- .../profiles/Elegoo/process/0.12mm Fine @Elegoo NeptuneX.json | 2 +- .../profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune.json | 2 +- .../Elegoo/process/0.16mm Optimal @Elegoo Neptune2.json | 2 +- .../Elegoo/process/0.16mm Optimal @Elegoo Neptune2D.json | 2 +- .../Elegoo/process/0.16mm Optimal @Elegoo Neptune2S.json | 2 +- .../Elegoo/process/0.16mm Optimal @Elegoo Neptune3.json | 2 +- .../Elegoo/process/0.16mm Optimal @Elegoo Neptune3Max.json | 2 +- .../Elegoo/process/0.16mm Optimal @Elegoo Neptune3Plus.json | 2 +- .../Elegoo/process/0.16mm Optimal @Elegoo Neptune3Pro.json | 2 +- .../process/0.16mm Optimal @Elegoo Neptune4 (0.2 nozzle).json | 2 +- .../process/0.16mm Optimal @Elegoo Neptune4 (0.4 nozzle).json | 2 +- .../process/0.16mm Optimal @Elegoo Neptune4 (0.6 nozzle).json | 2 +- .../process/0.16mm Optimal @Elegoo Neptune4 (0.8 nozzle).json | 2 +- .../0.16mm Optimal @Elegoo Neptune4Max (0.2 nozzle).json | 2 +- .../0.16mm Optimal @Elegoo Neptune4Max (0.4 nozzle).json | 2 +- .../0.16mm Optimal @Elegoo Neptune4Max (0.6 nozzle).json | 2 +- .../0.16mm Optimal @Elegoo Neptune4Max (0.8 nozzle).json | 2 +- .../0.16mm Optimal @Elegoo Neptune4Pro (0.2 nozzle).json | 2 +- .../0.16mm Optimal @Elegoo Neptune4Pro (0.4 nozzle).json | 2 +- .../0.16mm Optimal @Elegoo Neptune4Pro (0.6 nozzle).json | 2 +- .../0.16mm Optimal @Elegoo Neptune4Pro (0.8 nozzle).json | 2 +- .../Elegoo/process/0.16mm Optimal @Elegoo NeptuneX.json | 2 +- .../Elegoo/process/0.20mm Standard @Elegoo Neptune.json | 2 +- .../Elegoo/process/0.20mm Standard @Elegoo Neptune2.json | 2 +- .../Elegoo/process/0.20mm Standard @Elegoo Neptune2D.json | 2 +- .../Elegoo/process/0.20mm Standard @Elegoo Neptune2S.json | 2 +- .../Elegoo/process/0.20mm Standard @Elegoo Neptune3.json | 2 +- .../Elegoo/process/0.20mm Standard @Elegoo Neptune3Max.json | 2 +- .../Elegoo/process/0.20mm Standard @Elegoo Neptune3Plus.json | 2 +- .../Elegoo/process/0.20mm Standard @Elegoo Neptune3Pro.json | 2 +- .../process/0.20mm Standard @Elegoo Neptune4 (0.2 nozzle).json | 2 +- .../process/0.20mm Standard @Elegoo Neptune4 (0.4 nozzle).json | 2 +- .../process/0.20mm Standard @Elegoo Neptune4 (0.6 nozzle).json | 2 +- .../process/0.20mm Standard @Elegoo Neptune4 (0.8 nozzle).json | 2 +- .../0.20mm Standard @Elegoo Neptune4Max (0.2 nozzle).json | 2 +- .../0.20mm Standard @Elegoo Neptune4Max (0.4 nozzle).json | 2 +- .../0.20mm Standard @Elegoo Neptune4Max (0.6 nozzle).json | 2 +- .../0.20mm Standard @Elegoo Neptune4Max (0.8 nozzle).json | 2 +- .../0.20mm Standard @Elegoo Neptune4Pro (0.2 nozzle).json | 2 +- .../0.20mm Standard @Elegoo Neptune4Pro (0.4 nozzle).json | 2 +- .../0.20mm Standard @Elegoo Neptune4Pro (0.6 nozzle).json | 2 +- .../0.20mm Standard @Elegoo Neptune4Pro (0.8 nozzle).json | 2 +- .../Elegoo/process/0.20mm Standard @Elegoo NeptuneX.json | 2 +- .../profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune.json | 2 +- .../profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2.json | 2 +- .../profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2D.json | 2 +- .../profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2S.json | 2 +- .../profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3.json | 2 +- .../Elegoo/process/0.24mm Draft @Elegoo Neptune3Max.json | 2 +- .../Elegoo/process/0.24mm Draft @Elegoo Neptune3Plus.json | 2 +- .../Elegoo/process/0.24mm Draft @Elegoo Neptune3Pro.json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4 (0.2 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4 (0.4 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4 (0.6 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4 (0.8 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4Max (0.2 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4Max (0.4 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4Max (0.6 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4Max (0.8 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4Pro (0.2 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4Pro (0.4 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4Pro (0.6 nozzle).json | 2 +- .../process/0.24mm Draft @Elegoo Neptune4Pro (0.8 nozzle).json | 2 +- .../profiles/Elegoo/process/0.24mm Draft @Elegoo NeptuneX.json | 2 +- .../Elegoo/process/0.28mm Extra Draft @Elegoo Neptune.json | 2 +- .../Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2.json | 2 +- .../Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2D.json | 2 +- .../Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2S.json | 2 +- .../Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3.json | 2 +- .../Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Max.json | 2 +- .../Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Plus.json | 2 +- .../Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Pro.json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4 (0.2 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4 (0.4 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4 (0.6 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4 (0.8 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4Max (0.2 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4Max (0.4 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4Max (0.6 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4Max (0.8 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4Pro (0.2 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4Pro (0.4 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4Pro (0.6 nozzle).json | 2 +- .../0.28mm Extra Draft @Elegoo Neptune4Pro (0.8 nozzle).json | 2 +- .../Elegoo/process/0.28mm Extra Draft @Elegoo NeptuneX.json | 2 +- .../profiles/Elegoo/process/fdm_process_elegoo_common.json | 2 +- .../profiles/Elegoo/process/fdm_process_neptune4_common.json | 2 +- resources/profiles/FLSun.json | 2 +- resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json | 2 +- resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json | 2 +- resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json | 2 +- .../profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json | 2 +- resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json | 2 +- .../profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json | 2 +- resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json | 2 +- .../profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json | 2 +- .../profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json | 2 +- .../FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json | 2 +- resources/profiles/FLSun/process/fdm_process_common.json | 2 +- resources/profiles/Flashforge.json | 2 +- resources/profiles/FlyingBear.json | 2 +- resources/profiles/Folgertech.json | 2 +- .../Folgertech/process/fdm_process_folgertech_common.json | 2 +- resources/profiles/InfiMech.json | 2 +- resources/profiles/Kingroon.json | 2 +- resources/profiles/Kingroon/process/fdm_process_common.json | 2 +- .../profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json | 2 +- .../profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json | 2 +- .../profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json | 2 +- .../profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json | 2 +- resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json | 2 +- .../MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json | 2 +- .../profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json | 2 +- .../MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json | 2 +- .../MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json | 2 +- .../MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json | 2 +- .../MagicMaker/process/0.20mm Standard @MM BoneKing.json | 2 +- .../profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json | 2 +- .../profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json | 2 +- .../profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json | 2 +- .../profiles/MagicMaker/process/0.20mm Standard @MM slb.json | 2 +- .../MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json | 2 +- .../MagicMaker/process/0.20mm Standard Fast @MM hj SK.json | 2 +- .../MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json | 2 +- .../profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json | 2 +- .../profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json | 2 +- .../profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json | 2 +- .../profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json | 2 +- resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json | 2 +- .../MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json | 2 +- .../MagicMaker/process/0.30mm Draft Fast @MM hj SK.json | 2 +- .../MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json | 2 +- resources/profiles/OrcaArena.json | 2 +- .../OrcaArena/process/fdm_process_bbl_0.24_nozzle_0.8.json | 2 +- .../OrcaArena/process/fdm_process_bbl_0.32_nozzle_0.8.json | 2 +- .../OrcaArena/process/fdm_process_bbl_0.40_nozzle_0.8.json | 2 +- .../OrcaArena/process/fdm_process_bbl_0.48_nozzle_0.8.json | 2 +- .../OrcaArena/process/fdm_process_bbl_0.56_nozzle_0.8.json | 2 +- resources/profiles/Peopoly.json | 2 +- .../profiles/Peopoly/process/fdm_process_peopoly_common.json | 2 +- .../Peopoly/process/fdm_process_pply_0.40_nozzle_0.8.json | 2 +- resources/profiles/Prusa.json | 2 +- resources/profiles/Prusa/process/fdm_process_common.json | 2 +- resources/profiles/Qidi.json | 2 +- resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json | 2 +- resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json | 2 +- resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json | 2 +- resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json | 2 +- resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json | 2 +- .../profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json | 2 +- resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json | 2 +- resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json | 2 +- .../profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json | 2 +- resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json | 2 +- .../profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json | 2 +- resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json | 2 +- resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json | 2 +- resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json | 2 +- resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json | 2 +- resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json | 2 +- resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json | 2 +- resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json | 2 +- resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json | 2 +- .../profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json | 2 +- .../profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json | 2 +- .../profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json | 2 +- .../profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json | 2 +- .../profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json | 2 +- .../profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json | 2 +- .../profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json | 2 +- .../profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json | 2 +- .../profiles/Qidi/process/fdm_process_QIDI_0.24_nozzle_0.8.json | 2 +- .../profiles/Qidi/process/fdm_process_QIDI_0.32_nozzle_0.8.json | 2 +- .../profiles/Qidi/process/fdm_process_QIDI_0.40_nozzle_0.8.json | 2 +- .../profiles/Qidi/process/fdm_process_QIDI_0.48_nozzle_0.8.json | 2 +- .../profiles/Qidi/process/fdm_process_QIDI_0.56_nozzle_0.8.json | 2 +- resources/profiles/Qidi/process/fdm_process_qidi_common.json | 2 +- resources/profiles/Raise3D.json | 2 +- .../profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json | 2 +- .../profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json | 2 +- .../profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json | 2 +- .../Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json | 2 +- .../profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json | 2 +- .../Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json | 2 +- resources/profiles/Ratrig.json | 2 +- .../profiles/Ratrig/process/fdm_process_ratrig_common.json | 2 +- resources/profiles/SecKit.json | 2 +- .../profiles/SecKit/process/fdm_process_seckit_common.json | 2 +- resources/profiles/Snapmaker/process/fdm_process_common.json | 2 +- resources/profiles/Sovol.json | 2 +- .../profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json | 2 +- .../profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json | 2 +- .../profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json | 2 +- .../profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json | 2 +- .../profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json | 2 +- .../profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json | 2 +- .../profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json | 2 +- .../profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json | 2 +- .../profiles/Sovol/process/0.20mm Standard @Sovol SV02.json | 2 +- .../profiles/Sovol/process/0.20mm Standard @Sovol SV05.json | 2 +- .../profiles/Sovol/process/0.20mm Standard @Sovol SV06.json | 2 +- .../profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json | 2 +- .../profiles/Sovol/process/0.20mm Standard @Sovol SV07.json | 2 +- .../profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json | 2 +- resources/profiles/Tronxy.json | 2 +- resources/profiles/Tronxy/process/fdm_process_common.json | 2 +- .../profiles/Tronxy/process/fdm_process_tronxy_common.json | 2 +- resources/profiles/TwoTrees.json | 2 +- resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json | 2 +- resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json | 2 +- resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json | 2 +- resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json | 2 +- resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json | 2 +- resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json | 2 +- resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json | 2 +- .../profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json | 2 +- resources/profiles/UltiMaker.json | 2 +- .../profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json | 2 +- .../UltiMaker/process/0.18mm Standard @UltiMaker 2.json | 2 +- .../profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json | 2 +- resources/profiles/Vivedino.json | 2 +- .../profiles/Vivedino/process/fdm_process_klipper_common.json | 2 +- resources/profiles/Voron.json | 2 +- resources/profiles/Voron/process/fdm_process_voron_common.json | 2 +- resources/profiles/Voxelab.json | 2 +- .../Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json | 2 +- .../Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json | 2 +- resources/profiles/Vzbot.json | 2 +- resources/profiles/Vzbot/process/fdm_process_Vzbot_common.json | 2 +- .../Vzbot/process/fdm_process_Vzbot_common_0.5_nozzle.json | 2 +- .../Vzbot/process/fdm_process_Vzbot_common_0.6_nozzle.json | 2 +- resources/profiles/Wanhao.json | 2 +- .../profiles/Wanhao/process/fdm_process_wanhao_common.json | 2 +- 483 files changed, 483 insertions(+), 483 deletions(-) diff --git a/resources/profiles/Anker.json b/resources/profiles/Anker.json index 74723c2173..5d2e9080a5 100644 --- a/resources/profiles/Anker.json +++ b/resources/profiles/Anker.json @@ -1,6 +1,6 @@ { "name": "Anker", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Anker configurations", "machine_model_list": [ diff --git a/resources/profiles/Anker/process/fdm_process_anker_fast_common.json b/resources/profiles/Anker/process/fdm_process_anker_fast_common.json index 82cc0d87fd..8eb9e65782 100644 --- a/resources/profiles/Anker/process/fdm_process_anker_fast_common.json +++ b/resources/profiles/Anker/process/fdm_process_anker_fast_common.json @@ -5,7 +5,7 @@ "instantiation": "false", "inherits": "fdm_process_anker_common", "reduce_crossing_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "bottom_shell_thickness": "0", "top_shell_thickness": "0", "default_acceleration": "6000", diff --git a/resources/profiles/Anycubic.json b/resources/profiles/Anycubic.json index 6d8818a7e0..aa4b1b8965 100644 --- a/resources/profiles/Anycubic.json +++ b/resources/profiles/Anycubic.json @@ -1,6 +1,6 @@ { "name": "Anycubic", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Anycubic configurations", "machine_model_list": [ diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json index c7b30bc5f4..ae2e17bad9 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json index e516880a08..2f47366db3 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.35", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json index 9c75644713..eade07cdad 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "3", "top_shell_thickness": "0.6", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json index 73db772a2a..28f69756de 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "1.2", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json index f236f609e0..f2a73b0216 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "1.2", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json index ca65287273..7263d1b0ab 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "1.2", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json index ffa79dfcc0..fb909fa35e 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.35", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json index 3eec452725..1aff6200a3 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json index 99a1501abb..ec3a9fe452 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.35", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json index 7be6a36476..4615902fda 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "3", "top_shell_thickness": "0.6", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json index 097e6ae25c..48a56550b0 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "1.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json index 249aae8b65..cb6bc1e1dd 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "1.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json index f1c5e98f04..9d63fb5bfa 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "1.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json index 7e8f2256da..f5479ab1f6 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.35", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json index c6fd6c3b4f..63bae7a319 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json index 496528f2c0..789cca8906 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.35", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json index 59f44fea87..af95cfe7da 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "3", "top_shell_thickness": "0.6", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json index 605f81e5c3..00460d0e0b 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "1.2", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json index f42c73f1d9..c454c2bc9b 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "1.2", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json index f3fe2d9587..8f850856df 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "1.2", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json index 1f2f55dfcb..7f569fd758 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.35", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Anycubic/process/fdm_process_common.json b/resources/profiles/Anycubic/process/fdm_process_common.json index 30291bf626..3afdc03365 100644 --- a/resources/profiles/Anycubic/process/fdm_process_common.json +++ b/resources/profiles/Anycubic/process/fdm_process_common.json @@ -81,7 +81,7 @@ "tree_support_wall_count": "0", "tree_support_with_infill": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/Artillery.json b/resources/profiles/Artillery.json index 7cfbfa06f8..e1749947f1 100644 --- a/resources/profiles/Artillery.json +++ b/resources/profiles/Artillery.json @@ -1,6 +1,6 @@ { "name": "Artillery", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Artillery configurations", "machine_model_list": [ diff --git a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json index 5e1b7012dc..ab4089b9fd 100644 --- a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json +++ b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json index 02f19906a6..5dae150088 100644 --- a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json +++ b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json index 90b3717bc7..1b5877d31e 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json index 23b5e6605e..c7aa5ed4ec 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json index a068c3c314..f3c6595ca7 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json index 03d0e59ef3..b6e42dc551 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json index 24899e1bd9..b680aa141b 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json index ed6853df93..850efe6b1e 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json index 327afad6f7..9e4fda6b7d 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json index d3fb6cc4fd..610ee45999 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json index 06b10e836a..616ff0b2fa 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json index 97dfe75dc1..13e1dc5945 100644 --- a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json +++ b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json index d5e0f991dd..c9a13e35c8 100644 --- a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json +++ b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Artillery/process/fdm_process_common.json b/resources/profiles/Artillery/process/fdm_process_common.json index ec9d332fac..d40a097651 100644 --- a/resources/profiles/Artillery/process/fdm_process_common.json +++ b/resources/profiles/Artillery/process/fdm_process_common.json @@ -81,7 +81,7 @@ "tree_support_wall_count": "0", "tree_support_with_infill": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index 2e2dc75a62..9ad3779363 100644 --- a/resources/profiles/BBL.json +++ b/resources/profiles/BBL.json @@ -1,7 +1,7 @@ { "name": "Bambulab", "url": "http://www.bambulab.com/Parameters/vendor/BBL.json", - "version": "01.09.00.10", + "version": "01.09.00.11", "force_update": "0", "description": "the initial version of BBL configurations", "machine_model_list": [ diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json index 4da8c72134..e13f52b66d 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json @@ -30,5 +30,5 @@ "Bambu Lab X1E 0.2 nozzle", "Bambu Lab A1 0.2 nozzle" ], - "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression" + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json index b3fa83d3de..b947c06289 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json @@ -37,7 +37,7 @@ "Bambu Lab X1E 0.4 nozzle", "Bambu Lab A1 0.4 nozzle" ], - "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n\t{elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression", + "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression", "machine_end_gcode": ";===== date: 20230428 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\n", "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 E-[retraction_length] F1800\nG17\nG2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 E[retraction_length] F300\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change", "change_filament_gcode": "M620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F[old_filament_e_feedrate] T{nozzle_temperature_range_high[previous_extruder]}\nT[next_extruder]\nM620.1 E F[new_filament_e_feedrate] T{nozzle_temperature_range_high[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F[old_filament_e_feedrate]\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S[nozzle_temperature_range_high]\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{old_filament_e_feedrate} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{old_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\n{else}\nG1 E{flush_length_1} F{old_filament_e_feedrate}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{new_filament_e_feedrate} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json index 36bede9f0a..f29aeb7434 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.6 nozzle", "Bambu Lab A1 0.6 nozzle" ], - "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression" + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json index 504d3123e3..10bafbdfa2 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.8 nozzle", "Bambu Lab A1 0.8 nozzle" ], - "machine_start_gcode": ";===== machine: P1P ========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression" + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ; turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json index ff1c26441a..8ebf4fea73 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json @@ -30,5 +30,5 @@ "Bambu Lab X1E 0.2 nozzle", "Bambu Lab A1 0.2 nozzle" ], - "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json index f76ee65d84..5cee189af5 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json @@ -36,7 +36,7 @@ "Bambu Lab X1E 0.4 nozzle", "Bambu Lab A1 0.4 nozzle" ], - "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n", + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n", "machine_end_gcode": ";===== date: 20230428 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\n", "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 E-[retraction_length] F1800\nG17\nG2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 E[retraction_length] F300\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change", "change_filament_gcode": "M620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F[old_filament_e_feedrate] T{nozzle_temperature_range_high[previous_extruder]}\nT[next_extruder]\nM620.1 E F[new_filament_e_feedrate] T{nozzle_temperature_range_high[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F[old_filament_e_feedrate]\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S[nozzle_temperature_range_high]\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{old_filament_e_feedrate} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{old_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\n{else}\nG1 E{flush_length_1} F{old_filament_e_feedrate}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{new_filament_e_feedrate} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json index 8284615176..e935d6664e 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.6 nozzle", "Bambu Lab A1 0.6 nozzle" ], - "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json index 29cfca14f2..49cbe6ecdb 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.8 nozzle", "Bambu Lab A1 0.8 nozzle" ], - "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ; turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "machine_start_gcode": ";===== machine: P1S ========================\n;===== date: 20231107 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ; turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json index ad0f3cd438..782ec98d50 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json @@ -30,5 +30,5 @@ "Bambu Lab X1E 0.2 nozzle", "Bambu Lab A1 0.2 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json index 9f2087a532..adf2a3bc7f 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json @@ -37,7 +37,7 @@ "Bambu Lab X1E 0.4 nozzle", "Bambu Lab A1 0.4 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4", + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4", "machine_end_gcode": ";===== date: 20240402 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n\n", "change_filament_gcode": "M620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F[old_filament_e_feedrate] T{nozzle_temperature_range_high[previous_extruder]}\nT[next_extruder]\nM620.1 E F[new_filament_e_feedrate] T{nozzle_temperature_range_high[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F[old_filament_e_feedrate]\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S[nozzle_temperature_range_high]\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{old_filament_e_feedrate} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{old_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\n{else}\nG1 E{flush_length_1} F{old_filament_e_feedrate}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{new_filament_e_feedrate} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json index 2a4e8d888b..732e99f8a0 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.6 nozzle", "Bambu Lab A1 0.6 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.333\n G0 F1200.0 X226 Y15 Z0.2 E0.495\n G0 F1200.0 X226 Y8 Z0.2 E0.691\n G0 F1200.0 X216 Y8 Z0.2 E0.988\n G0 F1200.0 X216 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E20.56 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.56 F1200.0\n G0 X35.0 Y6.0 E1.75 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json index 9728fde873..c9f7e6908e 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json @@ -34,5 +34,5 @@ "Bambu Lab X1E 0.8 nozzle", "Bambu Lab A1 0.8 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230707 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json index d752a45687..0a55296780 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json @@ -31,5 +31,5 @@ "Bambu Lab X1E 0.2 nozzle", "Bambu Lab A1 0.2 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json index 4594156001..540fd0bb5b 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json @@ -35,7 +35,7 @@ "Bambu Lab X1E 0.4 nozzle", "Bambu Lab A1 0.4 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4", + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4", "machine_end_gcode": ";===== date: 20240402 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n\n", "change_filament_gcode": "M620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F[old_filament_e_feedrate] T{nozzle_temperature_range_high[previous_extruder]}\nT[next_extruder]\nM620.1 E F[new_filament_e_feedrate] T{nozzle_temperature_range_high[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F[old_filament_e_feedrate]\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S[nozzle_temperature_range_high]\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{old_filament_e_feedrate} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{old_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{new_filament_e_feedrate}\n{else}\nG1 E{flush_length_1} F{old_filament_e_feedrate}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{new_filament_e_feedrate} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json index 73f67a2c9e..23526c9d03 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json @@ -33,5 +33,5 @@ "Bambu Lab X1E 0.6 nozzle", "Bambu Lab A1 0.6 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.333\n G0 F1200.0 X226 Y15 Z0.2 E0.495\n G0 F1200.0 X226 Y8 Z0.2 E0.691\n G0 F1200.0 X216 Y8 Z0.2 E0.988\n G0 F1200.0 X216 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E20.56 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.56 F1200.0\n G0 X35.0 Y6.0 E1.75 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.333\n G0 F1200.0 X226 Y15 Z0.2 E0.495\n G0 F1200.0 X226 Y8 Z0.2 E0.691\n G0 F1200.0 X216 Y8 Z0.2 E0.988\n G0 F1200.0 X216 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E20.56 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.56 F1200.0\n G0 X35.0 Y6.0 E1.75 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json index e7865c1d5e..ea4e5e27a2 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json @@ -33,5 +33,5 @@ "Bambu Lab X1E 0.8 nozzle", "Bambu Lab A1 0.8 nozzle" ], - "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" + "machine_start_gcode": ";===== machine: X1 =========================\n;===== date: 20230824 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60} T{nozzle_temperature_range_high[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {elsif (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y15 Z0.2 E1.482\n G0 F1200.0 X226 Y15 Z0.2 E0.550\n G0 F1200.0 X226 Y8 Z0.2 E0.768\n G0 F1200.0 X216 Y8 Z0.2 E1.098\n G0 F1200.0 X216 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E25.0 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y14 E1.70 F1200.0\n G0 X35.0 Y6.0 E1.90 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4" } \ No newline at end of file diff --git a/resources/profiles/BIQU.json b/resources/profiles/BIQU.json index d97e1b2eee..0b34e7888f 100644 --- a/resources/profiles/BIQU.json +++ b/resources/profiles/BIQU.json @@ -1,6 +1,6 @@ { "name": "BIQU", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "BIQU configurations", "machine_model_list": [ diff --git a/resources/profiles/BIQU/process/fdm_process_biqu_common.json b/resources/profiles/BIQU/process/fdm_process_biqu_common.json index 0375a6ced1..1b296b8dcc 100644 --- a/resources/profiles/BIQU/process/fdm_process_biqu_common.json +++ b/resources/profiles/BIQU/process/fdm_process_biqu_common.json @@ -83,7 +83,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/BIQU/process/fdm_process_hurakan_common.json b/resources/profiles/BIQU/process/fdm_process_hurakan_common.json index ac3fa6d8f5..5728d0a583 100644 --- a/resources/profiles/BIQU/process/fdm_process_hurakan_common.json +++ b/resources/profiles/BIQU/process/fdm_process_hurakan_common.json @@ -83,7 +83,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/CONSTRUCT3D.json b/resources/profiles/CONSTRUCT3D.json index 9580e9cd06..204e5e75eb 100644 --- a/resources/profiles/CONSTRUCT3D.json +++ b/resources/profiles/CONSTRUCT3D.json @@ -1,6 +1,6 @@ { "name": "CONSTRUCT3D", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Construct3D configurations", "machine_model_list": [ diff --git a/resources/profiles/CONSTRUCT3D/process/fdm_process_common.json b/resources/profiles/CONSTRUCT3D/process/fdm_process_common.json index b5ccd4173d..98f24aad78 100644 --- a/resources/profiles/CONSTRUCT3D/process/fdm_process_common.json +++ b/resources/profiles/CONSTRUCT3D/process/fdm_process_common.json @@ -83,7 +83,7 @@ "tree_support_wall_count": "0", "tree_support_with_infill": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_shell_thickness": "0.8", "enable_prime_tower": "0", "wipe_tower_no_sparse_layers": "0", diff --git a/resources/profiles/Comgrow.json b/resources/profiles/Comgrow.json index 6150492e6c..dd962a7e20 100644 --- a/resources/profiles/Comgrow.json +++ b/resources/profiles/Comgrow.json @@ -1,6 +1,6 @@ { "name": "Comgrow", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Comgrow configurations", "machine_model_list": [ diff --git a/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json index 75aad4846c..f65c16459b 100644 --- a/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json index 17d1839a79..db41ecc64e 100644 --- a/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json b/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json index 2b364ee2a8..3d5420355a 100644 --- a/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json +++ b/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json index 9d94e6c504..5cfa3a3188 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json index d11dfb24a1..dd3a8070f3 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json index 17de958703..e70b15981d 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "1.0", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json index 505373d1e9..14719cd6ef 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json index 7f8c3778b1..cbfcd4992c 100644 --- a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json index 3b9cbaa7a5..db859c397b 100644 --- a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json index a1ca8bf2cb..3791c14d3b 100644 --- a/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json index 9fbe8bb3f8..b80a6609b9 100644 --- a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json index af0be46947..2bd2493503 100644 --- a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json index 7fc0fb213c..729f151519 100644 --- a/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json index a7385a9177..2512181865 100644 --- a/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json index 8bddb7adca..13f8660ec3 100644 --- a/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json index 0b014b0791..0c04a9280f 100644 --- a/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json @@ -78,7 +78,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "2", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Comgrow/process/fdm_process_comgrow_common.json b/resources/profiles/Comgrow/process/fdm_process_comgrow_common.json index 41009107e5..0c75457ac1 100644 --- a/resources/profiles/Comgrow/process/fdm_process_comgrow_common.json +++ b/resources/profiles/Comgrow/process/fdm_process_comgrow_common.json @@ -179,7 +179,7 @@ "top_surface_acceleration": "2000", "top_surface_jerk": "9", "top_surface_line_width": "0.4", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_speed": "40", "travel_acceleration": "3000", "travel_jerk": "12", diff --git a/resources/profiles/Creality.json b/resources/profiles/Creality.json index a3e7f60d0b..a72b06b076 100644 --- a/resources/profiles/Creality.json +++ b/resources/profiles/Creality.json @@ -1,6 +1,6 @@ { "name": "Creality", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Creality configurations", "machine_model_list": [ diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json index 86937ca76f..c6e0e3c049 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json index 08f49d3512..7c514b556a 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.25", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json index 0763c0eef7..9e7593af59 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json index 7aa30a730a..f924e7d589 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.65", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json index 9fced98b54..4f4926aacd 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.85", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json index 2e4347739b..5b6d4c5676 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json index 68cb76aeef..ac9717eba1 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json index 9e03ec13dd..db047e4269 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json index 0ceadf8e36..efce8c2d03 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json index 7fdec59c18..7693975ddc 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json index 8db8cbe7bf..0e02c09dbb 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json index 53a9e37792..913636b953 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json index 29c2821863..9d347da551 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json index eac84c4088..9ca84807f4 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json index eb9a1a3523..fccae88f53 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json index 9521fc51e4..a357c83882 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json @@ -86,7 +86,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json index 0fbd9d9218..6a7de541d1 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.22", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json index 229bccb94b..40a01902d3 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json index bd5a636f29..8a6d369f10 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.62", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json index d8b251a1fd..be014f9f0b 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.82", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json index 95e24872c8..2ae5db21bd 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json b/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json index eb649fb1f1..2d9cc2ea68 100644 --- a/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json index 997f6face1..cb71707f79 100644 --- a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json index 9404f9d2f8..b3ff50fb2f 100644 --- a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json index 644ddc4fed..840d148cd5 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.25", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json index 34f855f799..b5c5838283 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json index 6b2ec5c2fe..b80208b576 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.63", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json index 11285e327a..d2aa8c80ec 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.85", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json index 0ded3d9508..fec8117098 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json index 26de209709..8f002a72cc 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json index c57f64c041..a75e149b6e 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json index 8cce719d05..dad348b317 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json index 493e91839d..e4e4c901c7 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json index 15ea186a05..d9cc157fa1 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json index c673f050fd..485685ec4b 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json index 3d99e46056..0c1a0f749e 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json index 368893012f..edff62e441 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json index 2d7a02e45e..2665ea3fd3 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json index e38e4c4089..873eb182ec 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json index 45ca5389c6..7214188347 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json index 0bd95f7ac4..70163bc3dc 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json index bcd0c9d992..3b652dcf0a 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json index 6897175b64..f94eec09ab 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json index 6dc83dadbd..2538aa11be 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json index 5584669a73..46d65e7122 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json @@ -86,7 +86,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json index 8e79d226d0..ef2bffcc02 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.22", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json index 369b0a1a4a..530d41624d 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json index 5c9cd487c7..91b36ae6f4 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.62", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json index c9fdcc4187..deb23c8a3b 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.82", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json index 5600ad9174..7f76fbd942 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json index 78c523f829..484d32d0df 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json index 86044fd774..27a0feb8d7 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json index 64fdc16a1f..4573868e81 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json index 6586f39240..af22c17768 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json index 9913f7f5b7..db483caf0b 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json index a52c72adb6..bd0601cf9d 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.25", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json index 2c7643b16c..88cc271d75 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json index e6c4204f03..36bd342bf8 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.65", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json index d6c78d4b32..b17d83b7ce 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.85", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json index a6cbe7ac1a..38553af9b2 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json index 01620cfa09..0a065d178f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json index 786de08cdb..ac7771ebb9 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json index 8d1ee9ba06..e0dcb2cc87 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json index ad84a4e627..139b3699c1 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json index 76fe4f2103..9ca6179416 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json index ca3ae01e2f..eb9b3bf7cc 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json index 96f81bb121..11bff339aa 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json index c5dc8ec7a2..5c29468ab7 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json index 94574083f0..12a38655a6 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json index a3d25a670c..4c2647a755 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json index fbb57bcb08..49d1e4b9ea 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json index 02f6f27b91..8b4e385b9d 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json index 57f9f6c6a1..7ad55384bc 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json index 2562ed334b..9ac4b820ac 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json index 4743cb6256..a12165953f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json index d6984b116e..ff40fda1f3 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json index ef601ed163..a3532c6a73 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json index d02539eb45..23f1e4b44a 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json index b685b84dba..2a996b4473 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.22", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json index 73b1636de4..3415709f38 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json index 1a82bd54c2..daa3e807d8 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.62", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json index 1c36e38e18..6bd2c594af 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.82", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json index b8ab9727f6..515b2cd6bb 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json index c9518d4655..88592919f7 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json index 04b6b36d34..2e186e482f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json index 63815b0e6e..1487772565 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json index 608e67142b..da250fc845 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json index ae98760d8a..7f6a59d33b 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json index 59fe41c01d..432562e3a1 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json index 536dc77546..12f174c33c 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.25", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json index b9f3144edd..14962e5087 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json index b0f98c9699..ea231e98c9 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.65", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json index 32fbed681b..6db6db80be 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.85", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json index 492b2675bb..2621599ba0 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json index ccf0dd7258..529528c050 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json index 020c8e13a7..73b949f04a 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json index 97df4f70ba..3573867d86 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json index 2b495cad25..5f822b2cfa 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json index 805dc42a38..c6d0c98fc9 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json index bd4c6e5f2b..a81b7d1ab4 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json index fdebf4946b..6cb0a25fc3 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json index fec5ce6f54..03c9d8730e 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json index 3a523cd522..8b1545a11b 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json index 6961aa3c67..78d7e1378e 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json index aa5bac7b5c..3c808556f6 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json index f9727bbf9c..af24ef669e 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json index a461943f93..40feb298fc 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json index 6644c9ba84..084f441372 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json @@ -86,7 +86,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json index 9c65d0b440..d5f01e73b2 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.22", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json index 83e2f9d4e8..33dacc26b0 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json index e5bb153a68..cf1126078b 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.62", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json index b023f761aa..5b1cf6e198 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json @@ -87,7 +87,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "2", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.82", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json index d6df736aba..3fbafc29a5 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json index 7d9f3fe5ff..3b8d34c2c2 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json index 2ba5989636..189dbdb064 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json index acf78ef95a..b1787e9fdf 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json index 502148a517..e32cc005ff 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json index 3d17eea026..1dc90a53a5 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json index 1484a5a12a..5f1b9abfbb 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json index 6b4185940b..9b17965523 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.6", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json index f884f5dc63..c803271945 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.8", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Creality/process/fdm_process_creality_common.json b/resources/profiles/Creality/process/fdm_process_creality_common.json index 83c8322a28..ce779b40e2 100644 --- a/resources/profiles/Creality/process/fdm_process_creality_common.json +++ b/resources/profiles/Creality/process/fdm_process_creality_common.json @@ -83,7 +83,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Custom.json b/resources/profiles/Custom.json index 118607cf52..ebd4f0c118 100644 --- a/resources/profiles/Custom.json +++ b/resources/profiles/Custom.json @@ -1,6 +1,6 @@ { "name": "Custom Printer", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "My configurations", "machine_model_list": [ diff --git a/resources/profiles/Custom/process/fdm_process_klipper_common.json b/resources/profiles/Custom/process/fdm_process_klipper_common.json index 4c2320391c..dae96dd844 100644 --- a/resources/profiles/Custom/process/fdm_process_klipper_common.json +++ b/resources/profiles/Custom/process/fdm_process_klipper_common.json @@ -83,7 +83,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Custom/process/fdm_process_marlin_common.json b/resources/profiles/Custom/process/fdm_process_marlin_common.json index ad5002ab20..d39d2becc1 100644 --- a/resources/profiles/Custom/process/fdm_process_marlin_common.json +++ b/resources/profiles/Custom/process/fdm_process_marlin_common.json @@ -83,7 +83,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Custom/process/fdm_process_rrf_common.json b/resources/profiles/Custom/process/fdm_process_rrf_common.json index 86061eb72a..abf616fd04 100644 --- a/resources/profiles/Custom/process/fdm_process_rrf_common.json +++ b/resources/profiles/Custom/process/fdm_process_rrf_common.json @@ -83,7 +83,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Dremel/process/fdm_process_dremel_common.json b/resources/profiles/Dremel/process/fdm_process_dremel_common.json index ee2cd3a42e..40222d6337 100644 --- a/resources/profiles/Dremel/process/fdm_process_dremel_common.json +++ b/resources/profiles/Dremel/process/fdm_process_dremel_common.json @@ -83,7 +83,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo.json b/resources/profiles/Elegoo.json index f361afaaed..734cc1262c 100644 --- a/resources/profiles/Elegoo.json +++ b/resources/profiles/Elegoo.json @@ -1,6 +1,6 @@ { "name": "Elegoo", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Elegoo configurations", "machine_model_list": [ diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune.json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune.json index 539343e9fe..b038c37443 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune.json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2.json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2.json index d1a3bb0599..6651d359db 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2.json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2D.json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2D.json index 63200f7671..d4442bebb2 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2D.json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2D.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2S.json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2S.json index dfef27e158..ea7f169339 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2S.json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune2S.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3.json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3.json index 739cef8085..c38fc06729 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3.json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Max.json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Max.json index aaade1da53..f1e200d157 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Max.json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Max.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Plus.json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Plus.json index 10550956df..65ab7e3a6f 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Plus.json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Pro.json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Pro.json index 4d1d16f32d..bd85516ca5 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Pro.json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune3Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.2 nozzle).json index 8c0d224646..9ecb45398c 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.4 nozzle).json index 10a5912c2c..098cd34659 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.6 nozzle).json index ef65fe8243..93301e83a8 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.8 nozzle).json index 4706ab2596..f31866bee6 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4 (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.2 nozzle).json index e06676560c..7e6dc95e2c 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.2 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.4 nozzle).json index cb38d8f590..24e2e69c3b 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.4 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.6 nozzle).json index 21174abd99..37b8ede2aa 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.6 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.8 nozzle).json index 98b1e7aa41..4172092c74 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Max (0.8 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.2 nozzle).json index 9f0a4e1fc3..eb1a047936 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.4 nozzle).json index 41fe9cbc3b..569a1bccde 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.6 nozzle).json index 0803d18037..ee6d45e915 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.8 nozzle).json index bcf08edbcc..87d8bf3b3e 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo Neptune4Pro (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo NeptuneX.json b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo NeptuneX.json index e92801bf1d..1e5418088c 100644 --- a/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo NeptuneX.json +++ b/resources/profiles/Elegoo/process/0.08mm Extra Fine @Elegoo NeptuneX.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune.json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune.json index 6af8821327..fc5396ab40 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune.json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2.json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2.json index 8d281ef78e..b194e0a6c8 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2.json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2D.json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2D.json index 6edc7d035a..67a3bbda3e 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2D.json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2D.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2S.json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2S.json index f43bfe5a10..14abacd546 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2S.json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune2S.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3.json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3.json index bf32664861..4794503cec 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3.json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Max.json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Max.json index 18d409bb33..a6c5865df3 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Max.json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Max.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Plus.json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Plus.json index 1995dce6d1..e77f50295d 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Plus.json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Pro.json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Pro.json index bd61f8bc83..6cfa6ea4c4 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Pro.json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune3Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.2 nozzle).json index ef1414f069..687a1811a0 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.4 nozzle).json index 3f585caab2..ae186fc6dd 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.6 nozzle).json index a009da29eb..61e8bb626d 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.8 nozzle).json index aaf50deefd..e12bc1d4dd 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4 (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.2 nozzle).json index 41f12f0f02..42ab9780f1 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.2 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.4 nozzle).json index 401e4fc217..cfbc308a17 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.4 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.6 nozzle).json index 3da84ebf49..cd5c0df92c 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.6 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.8 nozzle).json index 4f5ffceb57..93af963348 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Max (0.8 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.2 nozzle).json index a3f24129ab..7230507c95 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.4 nozzle).json index 37c42c6663..e6267acb74 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.6 nozzle).json index 7addbe460f..4f4ac4fbd8 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.8 nozzle).json index e713c1dce6..38b05e66d5 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo Neptune4Pro (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo NeptuneX.json b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo NeptuneX.json index eac0b78091..adb55ad26e 100644 --- a/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo NeptuneX.json +++ b/resources/profiles/Elegoo/process/0.12mm Fine @Elegoo NeptuneX.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune.json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune.json index 3794fd2e8b..c577b314c8 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune.json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2.json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2.json index cf79ff16ac..9f14de0704 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2.json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2D.json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2D.json index 3ab4f03850..61090b1d91 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2D.json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2D.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2S.json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2S.json index fb2a9fea72..9acf8c84ba 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2S.json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune2S.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3.json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3.json index 90e2e6e9e7..263890c3f1 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3.json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Max.json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Max.json index 1da848e6f1..29c21bfd0e 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Max.json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Max.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Plus.json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Plus.json index cbfaca0474..948a95d5bd 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Plus.json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Pro.json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Pro.json index 4695d5fa0a..82c035dd6a 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Pro.json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune3Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.2 nozzle).json index 2741157aa3..9f57a9b25f 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.4 nozzle).json index 05b1c10d53..412536db2f 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.6 nozzle).json index 69b4cccac1..5da075cff6 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.8 nozzle).json index 4a8a6a10f6..b6f0ec9d79 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4 (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.2 nozzle).json index 79fb839db3..a86317ecb2 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.2 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.4 nozzle).json index 1587ad552b..8a5170e8a4 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.4 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.6 nozzle).json index 8f2d254baa..600339ba44 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.6 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.8 nozzle).json index 6f37cb8756..ce8e971115 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Max (0.8 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.2 nozzle).json index 510a17fda2..e123f95bf6 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.4 nozzle).json index 644e78490b..e8c2299202 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.6 nozzle).json index bc8d7ecb57..0cf857bc9b 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.8 nozzle).json index a94a77f35b..73c24246e1 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo Neptune4Pro (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo NeptuneX.json b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo NeptuneX.json index d13dfe8f32..c5a43079af 100644 --- a/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo NeptuneX.json +++ b/resources/profiles/Elegoo/process/0.16mm Optimal @Elegoo NeptuneX.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune.json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune.json index c0ca9ac7e3..c8dcba56f6 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune.json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2.json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2.json index 37fde48d04..feb3d5f70e 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2.json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2D.json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2D.json index fe84b11aa6..e885c64f13 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2D.json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2D.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2S.json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2S.json index af3f7ad675..690c244d6a 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2S.json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune2S.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3.json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3.json index 7af032bde2..74defae68c 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3.json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Max.json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Max.json index 419aab1794..34e1212b50 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Max.json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Max.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Plus.json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Plus.json index c1aed883be..37a9a90d3c 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Plus.json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Pro.json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Pro.json index add697439b..8ddb13f45d 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Pro.json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune3Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.2 nozzle).json index 7dbac42615..6a50274cae 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.4 nozzle).json index 6f50f7149b..23d4113146 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.6 nozzle).json index 080770c151..ec9cbf92a9 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.8 nozzle).json index 5093910fda..7cb6d0cd98 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4 (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.2 nozzle).json index 3fe7c398a5..661aa88f63 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.2 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.4 nozzle).json index 89eb5ba878..a74e90b2c1 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.4 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.6 nozzle).json index 318b6a396b..73369e7456 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.6 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.8 nozzle).json index 68615fbc10..97dbc4cc08 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Max (0.8 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.2 nozzle).json index bbf6de592c..71a82a0fc4 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.4 nozzle).json index b949da8ea4..41834bde97 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.6 nozzle).json index 0f8653e791..e75da66406 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.56", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.8 nozzle).json index d05dfae48d..cdb7048d7e 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo Neptune4Pro (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.78", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo NeptuneX.json b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo NeptuneX.json index 6c959477f7..fd6788587c 100644 --- a/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo NeptuneX.json +++ b/resources/profiles/Elegoo/process/0.20mm Standard @Elegoo NeptuneX.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune.json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune.json index b3278427ac..7309292ef8 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune.json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2.json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2.json index 692951a97c..d7411cd3dd 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2.json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2D.json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2D.json index 92035a3fc7..382fd05c9d 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2D.json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2D.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2S.json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2S.json index 53ea928c64..1b1e1c3205 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2S.json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune2S.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3.json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3.json index df072e3506..7c8c35c50d 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3.json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Max.json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Max.json index d465779d5c..0982941b52 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Max.json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Max.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Plus.json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Plus.json index b3a1023b99..c8c097ae86 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Plus.json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Pro.json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Pro.json index b270e5b302..345a3e2e9e 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Pro.json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune3Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.2 nozzle).json index fd60e63a23..54ba31a3d7 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.25", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.4 nozzle).json index a71372ae75..5904d912bb 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.6 nozzle).json index e86310a6eb..e1601d15a4 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.65", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.8 nozzle).json index d058cd9026..3276e82691 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4 (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.85", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.2 nozzle).json index fefb7b6b81..ebf0bf32c5 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.2 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.25", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.4 nozzle).json index cd0d5ab883..45cc94b453 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.4 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.6 nozzle).json index 9061cff097..e6d3275fb2 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.6 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.65", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.8 nozzle).json index 4e35b2b9fc..f0d7ed8bca 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Max (0.8 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.85", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.2 nozzle).json index 0b2b3bc9c1..8ee549de06 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.25", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.4 nozzle).json index cb2080be4b..bc966a39b4 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.6 nozzle).json index a37af48be2..d8d40fbc0e 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.65", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.8 nozzle).json index ebda19568f..efcb13855c 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo Neptune4Pro (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.85", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo NeptuneX.json b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo NeptuneX.json index b9a14acade..e3eb2e8dee 100644 --- a/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo NeptuneX.json +++ b/resources/profiles/Elegoo/process/0.24mm Draft @Elegoo NeptuneX.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune.json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune.json index a5c5dd2c91..27b0c5bd55 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune.json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2.json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2.json index 2a67da73c7..852c9c475d 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2.json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2D.json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2D.json index 7e7a9062a6..ea331c3bb5 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2D.json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2D.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2S.json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2S.json index 4342f9aec1..b572a44beb 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2S.json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune2S.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3.json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3.json index 9bb848aeea..32b156a08c 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3.json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Max.json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Max.json index d8d19449fe..cee9de657f 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Max.json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Max.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Plus.json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Plus.json index ac002f95d3..f65b350d31 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Plus.json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Pro.json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Pro.json index 4c6529a260..264e4d1ae1 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Pro.json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune3Pro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.2 nozzle).json index 21a1a10741..80181addff 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.25", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.4 nozzle).json index 1ce0a7317e..f4efcacccb 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.6 nozzle).json index 987d8f78bb..e0ea48c46d 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.6 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.65", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.8 nozzle).json index 2ad24c0a03..63a661770c 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4 (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.85", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.2 nozzle).json index 29a57e8bb6..ba4bfcd3ed 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.2 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.25", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.4 nozzle).json index feb9ca7ad0..fc5cd75b39 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.4 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.6 nozzle).json index 93b683e79d..6b137a152e 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.6 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.65", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.8 nozzle).json index 590c53b55c..f6fc767aa2 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Max (0.8 nozzle).json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.85", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.2 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.2 nozzle).json index d1474f68b7..591374e647 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.2 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.2 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.25", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.4 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.4 nozzle).json index a727fd9831..b96b4c4e0d 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.4 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.4 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.6 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.6 nozzle).json index aec1d00c39..f9ce9dd4de 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.6 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.6 nozzle).json @@ -72,7 +72,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.65", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.8 nozzle).json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.8 nozzle).json index 585a66496c..b2271d8abf 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.8 nozzle).json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo Neptune4Pro (0.8 nozzle).json @@ -74,7 +74,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.85", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo NeptuneX.json b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo NeptuneX.json index 292d88f247..dbc97f7e87 100644 --- a/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo NeptuneX.json +++ b/resources/profiles/Elegoo/process/0.28mm Extra Draft @Elegoo NeptuneX.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/fdm_process_elegoo_common.json b/resources/profiles/Elegoo/process/fdm_process_elegoo_common.json index 79830b41b9..d2fba5e576 100644 --- a/resources/profiles/Elegoo/process/fdm_process_elegoo_common.json +++ b/resources/profiles/Elegoo/process/fdm_process_elegoo_common.json @@ -82,7 +82,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Elegoo/process/fdm_process_neptune4_common.json b/resources/profiles/Elegoo/process/fdm_process_neptune4_common.json index c3d1c3fecd..3b633006df 100644 --- a/resources/profiles/Elegoo/process/fdm_process_neptune4_common.json +++ b/resources/profiles/Elegoo/process/fdm_process_neptune4_common.json @@ -75,7 +75,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.2", "top_shell_layers": "11", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun.json b/resources/profiles/FLSun.json index 2c512a86ce..b177ba6962 100644 --- a/resources/profiles/FLSun.json +++ b/resources/profiles/FLSun.json @@ -1,6 +1,6 @@ { "name": "FLSun", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "FLSun configurations", "machine_model_list": [ diff --git a/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json b/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json index b2f8c0a6ef..a867e5fd9b 100644 --- a/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "12", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json index 21d435028c..fda7d144f9 100644 --- a/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "12", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json index d9aac91088..4f1c63c248 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json index 093584d733..057e0bb19f 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "6", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json index b3e33c1928..0e2d1461a1 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json index f4b46ac571..4bb8e85c75 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json index ca8b4bf23c..0c1daaff5a 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json index f06ed8b702..5ba222dc3f 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json index f6a8572ee2..00bce5225f 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json index 5b0c670c41..e9da429ad0 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/fdm_process_common.json b/resources/profiles/FLSun/process/fdm_process_common.json index dbcc552bbd..5eba546926 100644 --- a/resources/profiles/FLSun/process/fdm_process_common.json +++ b/resources/profiles/FLSun/process/fdm_process_common.json @@ -81,7 +81,7 @@ "tree_support_wall_count": "0", "tree_support_with_infill": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/Flashforge.json b/resources/profiles/Flashforge.json index b58dbefe0d..636d1fa396 100644 --- a/resources/profiles/Flashforge.json +++ b/resources/profiles/Flashforge.json @@ -1,7 +1,7 @@ { "name": "Flashforge", "url": "", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Flashforge configurations", "machine_model_list": [ diff --git a/resources/profiles/FlyingBear.json b/resources/profiles/FlyingBear.json index c03595bce2..9854e2cee0 100644 --- a/resources/profiles/FlyingBear.json +++ b/resources/profiles/FlyingBear.json @@ -1,6 +1,6 @@ { "name": "FlyingBear", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "1", "description": "FlyingBear configurations", "machine_model_list": [ diff --git a/resources/profiles/Folgertech.json b/resources/profiles/Folgertech.json index 3753a8892f..f38f081914 100644 --- a/resources/profiles/Folgertech.json +++ b/resources/profiles/Folgertech.json @@ -1,6 +1,6 @@ { "name": "Folgertech", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Folgertech configurations", "machine_model_list": [ diff --git a/resources/profiles/Folgertech/process/fdm_process_folgertech_common.json b/resources/profiles/Folgertech/process/fdm_process_folgertech_common.json index ead894d6f0..2d2149e724 100644 --- a/resources/profiles/Folgertech/process/fdm_process_folgertech_common.json +++ b/resources/profiles/Folgertech/process/fdm_process_folgertech_common.json @@ -83,7 +83,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/InfiMech.json b/resources/profiles/InfiMech.json index 38c380e380..08a831bedf 100644 --- a/resources/profiles/InfiMech.json +++ b/resources/profiles/InfiMech.json @@ -1,6 +1,6 @@ { "name": "InfiMech", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "1", "description": "InfiMech configurations", "machine_model_list": [ diff --git a/resources/profiles/Kingroon.json b/resources/profiles/Kingroon.json index 292090de84..19304b1e50 100644 --- a/resources/profiles/Kingroon.json +++ b/resources/profiles/Kingroon.json @@ -1,7 +1,7 @@ { "name": "Kingroon", "url": "https://kingroon.com/", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Kingroon configuration files", "machine_model_list": [ diff --git a/resources/profiles/Kingroon/process/fdm_process_common.json b/resources/profiles/Kingroon/process/fdm_process_common.json index cfe9b4199d..0477c19f03 100644 --- a/resources/profiles/Kingroon/process/fdm_process_common.json +++ b/resources/profiles/Kingroon/process/fdm_process_common.json @@ -157,7 +157,7 @@ "top_surface_acceleration": "3000", "top_surface_jerk": "9", "top_surface_line_width": "0.42", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_speed": "60", "travel_acceleration": "3000", "travel_jerk": "12", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json index 96031f4534..ef58fa21f7 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "travel_speed": "150", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json index 9e65e3c0f1..823e1e59a4 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "travel_speed": "150", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json index aac3d619ec..90485e8569 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "travel_speed": "150", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json index 1cf2bb15bd..95828c323a 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "travel_speed": "150", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json index 0d84145903..4ab240baac 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json @@ -69,7 +69,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json index edcec6770e..4b6ca0d952 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json index 12fbabfa16..0b398ff6e2 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json index 95d35c5974..d261694e40 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json index a852f468cb..72ce20e9ea 100644 --- a/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json @@ -69,7 +69,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json index 9993d37aa7..81716f27f9 100644 --- a/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json @@ -69,7 +69,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json index 309d1d3ab4..8c18dcaacb 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json @@ -69,7 +69,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "initial_layer_travel_speed": "60", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json index 89506213f6..17905e7921 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json @@ -69,7 +69,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "initial_layer_travel_speed": "60", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json index c04bf60770..7fc44d68a0 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json @@ -69,7 +69,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "initial_layer_travel_speed": "60", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json index 4f0224481f..7b292da39c 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json @@ -69,7 +69,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "initial_layer_travel_speed": "60", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json index 3a2ce22e6e..73618b0dde 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json @@ -68,7 +68,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "initial_layer_travel_speed": "60", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json index c496a8b2b4..1e0e84b7ea 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json @@ -68,7 +68,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json index ed09680bbd..2f8681b695 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json @@ -68,7 +68,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json index 0c7e0bab23..6cc84ec800 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json @@ -68,7 +68,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json index bdce77e824..f4d1fcf9b2 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "travel_speed": "150", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json index bf9b4bf478..175f3076b0 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "travel_speed": "150", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json index 0929e9dd48..f358cdf02b 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "travel_speed": "150", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json index 2dae174d7f..816bc041d5 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "travel_speed": "150", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json index 7314b4cfaa..d142dfd0d1 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json @@ -68,7 +68,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json index f1feb9d4d7..223b8b2345 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json index 4935a4a224..c3754a40ae 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json index 90aaa46fb9..ed40c3e8d0 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_thickness": "0.8", "enable_prime_tower": "0", diff --git a/resources/profiles/OrcaArena.json b/resources/profiles/OrcaArena.json index a5ee2329af..81fe110cbb 100644 --- a/resources/profiles/OrcaArena.json +++ b/resources/profiles/OrcaArena.json @@ -1,7 +1,7 @@ { "name": "Orca Arena Printer", "url": "", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Orca Arena configuration files", "machine_model_list": [ diff --git a/resources/profiles/OrcaArena/process/fdm_process_bbl_0.24_nozzle_0.8.json b/resources/profiles/OrcaArena/process/fdm_process_bbl_0.24_nozzle_0.8.json index 9c1cbf2028..55d9be4407 100644 --- a/resources/profiles/OrcaArena/process/fdm_process_bbl_0.24_nozzle_0.8.json +++ b/resources/profiles/OrcaArena/process/fdm_process_bbl_0.24_nozzle_0.8.json @@ -18,7 +18,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "35", "initial_layer_infill_speed": "55", "outer_wall_speed": "120", diff --git a/resources/profiles/OrcaArena/process/fdm_process_bbl_0.32_nozzle_0.8.json b/resources/profiles/OrcaArena/process/fdm_process_bbl_0.32_nozzle_0.8.json index d64d4b6f24..6172f32e94 100644 --- a/resources/profiles/OrcaArena/process/fdm_process_bbl_0.32_nozzle_0.8.json +++ b/resources/profiles/OrcaArena/process/fdm_process_bbl_0.32_nozzle_0.8.json @@ -18,7 +18,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "35", "initial_layer_infill_speed": "55", "outer_wall_speed": "120", diff --git a/resources/profiles/OrcaArena/process/fdm_process_bbl_0.40_nozzle_0.8.json b/resources/profiles/OrcaArena/process/fdm_process_bbl_0.40_nozzle_0.8.json index ce35f532e5..aa514e6f04 100644 --- a/resources/profiles/OrcaArena/process/fdm_process_bbl_0.40_nozzle_0.8.json +++ b/resources/profiles/OrcaArena/process/fdm_process_bbl_0.40_nozzle_0.8.json @@ -18,7 +18,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "35", "initial_layer_infill_speed": "55", "outer_wall_speed": "120", diff --git a/resources/profiles/OrcaArena/process/fdm_process_bbl_0.48_nozzle_0.8.json b/resources/profiles/OrcaArena/process/fdm_process_bbl_0.48_nozzle_0.8.json index 87c7d6b04c..d026bdc746 100644 --- a/resources/profiles/OrcaArena/process/fdm_process_bbl_0.48_nozzle_0.8.json +++ b/resources/profiles/OrcaArena/process/fdm_process_bbl_0.48_nozzle_0.8.json @@ -18,7 +18,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "35", "initial_layer_infill_speed": "55", "outer_wall_speed": "120", diff --git a/resources/profiles/OrcaArena/process/fdm_process_bbl_0.56_nozzle_0.8.json b/resources/profiles/OrcaArena/process/fdm_process_bbl_0.56_nozzle_0.8.json index 311925326a..f43ab7e2e5 100644 --- a/resources/profiles/OrcaArena/process/fdm_process_bbl_0.56_nozzle_0.8.json +++ b/resources/profiles/OrcaArena/process/fdm_process_bbl_0.56_nozzle_0.8.json @@ -18,7 +18,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "35", "initial_layer_infill_speed": "55", "outer_wall_speed": "120", diff --git a/resources/profiles/Peopoly.json b/resources/profiles/Peopoly.json index 894485f3fc..b776df7c93 100644 --- a/resources/profiles/Peopoly.json +++ b/resources/profiles/Peopoly.json @@ -1,6 +1,6 @@ { "name": "Peopoly", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Peopoly configurations", "machine_model_list": [ diff --git a/resources/profiles/Peopoly/process/fdm_process_peopoly_common.json b/resources/profiles/Peopoly/process/fdm_process_peopoly_common.json index 35138b2e2d..1f11ed867b 100644 --- a/resources/profiles/Peopoly/process/fdm_process_peopoly_common.json +++ b/resources/profiles/Peopoly/process/fdm_process_peopoly_common.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Peopoly/process/fdm_process_pply_0.40_nozzle_0.8.json b/resources/profiles/Peopoly/process/fdm_process_pply_0.40_nozzle_0.8.json index b1dbf2c592..b06735853b 100644 --- a/resources/profiles/Peopoly/process/fdm_process_pply_0.40_nozzle_0.8.json +++ b/resources/profiles/Peopoly/process/fdm_process_pply_0.40_nozzle_0.8.json @@ -15,7 +15,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "45", "initial_layer_infill_speed": "80", "sparse_infill_speed": "150", diff --git a/resources/profiles/Prusa.json b/resources/profiles/Prusa.json index 1a7cf4e465..bb0ca7890e 100644 --- a/resources/profiles/Prusa.json +++ b/resources/profiles/Prusa.json @@ -1,6 +1,6 @@ { "name": "Prusa", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Prusa configurations", "machine_model_list": [ diff --git a/resources/profiles/Prusa/process/fdm_process_common.json b/resources/profiles/Prusa/process/fdm_process_common.json index 8995061a1d..c903b622c4 100644 --- a/resources/profiles/Prusa/process/fdm_process_common.json +++ b/resources/profiles/Prusa/process/fdm_process_common.json @@ -84,7 +84,7 @@ "tree_support_wall_count": "0", "tree_support_with_infill": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_shell_thickness": "0.8", "enable_prime_tower": "0", "wipe_tower_no_sparse_layers": "0", diff --git a/resources/profiles/Qidi.json b/resources/profiles/Qidi.json index 9a6e3fa2d1..8b820d30ad 100644 --- a/resources/profiles/Qidi.json +++ b/resources/profiles/Qidi.json @@ -1,6 +1,6 @@ { "name": "Qidi", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Qidi configurations", "machine_model_list": [ diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json index 61346c894b..e2f3a6c4a3 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json @@ -69,7 +69,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "enable_prime_tower": "0", "wipe_tower_no_sparse_layers": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json index e94ba2bf36..446bbe9496 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json index 27cc928993..f106b5991e 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json index 950638c6e8..0f2a3a17c1 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json index db7467a566..41b490ad9c 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json @@ -66,7 +66,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "enable_prime_tower": "0", "wipe_tower_no_sparse_layers": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json index c3723494a1..2db184f4e3 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json index 73d3761633..1291095474 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json index 5883e726e0..8f4ccd2869 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json index 978fb331bd..dfe0359d24 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json index 274a05a25a..0b80f7bc7c 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json index 39d83b5b7d..5028ba5743 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json index abeef5e362..e278cf73d8 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json @@ -63,7 +63,7 @@ "support_object_xy_distance": "50%", "tree_support_branch_angle": "40", "tree_support_wall_count": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "enable_prime_tower": "0", "wipe_tower_no_sparse_layers": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json index e2aff726a8..876398b4ef 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json index 21ed5164fd..b9a009f8d7 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json index 6cdb09eb56..d4ee408d40 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json index 3ab5523afe..34cbaf33b7 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json index 3c9b3735cf..4ac52c1f90 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json index 52668072a4..2235d8945b 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json index f3d46079f7..d4c6431549 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json index 0e8fe22031..ea39b843e0 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json @@ -64,7 +64,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "enable_prime_tower": "0", "wipe_tower_no_sparse_layers": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json index 2607ba42df..c7d9c64114 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json index 7a6af747a9..ebd6383f2b 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json index 063964384a..bfafd86424 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json index 6b5c01270e..3bd33b5ca9 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json index 0f3c7fbf6b..1004626dab 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json index 19fec3bcff..3f76f2e2cb 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json index a9c78c9216..53a00b97ff 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json @@ -70,7 +70,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.45", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Qidi/process/fdm_process_QIDI_0.24_nozzle_0.8.json b/resources/profiles/Qidi/process/fdm_process_QIDI_0.24_nozzle_0.8.json index bb88ef21c1..b650d2a639 100644 --- a/resources/profiles/Qidi/process/fdm_process_QIDI_0.24_nozzle_0.8.json +++ b/resources/profiles/Qidi/process/fdm_process_QIDI_0.24_nozzle_0.8.json @@ -18,7 +18,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "35", "initial_layer_infill_speed": "55", "outer_wall_speed": "120", diff --git a/resources/profiles/Qidi/process/fdm_process_QIDI_0.32_nozzle_0.8.json b/resources/profiles/Qidi/process/fdm_process_QIDI_0.32_nozzle_0.8.json index c34e9f9421..6a017a5573 100644 --- a/resources/profiles/Qidi/process/fdm_process_QIDI_0.32_nozzle_0.8.json +++ b/resources/profiles/Qidi/process/fdm_process_QIDI_0.32_nozzle_0.8.json @@ -18,7 +18,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "35", "initial_layer_infill_speed": "55", "outer_wall_speed": "120", diff --git a/resources/profiles/Qidi/process/fdm_process_QIDI_0.40_nozzle_0.8.json b/resources/profiles/Qidi/process/fdm_process_QIDI_0.40_nozzle_0.8.json index c7cc1dfa35..603ad93eff 100644 --- a/resources/profiles/Qidi/process/fdm_process_QIDI_0.40_nozzle_0.8.json +++ b/resources/profiles/Qidi/process/fdm_process_QIDI_0.40_nozzle_0.8.json @@ -18,7 +18,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "35", "initial_layer_infill_speed": "55", "outer_wall_speed": "120", diff --git a/resources/profiles/Qidi/process/fdm_process_QIDI_0.48_nozzle_0.8.json b/resources/profiles/Qidi/process/fdm_process_QIDI_0.48_nozzle_0.8.json index 2bf013928a..3d596138b7 100644 --- a/resources/profiles/Qidi/process/fdm_process_QIDI_0.48_nozzle_0.8.json +++ b/resources/profiles/Qidi/process/fdm_process_QIDI_0.48_nozzle_0.8.json @@ -18,7 +18,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "35", "initial_layer_infill_speed": "55", "outer_wall_speed": "120", diff --git a/resources/profiles/Qidi/process/fdm_process_QIDI_0.56_nozzle_0.8.json b/resources/profiles/Qidi/process/fdm_process_QIDI_0.56_nozzle_0.8.json index 02013be08c..d8f039f189 100644 --- a/resources/profiles/Qidi/process/fdm_process_QIDI_0.56_nozzle_0.8.json +++ b/resources/profiles/Qidi/process/fdm_process_QIDI_0.56_nozzle_0.8.json @@ -18,7 +18,7 @@ "internal_solid_infill_line_width": "0.82", "support_line_width": "0.82", "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "initial_layer_speed": "35", "initial_layer_infill_speed": "55", "outer_wall_speed": "120", diff --git a/resources/profiles/Qidi/process/fdm_process_qidi_common.json b/resources/profiles/Qidi/process/fdm_process_qidi_common.json index e1fa78fd3d..d776fe2bd1 100644 --- a/resources/profiles/Qidi/process/fdm_process_qidi_common.json +++ b/resources/profiles/Qidi/process/fdm_process_qidi_common.json @@ -82,7 +82,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Raise3D.json b/resources/profiles/Raise3D.json index 7a57d09d3c..ad5a2be34b 100644 --- a/resources/profiles/Raise3D.json +++ b/resources/profiles/Raise3D.json @@ -1,7 +1,7 @@ { "name": "Raise3D", "url": "", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Raise3D configurations", "machine_model_list": [ diff --git a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json index 0818f0dd88..545db35bec 100644 --- a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json +++ b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json index 6150d744c3..a3f88c3853 100644 --- a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json +++ b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json index 93873d18a4..0781fd1dca 100644 --- a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json +++ b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json index 9e06abcac5..f1b623c744 100644 --- a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json +++ b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json index 8fa0f3696e..e85f075e4c 100644 --- a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json +++ b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json index 1c5076efc5..9a45951619 100644 --- a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json +++ b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Ratrig.json b/resources/profiles/Ratrig.json index 7253b6bfbd..8768544f5d 100644 --- a/resources/profiles/Ratrig.json +++ b/resources/profiles/Ratrig.json @@ -1,6 +1,6 @@ { "name": "RatRig", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "RatRig configurations", "machine_model_list": [ diff --git a/resources/profiles/Ratrig/process/fdm_process_ratrig_common.json b/resources/profiles/Ratrig/process/fdm_process_ratrig_common.json index 10f49e4516..410426c2d3 100644 --- a/resources/profiles/Ratrig/process/fdm_process_ratrig_common.json +++ b/resources/profiles/Ratrig/process/fdm_process_ratrig_common.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/SecKit.json b/resources/profiles/SecKit.json index e7cba2af8a..1b4f846c01 100644 --- a/resources/profiles/SecKit.json +++ b/resources/profiles/SecKit.json @@ -1,6 +1,6 @@ { "name": "SecKit", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "SecKit configurations", "machine_model_list": [ diff --git a/resources/profiles/SecKit/process/fdm_process_seckit_common.json b/resources/profiles/SecKit/process/fdm_process_seckit_common.json index 1ad7b2d9a7..89c5662446 100644 --- a/resources/profiles/SecKit/process/fdm_process_seckit_common.json +++ b/resources/profiles/SecKit/process/fdm_process_seckit_common.json @@ -82,7 +82,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Snapmaker/process/fdm_process_common.json b/resources/profiles/Snapmaker/process/fdm_process_common.json index f35f39ffb1..7836aecab2 100644 --- a/resources/profiles/Snapmaker/process/fdm_process_common.json +++ b/resources/profiles/Snapmaker/process/fdm_process_common.json @@ -56,7 +56,7 @@ "print_flow_ratio": "1", "wall_loops": "3", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_shell_layers": "4", "top_shell_thickness": "0.8", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Sovol.json b/resources/profiles/Sovol.json index 1139c9f816..dc66c331b0 100644 --- a/resources/profiles/Sovol.json +++ b/resources/profiles/Sovol.json @@ -1,7 +1,7 @@ { "name": "Sovol", "url": "", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Sovol configurations", "machine_model_list": [ diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json index 7e4a1b232c..739474c390 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json index f598f0464c..2a87643214 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json index f6686c5718..c3df99cb5c 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json index 5ed34435b4..7535223e0a 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json index a98e47d432..09a3b793f8 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json index 8e66ac39b7..09b4a01bca 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json @@ -86,7 +86,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json index 3ac6922467..969ca2e52b 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json @@ -86,7 +86,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json index e9fa54468c..38857e3841 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json index dd0b5b9f21..cba4597eb8 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json index 8a5661ad38..3f93669137 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json index ae293d4841..e51fe7c0ff 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json index 2859ad0ed5..272b1bdf65 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json index db0e7d0d9c..abaffaf0de 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json @@ -86,7 +86,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json index 50eb1ca5a4..43460a7489 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json @@ -86,7 +86,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Tronxy.json b/resources/profiles/Tronxy.json index 5c1498973a..55fa64a864 100644 --- a/resources/profiles/Tronxy.json +++ b/resources/profiles/Tronxy.json @@ -1,6 +1,6 @@ { "name": "Tronxy", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Tronxy configurations", "machine_model_list": [ diff --git a/resources/profiles/Tronxy/process/fdm_process_common.json b/resources/profiles/Tronxy/process/fdm_process_common.json index d9b11e2551..bda31378e2 100644 --- a/resources/profiles/Tronxy/process/fdm_process_common.json +++ b/resources/profiles/Tronxy/process/fdm_process_common.json @@ -79,7 +79,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Tronxy/process/fdm_process_tronxy_common.json b/resources/profiles/Tronxy/process/fdm_process_tronxy_common.json index 99b1ec95ff..a35b15c8b2 100644 --- a/resources/profiles/Tronxy/process/fdm_process_tronxy_common.json +++ b/resources/profiles/Tronxy/process/fdm_process_tronxy_common.json @@ -80,7 +80,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/TwoTrees.json b/resources/profiles/TwoTrees.json index 1fef53bef0..54408265be 100644 --- a/resources/profiles/TwoTrees.json +++ b/resources/profiles/TwoTrees.json @@ -1,6 +1,6 @@ { "name": "TwoTrees", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "1", "description": "TwoTrees configurations", "machine_model_list": [ diff --git a/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json b/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json index 4feb9e39ce..d921bd17a0 100644 --- a/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json +++ b/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json @@ -80,7 +80,7 @@ "top_shell_thickness": "0", "top_surface_acceleration": "5000", "top_surface_line_width": "0.42", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_speed": "200", "travel_acceleration": "20000", "travel_speed": "500", diff --git a/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json b/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json index 648094331d..c3485f4a82 100644 --- a/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json +++ b/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json @@ -78,7 +78,7 @@ "top_shell_thickness": "0", "top_surface_acceleration": "5000", "top_surface_line_width": "0.42", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_speed": "200", "travel_acceleration": "20000", "travel_speed": "500", diff --git a/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json b/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json index 1c74438f86..4939b0598d 100644 --- a/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json +++ b/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json @@ -81,7 +81,7 @@ "top_shell_thickness": "0", "top_surface_acceleration": "5000", "top_surface_line_width": "0.42", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_speed": "200", "travel_acceleration": "20000", "travel_speed": "500", diff --git a/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json b/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json index 5b394002eb..249fc21546 100644 --- a/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json +++ b/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json @@ -82,7 +82,7 @@ "top_shell_thickness": "0", "top_surface_acceleration": "5000", "top_surface_line_width": "0.42", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_speed": "60", "travel_acceleration": "20000", "travel_speed": "500", diff --git a/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json b/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json index 4eb5e8000d..3b7c5ae399 100644 --- a/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json +++ b/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json @@ -82,7 +82,7 @@ "top_shell_thickness": "0", "top_surface_acceleration": "5000", "top_surface_line_width": "0.42", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_speed": "200", "travel_acceleration": "20000", "travel_speed": "500", diff --git a/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json b/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json index 303f020c9b..87f969bb7b 100644 --- a/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json +++ b/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json @@ -82,7 +82,7 @@ "top_shell_thickness": "0", "top_surface_acceleration": "5000", "top_surface_line_width": "0.42", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_speed": "200", "travel_acceleration": "20000", "travel_speed": "500", diff --git a/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json b/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json index 0eedf1a9cc..be3cb89bc2 100644 --- a/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json +++ b/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json @@ -88,7 +88,7 @@ "top_shell_thickness": "0", "top_surface_acceleration": "0", "top_surface_line_width": "0.42", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_speed": "200", "travel_acceleration": "20000", "travel_speed": "700", diff --git a/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json b/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json index 5e2eef68f4..b975875d9e 100644 --- a/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json +++ b/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json @@ -84,7 +84,7 @@ "top_shell_thickness": "0", "top_surface_acceleration": "5000", "top_surface_line_width": "0.42", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_speed": "200", "travel_acceleration": "20000", "travel_speed": "500", diff --git a/resources/profiles/UltiMaker.json b/resources/profiles/UltiMaker.json index b05fc11677..840ebb17ee 100644 --- a/resources/profiles/UltiMaker.json +++ b/resources/profiles/UltiMaker.json @@ -1,7 +1,7 @@ { "name": "UltiMaker", "url": "", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "UltiMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json b/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json index 567a228c3c..85ba578017 100644 --- a/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json +++ b/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "7", "top_shell_thickness": "0.8", diff --git a/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json b/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json index 6e6829860f..61a567fe70 100644 --- a/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json +++ b/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json b/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json index 5740c576b5..a8d8c5d043 100644 --- a/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json +++ b/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "4", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Vivedino.json b/resources/profiles/Vivedino.json index 95cbec2413..40fdf10c16 100644 --- a/resources/profiles/Vivedino.json +++ b/resources/profiles/Vivedino.json @@ -1,6 +1,6 @@ { "name": "Vivedino", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Vivedino configurations", "machine_model_list": [ diff --git a/resources/profiles/Vivedino/process/fdm_process_klipper_common.json b/resources/profiles/Vivedino/process/fdm_process_klipper_common.json index f12f318c52..a775861791 100644 --- a/resources/profiles/Vivedino/process/fdm_process_klipper_common.json +++ b/resources/profiles/Vivedino/process/fdm_process_klipper_common.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Voron.json b/resources/profiles/Voron.json index 5208f72290..9e9083ecef 100644 --- a/resources/profiles/Voron.json +++ b/resources/profiles/Voron.json @@ -1,6 +1,6 @@ { "name": "Voron", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Voron configurations", "machine_model_list": [ diff --git a/resources/profiles/Voron/process/fdm_process_voron_common.json b/resources/profiles/Voron/process/fdm_process_voron_common.json index d993c7b5ea..6a38d0129a 100644 --- a/resources/profiles/Voron/process/fdm_process_voron_common.json +++ b/resources/profiles/Voron/process/fdm_process_voron_common.json @@ -84,7 +84,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Voxelab.json b/resources/profiles/Voxelab.json index d4e6471dcd..b1a585d396 100644 --- a/resources/profiles/Voxelab.json +++ b/resources/profiles/Voxelab.json @@ -1,7 +1,7 @@ { "name": "Voxelab", "url": "", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Voxelab configurations", "machine_model_list": [ diff --git a/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json b/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json index 6aa62f184d..2145de1360 100644 --- a/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json +++ b/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json b/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json index db2d6f6595..8755f614b8 100644 --- a/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json +++ b/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "40", "tree_support_wall_count": "0", "detect_thin_wall": "1", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.38", "top_shell_layers": "5", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Vzbot.json b/resources/profiles/Vzbot.json index cfd5750fd6..81b2611c5c 100644 --- a/resources/profiles/Vzbot.json +++ b/resources/profiles/Vzbot.json @@ -1,6 +1,6 @@ { "name": "Vzbot", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Vzbot configurations", "machine_model_list": [ diff --git a/resources/profiles/Vzbot/process/fdm_process_Vzbot_common.json b/resources/profiles/Vzbot/process/fdm_process_Vzbot_common.json index 96202dd138..be4437d698 100644 --- a/resources/profiles/Vzbot/process/fdm_process_Vzbot_common.json +++ b/resources/profiles/Vzbot/process/fdm_process_Vzbot_common.json @@ -86,7 +86,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.42", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Vzbot/process/fdm_process_Vzbot_common_0.5_nozzle.json b/resources/profiles/Vzbot/process/fdm_process_Vzbot_common_0.5_nozzle.json index 5e5a80da0b..eb86d56577 100644 --- a/resources/profiles/Vzbot/process/fdm_process_Vzbot_common_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/fdm_process_Vzbot_common_0.5_nozzle.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.52", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Vzbot/process/fdm_process_Vzbot_common_0.6_nozzle.json b/resources/profiles/Vzbot/process/fdm_process_Vzbot_common_0.6_nozzle.json index eedeb3fd31..a973247842 100644 --- a/resources/profiles/Vzbot/process/fdm_process_Vzbot_common_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/fdm_process_Vzbot_common_0.6_nozzle.json @@ -85,7 +85,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.65", "top_shell_layers": "3", "top_shell_thickness": "0.8", diff --git a/resources/profiles/Wanhao.json b/resources/profiles/Wanhao.json index b6574de3ae..c80b0ecf0d 100644 --- a/resources/profiles/Wanhao.json +++ b/resources/profiles/Wanhao.json @@ -1,6 +1,6 @@ { "name": "Wanhao", - "version": "02.00.02.00", + "version": "02.01.00.00", "force_update": "0", "description": "Wanhao configurations", "machine_model_list": [ diff --git a/resources/profiles/Wanhao/process/fdm_process_wanhao_common.json b/resources/profiles/Wanhao/process/fdm_process_wanhao_common.json index bbb877de8f..da5e08d5ac 100644 --- a/resources/profiles/Wanhao/process/fdm_process_wanhao_common.json +++ b/resources/profiles/Wanhao/process/fdm_process_wanhao_common.json @@ -83,7 +83,7 @@ "tree_support_branch_angle": "45", "tree_support_wall_count": "0", "detect_thin_wall": "0", - "top_surface_pattern": "monotonic", + "top_surface_pattern": "monotonicline", "top_surface_line_width": "0.4", "top_shell_layers": "3", "top_shell_thickness": "0.8", From 0a7f787e3081c3868bf105e2861ed087d4ce2c48 Mon Sep 17 00:00:00 2001 From: yw4z Date: Wed, 22 May 2024 18:24:50 +0300 Subject: [PATCH 24/66] Reworked splash screen (#5257) * Reworked splash screen * Fine tune placements --------- Co-authored-by: SoftFever --- resources/images/splash_logo.svg | 137 +------------------------- resources/images/splash_logo_dark.svg | 1 + src/slic3r/GUI/GUI_App.cpp | 83 ++++++++-------- 3 files changed, 41 insertions(+), 180 deletions(-) create mode 100644 resources/images/splash_logo_dark.svg diff --git a/resources/images/splash_logo.svg b/resources/images/splash_logo.svg index b2c46d628d..45a5b3be25 100644 --- a/resources/images/splash_logo.svg +++ b/resources/images/splash_logo.svg @@ -1,136 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/splash_logo_dark.svg b/resources/images/splash_logo_dark.svg new file mode 100644 index 0000000000..5ea2bebcbd --- /dev/null +++ b/resources/images/splash_logo_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 52bfa21508..e06433883f 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -275,8 +275,11 @@ public: // init constant texts and scale fonts m_constant_text.init(Label::Body_16); - scale_font(m_constant_text.title_font, 2.0f); - scale_font(m_constant_text.version_font, 1.2f); + + // ORCA scale all fonts with monitor scale + scale_font(m_constant_text.version_font, m_scale * 2); + scale_font(m_constant_text.based_on_font, m_scale * 1.5f); + scale_font(m_constant_text.credits_font, m_scale * 2); // this font will be used for the action string m_action_font = m_constant_text.credits_font; @@ -316,51 +319,41 @@ public: if (!bmp.IsOk()) return; + bool is_dark = wxGetApp().app_config->get("dark_color_mode") == "1"; + // use a memory DC to draw directly onto the bitmap wxMemoryDC memDc(bmp); - - int top_margin = FromDIP(75 * m_scale); + int width = bmp.GetWidth(); + int height = bmp.GetHeight(); - // draw title and version - int text_padding = FromDIP(3 * m_scale); - memDc.SetFont(m_constant_text.title_font); - int title_height = memDc.GetTextExtent(m_constant_text.title).GetHeight(); - int title_width = memDc.GetTextExtent(m_constant_text.title).GetWidth(); - memDc.SetFont(m_constant_text.version_font); - int version_height = memDc.GetTextExtent(m_constant_text.version).GetHeight(); - int version_width = memDc.GetTextExtent(m_constant_text.version).GetWidth(); - int split_width = (width + title_width - version_width) / 2; - wxRect title_rect(wxPoint(0, top_margin), wxPoint(split_width - text_padding, top_margin + title_height)); - memDc.SetTextForeground(StateColor::darkModeColorFor(wxColour(38, 46, 48))); - memDc.SetFont(m_constant_text.title_font); - memDc.DrawLabel(m_constant_text.title, title_rect, wxALIGN_RIGHT | wxALIGN_BOTTOM); - //BBS align bottom of title and version text - wxRect version_rect(wxPoint(split_width + text_padding, top_margin), wxPoint(width, top_margin + title_height - text_padding)); + // Logo + BitmapCache bmp_cache; + wxBitmap logo_bmp = *bmp_cache.load_svg(is_dark ? "splash_logo_dark" : "splash_logo", width, height); // use with full width & height + memDc.DrawBitmap(logo_bmp, 0, 0, true); + + // Version memDc.SetFont(m_constant_text.version_font); memDc.SetTextForeground(StateColor::darkModeColorFor(wxColor(134, 134, 134))); - memDc.DrawLabel(m_constant_text.version, version_rect, wxALIGN_LEFT | wxALIGN_BOTTOM); + wxSize version_ext = memDc.GetTextExtent(m_constant_text.version); + wxRect version_rect( + wxPoint(0, int(height * 0.70)), + wxPoint(width, int(height * 0.70) + version_ext.GetHeight()) + ); + memDc.DrawLabel(m_constant_text.version, version_rect, wxALIGN_CENTER); + // Dynamic Text + m_action_line_y_position = int(height * 0.83); + + // Based on Text + memDc.SetFont(m_constant_text.based_on_font); auto bs_version = wxString::Format("Based on PrusaSlicer and BambuStudio").ToStdString(); - memDc.SetFont(Label::Body_12); - wxSize text_rect = memDc.GetTextExtent(bs_version); - int start_x = (title_rect.GetLeft() + version_rect.GetRight()) / 2 - text_rect.GetWidth()/2; - int start_y = version_rect.GetBottom() + 10; - wxRect internal_sign_rect(wxPoint(start_x, start_y), wxSize(text_rect)); - memDc.DrawLabel(bs_version, internal_sign_rect, wxALIGN_RIGHT); - - // load bitmap for logo - BitmapCache bmp_cache; - int logo_margin = FromDIP(72 * m_scale); - int logo_size = FromDIP(122 * m_scale); - int logo_width = FromDIP(94 * m_scale); - wxBitmap logo_bmp = *bmp_cache.load_svg("splash_logo", logo_size, logo_size); - int logo_y = top_margin + title_rect.GetHeight() + logo_margin; - memDc.DrawBitmap(logo_bmp, (width - logo_width) / 2, logo_y, true); - - // calculate position for the dynamic text - int text_margin = FromDIP(80 * m_scale); - m_action_line_y_position = logo_y + logo_size + text_margin; + wxSize based_on_ext = memDc.GetTextExtent(bs_version); + wxRect based_on_rect( + wxPoint(0, height - based_on_ext.GetHeight() * 2), + wxPoint(width, height - based_on_ext.GetHeight()) + ); + memDc.DrawLabel(bs_version, based_on_rect, wxALIGN_CENTER); } static wxBitmap MakeBitmap() @@ -440,21 +433,23 @@ private: wxFont title_font; wxFont version_font; wxFont credits_font; + wxFont based_on_font; void init(wxFont init_font) { // title - title = wxGetApp().is_editor() ? SLIC3R_APP_FULL_NAME : GCODEVIEWER_APP_NAME; + //title = wxGetApp().is_editor() ? SLIC3R_APP_FULL_NAME : GCODEVIEWER_APP_NAME; // dynamically get the version to display - version = _L("V") + " " + GUI_App::format_display_version(); + version = GUI_App::format_display_version(); // credits infornation credits = ""; - title_font = Label::Head_16; - version_font = Label::Body_16; - credits_font = init_font; + //title_font = Label::Head_16; + version_font = Label::Body_13; + based_on_font = Label::Body_8; + credits_font = Label::Body_8; } } m_constant_text; From b665dfb35d0e3a4fe90de8edc0d9a434f53001c0 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Thu, 23 May 2024 22:03:28 +0800 Subject: [PATCH 25/66] improve seam performance (#5436) --- src/libslic3r/GCode/SeamPlacer.cpp | 4 ++-- src/libslic3r/GCode/SeamPlacer.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/GCode/SeamPlacer.cpp b/src/libslic3r/GCode/SeamPlacer.cpp index e442db5701..e447d12d87 100644 --- a/src/libslic3r/GCode/SeamPlacer.cpp +++ b/src/libslic3r/GCode/SeamPlacer.cpp @@ -1073,7 +1073,7 @@ void SeamPlacer::calculate_overhangs_and_layer_embedding(const PrintObject *po) if (prev_layer_distancer.get() != nullptr) { const auto _dist = prev_layer_distancer->distance_from_lines(point.cast()); perimeter_point.overhang = _dist - + 0.6f * perimeter_point.perimeter.flow_width + + 0.65f * perimeter_point.perimeter.flow_width - tan(SeamPlacer::overhang_angle_threshold) * po->layers()[layer_idx]->height; perimeter_point.overhang = @@ -1083,7 +1083,7 @@ void SeamPlacer::calculate_overhangs_and_layer_embedding(const PrintObject *po) if (should_compute_layer_embedding) { // search for embedded perimeter points (points hidden inside the print ,e.g. multimaterial join, best position for seam) perimeter_point.embedded_distance = current_layer_distancer->distance_from_lines(point.cast()) - + 0.6f * perimeter_point.perimeter.flow_width; + + 0.65f * perimeter_point.perimeter.flow_width; } } diff --git a/src/libslic3r/GCode/SeamPlacer.hpp b/src/libslic3r/GCode/SeamPlacer.hpp index 430cccf957..a8a04cc672 100644 --- a/src/libslic3r/GCode/SeamPlacer.hpp +++ b/src/libslic3r/GCode/SeamPlacer.hpp @@ -119,7 +119,7 @@ public: // snapping angle - angles larger than this value will be snapped to during seam painting static constexpr float sharp_angle_snapping_threshold = 55.0f * float(PI) / 180.0f; // overhang angle for seam placement that still yields good results, in degrees, measured from vertical direction - static constexpr float overhang_angle_threshold = 50.0f * float(PI) / 180.0f; + static constexpr float overhang_angle_threshold = 45.0f * float(PI) / 180.0f; // determines angle importance compared to visibility ( neutral value is 1.0f. ) static constexpr float angle_importance_aligned = 0.6f; From 9aad7f8e1d1a3363c83ae2a31ca71df39a168355 Mon Sep 17 00:00:00 2001 From: KrisMorr <154343071+KrisMorr@users.noreply.github.com> Date: Thu, 23 May 2024 16:04:15 +0200 Subject: [PATCH 26/66] Update Polish translation + fix strings for gettext (#5427) * Update Polish translation * Fix strings for gettext --- localization/i18n/pl/OrcaSlicer_pl.po | 231 +++++++++++++++--------- src/slic3r/GUI/SendMultiMachinePage.cpp | 6 +- 2 files changed, 149 insertions(+), 88 deletions(-) diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index cdf2baa704..fe0359450f 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer 2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:31+0200\n" +"POT-Creation-Date: 2024-05-22 17:37+0200\n" "PO-Revision-Date: \n" "Last-Translator: Krzysztof Morga \n" "Language-Team: \n" @@ -1248,7 +1248,7 @@ msgstr "Zmień typ SVG" #. TRN - Input label. Be short as possible msgid "Mirror" -msgstr "Odbij" +msgstr "Lustrzane odbicie" msgid "Choose SVG file for emboss:" msgstr "Wybierz plik SVG do wytłaczania:" @@ -1391,9 +1391,6 @@ msgstr "" "Plik konfiguracyjny \"%1%\" został załadowany, ale niektóre wartości nie " "zostały rozpoznane." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1504,6 +1501,9 @@ msgstr "" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Wybierz jeden lub więcej plików (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "Wybierz plik ZIP" + msgid "Choose one file (gcode/3mf):" msgstr "Wybierz jeden plik (gcode/3mf):" @@ -1574,6 +1574,13 @@ msgstr "Trwające wgrywanie" msgid "Select a G-code file:" msgstr "Wybierz plik G-code:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" +"Nie można rozpocząć pobierania pliku z adresu URL. Folder docelowy nie jest " +"ustawiony. Proszę wybrać folder docelowy w Kreatorze Konfiguracji" + msgid "Import File" msgstr "Importuj plik" @@ -1978,7 +1985,7 @@ msgid "Simplify Model" msgstr "Uprość model" msgid "Center" -msgstr "Centruj" +msgstr "Wyśrodkuj" msgid "Edit Process Settings" msgstr "Edytuj ustawienia procesu" @@ -3465,7 +3472,7 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" -"zadania druku jednoczesne. (zależy to od liczby urządzeń, które można " +"zadania druku jednocześnie. (Zależy to od liczby urządzeń, które można " "podgrzewać jednocześnie.)" msgid "Wait" @@ -3474,8 +3481,7 @@ msgstr "Czekaj" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" -"minut na każdą partię. (To zależy od tego, jak długo trwa proces " -"nagrzewania.)" +"minut na każdą partię. (Zależy od tego, jak długo trwa proces nagrzewania.)" msgid "Name is invalid;" msgstr "Nazwa jest nieprawidłowa;" @@ -4069,7 +4075,7 @@ msgid "Temperature" msgstr "Temperatura" msgid "Flow" -msgstr "Flow" +msgstr "Przepływ" msgid "Tool" msgstr "Narzędzie" @@ -4231,7 +4237,7 @@ msgid "Total Filament" msgstr "Całkowita ilość filamentu" msgid "Model Filament" -msgstr "Filament dla modelu" +msgstr "Filament modelu" msgid "Prepare time" msgstr "Czas przygotowania" @@ -4678,6 +4684,12 @@ msgstr "Importuj 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Wczytaj model" +msgid "Import Zip Archive" +msgstr "Importuj archiwum ZIP" + +msgid "Load models contained within a zip archive" +msgstr "Wczytaj modele zawarte w archiwum ZIP" + msgid "Import Configs" msgstr "Importuj konfiguracje" @@ -4712,7 +4724,7 @@ msgid "Export current plate as G-code" msgstr "Eksportuj bieżący stół jako plik G-code" msgid "Export Preset Bundle" -msgstr "Eksport pakietów ustawień" +msgstr "Eksport zestawu ustawień" msgid "Export current configuration to files" msgstr "Eksportuj bieżącą konfigurację do plików" @@ -5691,12 +5703,12 @@ msgstr[2] "%1$d obiektów zostało załadowanych jako części obiektu wycięteg msgid "ERROR" msgstr "BŁĄD" -msgid "CANCELED" -msgstr "ANULOWANO" - msgid "COMPLETED" msgstr "ZAKOŃCZONO" +msgid "CANCELED" +msgstr "ANULOWANO" + msgid "Cancel upload" msgstr "Anuluj przesyłanie" @@ -6308,6 +6320,22 @@ msgstr "nie zawiera prawidłowego gcode." msgid "Error occurs while loading G-code file" msgstr "Wystąpił błąd podczas wczytywania pliku z G-code" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "Nie udało załadować się archiwum ZIP z ścieżki %1%." + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "Nie udało się rozpakować pliku do %1%: %2%" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" +"Nie udało się znaleźć rozpakowanego pliku pod adresem %1%. Rozpakowywanie " +"pliku nie powiodło się." + msgid "Drop project file" msgstr "Upuść plik projektu" @@ -6628,7 +6656,7 @@ msgstr "" "Powiększ do pozycji wskaźnika myszy w widoku 3D, zamiast do środka okna 2D." msgid "Use free camera" -msgstr "Użyj swobodnej kamery" +msgstr "Użyj wolnego widoku z kamery" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" @@ -6740,6 +6768,22 @@ msgstr "" "Jeśli włączone, ustawia OrcaSlicer jako domyślną aplikację do otwierania " "plików .step" +msgid "Current association: " +msgstr "Aktualne skojarzenie:" + +msgid "Associate prusaslicer://" +msgstr "Skojarz prusaslicer://" + +msgid "Not associated to any application" +msgstr "Nie skojarzony z żadną aplikacją" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" +"Skojarz OrcaSlicer z linkami \"prusaslicer://\", aby Orca mógł otwierać " +"linki PrusaSlicer z Printable.com." + msgid "Maximum recent projects" msgstr "Maksymalna liczba ostatnich projektów" @@ -7108,7 +7152,7 @@ msgid "Bed Leveling" msgstr "Poziomowanie stołu" msgid "Flow Dynamics Calibration" -msgstr "Kalib. Dyn. Przepływu" +msgstr "Kalibracja Dynamiki Przepływu" msgid "Click here if you can't connect to the printer" msgstr "Kliknij tutaj, jeśli nie możesz połączyć się z drukarką" @@ -10825,11 +10869,12 @@ msgid "" "object, Orca Slicer 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 dokładna pozycja nowo załadowanego filamentu wewnątrz " -"dyszy może nie być znana, a ciśnienie filamentu prawdopodobnie jeszcze nie " -"jest stabilne. Przed wyczyszczeniem głowicy drukującej do wypełnienia lub do " -"obiektu, OrcaSlicer zawsze wstępnie wytłoczy tę ilość filamentu do wieży " -"czyszczącej, aby zapewnić niezawodną dalszą ekstruzję." +"Po zmianie narzędzia (filamentu), dokładna pozycja nowo załadowanego " +"filamentu wewnątrz dyszy może nie być znana, a ciśnienie filamentu " +"prawdopodobnie jeszcze nie jest ustabilizowane. Przed wyczyszczeniem głowicy " +"drukującej do wypełnienia lub do obiektu, OrcaSlicer zawsze wstępnie " +"wytłoczy tę ilość filamentu do wieży czyszczącej, aby zapewnić niezawodną " +"dalszą ekstruzję." msgid "Speed of the last cooling move" msgstr "Prędkość ostatniego ruchu chłodzącego" @@ -12731,7 +12776,7 @@ msgstr "" "drukarek otwartych, czyli bez obudowy.\n" "\n" "Opcje:\n" -"Włączone = Skirt jest takiej samej wysokości, jak najwyższy wydrukowany " +"Włączony = Skirt jest takiej samej wysokości, jak najwyższy wydrukowany " "obiekt.\n" "Ograniczony =Skirt jest takiej samej wysoki, jak został określony w wysokość " "Skirtu.\n" @@ -12912,10 +12957,11 @@ msgid "" "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" -"Jeśli włączone, wieża czyszcząca nie będzie drukowana na warstwach bez zmian " -"narzędzi. Na warstwach ze zmianą narzędzia, extruder przemieści się w dół, " -"aby wydrukować wieżę czyszczącą. Użytkownik jest odpowiedzialny za " -"zapewnienie, że nie dojdzie do kolizji z wydrukiem." +"Jeśli włączone to 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. Pamiętaj, że " +"to użytkownik musi upewnić się, że nie dojdzie do kolizji głowicy z " +"wydrukiem." msgid "Prime all printing extruders" msgstr "Przygotuj wszystkie extrudery do drukowania" @@ -13543,26 +13589,47 @@ msgstr "Odległość między liniami na wieży oczyszczającej" msgid "Spacing of purge lines on the wipe tower." msgstr "Rozmieszczenie linii czyszczenia na wieży czyszczącej." -msgid "Maximum print speed when purging" -msgstr "Maksymalna prędkość druku podczas czyszczenia" +msgid "Maximum wipe tower print speed" +msgstr "Maksymalna prędkość drukowania wieży czyszczącej" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" -"Maksymalna prędkość drukowania podczas oczyszczania w wieży czyszczącej. " -"Jeśli prędkość wypełnienia rzadkiego lub prędkość obliczona na podstawie " -"maksymalnej prędkości przepływu filamentu jest niższa, zostanie użyta " -"najniższa prędkość.\n" -"Zwiększenie tej prędkości może wpłynąć na stabilność wieży, ponieważ " -"oczyszczanie może być wykonywane na rzadkich warstwach. Przed zwiększeniem " -"tego parametru ponad domyślną wartość 90 mm/s należy upewnić się, że " -"drukarka może niezawodnie drukować ze zwiększoną prędkością." +"Jest to funkcja odpowiedzialna za maksymalną prędkość drukowania podczas " +"oczyszczania w wieży czyszczącej i drukowania jej rzadkich warstw. \n" +"Podczas oczyszczania, jeśli prędkość rzadkiego wypełnienia jest niższa od " +"prędkości obliczonej na podstawie maksymalnego natężenia przepływu " +"filamentu, to właśnie ta niższa wartość zostanie wybrana.\n" +"\n" +"Podczas drukowania rzadkich warstw, jeśli prędkość wewnętrznych obrysów lub " +"prędkość obliczona na podstawie maksymalnego natężenia przepływu filamentu " +"jest niższa, zostanie użyta właśnie ta niższa wartość.\n" +"\n" +"Przed zwiększeniem tego parametru powyżej domyślnej wartości 90mm/s, upewnij " +"się, że Twoja drukarka potrafi niezawodnie mostkować przy wyższych " +"prędkościach oraz że wyciek filamentu podczas jego zmiany jest dobrze " +"kontrolowany.\n" +"\n" +"W przypadku zewnętrznych obwodów wieży czyszczącej prędkość jej obwodu " +"wewnętrznego jest niezależna od tego ustawienia." msgid "Wipe tower extruder" msgstr "Ekstruder dla wieży czyszczącej" @@ -13593,20 +13660,20 @@ msgid "" "printed with transparent filament, the mixed color infill will be seen " "outside. It will not take effect, unless the prime tower is enabled." msgstr "" -"Czyszczenie po zmianie filamentu będzie wykonane wewnątrz wypełnień " -"obiektów. Może to zmniejszyć ilość odpadów i skrócić czas druku. Jeśli " -"ściany są drukowane przezroczystym filamentem, mieszane kolorowe wypełnienie " -"będzie widoczne na zewnątrz. Nie będzie miało efektu, chyba że wieża " -"czyszcząca jest włączona." +"Po zmianie filamentu oczyszczanie odbywa się wewnątrz wypełnienia obiektu. " +"Może to zmniejszyć ilość odpadów i skrócić czas druku. Jeśli ściany są " +"drukowane przezroczystym filamentem, różne kolory wypełnienia będą widoczne " +"na zewnątrz. Ta funkcja jest aktywna tylko wtedy, gdy jest włączona opcja " +"wieży czyszczącej." msgid "" "Purging after filament change will be done inside objects' support. This may " "lower the amount of waste and decrease the print time. It will not take " "effect, unless the prime tower is enabled." msgstr "" -"Czyszczenie po zmianie filamentu będzie wykonane wewnątrz podpory obiektów. " -"Może to zmniejszyć ilość odpadów i skrócić czas druku. Nie będzie miało " -"efektu, chyba że wieża czyszcząca jest włączona." +"Po zmianie filamentu oczyszczanie odbywa się wewnątrz podpór obiektów. Może " +"to zmniejszyć ilość odpadów i skrócić czas druku. Ta funkcja jest aktywna " +"tylko wtedy, gdy jest włączona opcja wieży czyszczącej." msgid "" "This object will be used to purge the nozzle after a filament change to save " @@ -16636,6 +16703,33 @@ msgstr "" "takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może " "zmniejszyć prawdopodobieństwo odkształceń." +#~ msgid "V" +#~ msgstr "V" + +#~ msgid "Flow Dynamic Calibration" +#~ msgstr "Kalibracja Dynamiki Przepływu" + +#~ msgid "Maximum print speed when purging" +#~ msgstr "Maksymalna prędkość druku podczas czyszczenia" + +#~ msgid "" +#~ "The maximum print speed when purging in the wipe tower. If the sparse " +#~ "infill speed or calculated speed from the filament max volumetric speed " +#~ "is lower, the lowest speed will be used instead.\n" +#~ "Increasing this speed may affect the tower's stability, as purging can be " +#~ "performed over sparse layers. Before increasing this parameter beyond the " +#~ "default of 90mm/sec, make sure your printer can reliably bridge at the " +#~ "increased speeds." +#~ msgstr "" +#~ "Maksymalna prędkość drukowania podczas oczyszczania w wieży czyszczącej. " +#~ "Jeśli prędkość wypełnienia rzadkiego lub prędkość obliczona na podstawie " +#~ "maksymalnej prędkości przepływu filamentu jest niższa, zostanie użyta " +#~ "najniższa prędkość.\n" +#~ "Zwiększenie tej prędkości może wpłynąć na stabilność wieży, ponieważ " +#~ "oczyszczanie może być wykonywane na rzadkich warstwach. Przed " +#~ "zwiększeniem tego parametru ponad domyślną wartość 90 mm/s należy upewnić " +#~ "się, że drukarka może niezawodnie drukować ze zwiększoną prędkością." + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " @@ -16651,9 +16745,6 @@ msgstr "" #~ msgid "Open Studio" #~ msgstr "Otwórz Studio" -#~ msgid "Flow Dynamic Calibration" -#~ msgstr "Kalibracja Dynamiki Przepływu" - #~ msgid "Export &Configs" #~ msgstr "Eksportuj &konfiguracje" @@ -16973,36 +17064,6 @@ msgstr "" #~ "Możesz dostosować ustawienie maksymalnej prędkości w konfiguracji swojej " #~ "drukarki, aby uzyskać wyższe prędkości." -#~ msgid "Choose ZIP file" -#~ msgstr "Wybierz plik ZIP" - -#~ msgid "" -#~ "Could not start URL download. Destination folder is not set. Please " -#~ "choose destination folder in Configuration Wizard." -#~ msgstr "" -#~ "Nie można rozpocząć pobierania pliku z adresu URL. Folder docelowy nie " -#~ "jest ustawiony. Proszę wybrać folder docelowy w Kreatorze Konfiguracji" - -#~ msgid "Import Zip Archive" -#~ msgstr "Importuj archiwum ZIP" - -#~ msgid "Load models contained within a zip archive" -#~ msgstr "Wczytaj modele zawarte w archiwum ZIP" - -#, boost-format -#~ msgid "Loading of a ZIP archive on path %1% has failed." -#~ msgstr "Nie udało załadować się archiwum ZIP z ścieżki %1%." - -#, boost-format -#~ msgid "Failed to unzip file to %1%: %2%" -#~ msgstr "Nie udało się rozpakować pliku do %1%: %2%" - -#, boost-format -#~ msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." -#~ msgstr "" -#~ "Nie udało się znaleźć rozpakowanego pliku pod adresem %1%. Rozpakowywanie " -#~ "pliku nie powiodło się." - #~ msgid "Allow downloads from Printables.com" #~ msgstr "Zezwól na pobieranie modeli z Printables.com" diff --git a/src/slic3r/GUI/SendMultiMachinePage.cpp b/src/slic3r/GUI/SendMultiMachinePage.cpp index 0831377c53..4dafb97a40 100644 --- a/src/slic3r/GUI/SendMultiMachinePage.cpp +++ b/src/slic3r/GUI/SendMultiMachinePage.cpp @@ -1303,9 +1303,9 @@ wxPanel* SendMultiMachinePage::create_page() // add printing options wxBoxSizer* title_print_option = create_item_title(_L("Printing Options"), main_page, ""); - wxBoxSizer* item_bed_level = create_item_checkbox(_("Bed Leveling"), main_page, "", 50, "bed_leveling"); - wxBoxSizer* item_timelapse = create_item_checkbox(_("Timelapse"), main_page, "", 50, "timelapse"); - wxBoxSizer* item_flow_dy_ca = create_item_checkbox(_("Flow Dynamic Calibration"), main_page, "", 50, "flow_cali"); + wxBoxSizer* item_bed_level = create_item_checkbox(_L("Bed Leveling"), main_page, "", 50, "bed_leveling"); + wxBoxSizer* item_timelapse = create_item_checkbox(_L("Timelapse"), main_page, "", 50, "timelapse"); + wxBoxSizer* item_flow_dy_ca = create_item_checkbox(_L("Flow Dynamic Calibration"), main_page, "", 50, "flow_cali"); sizer->Add(title_print_option, 0, wxEXPAND, 0); wxBoxSizer* options_sizer_v = new wxBoxSizer(wxHORIZONTAL); options_sizer_v->Add(item_bed_level, 0, wxLEFT, 0); From aa33050301c0d5f0d69ab4a512951a198bd5649b Mon Sep 17 00:00:00 2001 From: yw4z Date: Thu, 23 May 2024 17:44:01 +0300 Subject: [PATCH 27/66] Fix edit button of printer combo box not updates its color after theme switch (#5412) * Fix edit button of printer combo box not updates for dark theme * Fix * Merge branch 'main' into dark-mode-printer-combobox-edit-icon --- src/slic3r/GUI/Plater.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index a7b9b51fc8..3a466ecc69 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -1498,6 +1498,7 @@ void Sidebar::sys_color_changed() p->combo_printer }) combo->sys_color_changed(); #endif + p->combo_printer->sys_color_changed(); for (PlaterPresetComboBox* combo : p->combos_filament) combo->sys_color_changed(); From 1701cbc098d2b44bf3f91e19d1e47ba05ad217e8 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Thu, 23 May 2024 23:38:07 +0800 Subject: [PATCH 28/66] update locale --- localization/i18n/OrcaSlicer.pot | 94 +- localization/i18n/ca/OrcaSlicer_ca.po | 99 +- localization/i18n/cs/OrcaSlicer_cs.po | 113 +- localization/i18n/de/OrcaSlicer_de.po | 159 +- localization/i18n/en/OrcaSlicer_en.po | 1891 +++++++++++------- localization/i18n/es/OrcaSlicer_es.po | 496 +++-- localization/i18n/fr/OrcaSlicer_fr.po | 147 +- localization/i18n/hu/OrcaSlicer_hu.po | 1897 +++++++++++------- localization/i18n/it/OrcaSlicer_it.po | 476 +++-- localization/i18n/ja/OrcaSlicer_ja.po | 1902 +++++++++++------- localization/i18n/ko/OrcaSlicer_ko.po | 140 +- localization/i18n/nl/OrcaSlicer_nl.po | 1897 +++++++++++------- localization/i18n/pl/OrcaSlicer_pl.po | 60 +- localization/i18n/pt_BR/OrcaSlicer_pt_BR.po | 99 +- localization/i18n/ru/OrcaSlicer_ru.po | 403 +++- localization/i18n/sv/OrcaSlicer_sv.po | 1907 +++++++++++------- localization/i18n/tr/OrcaSlicer_tr.po | 160 +- localization/i18n/uk/OrcaSlicer_uk.po | 1919 +++++++++++++------ localization/i18n/zh_CN/OrcaSlicer_zh_CN.po | 497 +++-- localization/i18n/zh_TW/OrcaSlicer_zh_TW.po | 99 +- 20 files changed, 9578 insertions(+), 4877 deletions(-) diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index f6fd309760..8125385e8c 100644 --- a/localization/i18n/OrcaSlicer.pot +++ b/localization/i18n/OrcaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1354,9 +1354,6 @@ msgid "" "Configuration file \"%1%\" was loaded, but some values were not recognized." msgstr "" -msgid "V" -msgstr "" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1452,6 +1449,9 @@ msgstr "" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "" @@ -1515,6 +1515,11 @@ msgstr "" msgid "Select a G-code file:" msgstr "" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "" @@ -3243,6 +3248,15 @@ msgstr "" msgid "Printing Options" msgstr "" +msgid "Bed Leveling" +msgstr "" + +msgid "Timelapse" +msgstr "" + +msgid "Flow Dynamic Calibration" +msgstr "" + msgid "Send Options" msgstr "" @@ -4365,6 +4379,12 @@ msgstr "" msgid "Load a model" msgstr "" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "" @@ -4751,9 +4771,6 @@ msgstr "" msgid "Show all files, recent first." msgstr "" -msgid "Timelapse" -msgstr "" - msgid "Switch to timelapse files." msgstr "" @@ -5300,10 +5317,10 @@ msgstr[1] "" msgid "ERROR" msgstr "" -msgid "CANCELED" +msgid "COMPLETED" msgstr "" -msgid "COMPLETED" +msgid "CANCELED" msgstr "" msgid "Cancel upload" @@ -5854,6 +5871,20 @@ msgstr "" msgid "Error occurs while loading G-code file" msgstr "" +#. TRN %1% is archive path +#, possible-boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, possible-boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, possible-boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "" @@ -6231,6 +6262,20 @@ msgstr "" msgid "If enabled, sets OrcaSlicer as default application to open .step files" msgstr "" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "" @@ -6592,9 +6637,6 @@ msgstr "" msgid "Send print job to" msgstr "" -msgid "Bed Leveling" -msgstr "" - msgid "Flow Dynamics Calibration" msgstr "" @@ -11803,17 +11845,29 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index 35ce4937c8..90664fe1a1 100644 --- a/localization/i18n/ca/OrcaSlicer_ca.po +++ b/localization/i18n/ca/OrcaSlicer_ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: 2024-03-17 22:08+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -1398,9 +1398,6 @@ msgstr "" "Ha estat carregat el fitxer de configuració \"%1%\", però alguns valors no " "s'han pogut reconèixer." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1513,6 +1510,9 @@ msgstr "Trieu un o més fitxers ( 3mf/step/stl/svg/obj/amf/usd*/abc/ply ):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Trieu un o més fitxers ( 3mf/step/stl/svg/obj/amf ):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Trieu un fitxer ( gcode/3mf ):" @@ -1585,6 +1585,11 @@ msgstr "Càrregues en curs" msgid "Select a G-code file:" msgstr "Seleccioneu un fitxer de Codi-G:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Importar arxiu" @@ -3429,6 +3434,15 @@ msgstr "" msgid "Printing Options" msgstr "" +msgid "Bed Leveling" +msgstr "Anivellament del llit" + +msgid "Timelapse" +msgstr "Timelapse" + +msgid "Flow Dynamic Calibration" +msgstr "" + msgid "Send Options" msgstr "" @@ -4645,6 +4659,12 @@ msgstr "Importar 3MF STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Carregar un model" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Importar Configuracions" @@ -5054,9 +5074,6 @@ msgstr "Agrupar els fitxers per mes, primer els recents." msgid "Show all files, recent first." msgstr "Mostrar tots els fitxers, primers els recents." -msgid "Timelapse" -msgstr "Timelapse" - msgid "Switch to timelapse files." msgstr "Canvieu als fitxers timelapse." @@ -5633,12 +5650,12 @@ msgstr[1] "%1$d Els objectes s'han carregat com a parts de l'objecte de tall" msgid "ERROR" msgstr "ERROR" -msgid "CANCELED" -msgstr "CANCEL·LAT" - msgid "COMPLETED" msgstr "COMPLETAT" +msgid "CANCELED" +msgstr "CANCEL·LAT" + msgid "Cancel upload" msgstr "Cancel·lar càrrega" @@ -6249,6 +6266,20 @@ msgstr "no conté Codi-G vàlid." msgid "Error occurs while loading G-code file" msgstr "Es produeix un error en carregar el fitxer de Codi-G" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Deixar anar el fitxer del projecte" @@ -6658,6 +6689,20 @@ msgstr "" "Si està habilitada, defineix OrcaSlicer com a l'aplicació predeterminada per " "obrir fitxers .step" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Màxim projectes recents" @@ -7023,9 +7068,6 @@ msgstr "Base PEI amb Textura Bambu" msgid "Send print job to" msgstr "Enviar treball d'impressió a" -msgid "Bed Leveling" -msgstr "Anivellament del llit" - msgid "Flow Dynamics Calibration" msgstr "Calibratge de Dinàmiques de Flux" @@ -13405,17 +13447,29 @@ msgstr "Espaiat de les línies de la Torre de Purga" msgid "Spacing of purge lines on the wipe tower." msgstr "Espaiat de les línies de purga de la Torre de Purga." -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -16390,6 +16444,9 @@ msgstr "" "augmentar adequadament la temperatura del llit pot reduir la probabilitat de " "deformació." +#~ msgid "V" +#~ msgstr "V" + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index 86c1b9086b..ac91c2fe8e 100644 --- a/localization/i18n/cs/OrcaSlicer_cs.po +++ b/localization/i18n/cs/OrcaSlicer_cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: 2023-09-30 15:15+0200\n" "Last-Translator: René Mošner \n" "Language-Team: \n" @@ -773,7 +773,7 @@ msgstr "" msgctxt "EmbossOperation" msgid "Cut" -msgstr "" +msgstr "Řezat" msgid "Click to change part type into negative volume." msgstr "" @@ -915,19 +915,19 @@ msgstr "" msgctxt "Alignment" msgid "Left" -msgstr "" +msgstr "Zleva" msgctxt "Alignment" msgid "Center" -msgstr "" +msgstr "Střed" msgctxt "Alignment" msgid "Right" -msgstr "" +msgstr "Zprava" msgctxt "Alignment" msgid "Top" -msgstr "" +msgstr "Horní" msgctxt "Alignment" msgid "Middle" @@ -935,7 +935,7 @@ msgstr "" msgctxt "Alignment" msgid "Bottom" -msgstr "" +msgstr "Spodní" msgid "Revert alignment." msgstr "" @@ -1299,7 +1299,7 @@ msgstr "" msgctxt "Verb" msgid "Scale" -msgstr "" +msgstr "Měřítko" msgid "None" msgstr "Žádné" @@ -1367,9 +1367,6 @@ msgstr "" "Konfigurační soubor \" %1% \" byl načten, ale některé hodnoty nebyly " "rozpoznány." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1480,6 +1477,9 @@ msgstr "" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Vyberte jeden nebo více souborů (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Vyberte jeden soubor (gcode/3mf):" @@ -1548,6 +1548,11 @@ msgstr "Probíhá nahrávání" msgid "Select a G-code file:" msgstr "Vyberte soubor s G-kódem:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Importovat soubor" @@ -3369,6 +3374,15 @@ msgstr "" msgid "Printing Options" msgstr "" +msgid "Bed Leveling" +msgstr "Vyrovnání podložky" + +msgid "Timelapse" +msgstr "Časosběr" + +msgid "Flow Dynamic Calibration" +msgstr "" + msgid "Send Options" msgstr "" @@ -4571,6 +4585,12 @@ msgstr "Importovat 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Načíst model" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Importovat konfigurace" @@ -4975,9 +4995,6 @@ msgstr "Seskupit soubory podle měsíce, poslední první." msgid "Show all files, recent first." msgstr "Zobrazit všechny soubory, poslední první." -msgid "Timelapse" -msgstr "Časosběr" - msgid "Switch to timelapse files." msgstr "Přepnout na soubory časosběru." @@ -5550,12 +5567,12 @@ msgstr[2] "%1$d objekty byly načteny jako součást rozříznutého objektu." msgid "ERROR" msgstr "CHYBA" -msgid "CANCELED" -msgstr "ZRUŠENO" - msgid "COMPLETED" msgstr "DOKONČENO" +msgid "CANCELED" +msgstr "ZRUŠENO" + msgid "Cancel upload" msgstr "Zrušit nahrávání" @@ -6154,6 +6171,20 @@ msgstr "neobsahuje platný G-kód." msgid "Error occurs while loading G-code file" msgstr "Při načítání souboru G-kód došlo k chybě" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Zrušit soubor projektu" @@ -6550,6 +6581,20 @@ msgstr "" "Pokud je povoleno, nastaví OrcaSlicer jako výchozí aplikaci pro otevírání " "souborů .step" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Maximální počet nedávných projektů" @@ -6913,9 +6958,6 @@ msgstr "" msgid "Send print job to" msgstr "Odeslat tiskovou úlohu na" -msgid "Bed Leveling" -msgstr "Vyrovnání podložky" - msgid "Flow Dynamics Calibration" msgstr "Kalibrace Dynamiky Průtoku" @@ -12851,17 +12893,29 @@ msgstr "Rozteč čistících linek v čistící věži" msgid "Spacing of purge lines on the wipe tower." msgstr "Rozteč čistících linek v čistící věži." -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -15609,6 +15663,9 @@ msgid "" "probability of warping." msgstr "" +#~ msgid "V" +#~ msgstr "V" + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 403db83d01..3d917675b2 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: \n" "Last-Translator: Heiko Liebscher \n" "Language-Team: \n" @@ -154,7 +155,7 @@ msgid "Height range" msgstr "Höhenbereich" msgid "Alt + Shift + Enter" -msgstr "" +msgstr "Alt + Shift + Enter" msgid "Toggle Wireframe" msgstr "Gittermodell ein-/ausblenden" @@ -1397,9 +1398,6 @@ msgstr "" "Konfigurationsdatei \"%1%\" wurde geladen, aber einige Werte wurden nicht " "erkannt." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1512,6 +1510,9 @@ msgstr "" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Wählen sie eine oder mehrere Dateien (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Wählen sie eine Datei (3mf):" @@ -1584,6 +1585,11 @@ msgstr "Laufende Uploads" msgid "Select a G-code file:" msgstr "Wähle eine G-Code Datei:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Datei importieren" @@ -3338,7 +3344,8 @@ msgstr "Wählen die verbundenen Drucker (%d/6)" #, c-format, boost-format msgid "The maximum number of printers that can be selected is %d" -msgstr "Die maximale Anzahl von Druckern, die ausgewählt werden können, beträgt %d" +msgstr "" +"Die maximale Anzahl von Druckern, die ausgewählt werden können, beträgt %d" msgid "Offline" msgstr "Offline" @@ -3466,7 +3473,8 @@ msgid "There is no device available to send printing." msgstr "Es ist kein Gerät verfügbar, um den Druck zu senden." msgid "The number of printers in use simultaneously cannot be equal to 0." -msgstr "Die Anzahl der gleichzeitig verwendeten Drucker darf nicht gleich 0 sein." +msgstr "" +"Die Anzahl der gleichzeitig verwendeten Drucker darf nicht gleich 0 sein." msgid "Use External Spool" msgstr "Externe Spule verwenden" @@ -3483,6 +3491,15 @@ msgstr "AMS-Status" msgid "Printing Options" msgstr "Druckoptionen" +msgid "Bed Leveling" +msgstr "Druckbettnivellierung" + +msgid "Timelapse" +msgstr "Zeitraffer" + +msgid "Flow Dynamic Calibration" +msgstr "" + msgid "Send Options" msgstr "Senden-Optionen" @@ -3493,8 +3510,8 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" -"Drucker gleichzeitig drucken.(Es hängt davon ab, wie viele Geräte gleichzeitig " -"erhitzt werden können.)" +"Drucker gleichzeitig drucken.(Es hängt davon ab, wie viele Geräte " +"gleichzeitig erhitzt werden können.)" msgid "Wait" msgstr "Warten" @@ -4728,6 +4745,12 @@ msgstr "Importiere 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Lade ein Modell" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Konfigurationen importieren" @@ -5156,9 +5179,6 @@ msgstr "Dateien nach Monat gruppieren, neueste zuerst." msgid "Show all files, recent first." msgstr "Alle Dateien anzeigen, die neuesten zuerst." -msgid "Timelapse" -msgstr "Zeitraffer" - msgid "Switch to timelapse files." msgstr "Wechseln zu Zeitrafferdateien." @@ -5750,12 +5770,12 @@ msgstr[1] "%1$d Objekte wurden als Teile des geschnittenen Objekts geladen." msgid "ERROR" msgstr "FEHLER" -msgid "CANCELED" -msgstr "ABGEBROCHEN" - msgid "COMPLETED" msgstr "ERLEDIGT" +msgid "CANCELED" +msgstr "ABGEBROCHEN" + msgid "Cancel upload" msgstr "Upload abbrechen" @@ -6380,6 +6400,20 @@ msgstr "enthält keinen gültigen G-Code." msgid "Error occurs while loading G-code file" msgstr "Beim Laden der G-Code-Datei ist ein Fehler aufgetreten." +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Projektdatei ablegen" @@ -6629,8 +6663,8 @@ msgid "" "don't use BBL machines or use LAN mode only can safely turn on this function." msgstr "" "Dies stoppt die Übertragung von Daten an die Cloud-Dienste von Bambu. " -"Benutzer, die keine BBL-Maschinen verwenden oder nur den LAN-Modus verwenden, " -"können diese Funktion sicher aktivieren." +"Benutzer, die keine BBL-Maschinen verwenden oder nur den LAN-Modus " +"verwenden, können diese Funktion sicher aktivieren." msgid "Enable network plugin" msgstr "Netzwerk-Plugin aktivieren" @@ -6804,6 +6838,20 @@ msgstr "" "Wenn aktiviert, wird OrcaSlicer als Standardanwendung zum Öffnen von .step-" "Dateien festgelegt" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Höchstanzahl an letzten Projekten" @@ -7172,9 +7220,6 @@ msgstr "Bambu strukturierte PEI-Platte" msgid "Send print job to" msgstr "Druckauftrag senden an" -msgid "Bed Leveling" -msgstr "Druckbettnivellierung" - msgid "Flow Dynamics Calibration" msgstr "Dynamische Flusskalibrierung" @@ -12833,17 +12878,18 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" "Ein Luftzugs-Schutz ist nützlich, um einen ABS- oder ASA-Druck vor Verzug " -"und Ablösen vom Druckbett aufgrund von Luftzug zu schützen. Er wird normalerweise " -"nur bei offenen Druckern benötigt, d.h. ohne Gehäuse. \n" +"und Ablösen vom Druckbett aufgrund von Luftzug zu schützen. Er wird " +"normalerweise nur bei offenen Druckern benötigt, d.h. ohne Gehäuse. \n" "\n" "Optionen:\n" "Aktiviert = Umrandung ist so hoch wie das höchste gedruckte Objekt.\n" -"Begrenzt = Umrandung ist so hoch wie durch die Höhe der Umrandung angegeben.\n" +"Begrenzt = Umrandung ist so hoch wie durch die Höhe der Umrandung " +"angegeben.\n" "\n" "Hinweis: Mit dem aktiven Luftzug-Schutz wird die Umrandung in der " "Umrandungsdistanz vom Objekt gedruckt. Daher kann es bei aktiven Rändern zu " -"Überschneidungen kommen. Um dies zu vermeiden, erhöhen Sie den Wert der" -"Umrandungsdistanz. \n" +"Überschneidungen kommen. Um dies zu vermeiden, erhöhen Sie den Wert " +"derUmrandungsdistanz. \n" msgid "Limited" msgstr "Begrenzt" @@ -13664,26 +13710,30 @@ msgstr "Wischabstand der Reinigungsturmpurges" msgid "Spacing of purge lines on the wipe tower." msgstr "Abstand der Reinigungsturmpurges." -msgid "Maximum print speed when purging" -msgstr "Maximale Druckgeschwindigkeit beim Reinigen" +msgid "Maximum wipe tower print speed" +msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" -"Die maximale Druckgeschwindigkeit beim Reinigen im Reinigungsturm. Wenn die " -"Geschwindigkeit des dünnen Infill oder die berechnete Geschwindigkeit aus " -"der maximalen Volumengeschwindigkeit des Filaments niedriger ist, wird die " -"niedrigste Geschwindigkeit verwendet.\n" -"Das Erhöhen dieser Geschwindigkeit kann die Stabilität des Turms beeinträchtigen, " -"da das Reinigen über dünnen Schichten erfolgen kann. Bevor Sie diesen Parameter " -"über den Standardwert von 90 mm/s erhöhen, stellen Sie sicher, dass Ihr Drucker " -"die erhöhten Geschwindigkeiten zuverlässig überbrücken kann." msgid "Wipe tower extruder" msgstr "Reinigungsturm-Extruder" @@ -16799,6 +16849,31 @@ msgstr "" "wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die " "Wahrscheinlichkeit von Verwerfungen verringert werden kann." +#~ msgid "V" +#~ msgstr "V" + +#~ msgid "Maximum print speed when purging" +#~ msgstr "Maximale Druckgeschwindigkeit beim Reinigen" + +#~ msgid "" +#~ "The maximum print speed when purging in the wipe tower. If the sparse " +#~ "infill speed or calculated speed from the filament max volumetric speed " +#~ "is lower, the lowest speed will be used instead.\n" +#~ "Increasing this speed may affect the tower's stability, as purging can be " +#~ "performed over sparse layers. Before increasing this parameter beyond the " +#~ "default of 90mm/sec, make sure your printer can reliably bridge at the " +#~ "increased speeds." +#~ msgstr "" +#~ "Die maximale Druckgeschwindigkeit beim Reinigen im Reinigungsturm. Wenn " +#~ "die Geschwindigkeit des dünnen Infill oder die berechnete Geschwindigkeit " +#~ "aus der maximalen Volumengeschwindigkeit des Filaments niedriger ist, " +#~ "wird die niedrigste Geschwindigkeit verwendet.\n" +#~ "Das Erhöhen dieser Geschwindigkeit kann die Stabilität des Turms " +#~ "beeinträchtigen, da das Reinigen über dünnen Schichten erfolgen kann. " +#~ "Bevor Sie diesen Parameter über den Standardwert von 90 mm/s erhöhen, " +#~ "stellen Sie sicher, dass Ihr Drucker die erhöhten Geschwindigkeiten " +#~ "zuverlässig überbrücken kann." + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index 110633360b..60397cbc9e 100644 --- a/localization/i18n/en/OrcaSlicer_en.po +++ b/localization/i18n/en/OrcaSlicer_en.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -152,7 +153,7 @@ msgid "Height range" msgstr "Height range" msgid "Alt + Shift + Enter" -msgstr "" +msgstr "Alt + Shift + Enter" msgid "Toggle Wireframe" msgstr "Toggle Wireframe" @@ -167,10 +168,10 @@ msgid "Height Range" msgstr "Height Range" msgid "Vertical" -msgstr "" +msgstr "Vertical" msgid "Horizontal" -msgstr "" +msgstr "Horizontal" msgid "Remove painted color" msgstr "Remove painted color" @@ -271,16 +272,16 @@ msgid "uniform scale" msgstr "Uniform scale" msgid "Planar" -msgstr "" +msgstr "Planar" msgid "Dovetail" -msgstr "" +msgstr "Dovetail" msgid "Auto" msgstr "Auto" msgid "Manual" -msgstr "" +msgstr "Manual" msgid "Plug" msgstr "Plug" @@ -289,7 +290,7 @@ msgid "Dowel" msgstr "Dowel" msgid "Snap" -msgstr "" +msgstr "Snap" msgid "Prism" msgstr "" @@ -304,7 +305,7 @@ msgid "Hexagon" msgstr "Hexagon" msgid "Keep orientation" -msgstr "" +msgstr "Keep orientation" msgid "Place on cut" msgstr "Place on cut" @@ -328,19 +329,19 @@ msgstr "Shape" #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "" +msgstr "Depth" msgid "Groove" -msgstr "" +msgstr "Groove" msgid "Width" msgstr "Width" msgid "Flap Angle" -msgstr "" +msgstr "Flap Angle" msgid "Groove Angle" -msgstr "" +msgstr "Groove Angle" msgid "Part" msgstr "Part" @@ -363,7 +364,7 @@ msgid "Move cut plane" msgstr "" msgid "Mode" -msgstr "" +msgstr "Mode" msgid "Change cut mode" msgstr "" @@ -411,7 +412,7 @@ msgid "Remove connectors" msgstr "Remove connectors" msgid "Bulge" -msgstr "" +msgstr "Bulge" msgid "Bulge proportion related to radius" msgstr "" @@ -520,7 +521,7 @@ msgid "Cut by Plane" msgstr "" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" -msgstr "" +msgstr "Non-manifold edges be caused by cut tool: do you want to fix now?" msgid "Repairing model object" msgstr "Repairing model object" @@ -618,13 +619,13 @@ msgid "Remove selection" msgstr "Remove selection" msgid "Entering Seam painting" -msgstr "" +msgstr "Entering seam painting" msgid "Leaving Seam painting" -msgstr "" +msgstr "Leaving Seam Painting" msgid "Paint-on seam editing" -msgstr "" +msgstr "Paint-on seam editing" #. TRN - Input label. Be short as possible #. Select look of letter shape @@ -763,7 +764,7 @@ msgstr "" msgctxt "EmbossOperation" msgid "Cut" -msgstr "" +msgstr "Cut" msgid "Click to change part type into negative volume." msgstr "" @@ -905,19 +906,19 @@ msgstr "" msgctxt "Alignment" msgid "Left" -msgstr "" +msgstr "Left" msgctxt "Alignment" msgid "Center" -msgstr "" +msgstr "Center" msgctxt "Alignment" msgid "Right" -msgstr "" +msgstr "Right" msgctxt "Alignment" msgid "Top" -msgstr "" +msgstr "Top" msgctxt "Alignment" msgid "Middle" @@ -925,7 +926,7 @@ msgstr "" msgctxt "Alignment" msgid "Bottom" -msgstr "" +msgstr "Bottom" msgid "Revert alignment." msgstr "" @@ -1237,43 +1238,43 @@ msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "" msgid "Vertex" -msgstr "" +msgstr "Vertex" msgid "Edge" -msgstr "" +msgstr "Edge" msgid "Plane" -msgstr "" +msgstr "Plane" msgid "Point on edge" -msgstr "" +msgstr "Point on edge" msgid "Point on circle" -msgstr "" +msgstr "Point on circle" msgid "Point on plane" -msgstr "" +msgstr "Point on plane" msgid "Center of edge" -msgstr "" +msgstr "Center of edge" msgid "Center of circle" -msgstr "" +msgstr "Center of circle" msgid "ShiftLeft mouse button" msgstr "" msgid "Select feature" -msgstr "" +msgstr "Select feature" msgid "Select point" -msgstr "" +msgstr "Select point" msgid "Delete" msgstr "Delete" msgid "Restart selection" -msgstr "" +msgstr "Restart selection" msgid "Esc" msgstr "Esc" @@ -1282,14 +1283,14 @@ msgid "Unselect" msgstr "" msgid "Measure" -msgstr "" +msgstr "Measure" msgid "Edit to scale" -msgstr "" +msgstr "Edit to scale" msgctxt "Verb" msgid "Scale" -msgstr "" +msgstr "Scale" msgid "None" msgstr "None" @@ -1301,22 +1302,22 @@ msgid "Length" msgstr "Length" msgid "Selection" -msgstr "" +msgstr "Selection" msgid "Copy to clipboard" msgstr "Copy to clipboard" msgid "Perpendicular distance" -msgstr "" +msgstr "Perpendicular distance" msgid "Distance" -msgstr "" +msgstr "Distance" msgid "Direct distance" -msgstr "" +msgstr "Direct distance" msgid "Distance XYZ" -msgstr "" +msgstr "Distance XYZ" msgid "Ctrl+" msgstr "Ctrl+" @@ -1356,9 +1357,6 @@ msgid "" msgstr "" "The configuration file “%1%” was loaded, but some values were not recognized." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1451,11 +1449,14 @@ msgid "Choose one file (3mf):" msgstr "Choose one file (3mf):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" -msgstr "" +msgstr "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Choose one or more files (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "" @@ -1492,9 +1493,11 @@ msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " "newly created user presets can only be used locally." msgstr "" +"The number of user presets cached in the cloud has exceeded the upper limit, " +"newly created user presets can only be used locally." msgid "Sync user presets" -msgstr "" +msgstr "Sync user presets" msgid "Loading user preset" msgstr "Loading user preset" @@ -1523,6 +1526,11 @@ msgstr "Ongoing uploads" msgid "Select a G-code file:" msgstr "Select a G-code file:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Import File" @@ -1657,16 +1665,16 @@ msgid "Cone" msgstr "Cone" msgid "Disc" -msgstr "" +msgstr "Disc" msgid "Torus" -msgstr "" +msgstr "Torus" msgid "Orca Cube" msgstr "" msgid "3DBenchy" -msgstr "" +msgstr "3DBenchy" msgid "Autodesk FDM Test" msgstr "" @@ -1719,10 +1727,10 @@ msgid "Fix model" msgstr "Fix Model" msgid "Export as one STL" -msgstr "" +msgstr "Export as one STL" msgid "Export as STLs" -msgstr "" +msgstr "Export as STLs" msgid "Reload from disk" msgstr "Reload from disk" @@ -1795,10 +1803,10 @@ msgid "Assemble the selected objects to an object with single part" msgstr "Assemble the selected objects into an object with single part" msgid "Mesh boolean" -msgstr "" +msgstr "Mesh boolean" msgid "Mesh boolean operations including union and subtraction" -msgstr "" +msgstr "Mesh boolean operations including union and subtraction" msgid "Along X axis" msgstr "Along X Axis" @@ -1942,7 +1950,7 @@ msgid "Lock" msgstr "Lock" msgid "Edit Plate Name" -msgstr "" +msgstr "Edit Plate Name" msgid "Name" msgstr "Name" @@ -2002,7 +2010,7 @@ msgid "Error!" msgstr "Error!" msgid "Failed to get the model data in the current file." -msgstr "" +msgstr "Failed to get the model data in the current file." msgid "Generic" msgstr "Generic" @@ -2241,7 +2249,7 @@ msgid "Pause" msgstr "Pause" msgid "Template" -msgstr "" +msgstr "Template" msgid "Custom" msgstr "Custom" @@ -2292,7 +2300,7 @@ msgid "Change filament at the beginning of this layer." msgstr "Change filament at the beginning of this layer." msgid "Delete Pause" -msgstr "" +msgstr "Delete Pause" msgid "Delete Custom Template" msgstr "Delete Custom Template" @@ -2310,7 +2318,7 @@ msgid "No printer" msgstr "No printer" msgid "..." -msgstr "" +msgstr "..." msgid "Failed to connect to the server" msgstr "Failed to connect to the server" @@ -2343,7 +2351,7 @@ msgid "?" msgstr "?" msgid "/" -msgstr "" +msgstr "/" msgid "Empty" msgstr "Empty" @@ -2352,13 +2360,13 @@ msgid "AMS" msgstr "AMS" msgid "Auto Refill" -msgstr "" +msgstr "Auto Refill" msgid "AMS not connected" msgstr "AMS not connected" msgid "Load" -msgstr "" +msgstr "Load" msgid "Unload" msgstr "Unload" @@ -2388,7 +2396,7 @@ msgid "Cancel calibration" msgstr "Cancel calibration" msgid "Idling..." -msgstr "" +msgstr "Idling..." msgid "Heat the nozzle" msgstr "Heat the nozzle" @@ -2406,13 +2414,13 @@ msgid "Purge old filament" msgstr "Purge old filament" msgid "Feed Filament" -msgstr "" +msgstr "Feed Filament" msgid "Confirm extruded" -msgstr "" +msgstr "Confirm extruded" msgid "Check filament location" -msgstr "" +msgstr "Check filament location" msgid "Grab new filament" msgstr "Grab new filament" @@ -2421,6 +2429,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " +"load or unload filament." msgid "Edit" msgstr "Edit" @@ -2499,7 +2509,7 @@ msgid "Orienting canceled." msgstr "" msgid "Filling" -msgstr "" +msgstr "Filling" msgid "Bed filling canceled." msgstr "Bed filling canceled." @@ -2583,7 +2593,7 @@ msgid "Sending print job through cloud service" msgstr "Sending print job through cloud service" msgid "Print task sending times out." -msgstr "" +msgstr "Print task sending times out." msgid "Service Unavailable" msgstr "Service Unavailable" @@ -2600,7 +2610,7 @@ msgstr "Successfully sent. Will automatically jump to the device page in %ss" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" -msgstr "" +msgstr "Successfully sent. Will automatically jump to the next page in %ss" msgid "An SD card needs to be inserted before printing via LAN." msgstr "A MicroSD card needs to be inserted before printing via LAN." @@ -2758,10 +2768,10 @@ msgid "Setting AMS slot information while printing is not supported" msgstr "Setting AMS slot information while printing is not supported" msgid "Factors of Flow Dynamics Calibration" -msgstr "" +msgstr "Factors of Flow Dynamics Calibration" msgid "PA Profile" -msgstr "" +msgstr "PA Profile" msgid "Factor K" msgstr "Factor K" @@ -2779,10 +2789,10 @@ msgid "You need to select the material type and color first." msgstr "You need to select the material type and color first." msgid "Please input a valid value (K in 0~0.3)" -msgstr "" +msgstr "Please input a valid value (K in 0~0.3)" msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" -msgstr "" +msgstr "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" msgid "Other Color" msgstr "Other Color" @@ -2888,7 +2898,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "Print with filament on external spool" msgid "Current Cabin humidity" -msgstr "" +msgstr "Current Cabin humidity" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2896,6 +2906,10 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"Please change the desiccant when it is too wet. The indicator may not " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It takes a few hours to absorb the moisture, and " +"low temperatures also slow down the process." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -2927,16 +2941,19 @@ msgid "" "When the current material run out, the printer will continue to print in the " "following order." msgstr "" +"When the current material run out, the printer will continue to print in the " +"following order." msgid "Group" msgstr "Group" msgid "The printer does not currently support auto refill." -msgstr "" +msgstr "The printer does not currently support auto refill." msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "" +"AMS filament backup is not enabled; please enable it in the AMS settings." msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " @@ -2944,12 +2961,16 @@ msgid "" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" +"If there are two identical filaments in an AMS, AMS filament backup will be " +"enabled. \n" +"(This currently supports automatic supply of consumables with the same " +"brand, material type, and color)" msgid "DRY" -msgstr "" +msgstr "DRY" msgid "WET" -msgstr "" +msgstr "WET" msgid "AMS Settings" msgstr "AMS Settings" @@ -2968,6 +2989,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"Note: if a new filament is inserted during printing, the AMS will not " +"automatically read any information until printing is completed." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3020,12 +3043,14 @@ msgstr "" "automatically when current filament runs out." msgid "Air Printing Detection" -msgstr "" +msgstr "Air Printing Detection" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"Detects clogging and filament grinding, halting printing immediately to " +"conserve time and filament." msgid "File" msgstr "File" @@ -3104,7 +3129,7 @@ msgid "Running post-processing scripts" msgstr "Running post-processing scripts" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." msgstr "" @@ -3169,10 +3194,10 @@ msgid "Device" msgstr "Device" msgid "Task Sending" -msgstr "" +msgstr "Task Sending" msgid "Task Sent" -msgstr "" +msgstr "Task Sent" msgid "Edit multiple printers" msgstr "" @@ -3192,7 +3217,7 @@ msgid "Offline" msgstr "Offline" msgid "No task" -msgstr "" +msgstr "No task" msgid "View" msgstr "View" @@ -3204,16 +3229,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "" +msgstr "Device Name" msgid "Task Name" -msgstr "" +msgstr "Task Name" msgid "Device Status" -msgstr "" +msgstr "Device Status" msgid "Actions" -msgstr "" +msgstr "Actions" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3256,7 +3281,7 @@ msgid "Pending" msgstr "" msgid "Sending" -msgstr "" +msgstr "Sending" msgid "Sending Finish" msgstr "" @@ -3283,25 +3308,25 @@ msgid "Stop" msgstr "Stop" msgid "Task Status" -msgstr "" +msgstr "Task Status" msgid "Sent Time" -msgstr "" +msgstr "Sent Time" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "There are no tasks to be sent!" msgid "No historical tasks!" -msgstr "" +msgstr "No historical tasks!" msgid "Loading..." msgstr "Loading..." msgid "No AMS" -msgstr "" +msgstr "No AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "Send to Multi-device" msgid "Preparing print job" msgstr "Preparing print job" @@ -3316,22 +3341,31 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "" +msgstr "Use External Spool" msgid "Use AMS" -msgstr "" +msgstr "Use AMS" msgid "Select Printers" -msgstr "" +msgstr "Select Printers" msgid "Ams Status" -msgstr "" +msgstr "AMS Status" msgid "Printing Options" +msgstr "Printing Options" + +msgid "Bed Leveling" +msgstr "Bed leveling" + +msgid "Timelapse" +msgstr "Timelapse" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "Send Options" msgid "Send" msgstr "Send" @@ -3340,13 +3374,16 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"printers at the same time. (It depends on how many devices can undergo " +"heating at the same time.)" msgid "Wait" -msgstr "" +msgstr "Wait" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Name is invalid;" msgstr "Name is invalid;" @@ -3443,14 +3480,18 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" +"The recommended minimum temperature is less than 190 degree or the " +"recommended maximum temperature is greater than 300 degree.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" +"The recommended minimum temperature cannot be higher than the recommended " +"maximum temperature.\n" msgid "Please check.\n" -msgstr "" +msgstr "Please check.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3483,6 +3524,9 @@ msgid "" "it may result in material softening and clogging.The maximum safe " "temperature for the material is %d" msgstr "" +"Current chamber temperature is higher than the material's safe temperature; " +"this may result in material softening and nozzle clogs.The maximum safe " +"temperature for the material is %d" msgid "" "Too small layer height.\n" @@ -3601,7 +3645,7 @@ msgstr "" "layers is 0, sparse infill density is 0 and timelapse type is traditional." msgid " But machines with I3 structure will not generate timelapse videos." -msgstr "" +msgstr " But machines with I3 structure will not generate timelapse videos." msgid "" "Change these settings automatically? \n" @@ -3676,46 +3720,46 @@ msgid "Paused due to heat bed temperature malfunction" msgstr "Paused due to heat bed temperature malfunction" msgid "Filament unloading" -msgstr "" +msgstr "Filament unloading" msgid "Skip step pause" -msgstr "" +msgstr "Skip step pause" msgid "Filament loading" -msgstr "" +msgstr "Filament loading" msgid "Motor noise calibration" -msgstr "" +msgstr "Motor noise calibration" msgid "Paused due to AMS lost" -msgstr "" +msgstr "Paused due to AMS lost" msgid "Paused due to low speed of the heat break fan" -msgstr "" +msgstr "Paused due to low speed of the heat break fan" msgid "Paused due to chamber temperature control error" -msgstr "" +msgstr "Paused due to chamber temperature control error" msgid "Cooling chamber" -msgstr "" +msgstr "Cooling chamber" msgid "Paused by the Gcode inserted by user" -msgstr "" +msgstr "Paused by the Gcode inserted by user" msgid "Motor noise showoff" -msgstr "" +msgstr "Motor noise showoff" msgid "Nozzle filament covered detected pause" -msgstr "" +msgstr "Nozzle filament covered detected pause" msgid "Cutter error pause" -msgstr "" +msgstr "Cutter error pause" msgid "First layer error pause" -msgstr "" +msgstr "First layer error pause" msgid "Nozzle clog pause" -msgstr "" +msgstr "Nozzle clog pause" msgid "Unknown" msgstr "Unknown" @@ -3746,18 +3790,27 @@ msgid "" "45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" +"The current chamber temperature or the target chamber temperature exceeds " +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" +"TPU) is not allowed to be loaded." msgid "" "Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " "avoid extruder clogging,it is not allowed to set the chamber temperature " "above 45℃." msgstr "" +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " +"above 45℃." msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated. And the target chamber temperature will " "automatically be set to 0℃." msgstr "" +"When you set the chamber temperature below 40℃, the chamber temperature " +"control will not be activated, and the target chamber temperature will " +"automatically be set to 0℃." msgid "Failed to start printing job" msgstr "Failed to start print job" @@ -3765,34 +3818,39 @@ msgstr "Failed to start print job" msgid "" "This calibration does not support the currently selected nozzle diameter" msgstr "" +"This calibration does not support the currently selected nozzle diameter" msgid "Current flowrate cali param is invalid" -msgstr "" +msgstr "Current flowrate cali param is invalid" msgid "Selected diameter and machine diameter do not match" -msgstr "" +msgstr "Selected diameter and machine diameter do not match" msgid "Failed to generate cali gcode" -msgstr "" +msgstr "Failed to generate cali gcode" msgid "Calibration error" -msgstr "" +msgstr "Calibration error" msgid "TPU is not supported by AMS." -msgstr "" +msgstr "TPU is not supported by AMS." msgid "Bambu PET-CF/PA6-CF is not supported by AMS." -msgstr "" +msgstr "Bambu PET-CF/PA6-CF is not supported by AMS." msgid "" "Damp PVA will become flexible and get stuck inside AMS,please take care to " "dry it before use." msgstr "" +"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"dry it before use." msgid "" "CF/GF filaments are hard and brittle, It's easy to break or get stuck in " "AMS, please use with caution." msgstr "" +"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"AMS, please use with caution." msgid "default" msgstr "default" @@ -3875,7 +3933,7 @@ msgstr "Parameter validation" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "" +msgstr "Value %s is out of range. The valid range is from %d to %d." msgid "Value is out of range." msgstr "Value is out of range." @@ -3958,7 +4016,7 @@ msgid "Flushed" msgstr "Flushed" msgid "Tower" -msgstr "" +msgstr "Tower" msgid "Total" msgstr "Total" @@ -3970,7 +4028,7 @@ msgid "Total time" msgstr "Total time" msgid "Total cost" -msgstr "" +msgstr "Total cost" msgid "up to" msgstr "up to" @@ -4066,10 +4124,10 @@ msgid "Normal mode" msgstr "Normal mode" msgid "Total Filament" -msgstr "" +msgstr "Total Filament" msgid "Model Filament" -msgstr "" +msgstr "Model Filament" msgid "Prepare time" msgstr "Prepare time" @@ -4165,7 +4223,7 @@ msgid "Spacing" msgstr "Spacing" msgid "0 means auto spacing." -msgstr "" +msgstr "0 means auto spacing." msgid "Auto rotate for arrangement" msgstr "Auto rotate for arrangement" @@ -4177,7 +4235,7 @@ msgid "Avoid extrusion calibration region" msgstr "Avoid extrusion calibration region" msgid "Align to Y axis" -msgstr "" +msgstr "Align to Y axis" msgid "Add plate" msgstr "Add Plate" @@ -4243,7 +4301,7 @@ msgid "An object is layed over the boundary of plate." msgstr "An object is laid over the boundary of the plate." msgid "A G-code path goes beyond the max print height." -msgstr "" +msgstr "A G-code path goes beyond the max print height." msgid "A G-code path goes beyond the boundary of plate." msgstr "A G-code path goes beyond plate boundaries." @@ -4271,10 +4329,10 @@ msgid "Bed leveling" msgstr "Bed leveling" msgid "Vibration compensation" -msgstr "" +msgstr "Vibration compensation" msgid "Motor noise cancellation" -msgstr "" +msgstr "Motor noise cancellation" msgid "Calibration program" msgstr "Calibration program" @@ -4301,7 +4359,7 @@ msgid "Calibrating" msgstr "Calibrating" msgid "No step selected" -msgstr "" +msgstr "No step selected" msgid "Auto-record Monitoring" msgstr "Auto-record Monitoring" @@ -4310,7 +4368,7 @@ msgid "Go Live" msgstr "Go Live" msgid "Liveview Retry" -msgstr "" +msgstr "Liveview Retry" msgid "Resolution" msgstr "Resolution" @@ -4368,7 +4426,7 @@ msgid "Preview" msgstr "Preview" msgid "Multi-device" -msgstr "" +msgstr "Multi-device" msgid "Project" msgstr "Project" @@ -4514,6 +4572,12 @@ msgstr "Import 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Load a model" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Import Configs" @@ -4524,10 +4588,10 @@ msgid "Import" msgstr "Import" msgid "Export all objects as one STL" -msgstr "" +msgstr "Export all objects as one STL" msgid "Export all objects as STLs" -msgstr "" +msgstr "Export all objects as STLs" msgid "Export Generic 3MF" msgstr "Export Generic 3MF" @@ -4653,49 +4717,49 @@ msgid "Help" msgstr "Help" msgid "Temperature Calibration" -msgstr "" +msgstr "Temperature Calibration" msgid "Pass 1" -msgstr "" +msgstr "Pass 1" msgid "Flow rate test - Pass 1" -msgstr "" +msgstr "Flow rate test - Pass 1" msgid "Pass 2" -msgstr "" +msgstr "Pass 2" msgid "Flow rate test - Pass 2" -msgstr "" +msgstr "Flow rate test - Pass 2" msgid "Flow rate" -msgstr "" +msgstr "Flow rate" msgid "Pressure advance" -msgstr "" +msgstr "Pressure advance" msgid "Retraction test" -msgstr "" +msgstr "Retraction test" msgid "Orca Tolerance Test" -msgstr "" +msgstr "Orca Tolerance Test" msgid "Max flowrate" -msgstr "" +msgstr "Max flowrate" msgid "VFA" -msgstr "" +msgstr "VFA" msgid "More..." -msgstr "" +msgstr "More..." msgid "Tutorial" -msgstr "" +msgstr "Tutorial" msgid "Calibration help" -msgstr "" +msgstr "Calibration help" msgid "More calibrations" -msgstr "" +msgstr "More calibrations" msgid "&Open G-code" msgstr "&Open G-code" @@ -4811,48 +4875,53 @@ msgid "Synchronization" msgstr "Synchronization" msgid "The device cannot handle more conversations. Please retry later." -msgstr "" +msgstr "The device cannot handle more conversations. Please retry later." msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "" +msgstr "Player is malfunctioning. Please reinstall the system player." msgid "The player is not loaded, please click \"play\" button to retry." -msgstr "" +msgstr "The player is not loaded; please click the \"play\" button to retry." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "Please confirm if the printer is connected." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" +"The printer is currently busy downloading. Please try again after it " +"finishes." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "Printer camera is malfunctioning." msgid "Problem occured. Please update the printer firmware and try again." -msgstr "" +msgstr "A problem occurred. Please update the printer firmware and try again." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "Please enter the IP of the printer to connect." msgid "Initializing..." msgstr "Initializing..." msgid "Connection Failed. Please check the network and try again" -msgstr "" +msgstr "Connection Failed. Please check the network and try again" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"Please check the network and try again. You can restart or update the " +"printer if the issue persists." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "The printer has been logged out and cannot connect." msgid "Stopped." msgstr "Stopped." @@ -4910,9 +4979,6 @@ msgstr "Group files by month, recent first." msgid "Show all files, recent first." msgstr "Show all files, recent first." -msgid "Timelapse" -msgstr "Timelapse" - msgid "Switch to timelapse files." msgstr "Switch to timelapse files." @@ -4944,7 +5010,7 @@ msgid "Refresh" msgstr "Refresh" msgid "Reload file list from printer." -msgstr "" +msgstr "Reload file list from printer." msgid "No printers." msgstr "No printers." @@ -4957,10 +5023,10 @@ msgid "Loading file list..." msgstr "Loading file list..." msgid "No files" -msgstr "" +msgstr "No files" msgid "Load failed" -msgstr "" +msgstr "Load failed" msgid "Initialize failed (Device connection not ready)!" msgstr "Initialization failed (Device connection not ready)!" @@ -4969,15 +5035,17 @@ msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"Browsing file in SD card is not supported in current firmware. Please update " +"the printer firmware." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "LAN Connection Failed (Failed to view sdcard)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "Browsing file in SD card is not supported in LAN Only Mode." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -5004,10 +5072,10 @@ msgid "Fetching model infomations ..." msgstr "Fetching model information..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "Failed to fetch model information from printer." msgid "Failed to parse model information." -msgstr "" +msgstr "Failed to parse model information." msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -5023,6 +5091,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"File: %s\n" +"Title: %s\n" msgid "Download waiting..." msgstr "Download waiting..." @@ -5044,22 +5114,24 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"Reconnecting the printer, the operation cannot be completed immediately, " +"please try again later." msgid "File does not exist." -msgstr "" +msgstr "File does not exist." msgid "File checksum error. Please retry." -msgstr "" +msgstr "File checksum error. Please retry." msgid "Not supported on the current printer version." -msgstr "" +msgstr "Not supported on the current printer version." msgid "Storage unavailable, insert SD card." -msgstr "" +msgstr "Storage unavailable, insert Micro SD card." #, c-format, boost-format msgid "Error code: %d" -msgstr "" +msgstr "Error code: %d" msgid "Speed:" msgstr "Speed:" @@ -5116,17 +5188,21 @@ msgid "" "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." msgstr "" +"You have completed printing the mall model, \n" +"but synchronizing rating information has failed." msgid "How do you like this printing file?" -msgstr "" +msgstr "How do you like this printing file?" msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" msgstr "" +"(The model has already been rated. Your rating will overwrite the previous " +"rating.)" msgid "Rate" -msgstr "" +msgstr "Rate" msgid "Camera" msgstr "Camera" @@ -5144,7 +5220,7 @@ msgid "Control" msgstr "Control" msgid "Printer Parts" -msgstr "" +msgstr "Printer Parts" msgid "Print Options" msgstr "Print Options" @@ -5201,6 +5277,8 @@ msgid "" "Please heat the nozzle to above 170 degree before loading or unloading " "filament." msgstr "" +"Please heat the nozzle to above 170 degree before loading or unloading " +"filament." msgid "Still unload" msgstr "Still unload" @@ -5237,64 +5315,67 @@ msgid "Can't start this without SD card." msgstr "Can't start without MicroSD card." msgid "Rate the Print Profile" -msgstr "" +msgstr "Rate the Print Profile" msgid "Comment" -msgstr "" +msgstr "Comment" msgid "Rate this print" -msgstr "" +msgstr "Rate this print" msgid "Add Photo" -msgstr "" +msgstr "Add Photo" msgid "Delete Photo" -msgstr "" +msgstr "Delete Photo" msgid "Submit" -msgstr "" +msgstr "Submit" msgid "Please click on the star first." -msgstr "" +msgstr "Please click on the star first." msgid "InFo" -msgstr "" +msgstr "Info" msgid "Get oss config failed." -msgstr "" +msgstr "Get oss config failed." msgid "Upload Pictrues" -msgstr "" +msgstr "Upload Pictures" msgid "Number of images successfully uploaded" -msgstr "" +msgstr "Number of images successfully uploaded" msgid " upload failed" -msgstr "" +msgstr " upload failed" msgid " upload config prase failed\n" -msgstr "" +msgstr " upload config prase failed\n" msgid " No corresponding storage bucket\n" -msgstr "" +msgstr " No corresponding storage bucket\n" msgid " can not be opened\n" -msgstr "" +msgstr " cannot be opened\n" msgid "" "The following issues occurred during the process of uploading images. Do you " "want to ignore them?\n" "\n" msgstr "" +"The following issues occurred during the process of uploading images. Do you " +"want to ignore them?\n" +"\n" msgid "info" msgstr "info" msgid "Synchronizing the printing results. Please retry a few seconds later." -msgstr "" +msgstr "Synchronizing the printing results. Please retry a few seconds later." msgid "Upload failed\n" -msgstr "" +msgstr "Upload failed\n" msgid "obtaining instance_id failed\n" msgstr "Obtaining instance_id failed\n" @@ -5304,28 +5385,38 @@ msgid "" "\n" " error code: " msgstr "" +"Your comment result cannot be uploaded due to the following reasons:\n" +"\n" +" error code: " msgid "error message: " -msgstr "" +msgstr "error message: " msgid "" "\n" "\n" "Would you like to redirect to the webpage for rating?" msgstr "" +"\n" +"\n" +"Would you like to redirect to the webpage to give a rating?" msgid "" "Some of your images failed to upload. Would you like to redirect to the " "webpage for rating?" msgstr "" +"Some of your images failed to upload. Would you like to redirect to the " +"webpage for rating?" msgid "You can select up to 16 images." -msgstr "" +msgstr "You can select up to 16 images." msgid "" "At least one successful print record of this print profile is required \n" "to give a positive rating(4 or 5stars)." msgstr "" +"At least one successful print record of this print profile is required \n" +"to give a positive rating (4 or 5 stars)." msgid "Status" msgstr "Status" @@ -5375,7 +5466,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "" +msgstr "Download Beta Version" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5384,13 +5475,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "" +msgstr "Current Version: " msgid "Latest Version: " -msgstr "" +msgstr "Latest Version: " msgid "Not for now" -msgstr "" +msgstr "Not for now" msgid "3D Mouse disconnected." msgstr "3D Mouse disconnected." @@ -5417,10 +5508,10 @@ msgid "Details" msgstr "Details" msgid "New printer config available." -msgstr "" +msgstr "New printer config available." msgid "Wiki" -msgstr "" +msgstr "Wiki" msgid "Undo integration failed." msgstr "Undo integration failed." @@ -5461,12 +5552,12 @@ msgstr[1] "" msgid "ERROR" msgstr "ERROR" -msgid "CANCELED" -msgstr "CANCELED" - msgid "COMPLETED" msgstr "COMPLETED" +msgid "CANCELED" +msgstr "CANCELED" + msgid "Cancel upload" msgstr "Cancel upload" @@ -5483,10 +5574,10 @@ msgid "Export successfully." msgstr "Exported successfully" msgid "Model file downloaded." -msgstr "" +msgstr "Model file downloaded." msgid "Serious warning:" -msgstr "" +msgstr "Serious warning:" msgid " (Repair)" msgstr " (Repair)" @@ -5573,29 +5664,29 @@ msgid "Auto-recovery from step loss" msgstr "Auto-recover from step loss" msgid "Allow Prompt Sound" -msgstr "" +msgstr "Allow Prompt Sound" msgid "Filament Tangle Detect" -msgstr "" +msgstr "Filament Tangle Detection" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Nozzle Clumping Detection" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "" +msgstr "Check if the nozzle is clumping by filament or other foreign objects." msgid "Nozzle Type" -msgstr "" +msgstr "Nozzle Type" msgid "Stainless Steel" -msgstr "" +msgstr "Stainless Steel" msgid "Hardened Steel" -msgstr "" +msgstr "Hardened Steel" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "Global" @@ -5686,7 +5777,7 @@ msgid "Set filaments to use" msgstr "Set filaments to use" msgid "Search plate, object and part." -msgstr "" +msgstr "Search plate, object and part." msgid "" "No AMS filaments. Please select a printer in 'Device' page to load AMS info." @@ -5753,6 +5844,9 @@ msgid "" "clogged when printing this filament in a closed enclosure. Please open the " "front door and/or remove the upper glass." msgstr "" +"The current heatbed temperature is relatively high. The nozzle may clog when " +"printing this filament in a closed environment. Please open the front door " +"and/or remove the upper glass." msgid "" "The nozzle hardness required by the filament is higher than the default " @@ -5767,6 +5861,8 @@ msgid "" "Enabling traditional timelapse photography may cause surface imperfections. " "It is recommended to change to smooth mode." msgstr "" +"Enabling traditional timelapse photography may cause surface imperfections. " +"It is recommended to change to smooth mode." msgid "Expand sidebar" msgstr "" @@ -5810,26 +5906,30 @@ msgid "Please correct them in the param tabs" msgstr "Please correct them in the Param tabs" msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "" +msgstr "The 3mf has following modified G-code in filament or printer presets:" msgid "" "Please confirm that these modified G-codes are safe to prevent any damage to " "the machine!" msgstr "" +"Please confirm that these modified G-codes are safe to prevent any damage to " +"the machine!" msgid "Modified G-codes" -msgstr "" +msgstr "Modified G-code" msgid "The 3mf has following customized filament or printer presets:" -msgstr "" +msgstr "The 3mf has following customized filament or printer presets:" msgid "" "Please confirm that the G-codes within these presets are safe to prevent any " "damage to the machine!" msgstr "" +"Please confirm that the G-codes within these presets are safe to prevent any " +"damage to the machine!" msgid "Customized Preset" -msgstr "" +msgstr "Customized Preset" msgid "Name of components inside step file is not UTF8 format!" msgstr "Component name(s) inside step file not in UTF8 format!" @@ -5896,22 +5996,24 @@ msgid "Export STL file:" msgstr "Export STL file:" msgid "Export AMF file:" -msgstr "" +msgstr "Export AMF file:" msgid "Save file as:" msgstr "Save file as" msgid "Export OBJ file:" -msgstr "" +msgstr "Export OBJ file:" #, c-format, boost-format msgid "" "The file %s already exists\n" "Do you want to replace it?" msgstr "" +"The file %s already exists.\n" +"Do you want to replace it?" msgid "Comfirm Save As" -msgstr "" +msgstr "Confirm Save As" msgid "Delete object which is a part of cut object" msgstr "Delete object which is a part of cut object" @@ -5932,13 +6034,13 @@ msgid "Another export job is running." msgstr "Another export job is running." msgid "Unable to replace with more than one volume" -msgstr "" +msgstr "Unable to replace with more than one volume" msgid "Error during replace" msgstr "Error during replacement" msgid "Replace from:" -msgstr "" +msgstr "Replace from:" msgid "Select a new file" msgstr "Select a new file" @@ -5953,16 +6055,16 @@ msgid "Do you want to replace it" msgstr "Do you want to replace it?" msgid "Message" -msgstr "" +msgstr "Message" msgid "Reload from:" -msgstr "" +msgstr "Reload from:" msgid "Unable to reload:" -msgstr "" +msgstr "Unable to reload:" msgid "Error during reload" -msgstr "" +msgstr "Error during reload" msgid "There are warnings after slicing models:" msgstr "There are warnings after slicing models:" @@ -6023,13 +6125,13 @@ msgid "prepare 3mf file..." msgstr "preparing 3mf file..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "Download failed; unknown file format." msgid "downloading project ..." msgstr "downloading project ..." msgid "Download failed, File size exception." -msgstr "" +msgstr "Download failed; File size exception." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6052,6 +6154,20 @@ msgstr "Does not contain valid G-code." msgid "Error occurs while loading G-code file" msgstr "An Error has occurred while loading the G-code file." +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Drop project file" @@ -6094,13 +6210,13 @@ msgid "Save G-code file as:" msgstr "Save G-code file as:" msgid "Save SLA file as:" -msgstr "" +msgstr "Save SLA file as:" msgid "The provided file name is not valid." -msgstr "" +msgstr "The provided file name is not valid." msgid "The following characters are not allowed by a FAT file system:" -msgstr "" +msgstr "The following characters are not allowed by a FAT file system:" msgid "Save Sliced file as:" msgstr "Save Sliced file as:" @@ -6117,22 +6233,24 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try agian." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "Reason: part \"%1%\" is empty." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "Reason: part \"%1%\" does not bound a volume." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "Reason: part \"%1%\" has self intersection." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "Reason: \"%1%\" and another part have no intersection." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6180,7 +6298,7 @@ msgstr "Number of currently selected parts: %1%\n" #, boost-format msgid "Number of currently selected objects: %1%\n" -msgstr "" +msgstr "Number of currently selected objects: %1%\n" #, boost-format msgid "Part name: %1%\n" @@ -6310,6 +6428,9 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"On OSX there is always only one instance of app running by default. However " +"it is allowed to run multiple instances of same app from the command line. " +"In such case this setting will allow only one instance." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6373,17 +6494,17 @@ msgid "If enabled, useful hints are displayed at startup." msgstr "If enabled, useful hints are displayed at startup." msgid "Flushing volumes: Auto-calculate everytime the color changed." -msgstr "" +msgstr "Flushing volumes: Auto-calculate everytime the color changed." msgid "If enabled, auto-calculate everytime the color changed." -msgstr "" +msgstr "If enabled, auto-calculate every time the color changes." msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "" +msgstr "Flushing volumes: Auto-calculate every time the filament is changed." msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "" +msgstr "If enabled, auto-calculate every time filament is changed" msgid "Remember printer configuration" msgstr "" @@ -6400,6 +6521,8 @@ msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." msgid "Network" msgstr "" @@ -6446,6 +6569,20 @@ msgstr "" "If enabled, this sets Orca Slicer as the default application to open .step " "files." +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Maximum recent projects" @@ -6456,7 +6593,7 @@ msgid "Clear my choice on the unsaved projects." msgstr "Clear my choice on the unsaved projects." msgid "No warnings when loading 3MF with modified G-codes" -msgstr "" +msgstr "No warnings when loading 3MF with modified G-code" msgid "Auto-Backup" msgstr "Auto-Backup" @@ -6612,25 +6749,25 @@ msgid "Add/Remove materials" msgstr "Add/Remove materials" msgid "Select/Remove printers(system presets)" -msgstr "" +msgstr "Select/Remove printers(system presets)" msgid "Create printer" -msgstr "" +msgstr "Create printer" msgid "The selected preset is null!" -msgstr "" +msgstr "The selected preset is null!" msgid "End" -msgstr "" +msgstr "End" msgid "Customize" -msgstr "" +msgstr "Customize" msgid "Other layer filament sequence" -msgstr "" +msgstr "Other layer filament sequence" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "Please input layer value (>= 2)." msgid "Plate name" msgstr "Plate name" @@ -6642,16 +6779,16 @@ msgid "Print sequence" msgstr "Print sequence" msgid "Same as Global" -msgstr "" +msgstr "Same as Global" msgid "Disable" -msgstr "" +msgstr "Disable" msgid "Spiral vase" msgstr "Spiral vase" msgid "First layer filament sequence" -msgstr "" +msgstr "First layer filament sequence" msgid "Same as Global Plate Type" msgstr "Same as Global Plate Type" @@ -6766,7 +6903,7 @@ msgid "(LAN)" msgstr "(LAN)" msgid "Search" -msgstr "" +msgstr "Search" msgid "My Device" msgstr "My Device" @@ -6802,7 +6939,7 @@ msgid "Bambu Smooth PEI Plate" msgstr "" msgid "High temperature Plate" -msgstr "" +msgstr "High temperature Plate" msgid "Bambu Textured PEI Plate" msgstr "" @@ -6810,14 +6947,11 @@ msgstr "" msgid "Send print job to" msgstr "Send print job to" -msgid "Bed Leveling" -msgstr "Bed leveling" - msgid "Flow Dynamics Calibration" -msgstr "" +msgstr "Flow Dynamics Calibration" msgid "Click here if you can't connect to the printer" -msgstr "" +msgstr "Click here if you can't connect to the printer" msgid "send completed" msgstr "Send complete" @@ -6910,6 +7044,8 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"The selected printer (%s) is incompatible with the chosen printer profile in " +"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "A MicroSD card needs to be inserted to record a timelapse." @@ -6929,10 +7065,13 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" +"When spiral vase mode is enabled, machines with I3 structure will not " +"generate timelapse videos." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" +"Timelapse is not supported because Print sequence is set to \"By object\"." msgid "Errors" msgstr "Errors" @@ -6960,26 +7099,31 @@ msgstr "" #, c-format, boost-format msgid "nozzle in preset: %s %s" -msgstr "" +msgstr "nozzle in preset: %s %s" #, c-format, boost-format msgid "nozzle memorized: %.1f %s" -msgstr "" +msgstr "nozzle memorized: %.1f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"Your nozzle diameter in sliced file is not consistent with the saved nozzle. " +"If you changed your nozzle lately, please go to Device > Printer Parts to " +"change settings." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" msgstr "" +"Printing high temperature material(%s material) with %s may cause nozzle " +"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" +msgstr "Please fix the error above, otherwise printing cannot continue." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -6989,20 +7133,23 @@ msgstr "" msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" +"Connecting to the printer. Unable to cancel during the connection process." msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." msgstr "" +"Caution to use! Flow calibration on Textured PEI Plate may fail due to the " +"scattered surface." msgid "Automatic flow calibration using Micro Lidar" -msgstr "" +msgstr "Automatic flow calibration using Micro Lidar" msgid "Modifying the device name" msgstr "Modifying the device name" msgid "Bind with Pin Code" -msgstr "" +msgstr "Bind with Pin Code" msgid "Send to Printer SD card" msgstr "Send to Printer MicroSD card" @@ -7011,7 +7158,7 @@ msgid "Cannot send the print task when the upgrade is in progress" msgstr "Cannot send print tasks when an update is in progress" msgid "The selected printer is incompatible with the chosen printer presets." -msgstr "" +msgstr "The selected printer is incompatible with the chosen printer presets." msgid "An SD card needs to be inserted before send to printer SD card." msgstr "" @@ -7027,7 +7174,7 @@ msgid "Slice ok." msgstr "Slice complete" msgid "View all Daily tips" -msgstr "" +msgstr "View all Daily tips" msgid "Failed to create socket" msgstr "Failed to create socket" @@ -7060,21 +7207,23 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"Please Find the Pin Code in Account page on printer screen,\n" +" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "" +msgstr "Can't find Pin Code?" msgid "Pin Code" -msgstr "" +msgstr "Pin Code" msgid "Binding..." -msgstr "" +msgstr "Binding..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Please confirm on the printer screen" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "Log in failed. Please check the Pin Code." msgid "Log in printer" msgstr "Log in printer" @@ -7193,7 +7342,7 @@ msgstr "" "the model without prime tower. Do you want to enable the prime tower?" msgid "Still print by object?" -msgstr "" +msgstr "Still print by object?" msgid "" "We have added an experimental style \"Tree Slim\" that features smaller " @@ -7251,15 +7400,17 @@ msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " "height limits ,this may cause printing quality issues." msgstr "" +"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " +"height limits ,this may cause printing quality issues." msgid "Adjust to the set range automatically? \n" -msgstr "" +msgstr "Adjust to the set range automatically? \n" msgid "Adjust" -msgstr "" +msgstr "Adjust" msgid "Ignore" -msgstr "" +msgstr "Ignore" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7267,6 +7418,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " +"printing complications." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7274,6 +7429,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications. Please use with the latest printer firmware." msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7344,7 +7503,7 @@ msgid "Acceleration" msgstr "Acceleration" msgid "Jerk(XY)" -msgstr "" +msgstr "Jerk(XY)" msgid "Raft" msgstr "Raft" @@ -7371,7 +7530,7 @@ msgid "Post-processing Scripts" msgstr "Post-processing Scripts" msgid "Notes" -msgstr "" +msgstr "Notes" msgid "Frequent" msgstr "Frequent" @@ -7445,13 +7604,16 @@ msgstr "" "of 0 means the filament does not support printing on the Engineering Plate." msgid "Smooth PEI Plate / High Temp Plate" -msgstr "" +msgstr "Smooth PEI Plate / High Temp Plate" msgid "" "Bed temperature when Smooth PEI Plate/High temperature plate is installed. " "Value 0 means the filament does not support to print on the Smooth PEI Plate/" "High Temp Plate" msgstr "" +"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " +"Value 0 means the filament does not support to print on the Smooth PEI Plate/" +"High Temp Plate" msgid "Textured PEI Plate" msgstr "Textured PEI Plate" @@ -7503,13 +7665,13 @@ msgid "Auxiliary part cooling fan" msgstr "Auxiliary part cooling fan" msgid "Exhaust fan" -msgstr "" +msgstr "Exhaust fan" msgid "During print" -msgstr "" +msgstr "During print" msgid "Complete print" -msgstr "" +msgstr "Complete print" msgid "Filament start G-code" msgstr "Filament start G-code" @@ -7560,7 +7722,7 @@ msgid "Machine end G-code" msgstr "Machine end G-code" msgid "Printing by object G-code" -msgstr "" +msgstr "Printing by object G-code" msgid "Before layer change G-code" msgstr "Before layer change G-code" @@ -7569,7 +7731,7 @@ msgid "Layer change G-code" msgstr "Layer change G-code" msgid "Time lapse G-code" -msgstr "" +msgstr "Time lapse G-code" msgid "Change filament G-code" msgstr "Change filament G-code" @@ -7621,9 +7783,12 @@ msgid "" "\n" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Disable it in order to enable Firmware Retraction?" msgid "Firmware Retraction" -msgstr "" +msgstr "Firmware Retraction" msgid "Detached" msgstr "Detached" @@ -7633,9 +7798,11 @@ msgid "" "%d Filament Preset and %d Process Preset is attached to this printer. Those " "presets would be deleted if the printer is deleted." msgstr "" +"%d Filament Preset and %d Process Preset is attached to this printer. Those " +"presets would be deleted if the printer is deleted." msgid "Presets inherited by other presets can not be deleted!" -msgstr "" +msgstr "Presets inherited by other presets can not be deleted!" msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." @@ -7657,6 +7824,9 @@ msgid "" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" +"Are you sure to delete the selected preset? \n" +"If the preset corresponds to a filament currently in use on your printer, " +"please reset the filament information for that slot." #, boost-format msgid "Are you sure to %1% the selected preset?" @@ -7757,12 +7927,14 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "You have changed some settings of preset \"%1%\". " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"You can save or discard the preset values you have modified." msgid "" "\n" @@ -7771,7 +7943,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "" +msgstr "You have previously modified your settings." msgid "" "\n" @@ -7926,7 +8098,7 @@ msgid "Auto-Calc" msgstr "Auto-Calc" msgid "Re-calculate" -msgstr "" +msgstr "Re-calculate" msgid "Flushing volumes for filament change" msgstr "Flushing volumes for filament change" @@ -7966,10 +8138,10 @@ msgid "To" msgstr "To" msgid "Bambu Network plug-in not detected." -msgstr "" +msgstr "Bambu Network plug-in not detected." msgid "Click here to download it." -msgstr "" +msgstr "Click here to download it." msgid "Login" msgstr "Login" @@ -8002,7 +8174,7 @@ msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Show/Hide 3Dconnexion devices settings dialog" msgid "Switch table page" -msgstr "" +msgstr "Switch table page" msgid "Show keyboard shortcuts list" msgstr "Show keyboard shortcuts list" @@ -8264,49 +8436,49 @@ msgid "New version of Orca Slicer" msgstr "New version of Orca Slicer" msgid "Skip this Version" -msgstr "" +msgstr "Skip this Version" msgid "Done" msgstr "Done" msgid "resume" -msgstr "" +msgstr "resume" msgid "Resume Printing" -msgstr "" +msgstr "Resume Printing" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Resume Printing (defects acceptable)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Resume Printing (problem solved)" msgid "Stop Printing" -msgstr "" +msgstr "Stop Printing" msgid "Check Assistant" -msgstr "" +msgstr "Check Assistant" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Filament Extruded, Continue" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Not Extruded Yet, Retry" msgid "Finished, Continue" -msgstr "" +msgstr "Finished, Continue" msgid "Load Filament" msgstr "Load" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Filament Loaded, Resume" msgid "View Liveview" -msgstr "" +msgstr "View Liveview" msgid "Confirm and Update Nozzle" -msgstr "" +msgstr "Confirm and Update Nozzle" msgid "LAN Connection Failed (Sending print file)" msgstr "LAN Connection Failed (Sending print file)" @@ -8333,21 +8505,23 @@ msgid "Where to find your printer's IP and Access Code?" msgstr "Where to find your printer's IP and Access Code?" msgid "Step 3: Ping the IP address to check for packet loss and latency." -msgstr "" +msgstr "Step 3: Ping the IP address to check for packet loss and latency." msgid "Test" -msgstr "" +msgstr "Test" msgid "IP and Access Code Verified! You may close the window" -msgstr "" +msgstr "IP and Access Code Verified! You may close the window" msgid "Connection failed, please double check IP and Access Code" -msgstr "" +msgstr "Connection failed, please double check IP and Access Code" msgid "" "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" msgstr "" +"Connection failed! If your IP and Access Code is correct, \n" +"please move to step 3 for troubleshooting network issues" msgid "Model:" msgstr "Model:" @@ -8362,7 +8536,7 @@ msgid "Update firmware" msgstr "Update firmware" msgid "Beta version" -msgstr "" +msgstr "Beta version" msgid "Latest version" msgstr "Latest version" @@ -8724,26 +8898,33 @@ msgid "" msgstr "" msgid "Variable layer height is not supported with Organic supports." -msgstr "" +msgstr "Variable layer height is not supported with Organic supports." msgid "" "Different nozzle diameters and different filament diameters is not allowed " "when prime tower is enabled." msgstr "" +"Different nozzle diameters and different filament diameters is not allowed " +"when prime tower is enabled." msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" +"The Wipe Tower is currently only supported with the relative extruder " +"addressing (use_relative_e_distances=1)." msgid "" "Ooze prevention is currently not supported with the prime tower enabled." msgstr "" +"Ooze prevention is currently not supported with the prime tower enabled." msgid "" "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" +"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." msgid "The prime tower is not supported in \"By object\" print." msgstr "A prime tower is not supported in “By object” print." @@ -8971,11 +9152,12 @@ msgstr "" "username:password@your-octopi-address/" msgid "Device UI" -msgstr "" +msgstr "Device UI" msgid "" "Specify the URL of your device user interface if it's not same as print_host" msgstr "" +"Specify the URL of your device user interface if it's not same as print_host" msgid "API Key / Password" msgstr "API Key / Password" @@ -9135,16 +9317,16 @@ msgid "Engineering Plate" msgstr "Engineering Plate" msgid "First layer print sequence" -msgstr "" +msgstr "First layer print sequence" msgid "Other layers print sequence" -msgstr "" +msgstr "Other layers print sequence" msgid "The number of other layers print sequence" -msgstr "" +msgstr "The number of other layers print sequence" msgid "Other layers filament sequence" -msgstr "" +msgstr "Other layers filament sequence" msgid "This G-code is inserted at every layer change before lifting z" msgstr "This G-code is inserted at every layer change before lifting z." @@ -9275,12 +9457,14 @@ msgid "" msgstr "" msgid "Top surface flow ratio" -msgstr "" +msgstr "Top surface flow ratio" msgid "" "This factor affects the amount of material for top solid infill. You can " "decrease it slightly to have smooth surface finish" msgstr "" +"This factor affects the amount of material for top solid infill. You can " +"decrease it slightly to have smooth surface finish" msgid "Bottom surface flow ratio" msgstr "" @@ -9425,7 +9609,7 @@ msgid "" msgstr "" msgid "mm/s or %" -msgstr "" +msgstr "mm/s or %" msgid "External" msgstr "" @@ -9569,7 +9753,7 @@ msgid "Default process profile when switch to this machine profile" msgstr "Default process profile when switching to this machine profile" msgid "Activate air filtration" -msgstr "" +msgstr "Activate air filtration" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" @@ -9581,6 +9765,8 @@ msgid "" "Speed of exhaust fan during printing.This speed will overwrite the speed in " "filament custom gcode" msgstr "" +"Speed of exhaust fan during printing.This speed will override the speed in " +"filament custom g-code" msgid "Speed of exhaust fan after printing completes" msgstr "" @@ -9687,12 +9873,14 @@ msgid "End G-code when finish the whole printing" msgstr "Add end G-Code when finishing the entire print." msgid "Between Object Gcode" -msgstr "" +msgstr "Between Object Gcode" msgid "" "Insert Gcode between objects. This parameter will only come into effect when " "you print your models object by object" msgstr "" +"Insert Gcode between objects. This parameter will only come into effect when " +"you print your models object by object" msgid "End G-code when finish the printing of this filament" msgstr "Add end G-code when finishing the printing of this filament." @@ -9756,7 +9944,7 @@ msgstr "" "infill." msgid "Internal solid infill pattern" -msgstr "" +msgstr "Internal solid infill pattern" msgid "" "Line pattern of internal solid infill. if the detect narrow internal solid " @@ -9776,7 +9964,7 @@ msgstr "" "printed slower than inner walls for higher quality." msgid "Small perimeters" -msgstr "" +msgstr "Small perimeters" msgid "" "This separate setting will affect the speed of perimeters having radius <= " @@ -9791,6 +9979,7 @@ msgstr "" msgid "" "This sets the threshold for small perimeter length. Default threshold is 0mm" msgstr "" +"This sets the threshold for small perimeter length. Default threshold is 0mm" msgid "Walls printing order" msgstr "" @@ -9830,7 +10019,7 @@ msgid "Inner/Outer/Inner" msgstr "" msgid "Print infill first" -msgstr "" +msgstr "Print infill first" msgid "" "Order of wall/infill. When the tickbox is unchecked the walls are printed " @@ -9891,10 +10080,10 @@ msgstr "" "printing." msgid "Nozzle height" -msgstr "" +msgstr "Nozzle height" msgid "The height of nozzle tip." -msgstr "" +msgstr "The height of nozzle tip." msgid "Bed mesh min" msgstr "" @@ -9966,7 +10155,7 @@ msgstr "" "is slight overflow or underflow." msgid "Enable pressure advance" -msgstr "" +msgstr "Enable pressure advance" msgid "" "Enable pressure advance, auto calibration result will be overwriten once " @@ -10011,10 +10200,10 @@ msgid "Default filament color" msgstr "Default filament color" msgid "Filament notes" -msgstr "" +msgstr "Filament notes" msgid "You can put your notes regarding the filament here." -msgstr "" +msgstr "You can put your notes regarding the filament here." msgid "Required nozzle HRC" msgstr "Required nozzle HRC" @@ -10211,13 +10400,16 @@ msgstr "" "Support material is commonly used to print support and support interfaces." msgid "Softening temperature" -msgstr "" +msgstr "Softening temperature" msgid "" "The material softens at this temperature, so when the bed temperature is " "equal to or greater than it, it's highly recommended to open the front door " "and/or remove the upper glass to avoid cloggings." msgstr "" +"The material softens at this temperature, so when the bed temperature is " +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogs." msgid "Price" msgstr "Price" @@ -10229,10 +10421,10 @@ msgid "money/kg" msgstr "money/kg" msgid "Vendor" -msgstr "" +msgstr "Vendor" msgid "Vendor of filament. For show only" -msgstr "" +msgstr "Vendor of filament. For show only" msgid "(Undefined)" msgstr "(Undefined)" @@ -10307,7 +10499,7 @@ msgid "Lightning" msgstr "Lightning" msgid "Cross Hatch" -msgstr "" +msgstr "Cross Hatch" msgid "Sparse infill anchor length" msgstr "" @@ -10375,12 +10567,14 @@ msgid "" msgstr "" msgid "mm/s² or %" -msgstr "" +msgstr "mm/s² or %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage (e." "g. 100%), it will be calculated based on the default acceleration." msgstr "" +"Acceleration of sparse infill. If the value is expressed as a percentage (e." +"g. 100%), it will be calculated based on the default acceleration." msgid "" "Acceleration of internal solid infill. If the value is expressed as a " @@ -10396,13 +10590,13 @@ msgstr "" "acceleration can improve build plate adhesion." msgid "Enable accel_to_decel" -msgstr "" +msgstr "Enable accel_to_decel" msgid "Klipper's max_accel_to_decel will be adjusted automatically" -msgstr "" +msgstr "Klipper's max_accel_to_decel will be adjusted automatically" msgid "accel_to_decel" -msgstr "" +msgstr "accel_to_decel" #, c-format, boost-format msgid "" @@ -10410,10 +10604,10 @@ msgid "" msgstr "" msgid "Jerk of outer walls" -msgstr "" +msgstr "Jerk of outer walls" msgid "Jerk of inner walls" -msgstr "" +msgstr "Jerk of inner walls" msgid "Jerk for top surface" msgstr "" @@ -10538,7 +10732,7 @@ msgid "Whether to apply fuzzy skin on the first layer" msgstr "" msgid "Filter out tiny gaps" -msgstr "" +msgstr "Filter out tiny gaps" msgid "Layers and Perimeters" msgstr "Layers and Perimeters" @@ -10554,13 +10748,16 @@ msgstr "" "should be printed more slowly." msgid "Precise Z height" -msgstr "" +msgstr "Precise Z height" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"Enable this to get precise z height of object after slicing. It will get the " +"precise object height by fine-tuning the layer heights of the last few " +"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "Arc fitting" @@ -10629,10 +10826,10 @@ msgid "HRC" msgstr "HRC" msgid "Printer structure" -msgstr "" +msgstr "Printer structure" msgid "The physical arrangement and components of a printing device" -msgstr "" +msgstr "The physical arrangement and components of a printing device" msgid "CoreXY" msgstr "" @@ -10647,10 +10844,10 @@ msgid "Delta" msgstr "" msgid "Best object position" -msgstr "" +msgstr "Best object position" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." -msgstr "" +msgstr "Best auto arranging position in range [0,1] w.r.t. bed shape." msgid "" "Enable this option if machine has auxiliary part cooling fan. G-code " @@ -10696,7 +10893,7 @@ msgid "money/h" msgstr "" msgid "Support control chamber temperature" -msgstr "" +msgstr "Support controlling chamber temperature" msgid "" "This option is enabled if machine support controlling chamber temperature\n" @@ -10704,7 +10901,7 @@ msgid "" msgstr "" msgid "Support air filtration" -msgstr "" +msgstr "Support air filtration" msgid "" "Enable this if printer support air filtration\n" @@ -10737,7 +10934,7 @@ msgid "" msgstr "" msgid "Exclude objects" -msgstr "" +msgstr "Exclude objects" msgid "Enable this option to add EXCLUDE OBJECT command in g-code" msgstr "" @@ -10796,25 +10993,29 @@ msgid "Speed of internal sparse infill" msgstr "This is the speed for internal sparse infill." msgid "Interface shells" -msgstr "" +msgstr "Interface shells" 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 the generation of solid shells between adjacent materials/volumes. " +"Useful for multi-extruder prints with translucent materials or manual " +"soluble support material" msgid "Maximum width of a segmented region" -msgstr "" +msgstr "Maximum width of a segmented region" msgid "Maximum width of a segmented region. Zero disables this feature." msgstr "" +"Maximum width of a segmented region. A value of 0 disables this feature." msgid "Interlocking depth of a segmented region" -msgstr "" +msgstr "Interlocking depth of a segmented region" msgid "Interlocking depth of a segmented region. Zero disables this feature." -msgstr "" +msgstr "Interlocking depth of a segmented region. Zero disables this feature." msgid "Ironing Type" msgstr "Ironing type" @@ -11288,10 +11489,10 @@ msgid "" msgstr "" msgid "Printer notes" -msgstr "" +msgstr "Printer notes" msgid "You can put your notes regarding the printer here." -msgstr "" +msgstr "You can put your notes regarding the printer here." msgid "Raft contact Z distance" msgstr "Raft contact Z distance" @@ -11374,7 +11575,7 @@ msgstr "" "oozing during long travel distances. Set to 0 to disable retraction." msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "Long retraction when cut (experimental)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -11382,14 +11583,20 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge.While this reduces flush " +"significantly, it may also raise the risk of nozzle clogs or other printing " +"problems." msgid "Retraction distance when cut" -msgstr "" +msgstr "Retraction distance when cut" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" msgstr "" +"Experimental feature. Retraction length before cutting off during filament " +"change" msgid "Z hop when retract" msgstr "Z hop when retracting" @@ -11405,20 +11612,24 @@ msgstr "" "prevent stringing." msgid "Z hop lower boundary" -msgstr "" +msgstr "Z hop lower boundary" msgid "" "Z hop will only come into effect when Z is above this value and is below the " "parameter: \"Z hop upper boundary\"" msgstr "" +"Z hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z hop upper boundary\"" msgid "Z hop upper boundary" -msgstr "" +msgstr "Z hop upper boundary" msgid "" "If this value is positive, Z hop will only come into effect when Z is above " "the parameter: \"Z hop lower boundary\" and is below this value" msgstr "" +"If this value is positive, Z hop will only come into effect when Z is above " +"the parameter: \"Z hop lower boundary\" and is below this value" msgid "Z hop type" msgstr "" @@ -11466,7 +11677,7 @@ msgid "Top and Bottom" msgstr "" msgid "Extra length on restart" -msgstr "" +msgstr "Extra length on restart" msgid "" "When the retraction is compensated after the travel move, the extruder will " @@ -11495,7 +11706,7 @@ msgstr "" "setting this to 0 means that it will be the same speed as the retraction." msgid "Use firmware retraction" -msgstr "" +msgstr "Use firmware retraction" msgid "" "This experimental setting uses G10 and G11 commands to have the firmware " @@ -11539,7 +11750,7 @@ msgid "" msgstr "" msgid "Seam gap" -msgstr "" +msgstr "Seam gap" msgid "" "In order to reduce the visibility of the seam in a closed loop extrusion, " @@ -11553,17 +11764,20 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" +"Use scarf joint to minimize seam visibility and increase seam strength." msgid "Conditional scarf joint" -msgstr "" +msgstr "Conditional scarf joint" msgid "" "Apply scarf joints only to smooth perimeters where traditional seams do not " "conceal the seams at sharp corners effectively." msgstr "" +"Apply scarf joints only to smooth perimeters where traditional seams do not " +"conceal the seams at sharp corners effectively." msgid "Conditional angle threshold" -msgstr "" +msgstr "Conditional angle threshold" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -11606,39 +11820,44 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "" +msgstr "Scarf start height" msgid "" "Start height of the scarf.\n" "This amount can be specified in millimeters or as a percentage of the " "current layer height. The default value for this parameter is 0." msgstr "" +"Start height of the scarf.\n" +"This amount can be specified in millimeters or as a percentage of the " +"current layer height. The default value for this parameter is 0." msgid "Scarf around entire wall" -msgstr "" +msgstr "Scarf around entire wall" msgid "The scarf extends to the entire length of the wall." -msgstr "" +msgstr "The scarf extends to the entire length of the wall." msgid "Scarf length" -msgstr "" +msgstr "Scarf length" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" +"Length of the scarf. Setting this parameter to zero effectively disables the " +"scarf." msgid "Scarf steps" -msgstr "" +msgstr "Scarf steps" msgid "Minimum number of segments of each scarf." -msgstr "" +msgstr "Minimum number of segments of each scarf." msgid "Scarf joint for inner walls" -msgstr "" +msgstr "Scarf joint for inner walls" msgid "Use scarf joint for inner walls as well." -msgstr "" +msgstr "Use scarf joint for inner walls as well." msgid "Role base wipe speed" msgstr "" @@ -11673,7 +11892,7 @@ msgid "" msgstr "" msgid "Wipe speed" -msgstr "" +msgstr "Wipe speed" msgid "" "The wipe speed is determined by the speed setting specified in this " @@ -11681,6 +11900,10 @@ msgid "" "be calculated based on the travel speed setting above.The default value for " "this parameter is 80%" msgstr "" +"The wipe speed is determined by the speed setting specified in this " +"configuration.If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above.The default value for " +"this parameter is 80%" msgid "Skirt distance" msgstr "Skirt distance" @@ -11779,20 +12002,24 @@ msgstr "" "The final generated model has no seam." msgid "Smooth Spiral" -msgstr "" +msgstr "Smooth Spiral" msgid "" "Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " "at all, even in the XY directions on walls that are not vertical" msgstr "" +"Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " +"at all, even in the XY directions on walls that are not vertical" msgid "Max XY Smoothing" -msgstr "" +msgstr "Max XY Smoothing" msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiralIf " "expressed as a %, it will be computed over nozzle diameter" msgstr "" +"Maximum distance to move points in XY to try to achieve a smooth spiral. If " +"expressed as a %, it will be computed over nozzle diameter" msgid "" "If smooth or traditional mode is selected, a timelapse video will be " @@ -11970,10 +12197,10 @@ msgstr "" "etc." msgid "Remove small overhangs" -msgstr "" +msgstr "Remove small overhangs" msgid "Remove small overhangs that possibly need no supports." -msgstr "" +msgstr "Remove small overhangs that possibly need no supports." msgid "Top Z distance" msgstr "Top Z distance" @@ -11998,11 +12225,12 @@ msgstr "" "filament for support, and current filament is used" msgid "Avoid interface filament for base" -msgstr "" +msgstr "Avoid interface filament for base" msgid "" "Avoid using support interface filament to print support base if possible." msgstr "" +"Avoid using support interface filament to print support base if possible." msgid "" "Line width of support. If expressed as a %, it will be computed over the " @@ -12038,10 +12266,10 @@ msgid "Bottom interface layers" msgstr "Bottom interface layers" msgid "Number of bottom interface layers" -msgstr "" +msgstr "Number of bottom interface layers" msgid "Same as top" -msgstr "" +msgstr "Same as top" msgid "Top interface spacing" msgstr "Top interface spacing" @@ -12248,10 +12476,10 @@ msgid "" msgstr "" msgid "Support wall loops" -msgstr "" +msgstr "Support wall loops" msgid "This setting specify the count of walls around support" -msgstr "" +msgstr "This setting specify the count of walls around support" msgid "Tree support with infill" msgstr "Tree support with infill" @@ -12273,7 +12501,7 @@ msgid "" msgstr "" msgid "Chamber temperature" -msgstr "" +msgstr "Chamber temperature" msgid "" "Higher chamber temperature can help suppress or reduce warping and " @@ -12284,6 +12512,12 @@ msgid "" "high to avoid cloggings, so 0 which stands for turning off is highly " "recommended" msgstr "" +"Higher chamber temperature can help suppress or reduce warping and " +"potentially lead to higher interlayer bonding strength for high temperature " +"materials like ABS, ASA, PC, PA and so on. At the same time, the air " +"filtration of ABS and ASA will get worse.While for PLA, PETG, TPU, PVA and " +"other low temperature materials, the actual chamber temperature should not " +"be high to avoid clogs, so 0 (turned off) is highly recommended." msgid "Nozzle temperature for layers after the initial one" msgstr "Nozzle temperature after the first layer" @@ -12428,17 +12662,29 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -12565,7 +12811,7 @@ msgid "" msgstr "" msgid "Use relative E distances" -msgstr "" +msgstr "Use relative E distances" msgid "" "Relative extrusion is recommended when using \"label_objects\" option.Some " @@ -13120,7 +13366,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj: failed to parse" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "load mtl in obj: failed to parse" msgid "The file contains polygons with more than 4 vertices." msgstr "The file contains polygons with more than 4 vertices." @@ -13135,67 +13381,70 @@ msgid "This OBJ file couldn't be read because it's empty." msgstr "This OBJ file couldn't be read because it's empty." msgid "Flow Rate Calibration" -msgstr "" +msgstr "Flow Rate Calibration" msgid "Max Volumetric Speed Calibration" -msgstr "" +msgstr "Max Volumetric Speed Calibration" msgid "Manage Result" -msgstr "" +msgstr "Manage Result" msgid "Manual Calibration" -msgstr "" +msgstr "Manual Calibration" msgid "Result can be read by human eyes." -msgstr "" +msgstr "Result can be read by human eyes." msgid "Auto-Calibration" -msgstr "" +msgstr "Auto-Calibration" msgid "We would use Lidar to read the calibration result" -msgstr "" +msgstr "We would use Lidar to read the calibration result" msgid "Prev" -msgstr "" +msgstr "Prev" msgid "Recalibration" -msgstr "" +msgstr "Recalibration" msgid "Calibrate" -msgstr "" +msgstr "Calibrate" msgid "Finish" msgstr "Finish" msgid "How to use calibration result?" -msgstr "" +msgstr "How can I use calibration results?" msgid "" "You could change the Flow Dynamics Calibration Factor in material editing" msgstr "" +"You could change the Flow Dynamics Calibration Factor in material editing" msgid "" "The current firmware version of the printer does not support calibration.\n" "Please upgrade the printer firmware." msgstr "" +"The current firmware version of the printer does not support calibration.\n" +"Please upgrade the printer firmware." msgid "Calibration not supported" -msgstr "" +msgstr "Calibration not supported" msgid "Error desc" -msgstr "" +msgstr "Error desc" msgid "Extra info" -msgstr "" +msgstr "Extra info" msgid "Flow Dynamics" -msgstr "" +msgstr "Flow Dynamics" msgid "Flow Rate" -msgstr "" +msgstr "Flow Rate" msgid "Max Volumetric Speed" -msgstr "" +msgstr "Max Volumetric Speed" #, c-format, boost-format msgid "" @@ -13205,38 +13454,44 @@ msgid "" "End value: > Start value\n" "Value step: >= %.3f)" msgstr "" +"Please input valid values:\n" +"Start value: >= %.1f\n" +"End value: <= %.1f\n" +"End value: > Start value\n" +"Value step: >= %.3f)" msgid "The name cannot be empty." -msgstr "" +msgstr "The name cannot be empty." #, c-format, boost-format msgid "The selected preset: %s is not found." -msgstr "" +msgstr "The selected preset: %s is not found." msgid "The name cannot be the same as the system preset name." -msgstr "" +msgstr "The name cannot be the same as the system preset name." msgid "The name is the same as another existing preset name" -msgstr "" +msgstr "The name is the same as another existing preset name" msgid "create new preset failed." -msgstr "" +msgstr "create new preset failed." msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" +"Are you sure to cancel the current calibration and return to the home page?" msgid "No Printer Connected!" -msgstr "" +msgstr "No Printer Connected!" msgid "Printer is not connected yet." -msgstr "" +msgstr "Printer is not connected yet." msgid "Please select filament to calibrate." -msgstr "" +msgstr "Please select filament to calibrate." msgid "The input value size must be 3." -msgstr "" +msgstr "The input value size must be 3." msgid "" "This machine type can only hold 16 history results per nozzle. You can " @@ -13245,15 +13500,20 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"This machine type can only hold 16 historical results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results. \n" +"Do you still want to continue the calibration?" msgid "Connecting to printer..." -msgstr "" +msgstr "Connecting to printer..." msgid "The failed test result has been dropped." -msgstr "" +msgstr "The failed test result has been dropped." msgid "Flow Dynamics Calibration result has been saved to the printer" -msgstr "" +msgstr "Flow Dynamics Calibration result has been saved to the printer" #, c-format, boost-format msgid "" @@ -13261,27 +13521,32 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"There is already a previous calibration result with the same name: %s. Only " +"one result with a name is saved. Are you sure you want to overwrite the " +"previous result?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"This machine type can only hold %d historical results per nozzle. This " +"result will not be saved." msgid "Internal Error" -msgstr "" +msgstr "Internal Error" msgid "Please select at least one filament for calibration" -msgstr "" +msgstr "Please select at least one filament for calibration" msgid "Flow rate calibration result has been saved to preset" -msgstr "" +msgstr "Flow rate calibration result has been saved to preset" msgid "Max volumetric speed calibration result has been saved to preset" -msgstr "" +msgstr "Max volumetric speed calibration result has been saved to preset" msgid "When do you need Flow Dynamics Calibration" -msgstr "" +msgstr "When do you need Flow Dynamics Calibration" msgid "" "We now have added the auto-calibration for different filaments, which is " @@ -13293,9 +13558,17 @@ msgid "" "3. If the max volumetric speed or print temperature is changed in the " "filament setting." msgstr "" +"We now have added the auto-calibration for different filaments, which is " +"fully automated and the result will be saved into the printer for future " +"use. You only need to do the calibration in the following limited cases:\n" +"1. If you introduce a new filament of different brands/models or the " +"filament is damp;\n" +"2. if the nozzle is worn out or replaced with a new one;\n" +"3. If the max volumetric speed or print temperature is changed in the " +"filament setting." msgid "About this calibration" -msgstr "" +msgstr "About this calibration" msgid "" "Please find the details of Flow Dynamics Calibration from our wiki.\n" @@ -13316,9 +13589,26 @@ msgid "" "cause the result not exactly the same in each calibration. We are still " "investigating the root cause to do improvements with new updates." msgstr "" +"Please find the details of Flow Dynamics Calibration from our wiki.\n" +"\n" +"Usually the calibration is unnecessary. When you start a single color/" +"material print, with the \"flow dynamics calibration\" option checked in the " +"print start menu, the printer will follow the old way, calibrate the " +"filament before the print; When you start a multi color/material print, the " +"printer will use the default compensation parameter for the filament during " +"every filament switch which will have a good result in most cases.\n" +"\n" +"Please note there are a few cases that will make the calibration result not " +"reliable: using a texture plate to do the calibration; the build plate does " +"not have good adhesion (please wash the build plate or apply gluestick!) ..." +"You can find more from our wiki.\n" +"\n" +"The calibration results have about 10 percent jitter in our test, which may " +"cause the result not exactly the same in each calibration. We are still " +"investigating the root cause to do improvements with new updates." msgid "When to use Flow Rate Calibration" -msgstr "" +msgstr "When to use Flow Rate Calibration" msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " @@ -13331,12 +13621,24 @@ msgid "" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " "they should be." msgstr "" +"After using Flow Dynamics Calibration, there might still be some extrusion " +"issues, such as:\n" +"1. Over-Extrusion: Excess material on your printed object, forming blobs or " +"zits, or the layers seem thicker than expected and not uniform.\n" +"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " +"top layer of the model, even when printing slowly.\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " +"they should be." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" "PLA used in RC planes. These materials expand greatly when heated, and " "calibration provides a useful reference flow rate." msgstr "" +"In addition, Flow Rate Calibration is crucial for foaming materials like LW-" +"PLA used in RC planes. These materials expand greatly when heated, and " +"calibration provides a useful reference flow rate." msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " @@ -13346,6 +13648,12 @@ msgid "" "you still see the listed defects after you have done other calibrations. For " "more details, please check out the wiki article." msgstr "" +"Flow Rate Calibration measures the ratio of expected to actual extrusion " +"volumes. The default setting works well in Bambu Lab printers and official " +"filaments as they were pre-calibrated and fine-tuned. For a regular " +"filament, you usually won't need to perform a Flow Rate Calibration unless " +"you still see the listed defects after you have done other calibrations. For " +"more details, please check out the wiki article." msgid "" "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " @@ -13365,48 +13673,69 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" +"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " +"directly measuring the calibration patterns. However, please be advised that " +"the efficacy and accuracy of this method may be compromised with specific " +"types of materials. Particularly, filaments that are transparent or semi-" +"transparent, have sparkles, or have a highly-reflective finish may not be " +"suitable for this calibration and can produce less-than-desirable results.\n" +"\n" +"The calibration results may vary between each calibration or filament. We " +"are still improving the accuracy and compatibility of this calibration " +"through firmware updates over time.\n" +"\n" +"Caution: Flow Rate Calibration is an advanced process, to be attempted only " +"by those who fully understand its purpose and implications. Incorrect usage " +"can lead to sub-par prints or printer damage. Please make sure to carefully " +"read and understand the process before doing it." msgid "When you need Max Volumetric Speed Calibration" -msgstr "" +msgstr "When you need Max Volumetric Speed Calibration" msgid "Over-extrusion or under extrusion" -msgstr "" +msgstr "Over-extrusion or under extrusion" msgid "Max Volumetric Speed calibration is recommended when you print with:" -msgstr "" +msgstr "Max Volumetric Speed calibration is recommended when you print with:" msgid "material with significant thermal shrinkage/expansion, such as..." -msgstr "" +msgstr "material with significant thermal shrinkage/expansion, such as..." msgid "materials with inaccurate filament diameter" -msgstr "" +msgstr "materials with inaccurate filament diameter" msgid "We found the best Flow Dynamics Calibration Factor" -msgstr "" +msgstr "We found the best Flow Dynamics Calibration Factor" msgid "" "Part of the calibration failed! You may clean the plate and retry. The " "failed test result would be dropped." msgstr "" +"Part of the calibration failed! You may clean the plate and retry. The " +"failed test result would be dropped." msgid "" "*We recommend you to add brand, materia, type, and even humidity level in " "the Name" msgstr "" +"*We recommend you to add brand, materia, type, and even humidity level in " +"the Name" msgid "Failed" msgstr "Failed" msgid "Please enter the name you want to save to printer." -msgstr "" +msgstr "Please enter the name you want to save to printer." msgid "The name cannot exceed 40 characters." -msgstr "" +msgstr "The name cannot exceed 40 characters." msgid "" "Only one of the results with the same name will be saved. Are you sure you " "want to overrides the other results?" msgstr "" +"Only one of the results with the same name will be saved. Are you sure you " +"want to replace the other results?" #, c-format, boost-format msgid "" @@ -13414,188 +13743,196 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to overrides the historical result?" msgstr "" +"There is already a previous calibration result with the same name: %s. Only " +"one of the results with the same name is saved. Are you sure you want to " +"replace the previous result?" msgid "Please find the best line on your plate" -msgstr "" +msgstr "Please find the best line on your plate" msgid "Please find the cornor with perfect degree of extrusion" -msgstr "" +msgstr "Please find the corner with the perfect degree of extrusion" msgid "Input Value" -msgstr "" +msgstr "Input Value" msgid "Save to Filament Preset" -msgstr "" +msgstr "Save to Filament Preset" msgid "Preset" -msgstr "" +msgstr "Preset" msgid "Record Factor" -msgstr "" +msgstr "Record Factor" msgid "We found the best flow ratio for you" -msgstr "" +msgstr "We found the best flow ratio for you" msgid "Flow Ratio" -msgstr "" +msgstr "Flow Ratio" msgid "Please input a valid value (0.0 < flow ratio < 2.0)" -msgstr "" +msgstr "Please input a valid value (0.0 < flow ratio < 2.0)" msgid "Please enter the name of the preset you want to save." -msgstr "" +msgstr "Please enter the name of the preset you want to save." msgid "Calibration1" -msgstr "" +msgstr "Calibration1" msgid "Calibration2" -msgstr "" +msgstr "Calibration2" msgid "Please find the best object on your plate" -msgstr "" +msgstr "Please find the best object on your plate" msgid "Fill in the value above the block with smoothest top surface" -msgstr "" +msgstr "Fill in the value above the block with smoothest top surface" msgid "Skip Calibration2" -msgstr "" +msgstr "Skip Calibration2" #, c-format, boost-format msgid "flow ratio : %s " -msgstr "" +msgstr "flow ratio : %s " msgid "Please choose a block with smoothest top surface" -msgstr "" +msgstr "Please choose a block with smoothest top surface" msgid "Please choose a block with smoothest top surface." -msgstr "" +msgstr "Please choose a block with smoothest top surface." msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" -msgstr "" +msgstr "Please input a valid value (0 <= Max Volumetric Speed <= 60)" msgid "Calibration Type" -msgstr "" +msgstr "Calibration Type" msgid "Complete Calibration" -msgstr "" +msgstr "Complete Calibration" msgid "Fine Calibration based on flow ratio" -msgstr "" +msgstr "Fine Calibration based on flow ratio" msgid "Title" -msgstr "" +msgstr "Title" msgid "" "A test model will be printed. Please clear the build plate and place it back " "to the hot bed before calibration." msgstr "" +"A test model will be printed. Please clear the build plate and place it back " +"to the hot bed before calibration." msgid "Printing Parameters" -msgstr "" +msgstr "Printing Parameters" msgid "Plate Type" msgstr "Plate Type" msgid "filament position" -msgstr "" +msgstr "filament position" msgid "External Spool" -msgstr "" +msgstr "External Spool" msgid "Filament For Calibration" -msgstr "" +msgstr "Filament For Calibration" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" "- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" msgstr "" +"Tips for calibration material: \n" +"- Materials that can share same hot bed temperature\n" +"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" msgid "Pattern" -msgstr "" +msgstr "Pattern" msgid "Method" -msgstr "" +msgstr "Method" #, c-format, boost-format msgid "%s is not compatible with %s" -msgstr "" +msgstr "%s is not compatible with %s" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." -msgstr "" +msgstr "TPU is not supported for Flow Dynamics Auto-Calibration." msgid "Connecting to printer" -msgstr "" +msgstr "Connecting to printer" msgid "From k Value" -msgstr "" +msgstr "From k Value" msgid "To k Value" -msgstr "" +msgstr "To k Value" msgid "Step value" msgstr "" msgid "The nozzle diameter has been synchronized from the printer Settings" -msgstr "" +msgstr "The nozzle diameter has been synchronized from the printer Settings" msgid "From Volumetric Speed" -msgstr "" +msgstr "From Volumetric Speed" msgid "To Volumetric Speed" -msgstr "" +msgstr "To Volumetric Speed" msgid "Flow Dynamics Calibration Result" -msgstr "" +msgstr "Flow Dynamics Calibration Result" msgid "New" -msgstr "" +msgstr "New" msgid "No History Result" -msgstr "" +msgstr "No History Result" msgid "Success to get history result" -msgstr "" +msgstr "Success to get history result" msgid "Refreshing the historical Flow Dynamics Calibration records" -msgstr "" +msgstr "Refreshing the previous Flow Dynamics Calibration records" msgid "Action" -msgstr "" +msgstr "Action" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "This machine type can only hold %d historical results per nozzle." msgid "Edit Flow Dynamics Calibration" -msgstr "" +msgstr "Edit Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "New Flow Dynamic Calibration" msgid "Ok" -msgstr "" +msgstr "Ok" msgid "The filament must be selected." -msgstr "" +msgstr "The filament must be selected." msgid "Network lookup" -msgstr "" +msgstr "Network lookup" msgid "Address" -msgstr "" +msgstr "Address" msgid "Hostname" -msgstr "" +msgstr "Hostname" msgid "Service name" -msgstr "" +msgstr "Service name" msgid "OctoPrint version" -msgstr "" +msgstr "OctoPrint version" msgid "Searching for devices" -msgstr "" +msgstr "Searching for devices" msgid "Finished" msgstr "Finished" @@ -13610,37 +13947,37 @@ msgid "" msgstr "" msgid "PA Calibration" -msgstr "" +msgstr "PA Calibration" msgid "DDE" msgstr "" msgid "Bowden" -msgstr "" +msgstr "Bowden" msgid "Extruder type" msgstr "" msgid "PA Tower" -msgstr "" +msgstr "PA Tower" msgid "PA Line" -msgstr "" +msgstr "PA Line" msgid "PA Pattern" -msgstr "" +msgstr "PA Pattern" msgid "Start PA: " -msgstr "" +msgstr "Start PA: " msgid "End PA: " -msgstr "" +msgstr "End PA: " msgid "PA step: " -msgstr "" +msgstr "PA step: " msgid "Print numbers" -msgstr "" +msgstr "Print numbers" msgid "" "Please input valid values:\n" @@ -13648,39 +13985,43 @@ msgid "" "End PA: > Start PA\n" "PA step: >= 0.001)" msgstr "" +"Please input valid values:\n" +"Start PA: >= 0.0\n" +"End PA: > Start PA\n" +"PA step: >= 0.001)" msgid "Temperature calibration" -msgstr "" +msgstr "Temperature calibration" msgid "PLA" -msgstr "" +msgstr "PLA" msgid "ABS/ASA" -msgstr "" +msgstr "ABS/ASA" msgid "PETG" -msgstr "" +msgstr "PETG" msgid "TPU" -msgstr "" +msgstr "TPU" msgid "PA-CF" -msgstr "" +msgstr "PA-CF" msgid "PET-CF" -msgstr "" +msgstr "PET-CF" msgid "Filament type" -msgstr "" +msgstr "Filament type" msgid "Start temp: " -msgstr "" +msgstr "Start temp: " msgid "End temp: " -msgstr "" +msgstr "End temp: " msgid "Temp step: " -msgstr "" +msgstr "Temp step: " msgid "" "Please input valid values:\n" @@ -13690,16 +14031,16 @@ msgid "" msgstr "" msgid "Max volumetric speed test" -msgstr "" +msgstr "Max volumetric speed test" msgid "Start volumetric speed: " -msgstr "" +msgstr "Start volumetric speed: " msgid "End volumetric speed: " -msgstr "" +msgstr "End volumetric speed: " msgid "step: " -msgstr "" +msgstr "step: " msgid "" "Please input valid values:\n" @@ -13709,13 +14050,13 @@ msgid "" msgstr "" msgid "VFA test" -msgstr "" +msgstr "VFA test" msgid "Start speed: " -msgstr "" +msgstr "Start speed: " msgid "End speed: " -msgstr "" +msgstr "End speed: " msgid "" "Please input valid values:\n" @@ -13725,129 +14066,129 @@ msgid "" msgstr "" msgid "Start retraction length: " -msgstr "" +msgstr "Start retraction length: " msgid "End retraction length: " -msgstr "" +msgstr "End retraction length: " msgid "mm/mm" -msgstr "" +msgstr "mm/mm" msgid "Send G-Code to printer host" msgstr "" msgid "Upload to Printer Host with the following filename:" -msgstr "" +msgstr "Upload to Printer Host with the following filename:" msgid "Use forward slashes ( / ) as a directory separator if needed." -msgstr "" +msgstr "Use forward slashes ( / ) as a directory separator if needed." msgid "Upload to storage" msgstr "" #, c-format, boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" -msgstr "" +msgstr "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgid "Upload" -msgstr "" +msgstr "Upload" msgid "Print host upload queue" -msgstr "" +msgstr "Print host upload queue" msgid "ID" -msgstr "" +msgstr "ID" msgid "Progress" -msgstr "" +msgstr "Progress" msgid "Host" -msgstr "" +msgstr "Host" msgctxt "OfFile" msgid "Size" -msgstr "" +msgstr "Size" msgid "Filename" -msgstr "" +msgstr "Filename" msgid "Cancel selected" -msgstr "" +msgstr "Cancel selected" msgid "Show error message" -msgstr "" +msgstr "Show error message" msgid "Enqueued" -msgstr "" +msgstr "Queued" msgid "Uploading" msgstr "Uploading" msgid "Cancelling" -msgstr "" +msgstr "Cancelling" msgid "Error uploading to print host" msgstr "" msgid "Unable to perform boolean operation on selected parts" -msgstr "" +msgstr "Unable to perform boolean operation on selected parts" msgid "Mesh Boolean" -msgstr "" +msgstr "Mesh Boolean" msgid "Union" -msgstr "" +msgstr "Union" msgid "Difference" -msgstr "" +msgstr "Difference" msgid "Intersection" -msgstr "" +msgstr "Intersection" msgid "Source Volume" -msgstr "" +msgstr "Source Volume" msgid "Tool Volume" -msgstr "" +msgstr "Tool Volume" msgid "Subtract from" -msgstr "" +msgstr "Subtract from" msgid "Subtract with" -msgstr "" +msgstr "Subtract with" msgid "selected" -msgstr "" +msgstr "selected" msgid "Part 1" -msgstr "" +msgstr "Part 1" msgid "Part 2" -msgstr "" +msgstr "Part 2" msgid "Delete input" -msgstr "" +msgstr "Delete input" msgid "Network Test" -msgstr "" +msgstr "Network Test" msgid "Start Test Multi-Thread" -msgstr "" +msgstr "Start Test Multi-Thread" msgid "Start Test Single-Thread" -msgstr "" +msgstr "Start Test Single-Thread" msgid "Export Log" -msgstr "" +msgstr "Export Log" msgid "OrcaSlicer Version:" msgstr "" msgid "System Version:" -msgstr "" +msgstr "System Version:" msgid "DNS Server:" -msgstr "" +msgstr "DNS Server:" msgid "Test OrcaSlicer(GitHub)" msgstr "" @@ -13856,92 +14197,96 @@ msgid "Test OrcaSlicer(GitHub):" msgstr "" msgid "Test Bing.com" -msgstr "" +msgstr "Test Bing.com" msgid "Test bing.com:" -msgstr "" +msgstr "Test bing.com:" msgid "Log Info" -msgstr "" +msgstr "Log Info" msgid "Select filament preset" -msgstr "" +msgstr "Select filament preset" msgid "Create Filament" -msgstr "" +msgstr "Create Filament" msgid "Create Based on Current Filament" -msgstr "" +msgstr "Create Based on Current Filament" msgid "Copy Current Filament Preset " -msgstr "" +msgstr "Copy Current Filament Preset " msgid "Basic Information" -msgstr "" +msgstr "Basic Information" msgid "Add Filament Preset under this filament" -msgstr "" +msgstr "Add Filament Preset under this filament" msgid "We could create the filament presets for your following printer:" -msgstr "" +msgstr "We could create the filament presets for your following printer:" msgid "Select Vendor" -msgstr "" +msgstr "Select Vendor" msgid "Input Custom Vendor" -msgstr "" +msgstr "Input Custom Vendor" msgid "Can't find vendor I want" -msgstr "" +msgstr "Can't find vendor I want" msgid "Select Type" -msgstr "" +msgstr "Select Type" msgid "Select Filament Preset" -msgstr "" +msgstr "Select Filament Preset" msgid "Serial" -msgstr "" +msgstr "Serial" msgid "e.g. Basic, Matte, Silk, Marble" -msgstr "" +msgstr "e.g. Basic, Matte, Silk, Marble" msgid "Filament Preset" -msgstr "" +msgstr "Filament Preset" msgid "Create" -msgstr "" +msgstr "Create" msgid "Vendor is not selected, please reselect vendor." -msgstr "" +msgstr "Vendor is not selected; please reselect vendor." msgid "Custom vendor is not input, please input custom vendor." -msgstr "" +msgstr "Custom vendor missing; please input custom vendor." msgid "" "\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." msgstr "" +"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." msgid "Filament type is not selected, please reselect type." -msgstr "" +msgstr "Filament type is not selected, please reselect type." msgid "Filament serial is not inputed, please input serial." -msgstr "" +msgstr "Filament serial missing; please input serial." msgid "" "There may be escape characters in the vendor or serial input of filament. " "Please delete and re-enter." msgstr "" +"There may be disallowed characters in the vendor or serial input of the " +"filament. Please delete and re-enter." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." -msgstr "" +msgstr "All inputs in the custom vendor or serial are spaces. Please re-enter." msgid "The vendor can not be a number. Please re-enter." -msgstr "" +msgstr "The vendor can not be a number; please re-enter." msgid "" "You have not selected a printer or preset yet. Please select at least one." msgstr "" +"You have not selected a printer or preset yet. Please select at least one." #, c-format, boost-format msgid "" @@ -13949,14 +14294,19 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"The Filament name %s you created already exists. \n" +"If you continue, the preset created will be displayed with its full name. Do " +"you want to continue?" msgid "Some existing presets have failed to be created, as follows:\n" -msgstr "" +msgstr "Some existing presets have failed to be created, as follows:\n" msgid "" "\n" "Do you want to rewrite it?" msgstr "" +"\n" +"Do you want to rewrite it?" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you selected" @@ -13965,46 +14315,46 @@ msgid "" msgstr "" msgid "Create Printer/Nozzle" -msgstr "" +msgstr "Create Printer/Nozzle" msgid "Create Printer" -msgstr "" +msgstr "Create Printer" msgid "Create Nozzle for Existing Printer" -msgstr "" +msgstr "Create Nozzle for Existing Printer" msgid "Create from Template" -msgstr "" +msgstr "Create from Template" msgid "Create Based on Current Printer" -msgstr "" +msgstr "Create Based on Current Printer" msgid "Import Preset" -msgstr "" +msgstr "Import Preset" msgid "Create Type" -msgstr "" +msgstr "Create Type" msgid "The model is not fond, place reselect vendor." -msgstr "" +msgstr "The model was not found; please reselect vendor." msgid "Select Model" -msgstr "" +msgstr "Select Model" msgid "Select Printer" -msgstr "" +msgstr "Select Printer" msgid "Input Custom Model" -msgstr "" +msgstr "Input Custom Model" msgid "Can't find my printer model" -msgstr "" +msgstr "Can't find my printer model" msgid "Rectangle" -msgstr "" +msgstr "Rectangle" msgid "Printable Space" -msgstr "" +msgstr "Printable Space" msgid "X" msgstr "" @@ -14013,66 +14363,70 @@ msgid "Y" msgstr "" msgid "Hot Bed STL" -msgstr "" +msgstr "Hot Bed STL" msgid "Load stl" -msgstr "" +msgstr "Load stl" msgid "Hot Bed SVG" -msgstr "" +msgstr "Hot Bed SVG" msgid "Load svg" -msgstr "" +msgstr "Load svg" msgid "Max Print Height" -msgstr "" +msgstr "Max Print Height" #, c-format, boost-format msgid "The file exceeds %d MB, please import again." -msgstr "" +msgstr "The file exceeds %d MB, please import again." msgid "Exception in obtaining file size, please import again." -msgstr "" +msgstr "Exception in obtaining file size, please import again." msgid "Preset path is not find, please reselect vendor." -msgstr "" +msgstr "Preset path was not found; please reselect vendor." msgid "The printer model was not found, please reselect." -msgstr "" +msgstr "The printer model was not found, please reselect." msgid "The nozzle diameter is not fond, place reselect." -msgstr "" +msgstr "The nozzle diameter was not found; please reselect." msgid "The printer preset is not fond, place reselect." -msgstr "" +msgstr "The printer preset was not found; please reselect." msgid "Printer Preset" -msgstr "" +msgstr "Printer Preset" msgid "Filament Preset Template" -msgstr "" +msgstr "Filament Preset Template" msgid "Deselect All" -msgstr "" +msgstr "Deselect All" msgid "Process Preset Template" -msgstr "" +msgstr "Process Preset Template" msgid "Back Page 1" -msgstr "" +msgstr "Back Page 1" msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" msgstr "" +"You have not yet chosen which printer preset to create based on. Please " +"choose the vendor and model of the printer" msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." msgstr "" +"You have entered a disallowed character in the printable area section on the " +"first page. Please use only numbers." msgid "The custom printer or model is not inputed, place input." -msgstr "" +msgstr "The custom printer or model missing; please input." msgid "" "The printer preset you created already has a preset with the same name. Do " @@ -14083,60 +14437,74 @@ msgid "" "reserve.\n" "\tCancel: Do not create a preset, return to the creation interface." msgstr "" +"The printer preset you created already has a preset with the same name. Do " +"you want to overwrite it?\n" +"\tYes: Overwrite the printer preset with the same name, and filament and " +"process presets with the same preset name will be recreated \n" +"and filament and process presets without the same preset name will be " +"reserved.\n" +"\tCancel: Do not create a preset; return to the creation interface." msgid "You need to select at least one filament preset." -msgstr "" +msgstr "You need to select at least one filament preset." msgid "You need to select at least one process preset." -msgstr "" +msgstr "You need to select at least one process preset." msgid "Create filament presets failed. As follows:\n" -msgstr "" +msgstr "Create filament presets failed. As follows:\n" msgid "Create process presets failed. As follows:\n" -msgstr "" +msgstr "Create process presets failed. As follows:\n" msgid "Vendor is not find, please reselect." -msgstr "" +msgstr "Vendor was not found; please reselect." msgid "Current vendor has no models, please reselect." -msgstr "" +msgstr "Current vendor has no models, please reselect." msgid "" "You have not selected the vendor and model or inputed the custom vendor and " "model." msgstr "" +"You have not selected the vendor and model or input the custom vendor and " +"model." msgid "" "There may be escape characters in the custom printer vendor or model. Please " "delete and re-enter." msgstr "" +"There may be escape characters in the custom printer vendor or model. Please " +"delete and re-enter." msgid "" "All inputs in the custom printer vendor or model are spaces. Please re-enter." msgstr "" +"All inputs in the custom printer vendor or model are spaces. Please re-enter." msgid "Please check bed printable shape and origin input." -msgstr "" +msgstr "Please check bed printable shape and origin input." msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "" +"You have not yet selected the printer to replace the nozzle for; please " +"choose a printer." msgid "Create Printer Successful" -msgstr "" +msgstr "Create Printer Successful" msgid "Create Filament Successful" -msgstr "" +msgstr "Filament Created Successfully" msgid "Printer Created" -msgstr "" +msgstr "Printer Created" msgid "Please go to printer settings to edit your presets" -msgstr "" +msgstr "Please go to printer settings to edit your presets" msgid "Filament Created" -msgstr "" +msgstr "Filament Created" msgid "" "Please go to filament setting to edit your presets if you need.\n" @@ -14144,6 +14512,10 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"Please go to filament settings to edit your presets if you need to.\n" +"Please note that nozzle temperature, hot bed temperature, and maximum " +"volumetric speed each have a significant impact on printing quality. Please " +"set them carefully." msgid "" "\n" @@ -14155,7 +14527,7 @@ msgid "" msgstr "" msgid "Printer Setting" -msgstr "" +msgstr "Printer Setting" msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -14164,31 +14536,31 @@ msgid "Filament bundle(.orca_filament)" msgstr "" msgid "Printer presets(.zip)" -msgstr "" +msgstr "Printer presets(.zip)" msgid "Filament presets(.zip)" -msgstr "" +msgstr "Filament presets(.zip)" msgid "Process presets(.zip)" -msgstr "" +msgstr "Process presets(.zip)" msgid "initialize fail" -msgstr "" +msgstr "initialize fail" msgid "add file fail" -msgstr "" +msgstr "add file fail" msgid "add bundle structure file fail" -msgstr "" +msgstr "add bundle structure file fail" msgid "finalize fail" -msgstr "" +msgstr "finalize fail" msgid "open zip written fail" -msgstr "" +msgstr "open zip written fail" msgid "Export successful" -msgstr "" +msgstr "Export successful" #, c-format, boost-format msgid "" @@ -14197,6 +14569,10 @@ msgid "" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" +"The '%s' folder already exists in the current directory. Do you want to " +"clear it and rebuild it?\n" +"If not, a time suffix will be added, and you can modify the name after " +"creation." msgid "" "Printer and all the filament&&process presets that belongs to the printer. \n" @@ -14207,54 +14583,68 @@ msgid "" "User's fillment preset set. \n" "Can be shared with others." msgstr "" +"User's fillment preset set. \n" +"Can be shared with others." msgid "" "Only display printer names with changes to printer, filament, and process " "presets." msgstr "" +"Only display printers with changes to printer, filament, and process presets " +"are displayed." msgid "Only display the filament names with changes to filament presets." -msgstr "" +msgstr "Only display the filament names with changes to filament presets." msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" +"Only printer names with user printer presets will be displayed, and each " +"preset you choose will be exported as a zip." msgid "" "Only the filament names with user filament presets will be displayed, \n" "and all user filament presets in each filament name you select will be " "exported as a zip." msgstr "" +"Only the filament names with user filament presets will be displayed, \n" +"and all user filament presets in each filament name you select will be " +"exported as a zip." msgid "" "Only printer names with changed process presets will be displayed, \n" "and all user process presets in each printer name you select will be " "exported as a zip." msgstr "" +"Only printer names with changed process presets will be displayed, \n" +"and all user process presets in each printer name you select will be " +"exported as a zip." msgid "Please select at least one printer or filament." -msgstr "" +msgstr "Please select at least one printer or filament." msgid "Please select a type you want to export" -msgstr "" +msgstr "Please select a preset type you want to export" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "" +msgstr "Failed to create temporary folder, please try Export Configs again." msgid "Edit Filament" -msgstr "" +msgstr "Edit Filament" msgid "Filament presets under this filament" -msgstr "" +msgstr "Filament presets under this filament" msgid "" "Note: If the only preset under this filament is deleted, the filament will " "be deleted after exiting the dialog." msgstr "" +"Note: If the only preset under this filament is deleted, the filament will " +"be deleted after exiting the dialog." msgid "Presets inherited by other presets can not be deleted" -msgstr "" +msgstr "Presets inherited by other presets can not be deleted" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." @@ -14262,191 +14652,206 @@ msgstr[0] "" msgstr[1] "" msgid "Delete Preset" -msgstr "" +msgstr "Delete Preset" msgid "Are you sure to delete the selected preset?" -msgstr "" +msgstr "Are you sure to delete the selected preset?" msgid "Delete preset" -msgstr "" +msgstr "Delete preset" msgid "+ Add Preset" -msgstr "" +msgstr "+ Add Preset" msgid "Delete Filament" -msgstr "" +msgstr "Delete Filament" msgid "" "All the filament presets belong to this filament would be deleted. \n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" +"All the filament presets belong to this filament would be deleted. \n" +"If you are using this filament on your printer, please reset the filament " +"information for that slot." msgid "Delete filament" -msgstr "" +msgstr "Delete filament" msgid "Add Preset" -msgstr "" +msgstr "Add Preset" msgid "Add preset for new printer" -msgstr "" +msgstr "Add preset for new printer" msgid "Copy preset from filament" -msgstr "" +msgstr "Copy preset from filament" msgid "The filament choice not find filament preset, please reselect it" -msgstr "" +msgstr "The filament choice not find filament preset, please reselect it" msgid "[Delete Required]" -msgstr "" +msgstr "[Delete Required]" msgid "Edit Preset" -msgstr "" +msgstr "Edit Preset" msgid "For more information, please check out Wiki" -msgstr "" +msgstr "For more information, please check out our Wiki" msgid "Collapse" -msgstr "" +msgstr "Collapse" msgid "Daily Tips" -msgstr "" +msgstr "Daily Tips" msgid "" "Your nozzle diameter in preset is not consistent with memorized nozzle " "diameter. Did you change your nozzle lately?" msgstr "" +"Your nozzle diameter in preset is not consistent with the saved nozzle " +"diameter. Have you changed your nozzle?" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" -msgstr "" +msgstr "*Printing %s material with %s may cause nozzle damage" msgid "Need select printer" -msgstr "" +msgstr "Need select printer" msgid "The start, end or step is not valid value." -msgstr "" +msgstr "The start, end or step is not valid value." msgid "" "Unable to calibrate: maybe because the set calibration value range is too " "large, or the step is too small" msgstr "" +"Unable to calibrate: maybe because the set calibration value range is too " +"large, or the step is too small" #, fuzzy msgid "Physical Printer" msgstr "Printer" msgid "Print Host upload" -msgstr "" +msgstr "Print Host upload" msgid "Could not get a valid Printer Host reference" -msgstr "" +msgstr "Could not get a valid Printer Host reference" msgid "Success!" -msgstr "" +msgstr "Success!" msgid "Are you sure to log out?" msgstr "" msgid "Refresh Printers" -msgstr "" +msgstr "Refresh Printers" msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" +"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" +"signed certificate." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -msgstr "" +msgstr "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgid "Open CA certificate file" -msgstr "" +msgstr "Open CA certificate file" #, c-format, boost-format msgid "" "On this system, %s uses HTTPS certificates from the system Certificate Store " "or Keychain." msgstr "" +"On this system, %s uses HTTPS certificates from the system Certificate Store " +"or Keychain." msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " "Keychain." msgstr "" +"To use a custom CA file, please import your CA file into Certificate Store / " +"Keychain." msgid "Login/Test" msgstr "" msgid "Connection to printers connected via the print host failed." -msgstr "" +msgstr "Connection to printers connected via the print host failed." #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "" +msgstr "Mismatched type of print host: %s" msgid "Connection to AstroBox works correctly." -msgstr "" +msgstr "Connection to AstroBox is working correctly." msgid "Could not connect to AstroBox" -msgstr "" +msgstr "Could not connect to AstroBox" msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "" +msgstr "Note: AstroBox version 1.1.0 or higher is required." msgid "Connection to Duet works correctly." -msgstr "" +msgstr "Connection to Duet is working correctly." msgid "Could not connect to Duet" -msgstr "" +msgstr "Could not connect to Duet" msgid "Unknown error occured" -msgstr "" +msgstr "Unknown error occured" msgid "Wrong password" -msgstr "" +msgstr "Wrong password" msgid "Could not get resources to create a new connection" -msgstr "" +msgstr "Could not get resources to create a new connection" msgid "Upload not enabled on FlashAir card." -msgstr "" +msgstr "Upload not enabled on FlashAir card." msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "" +msgstr "Connection to FlashAir is working correctly and upload is enabled." msgid "Could not connect to FlashAir" -msgstr "" +msgstr "Could not connect to FlashAir" msgid "" "Note: FlashAir with firmware 2.00.02 or newer and activated upload function " "is required." msgstr "" +"Note: FlashAir with firmware 2.00.02 or newer and activated upload function " +"is required." msgid "Connection to MKS works correctly." -msgstr "" +msgstr "Connection to MKS is working correctly." msgid "Could not connect to MKS" -msgstr "" +msgstr "Could not connect to MKS" msgid "Connection to OctoPrint works correctly." -msgstr "" +msgstr "Connection to OctoPrint is working correctly." msgid "Could not connect to OctoPrint" -msgstr "" +msgstr "Could not connect to OctoPrint" msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "" +msgstr "Note: OctoPrint version 1.1.0 or higher is required." msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "" +msgstr "Connection to Prusa SL1 / SL1S is working correctly." msgid "Could not connect to Prusa SLA" -msgstr "" +msgstr "Could not connect to Prusa SLA" msgid "Connection to PrusaLink works correctly." -msgstr "" +msgstr "Connection to PrusaLink is working correctly." msgid "Could not connect to PrusaLink" -msgstr "" +msgstr "Could not connect to PrusaLink" msgid "Storages found" msgstr "" @@ -14473,19 +14878,21 @@ msgid "Could not connect to Prusa Connect" msgstr "" msgid "Connection to Repetier works correctly." -msgstr "" +msgstr "Connection to Repetier is working correctly." msgid "Could not connect to Repetier" -msgstr "" +msgstr "Could not connect to Repetier" msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "" +msgstr "Note: Repetier version 0.90.0 or higher is required." #, boost-format msgid "" "HTTP status: %1%\n" "Message body: \"%2%\"" msgstr "" +"HTTP status: %1%\n" +"Message body: \"%2%\"" #, boost-format msgid "" @@ -14493,6 +14900,9 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Parsing of host response failed.\n" +"Message body: \"%1%\"\n" +"Error: \"%2%\"" #, boost-format msgid "" @@ -14500,35 +14910,51 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Enumeration of host printers failed.\n" +"Message body: \"%1%\"\n" +"Error: \"%2%\"" msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"It has a small layer height, and results in almost negligible layer lines " +"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " +"bigger layer height. This results in almost negligible layer lines and " +"slightly longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " +"height. This results in slightly visible layer lines but shorter print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in almost invisible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14536,12 +14962,19 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality but " +"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14549,35 +14982,53 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"It has a normal layer height, and results in average layer lines and print " +"quality. It is suitable for most printing cases." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but slightly shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14585,12 +15036,19 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14598,64 +15056,95 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and longer print time." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"It has a big layer height, and results in apparent layer lines and ordinary " +"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and slightly higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"It has a very big layer height, and results in very apparent layer lines, " +"low print quality and shorter printing time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -14663,12 +15152,18 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality, but longer print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgid "Connected to Obico successfully!" msgstr "" @@ -14794,6 +15289,9 @@ msgid "" "Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " "problems on the Windows system?" msgstr "" +"Fix Model\n" +"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " +"problems on the Windows system?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" @@ -15033,6 +15531,10 @@ msgid "" "extruder/hotend clogging when printing lower temperature filament with a " "higher enclosure temperature. More info about this in the Wiki." msgstr "" +"When do you need to print with the printer door opened?\n" +"Did you know that opening the printer door can reduce the probability of " +"extruder/hotend clogging when printing lower temperature filament with a " +"higher enclosure temperature? There is more info about this in the Wiki." #: resources/data/hints.ini: [hint:Avoid warping] msgid "" @@ -15041,6 +15543,13 @@ msgid "" "ABS, appropriately increasing the heatbed temperature can reduce the " "probability of warping." msgstr "" +"Avoid warping\n" +"Did you know that when printing materials that are prone to warping such as " +"ABS, appropriately increasing the heatbed temperature can reduce the " +"probability of warping?" + +#~ msgid "V" +#~ msgstr "V" #~ msgid "Export &Configs" #~ msgstr "Export &Configs" diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index dc2ac1fb5b..fd619cbdd0 100644 --- a/localization/i18n/es/OrcaSlicer_es.po +++ b/localization/i18n/es/OrcaSlicer_es.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: \n" "Last-Translator: Carlos Fco. Caruncho Serrano \n" "Language-Team: \n" @@ -12,7 +13,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.4.2\n" -"X-Generator: Poedit 3.4.2\n" msgid "Supports Painting" msgstr "Pintar Soportes" @@ -1402,9 +1402,6 @@ msgstr "" "Se ha cargado el archivo de configuración \"%1%\", pero no se han reconocido " "algunos valores." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1412,8 +1409,10 @@ msgstr "" "OrcaSlicer terminará porque se está quedando sin memoria. Le agradeceremos " "que comunique el problema a nuestro equipo." -# msgid "OrcaSlicer will terminate because of running out of memory.It may be a bug. It will be appreciated if you report the issue to our team." -# msgstr "OrcaSlicer se cerrará porque se está quedando sin memoria. Le agradeceremos que informe de ello a nuestro equipo." +# msgid "OrcaSlicer will terminate because of running out of memory.It may be +# a bug. It will be appreciated if you report the issue to our team." +# msgstr "OrcaSlicer se cerrará porque se está quedando sin memoria. Le +# agradeceremos que informe de ello a nuestro equipo." msgid "Fatal error" msgstr "Error fatal" @@ -1424,8 +1423,11 @@ msgstr "" "OrcaSlicer terminará debido a un error de posición. Le agradeceremos que nos " "informe del escenario específico en el que se ha producido este problema." -# msgid "OrcaSlicer will terminate because of a localization error. It will be appreciated if you report the specific scenario this issue happened." -# msgstr "OrcaSlicer terminará debido a un error de localización. Le agradeceríamos que nos informara del escenario específico en el que se ha producido este problema" +# msgid "OrcaSlicer will terminate because of a localization error. It will be +# appreciated if you report the specific scenario this issue happened." +# msgstr "OrcaSlicer terminará debido a un error de localización. Le +# agradeceríamos que nos informara del escenario específico en el que se ha +# producido este problema" msgid "Critical error" msgstr "Error crítico" @@ -1521,6 +1523,9 @@ msgstr "Escoja uno o más archivos (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Elige uno o más archivos (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Elegir un archivo (gcode/3mf):" @@ -1593,6 +1598,11 @@ msgstr "Cargas en curso" msgid "Select a G-code file:" msgstr "Seleccionar un archivo de G-Code:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Importar Archivo" @@ -1730,7 +1740,7 @@ msgid "Disc" msgstr "Disco" msgid "Torus" -msgstr "" +msgstr "Torus" msgid "Orca Cube" msgstr "Cubo Orca" @@ -2445,7 +2455,7 @@ msgid "AMS not connected" msgstr "AMS no conectado" msgid "Load" -msgstr "" +msgstr "Load" msgid "Unload" msgstr "Descarga" @@ -2510,6 +2520,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Elija una ranura AMS y pulse el botón \"Cargar\" o \"Descargar\" para cargar " +"o descargar automáticamente el filamento." msgid "Edit" msgstr "Editar" @@ -2988,7 +3000,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "Imprimir con el filamento montado en la parte posterior del chasis" msgid "Current Cabin humidity" -msgstr "" +msgstr "Current Cabin humidity" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2996,6 +3008,10 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"Please change the desiccant when it is too wet. The indicator may not " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It takes a few hours to absorb the moisture, and " +"low temperatures also slow down the process." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -3056,10 +3072,10 @@ msgstr "" "marca, tipo de material y color)." msgid "DRY" -msgstr "" +msgstr "DRY" msgid "WET" -msgstr "" +msgstr "WET" msgid "AMS Settings" msgstr "Ajustes del AMS" @@ -3078,6 +3094,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"Nota: si se inserta un nuevo filamento durante la impresión, el AMS no leerá " +"automáticamente ninguna información hasta que finalice la impresión." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3130,12 +3148,14 @@ msgstr "" "automáticamente cuando el filamento se termine" msgid "Air Printing Detection" -msgstr "" +msgstr "Air Printing Detection" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"Detects clogging and filament grinding, halting printing immediately to " +"conserve time and filament." msgid "File" msgstr "Archivo" @@ -3214,7 +3234,7 @@ msgid "Running post-processing scripts" msgstr "Ejecutando scripts de post-procesado" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." msgstr "" @@ -3281,10 +3301,10 @@ msgid "Device" msgstr "Dispositivo" msgid "Task Sending" -msgstr "" +msgstr "Task Sending" msgid "Task Sent" -msgstr "" +msgstr "Task Sent" msgid "Edit multiple printers" msgstr "" @@ -3304,7 +3324,7 @@ msgid "Offline" msgstr "Fuera de línea" msgid "No task" -msgstr "" +msgstr "No task" msgid "View" msgstr "Vista" @@ -3316,16 +3336,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "" +msgstr "Device Name" msgid "Task Name" -msgstr "" +msgstr "Task Name" msgid "Device Status" -msgstr "" +msgstr "Device Status" msgid "Actions" -msgstr "" +msgstr "Actions" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3395,25 +3415,25 @@ msgid "Stop" msgstr "Detener" msgid "Task Status" -msgstr "" +msgstr "Task Status" msgid "Sent Time" -msgstr "" +msgstr "Sent Time" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "There are no tasks to be sent!" msgid "No historical tasks!" -msgstr "" +msgstr "No historical tasks!" msgid "Loading..." msgstr "Cargando..." msgid "No AMS" -msgstr "" +msgstr "No AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "Send to Multi-device" msgid "Preparing print job" msgstr "Preparando el trabajo de impresión" @@ -3428,22 +3448,31 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "" +msgstr "Use External Spool" msgid "Use AMS" -msgstr "" +msgstr "Use AMS" msgid "Select Printers" -msgstr "" +msgstr "Select Printers" msgid "Ams Status" -msgstr "" +msgstr "AMS Status" msgid "Printing Options" +msgstr "Printing Options" + +msgid "Bed Leveling" +msgstr "Nivelación de la cama" + +msgid "Timelapse" +msgstr "Intervalo" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "Send Options" msgid "Send" msgstr "Enviar" @@ -3452,13 +3481,16 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"printers at the same time. (It depends on how many devices can undergo " +"heating at the same time.)" msgid "Wait" -msgstr "" +msgstr "Wait" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Name is invalid;" msgstr "El nombre no es válido;" @@ -3557,14 +3589,18 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" +"La temperatura mínima recomendada es inferior a 190 grados o la temperatura " +"máxima recomendada es superior a 300 grados.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" +"The recommended minimum temperature cannot be higher than the recommended " +"maximum temperature.\n" msgid "Please check.\n" -msgstr "" +msgstr "Por favor, compruébalo.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -4029,7 +4065,7 @@ msgstr "Validación de parámetros" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "" +msgstr "Value %s is out of range. The valid range is from %d to %d." msgid "Value is out of range." msgstr "El valor está fuera de rango." @@ -4220,10 +4256,10 @@ msgid "Normal mode" msgstr "Modo normal" msgid "Total Filament" -msgstr "" +msgstr "Total Filament" msgid "Model Filament" -msgstr "" +msgstr "Model Filament" msgid "Prepare time" msgstr "Planificar tiempo" @@ -4319,7 +4355,7 @@ msgid "Spacing" msgstr "Separación" msgid "0 means auto spacing." -msgstr "" +msgstr "0 means auto spacing." msgid "Auto rotate for arrangement" msgstr "Rotación automática para el posicionamiento" @@ -4466,7 +4502,7 @@ msgid "Go Live" msgstr "Ir A En Vivo" msgid "Liveview Retry" -msgstr "" +msgstr "Reintentar Liveview" msgid "Resolution" msgstr "Resolución" @@ -4524,7 +4560,7 @@ msgid "Preview" msgstr "Previsualización" msgid "Multi-device" -msgstr "" +msgstr "Multi-device" msgid "Project" msgstr "Proyecto" @@ -4670,6 +4706,12 @@ msgstr "Importar 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Cargar un modelo" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Importar configuraciones" @@ -4984,44 +5026,55 @@ msgstr "" msgid "Player is malfunctioning. Please reinstall the system player." msgstr "" +"El reproductor no funciona correctamente. Vuelva a instalar el reproductor " +"del sistema." msgid "The player is not loaded, please click \"play\" button to retry." msgstr "" +"El reproductor no se carga; haga clic en el botón \"reproducir\" para volver " +"a intentarlo." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "Confirme si la impresora está conectada." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" +"La impresora está actualmente ocupada descargando. Inténtelo de nuevo cuando " +"finalice." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "La cámara de la impresora funciona mal." msgid "Problem occured. Please update the printer firmware and try again." msgstr "" +"Se ha producido un problema. Actualice el firmware de la impresora e " +"inténtelo de nuevo." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "Por favor, introduzca la IP de la impresora a conectar." msgid "Initializing..." msgstr "Iniciando..." msgid "Connection Failed. Please check the network and try again" -msgstr "" +msgstr "Conexión fallida. Compruebe la red e inténtelo de nuevo." msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"Compruebe la red e inténtelo de nuevo. Puede reiniciar o actualizar la " +"impresora si el problema persiste." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "La impresora se ha desconectado y no puede conectarse." msgid "Stopped." msgstr "Detenido." @@ -5079,9 +5132,6 @@ msgstr "Agrupar archivos por mes, primero los recientes." msgid "Show all files, recent first." msgstr "Mostrar todos los archivos, primero los recientes." -msgid "Timelapse" -msgstr "Intervalo" - msgid "Switch to timelapse files." msgstr "Cambiar a archivos de timelapse." @@ -5113,7 +5163,7 @@ msgid "Refresh" msgstr "Actualizar" msgid "Reload file list from printer." -msgstr "" +msgstr "Reload file list from printer." msgid "No printers." msgstr "No hay impresoras." @@ -5129,7 +5179,7 @@ msgid "No files" msgstr "No hay archivos" msgid "Load failed" -msgstr "" +msgstr "Load failed" msgid "Initialize failed (Device connection not ready)!" msgstr "Initialization failed (Device connection not ready)!" @@ -5138,15 +5188,17 @@ msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"Browsing file in SD card is not supported in current firmware. Please update " +"the printer firmware." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "LAN Connection Failed (Failed to view sdcard)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "Browsing file in SD card is not supported in LAN Only Mode." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -5173,10 +5225,10 @@ msgid "Fetching model infomations ..." msgstr "Fetching model information..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "No se pudo recuperar la información del modelo de la impresora." msgid "Failed to parse model information." -msgstr "" +msgstr "No se pudo analizar la información del modelo." msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -5194,6 +5246,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"File: %s\n" +"Title: %s\n" msgid "Download waiting..." msgstr "Descarga esperando..." @@ -5215,9 +5269,11 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"Reconnecting the printer, the operation cannot be completed immediately, " +"please try again later." msgid "File does not exist." -msgstr "" +msgstr "El archivo no existe." msgid "File checksum error. Please retry." msgstr "Checksum de archivo erróneo. Por favor, reinténtelo." @@ -5319,7 +5375,7 @@ msgid "Control" msgstr "Control" msgid "Printer Parts" -msgstr "" +msgstr "Printer Parts" msgid "Print Options" msgstr "Opciones de Impresora" @@ -5570,7 +5626,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "" +msgstr "Descargar versión beta" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5579,13 +5635,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "" +msgstr "Versión actual:" msgid "Latest Version: " -msgstr "" +msgstr "Ultima versión:" msgid "Not for now" -msgstr "" +msgstr "Not for now" msgid "3D Mouse disconnected." msgstr "Ratón 3D desconectado." @@ -5656,12 +5712,12 @@ msgstr[1] "%1$d Los objetos se han cargado como partes del objeto de corte" msgid "ERROR" msgstr "ERROR" -msgid "CANCELED" -msgstr "CANCELADO" - msgid "COMPLETED" msgstr "COMPLETADO" +msgid "CANCELED" +msgstr "CANCELADO" + msgid "Cancel upload" msgstr "Carga cancelada" @@ -5774,13 +5830,13 @@ msgid "Filament Tangle Detect" msgstr "Detección de Enredos de Filamentos" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Nozzle Clumping Detection" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "" +msgstr "Check if the nozzle is clumping by filament or other foreign objects." msgid "Nozzle Type" -msgstr "" +msgstr "Nozzle Type" msgid "Stainless Steel" msgstr "Acero Inoxidable" @@ -5790,7 +5846,7 @@ msgstr "Acero endurecido" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "Global" @@ -6245,13 +6301,13 @@ msgid "prepare 3mf file..." msgstr "preparar el archivo 3mf..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "Download failed; unknown file format." msgid "downloading project ..." msgstr "descargando proyecto..." msgid "Download failed, File size exception." -msgstr "" +msgstr "Download failed; File size exception." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6276,6 +6332,20 @@ msgstr "no contiene G-Code válido." msgid "Error occurs while loading G-code file" msgstr "Se produce un error al cargar el archivo de G-Code" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Soltar el archivo del proyecto" @@ -6341,22 +6411,24 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try agian." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "Reason: part \"%1%\" is empty." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "Reason: part \"%1%\" does not bound a volume." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "Reason: part \"%1%\" has self intersection." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "Reason: \"%1%\" and another part have no intersection." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6546,6 +6618,10 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"En OSX siempre hay una sola instancia de la aplicación ejecutándose por " +"defecto. Sin embargo, está permitido ejecutar varias instancias de la misma " +"aplicación desde la línea de comandos. En tal caso, esta configuración sólo " +"permitirá una instancia." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6618,10 +6694,10 @@ msgstr "Si está activado, auto calcula en cada cambio de color." msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "" +msgstr "Flushing volumes: Auto-calculate every time the filament is changed." msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "" +msgstr "If enabled, auto-calculate every time filament is changed" msgid "Remember printer configuration" msgstr "" @@ -6638,6 +6714,8 @@ msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." msgid "Network" msgstr "Red" @@ -6686,6 +6764,20 @@ msgstr "" "Si se activa, ajusta OrcaSlicer como aplicación por defecto para abrir " "archivos .step" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Proyectos recientes máximos" @@ -6861,16 +6953,16 @@ msgid "The selected preset is null!" msgstr "¡El ajuste seleccionado es nulo!" msgid "End" -msgstr "" +msgstr "End" msgid "Customize" msgstr "Personalizar" msgid "Other layer filament sequence" -msgstr "" +msgstr "Other layer filament sequence" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "Please input layer value (>= 2)." msgid "Plate name" msgstr "Nombre de Bandeja" @@ -6882,10 +6974,10 @@ msgid "Print sequence" msgstr "Secuencia de impresión" msgid "Same as Global" -msgstr "" +msgstr "Same as Global" msgid "Disable" -msgstr "" +msgstr "Disable" msgid "Spiral vase" msgstr "Vaso en espiral" @@ -7053,9 +7145,6 @@ msgstr "Placa PEI Texturizada Bambu" msgid "Send print job to" msgstr "Enviar el trabajo de impresión a" -msgid "Bed Leveling" -msgstr "Nivelación de la cama" - msgid "Flow Dynamics Calibration" msgstr "Calibración de Dinámicas de Flujo" @@ -7158,6 +7247,8 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"The selected printer (%s) is incompatible with the chosen printer profile in " +"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "Es necesario insertar una tarjeta SD para guardar el timelapse." @@ -7225,15 +7316,20 @@ msgid "" "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"Your nozzle diameter in sliced file is not consistent with the saved nozzle. " +"If you changed your nozzle lately, please go to Device > Printer Parts to " +"change settings." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" msgstr "" +"Printing high temperature material(%s material) with %s may cause nozzle " +"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" +msgstr "Please fix the error above, otherwise printing cannot continue." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7259,7 +7355,7 @@ msgid "Modifying the device name" msgstr "Modificar el nombre del dispositivo" msgid "Bind with Pin Code" -msgstr "" +msgstr "Bind with Pin Code" msgid "Send to Printer SD card" msgstr "Enviar a la tarjeta SD de la impresora" @@ -7322,21 +7418,23 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"Please Find the Pin Code in Account page on printer screen,\n" +" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "" +msgstr "Can't find Pin Code?" msgid "Pin Code" -msgstr "" +msgstr "Pin Code" msgid "Binding..." -msgstr "" +msgstr "Binding..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Please confirm on the printer screen" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "Log in failed. Please check the Pin Code." msgid "Log in printer" msgstr "Iniciar sesión en la impresora" @@ -7544,6 +7642,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " +"printing complications." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7551,6 +7653,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications. Please use with the latest printer firmware." msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -8058,12 +8164,14 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "You have changed some settings of preset \"%1%\". " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"You can save or discard the preset values you have modified." msgid "" "\n" @@ -8072,7 +8180,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "" +msgstr "You have previously modified your settings." msgid "" "\n" @@ -8591,40 +8699,40 @@ msgid "Done" msgstr "Hecho" msgid "resume" -msgstr "" +msgstr "resume" msgid "Resume Printing" -msgstr "" +msgstr "Resume Printing" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Resume Printing (defects acceptable)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Resume Printing (problem solved)" msgid "Stop Printing" -msgstr "" +msgstr "Stop Printing" msgid "Check Assistant" -msgstr "" +msgstr "Check Assistant" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Filament Extruded, Continue" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Not Extruded Yet, Retry" msgid "Finished, Continue" -msgstr "" +msgstr "Finished, Continue" msgid "Load Filament" msgstr "Cargar" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Filament Loaded, Resume" msgid "View Liveview" -msgstr "" +msgstr "View Liveview" msgid "Confirm and Update Nozzle" msgstr "Confirmar y Actualizar la Boquilla" @@ -9539,13 +9647,13 @@ msgid "First layer print sequence" msgstr "Secuencia de impresión de primera capa" msgid "Other layers print sequence" -msgstr "" +msgstr "Other layers print sequence" msgid "The number of other layers print sequence" -msgstr "" +msgstr "The number of other layers print sequence" msgid "Other layers filament sequence" -msgstr "" +msgstr "Other layers filament sequence" msgid "This G-code is inserted at every layer change before lifting z" msgstr "Este G-Code se inserta en cada cambio de capa antes de levantar z" @@ -10479,10 +10587,10 @@ msgstr "" "colisión con la impresión por objeto." msgid "Nozzle height" -msgstr "" +msgstr "Altura de la boquilla" msgid "The height of nozzle tip." -msgstr "" +msgstr "La altura de la punta de la boquilla." msgid "Bed mesh min" msgstr "Malla de cama mínimo" @@ -10975,7 +11083,7 @@ msgid "Lightning" msgstr "Rayo" msgid "Cross Hatch" -msgstr "" +msgstr "Cross Hatch" msgid "Sparse infill anchor length" msgstr "Longitud del anclaje de relleno de baja densidad" @@ -11266,13 +11374,16 @@ msgstr "" "irregular y debe imprimirse más lentamente" msgid "Precise Z height" -msgstr "" +msgstr "Precise Z height" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"Enable this to get precise z height of object after slicing. It will get the " +"precise object height by fine-tuning the layer heights of the last few " +"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "Activar movimientos en arco" @@ -12234,7 +12345,7 @@ msgstr "" "retracción" msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "Long retraction when cut (experimental)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -12242,14 +12353,20 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge.While this reduces flush " +"significantly, it may also raise the risk of nozzle clogs or other printing " +"problems." msgid "Retraction distance when cut" -msgstr "" +msgstr "Retraction distance when cut" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" msgstr "" +"Experimental feature. Retraction length before cutting off during filament " +"change" msgid "Z hop when retract" msgstr "Salto en Z al retraerse" @@ -13458,17 +13575,29 @@ msgstr "Espaciado de las líneas de la torre de purga" msgid "Spacing of purge lines on the wipe tower." msgstr "Espaciado de las líneas de la torre de purga." -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -14244,7 +14373,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj: failed to parse" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "load mtl in obj: failed to parse" msgid "The file contains polygons with more than 4 vertices." msgstr "The file contains polygons with more than 4 vertices." @@ -14378,6 +14507,11 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"This machine type can only hold 16 historical results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results. \n" +"Do you still want to continue the calibration?" msgid "Connecting to printer..." msgstr "Conectando a la impresora." @@ -14396,12 +14530,17 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"Ya existe un resultado de calibración anterior con el mismo nombre: %s. Sólo " +"se guarda un resultado con un nombre. Está seguro de que desea sobrescribir " +"el resultado anterior?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"This machine type can only hold %d historical results per nozzle. This " +"result will not be saved." msgid "Internal Error" msgstr "Error interno" @@ -14779,7 +14918,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "Resultado de Calibración de Dinámicas de Flujo" msgid "New" -msgstr "" +msgstr "New" msgid "No History Result" msgstr "Sin Resultados Históricos" @@ -14796,19 +14935,19 @@ msgstr "Acción" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "This machine type can only hold %d historical results per nozzle." msgid "Edit Flow Dynamics Calibration" msgstr "Editar Calibración de Dinámicas de Flujo" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "New Flow Dynamic Calibration" msgid "Ok" -msgstr "" +msgstr "Ok" msgid "The filament must be selected." -msgstr "" +msgstr "The filament must be selected." msgid "Network lookup" msgstr "Búsqueda de red" @@ -15214,6 +15353,9 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"El nombre del filamento %s que ha creado ya existe. \n" +"Si continúa, el preajuste creado se mostrará con su nombre completo. ¿Desea " +"continuar?" msgid "Some existing presets have failed to be created, as follows:\n" msgstr "" @@ -15443,6 +15585,11 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"Por favor, vaya a la configuración de filamento para editar sus ajustes " +"preestablecidos si es necesario.\n" +"Tenga en cuenta que la temperatura de la boquilla, la temperatura de la cama " +"caliente y la velocidad volumétrica máxima tienen un impacto significativo " +"en la calidad de impresión. Por favor, configúrelos con cuidado." msgid "" "\n" @@ -15561,7 +15708,7 @@ msgid "Please select a type you want to export" msgstr "Seleccione el tipo que desea exportar" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "" +msgstr "Failed to create temporary folder, please try Export Configs again." msgid "Edit Filament" msgstr "Editar Filamento" @@ -15856,30 +16003,43 @@ msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"It has a small layer height, and results in almost negligible layer lines " +"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " +"bigger layer height. This results in almost negligible layer lines and " +"slightly longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " +"height. This results in slightly visible layer lines but shorter print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in almost invisible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15887,12 +16047,19 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality but " +"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15900,35 +16067,53 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"It has a normal layer height, and results in average layer lines and print " +"quality. It is suitable for most printing cases." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but slightly shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15936,12 +16121,19 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15949,64 +16141,95 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and longer print time." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"It has a big layer height, and results in apparent layer lines and ordinary " +"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and slightly higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"It has a very big layer height, and results in very apparent layer lines, " +"low print quality and shorter printing time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -16014,12 +16237,18 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality, but longer print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgid "Connected to Obico successfully!" msgstr "¡Conectado a Obico con éxito!" @@ -16457,6 +16686,9 @@ msgstr "" "aumentar adecuadamente la temperatura del lecho térmico puede reducir la " "probabilidad de deformaciones." +#~ msgid "V" +#~ msgstr "V" + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " @@ -17962,9 +18194,11 @@ msgstr "" #~ msgstr "Ancho de línea para las superficies superiores" # msgid "Improve strength\n" -# "Did you know that you can use more wall loops and higher sparse infill density to improve the strength of the model?" +# "Did you know that you can use more wall loops and higher sparse infill +# density to improve the strength of the model?" # msgstr "Mejorar la fuerza\n" -# "¿Sabías que puedes utilizar más bucles de pared y mayor densidad de relleno disperso para mejorar la resistencia del modelo?" +# "¿Sabías que puedes utilizar más bucles de pared y mayor densidad de relleno +# disperso para mejorar la resistencia del modelo?" #~ msgid "Keep upper part" #~ msgstr "Mantener la parte superior" diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index 28428f3bd7..f320e04bba 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: Guislain Cyril, Thomas Lété\n" @@ -158,7 +158,7 @@ msgid "Height range" msgstr "Plage de hauteur" msgid "Alt + Shift + Enter" -msgstr "" +msgstr "Alt + Shift + Entrée" msgid "Toggle Wireframe" msgstr "Activer Maillage" @@ -374,7 +374,7 @@ msgid "Move cut plane" msgstr "Déplacer le plan de coupe" msgid "Mode" -msgstr "" +msgstr "Mode" msgid "Change cut mode" msgstr "Changer le mode de coupe" @@ -1361,13 +1361,13 @@ msgid "Perpendicular distance" msgstr "Distance perpendiculaire" msgid "Distance" -msgstr "" +msgstr "Distance" msgid "Direct distance" msgstr "Distance directe" msgid "Distance XYZ" -msgstr "" +msgstr "Distance XYZ" msgid "Ctrl+" msgstr "Ctrl+" @@ -1411,9 +1411,6 @@ msgstr "" "Le fichier de configuration \"%1%\" a été chargé, mais certaines valeurs " "n'ont pas été reconnues." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1527,6 +1524,9 @@ msgstr "" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Choisissez un ou plusieurs fichiers (3mf/step/stl/svg/obj/amf) :" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Choisissez un fichier (gcode/3mf):" @@ -1599,6 +1599,11 @@ msgstr "Téléversements en cours" msgid "Select a G-code file:" msgstr "Sélectionnez un fichier G-code :" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Importer un Fichier" @@ -3367,7 +3372,7 @@ msgid "Device Status" msgstr "État de l’appareil" msgid "Actions" -msgstr "" +msgstr "Actions" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3487,6 +3492,15 @@ msgstr "Statut de l’AMS" msgid "Printing Options" msgstr "Options d’impression" +msgid "Bed Leveling" +msgstr "Mise à niveau du plateau" + +msgid "Timelapse" +msgstr "Timelapse" + +msgid "Flow Dynamic Calibration" +msgstr "" + msgid "Send Options" msgstr "Options d’envoi" @@ -4717,6 +4731,12 @@ msgstr "Importer des fichiers 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Charger un modèle" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Importer des Configs" @@ -5143,9 +5163,6 @@ msgstr "Regroupez les fichiers par mois, les plus récents en premier." msgid "Show all files, recent first." msgstr "Afficher tous les fichiers, les plus récents en premier." -msgid "Timelapse" -msgstr "Timelapse" - msgid "Switch to timelapse files." msgstr "Passez aux fichiers timelapse." @@ -5739,12 +5756,12 @@ msgstr[1] "%1$d objets ont été chargés en tant que partie de l’objet coupé msgid "ERROR" msgstr "ERREUR" -msgid "CANCELED" -msgstr "Annulé" - msgid "COMPLETED" msgstr "Terminé" +msgid "CANCELED" +msgstr "Annulé" + msgid "Cancel upload" msgstr "Annuler le téléversement" @@ -5874,7 +5891,7 @@ msgstr "Acier trempé" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "Global" @@ -6365,6 +6382,20 @@ msgstr "ne contient pas de G-code valide." msgid "Error occurs while loading G-code file" msgstr "Une erreur se produit lors du chargement du fichier G-code" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Déposer le fichier de projet" @@ -6811,6 +6842,20 @@ msgstr "" "Si activé, définit Orca Slicer comme application par défaut pour ouvrir les " "fichiers .step/.stp" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Projets récents maximum" @@ -7182,9 +7227,6 @@ msgstr "Bambu Textured PEI Plate" msgid "Send print job to" msgstr "Envoyer le travail d'impression à" -msgid "Bed Leveling" -msgstr "Mise à niveau du plateau" - msgid "Flow Dynamics Calibration" msgstr "Calibration du débit" @@ -13730,26 +13772,30 @@ msgstr "Espacement des lignes de purge de la tour d’essuyage" msgid "Spacing of purge lines on the wipe tower." msgstr "Espacement des lignes de purge sur la tour d’essuyage." -msgid "Maximum print speed when purging" -msgstr "Vitesse d’impression maximale lors de la purge" +msgid "Maximum wipe tower print speed" +msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" -"Vitesse d’impression maximale lors de la purge dans la tour d’essuyage. Si " -"la vitesse de remplissage ou la vitesse calculée à partir de la vitesse " -"volumétrique maximale du filament est inférieure, c’est la vitesse la plus " -"basse qui sera utilisée.\n" -"L’augmentation de cette vitesse peut affecter la stabilité de la tour, car " -"la purge peut être effectuée sur des couches peu épaisses. Avant d’augmenter " -"ce paramètre au-delà de la valeur par défaut de 90 mm/sec, assurez-vous que " -"votre imprimante peut effectuer un pontage fiable aux vitesses accrues." msgid "Wipe tower extruder" msgstr "Extrudeur de tour d’essuyage" @@ -15119,7 +15165,7 @@ msgid "New Flow Dynamic Calibration" msgstr "Nouveau calibrage dynamique du débit" msgid "Ok" -msgstr "" +msgstr "Ok" msgid "The filament must be selected." msgstr "Le filament doit être sélectionné." @@ -15595,7 +15641,7 @@ msgid "Can't find my printer model" msgstr "Impossible de trouver le modèle de mon imprimante" msgid "Rectangle" -msgstr "" +msgstr "Rectangle" msgid "Printable Space" msgstr "Espace imprimable" @@ -16921,6 +16967,31 @@ msgstr "" "déformer, tels que l’ABS, une augmentation appropriée de la température du " "plateau chauffant peut réduire la probabilité de déformation." +#~ msgid "V" +#~ msgstr "V" + +#~ msgid "Maximum print speed when purging" +#~ msgstr "Vitesse d’impression maximale lors de la purge" + +#~ msgid "" +#~ "The maximum print speed when purging in the wipe tower. If the sparse " +#~ "infill speed or calculated speed from the filament max volumetric speed " +#~ "is lower, the lowest speed will be used instead.\n" +#~ "Increasing this speed may affect the tower's stability, as purging can be " +#~ "performed over sparse layers. Before increasing this parameter beyond the " +#~ "default of 90mm/sec, make sure your printer can reliably bridge at the " +#~ "increased speeds." +#~ msgstr "" +#~ "Vitesse d’impression maximale lors de la purge dans la tour d’essuyage. " +#~ "Si la vitesse de remplissage ou la vitesse calculée à partir de la " +#~ "vitesse volumétrique maximale du filament est inférieure, c’est la " +#~ "vitesse la plus basse qui sera utilisée.\n" +#~ "L’augmentation de cette vitesse peut affecter la stabilité de la tour, " +#~ "car la purge peut être effectuée sur des couches peu épaisses. Avant " +#~ "d’augmenter ce paramètre au-delà de la valeur par défaut de 90 mm/sec, " +#~ "assurez-vous que votre imprimante peut effectuer un pontage fiable aux " +#~ "vitesses accrues." + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index cbfa7f7dad..52d0069683 100644 --- a/localization/i18n/hu/OrcaSlicer_hu.po +++ b/localization/i18n/hu/OrcaSlicer_hu.po @@ -1,14 +1,15 @@ +# msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Localazy (https://localazy.com)\n" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" +"X-Generator: Localazy (https://localazy.com)\n" msgid "Supports Painting" msgstr "Támaszok festése" @@ -149,7 +150,7 @@ msgid "Height range" msgstr "Magasságtartomány" msgid "Alt + Shift + Enter" -msgstr "" +msgstr "Alt + Shift + Enter" msgid "Toggle Wireframe" msgstr "Drótváz-megjelenítés váltása" @@ -164,10 +165,10 @@ msgid "Height Range" msgstr "Magasságtartomány" msgid "Vertical" -msgstr "" +msgstr "Függőleges" msgid "Horizontal" -msgstr "" +msgstr "Vízszintes" msgid "Remove painted color" msgstr "Festett szín eltávolítása" @@ -268,16 +269,16 @@ msgid "uniform scale" msgstr "egységes méretarány" msgid "Planar" -msgstr "" +msgstr "Sík" msgid "Dovetail" -msgstr "" +msgstr "Fecskefarok" msgid "Auto" msgstr "Auto" msgid "Manual" -msgstr "" +msgstr "Manuális" msgid "Plug" msgstr "Plug" @@ -286,7 +287,7 @@ msgid "Dowel" msgstr "Dowel" msgid "Snap" -msgstr "" +msgstr "Csatlakoztatás" msgid "Prism" msgstr "" @@ -301,7 +302,7 @@ msgid "Hexagon" msgstr "Hexagon" msgid "Keep orientation" -msgstr "" +msgstr "Tájolás megtartása" msgid "Place on cut" msgstr "Place on cut" @@ -325,19 +326,19 @@ msgstr "Forma" #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "" +msgstr "Mélység" msgid "Groove" -msgstr "" +msgstr "Horony" msgid "Width" msgstr "Szélesség" msgid "Flap Angle" -msgstr "" +msgstr "Fedélszög" msgid "Groove Angle" -msgstr "" +msgstr "Horonyszög" msgid "Part" msgstr "Tárgy" @@ -360,7 +361,7 @@ msgid "Move cut plane" msgstr "" msgid "Mode" -msgstr "" +msgstr "Mód" msgid "Change cut mode" msgstr "" @@ -408,7 +409,7 @@ msgid "Remove connectors" msgstr "Remove connectors" msgid "Bulge" -msgstr "" +msgstr "Kidudorodás" msgid "Bulge proportion related to radius" msgstr "" @@ -517,7 +518,7 @@ msgid "Cut by Plane" msgstr "" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" -msgstr "" +msgstr "A vágás után hibás élek keletkeztek, szeretnéd most javítani őket?" msgid "Repairing model object" msgstr "Modell javítása" @@ -617,13 +618,13 @@ msgid "Remove selection" msgstr "Kijelölés törlése" msgid "Entering Seam painting" -msgstr "" +msgstr "Belépés varratfestő módba" msgid "Leaving Seam painting" -msgstr "" +msgstr "Kilépés varratfestő módból" msgid "Paint-on seam editing" -msgstr "" +msgstr "Festett varrat szerkesztése" #. TRN - Input label. Be short as possible #. Select look of letter shape @@ -762,7 +763,7 @@ msgstr "" msgctxt "EmbossOperation" msgid "Cut" -msgstr "" +msgstr "Vágás" msgid "Click to change part type into negative volume." msgstr "" @@ -904,19 +905,19 @@ msgstr "" msgctxt "Alignment" msgid "Left" -msgstr "" +msgstr "Bal" msgctxt "Alignment" msgid "Center" -msgstr "" +msgstr "Közép" msgctxt "Alignment" msgid "Right" -msgstr "" +msgstr "Jobb" msgctxt "Alignment" msgid "Top" -msgstr "" +msgstr "Felső" msgctxt "Alignment" msgid "Middle" @@ -924,7 +925,7 @@ msgstr "" msgctxt "Alignment" msgid "Bottom" -msgstr "" +msgstr "Alsó" msgid "Revert alignment." msgstr "" @@ -1236,43 +1237,43 @@ msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "" msgid "Vertex" -msgstr "" +msgstr "Vertex" msgid "Edge" -msgstr "" +msgstr "Edge" msgid "Plane" -msgstr "" +msgstr "Plane" msgid "Point on edge" -msgstr "" +msgstr "Point on edge" msgid "Point on circle" -msgstr "" +msgstr "Point on circle" msgid "Point on plane" -msgstr "" +msgstr "Point on plane" msgid "Center of edge" -msgstr "" +msgstr "Center of edge" msgid "Center of circle" -msgstr "" +msgstr "Center of circle" msgid "ShiftLeft mouse button" msgstr "" msgid "Select feature" -msgstr "" +msgstr "Select feature" msgid "Select point" -msgstr "" +msgstr "Select point" msgid "Delete" msgstr "Törlés" msgid "Restart selection" -msgstr "" +msgstr "Restart selection" msgid "Esc" msgstr "Esc" @@ -1281,14 +1282,14 @@ msgid "Unselect" msgstr "" msgid "Measure" -msgstr "" +msgstr "Measure" msgid "Edit to scale" -msgstr "" +msgstr "Edit to scale" msgctxt "Verb" msgid "Scale" -msgstr "" +msgstr "Átméretezés" msgid "None" msgstr "Sehol" @@ -1300,22 +1301,22 @@ msgid "Length" msgstr "Hossz" msgid "Selection" -msgstr "" +msgstr "Selection" msgid "Copy to clipboard" msgstr "Másolás a vágólapra" msgid "Perpendicular distance" -msgstr "" +msgstr "Perpendicular distance" msgid "Distance" -msgstr "" +msgstr "Distance" msgid "Direct distance" -msgstr "" +msgstr "Direct distance" msgid "Distance XYZ" -msgstr "" +msgstr "Distance XYZ" msgid "Ctrl+" msgstr "Ctrl+" @@ -1357,9 +1358,6 @@ msgstr "" "A(z) \"%1%\" konfigurációs csomag betöltődött, de néhány értéket nem " "sikerült felismerni." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1453,10 +1451,14 @@ msgstr "Válassz ki egy fájlt (3mf):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgstr "" +"Válassz ki egy vagy több fájlt (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Válassz ki egy vagy több fájlt (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "" @@ -1494,9 +1496,11 @@ msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " "newly created user presets can only be used locally." msgstr "" +"A felhőben tárolt felhasználói beállítások száma elérte a limitet, az " +"újonnan létrehozott felhasználói beállítások csak helyben lesznek tárolva." msgid "Sync user presets" -msgstr "" +msgstr "Felhasználói beállítások szinkronizálása" msgid "Loading user preset" msgstr "Felhasználói beállítás betöltése" @@ -1525,6 +1529,11 @@ msgstr "Folyamatban lévő feltöltések" msgid "Select a G-code file:" msgstr "Válassz egy G-code fájlt:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Import File" @@ -1659,16 +1668,16 @@ msgid "Cone" msgstr "Kúp" msgid "Disc" -msgstr "" +msgstr "Lemez" msgid "Torus" -msgstr "" +msgstr "Tórusz" msgid "Orca Cube" msgstr "" msgid "3DBenchy" -msgstr "" +msgstr "3DBenchy" msgid "Autodesk FDM Test" msgstr "" @@ -1721,10 +1730,10 @@ msgid "Fix model" msgstr "Model javítása" msgid "Export as one STL" -msgstr "" +msgstr "Exportálás egy STL-ként" msgid "Export as STLs" -msgstr "" +msgstr "Exportálás STL-ként" msgid "Reload from disk" msgstr "Újratöltés lemezről" @@ -1798,10 +1807,12 @@ msgstr "" "Összeállítja a kijelölt objektumokat egy egyetlen részből álló objektummá" msgid "Mesh boolean" -msgstr "" +msgstr "Mesh boolean" msgid "Mesh boolean operations including union and subtraction" msgstr "" +"Olyan modellhálóval kapcsolatos logikai műveletek, mint például az egyesítés " +"és kivonás" msgid "Along X axis" msgstr "X-tengely mentén" @@ -1946,7 +1957,7 @@ msgid "Lock" msgstr "Lezárás" msgid "Edit Plate Name" -msgstr "" +msgstr "Tálca nevének szerkesztése" msgid "Name" msgstr "Név" @@ -2009,7 +2020,7 @@ msgid "Error!" msgstr "Hiba!" msgid "Failed to get the model data in the current file." -msgstr "" +msgstr "Nem sikerült beolvasni a modelladatokat az aktuális fájlba." msgid "Generic" msgstr "Általános" @@ -2254,7 +2265,7 @@ msgid "Pause" msgstr "Szünet" msgid "Template" -msgstr "" +msgstr "Sablon" msgid "Custom" msgstr "Egyéni" @@ -2305,7 +2316,7 @@ msgid "Change filament at the beginning of this layer." msgstr "Change filament at the beginning of this layer." msgid "Delete Pause" -msgstr "" +msgstr "Szünet törlése" msgid "Delete Custom Template" msgstr "Delete Custom Template" @@ -2323,7 +2334,7 @@ msgid "No printer" msgstr "Nincs nyomtató" msgid "..." -msgstr "" +msgstr "..." msgid "Failed to connect to the server" msgstr "Nem sikerült csatlakozni a szerverhez" @@ -2356,7 +2367,7 @@ msgid "?" msgstr "?" msgid "/" -msgstr "" +msgstr "/" msgid "Empty" msgstr "Üres" @@ -2365,13 +2376,13 @@ msgid "AMS" msgstr "AMS" msgid "Auto Refill" -msgstr "" +msgstr "Auto Refill" msgid "AMS not connected" msgstr "Az AMS nincs csatlakoztatva" msgid "Load" -msgstr "" +msgstr "Load" msgid "Unload" msgstr "Kitöltés" @@ -2403,7 +2414,7 @@ msgid "Cancel calibration" msgstr "Kalibrálás megszakítása" msgid "Idling..." -msgstr "" +msgstr "Tétlen..." msgid "Heat the nozzle" msgstr "Fűtsd fel a fúvókát" @@ -2421,13 +2432,13 @@ msgid "Purge old filament" msgstr "Régi filament kiöblítése" msgid "Feed Filament" -msgstr "" +msgstr "Filament betöltése" msgid "Confirm extruded" -msgstr "" +msgstr "Extrudálás megerősítése" msgid "Check filament location" -msgstr "" +msgstr "Ellenőrizd a filament helyzetét" msgid "Grab new filament" msgstr "Grab new filament" @@ -2436,6 +2447,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Válassz ki egy AMS-helyet, majd nyomd meg a „Betöltés” vagy a „Kitöltés” " +"gombot az filament automatikus betöltéséhez vagy eltávolításához." msgid "Edit" msgstr "Szerkesztés" @@ -2515,7 +2528,7 @@ msgid "Orienting canceled." msgstr "" msgid "Filling" -msgstr "" +msgstr "Kitöltés" msgid "Bed filling canceled." msgstr "Bed filling canceled." @@ -2600,7 +2613,7 @@ msgid "Sending print job through cloud service" msgstr "Nyomtatási munka küldése felhőszolgáltatáson keresztül" msgid "Print task sending times out." -msgstr "" +msgstr "Időtúllépés a nyomtatási feladat küldése során." msgid "Service Unavailable" msgstr "Szolgáltatás nem elérhető" @@ -2619,6 +2632,7 @@ msgstr "" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" msgstr "" +"Sikeresen elküldve. Ugrás automatikusan a következő oldalra %s mp-en belül" msgid "An SD card needs to be inserted before printing via LAN." msgstr "A LAN-on keresztüli nyomtatáshoz helyezz be egy SD kártyát." @@ -2778,10 +2792,10 @@ msgid "Setting AMS slot information while printing is not supported" msgstr "Nyomtatás közben nem változtathatóak meg a AMS férőhelyek adatai" msgid "Factors of Flow Dynamics Calibration" -msgstr "" +msgstr "Anyagáramlás kalibrálásának faktorai" msgid "PA Profile" -msgstr "" +msgstr "PA-profil" msgid "Factor K" msgstr "K-tényező" @@ -2799,10 +2813,10 @@ msgid "You need to select the material type and color first." msgstr "You need to select the material type and color first." msgid "Please input a valid value (K in 0~0.3)" -msgstr "" +msgstr "Kérjük, adj meg egy érvényes értéket (K 0-0,3)" msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" -msgstr "" +msgstr "Kérjük, adj meg egy érvényes értéket (K 0-0,3; N 0,6-2,0)" msgid "Other Color" msgstr "Other Color" @@ -2910,7 +2924,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "Nyomtatás külső tartón lévő filamenttel" msgid "Current Cabin humidity" -msgstr "" +msgstr "Current Cabin humidity" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2918,6 +2932,10 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"Please change the desiccant when it is too wet. The indicator may not " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It takes a few hours to absorb the moisture, and " +"low temperatures also slow down the process." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -2950,16 +2968,19 @@ msgid "" "When the current material run out, the printer will continue to print in the " "following order." msgstr "" +"Amikor az aktuális filament elfogy, a nyomtató a következő sorrendben " +"folytatja a nyomtatást." msgid "Group" msgstr "Group" msgid "The printer does not currently support auto refill." -msgstr "" +msgstr "A nyomtató jelenleg nem támogatja az automatikus újratöltést." msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "" +"AMS filament backup is not enabled; please enable it in the AMS settings." msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " @@ -2967,12 +2988,16 @@ msgid "" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" +"If there are two identical filaments in an AMS, AMS filament backup will be " +"enabled. \n" +"(This currently supports automatic supply of consumables with the same " +"brand, material type, and color)" msgid "DRY" -msgstr "" +msgstr "DRY" msgid "WET" -msgstr "" +msgstr "WET" msgid "AMS Settings" msgstr "AMS beállítások" @@ -2991,6 +3016,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"Megjegyzés: ha nyomtatás során új filament kerül behelyezésre, az AMS nem " +"fogja automatikusan kiolvasni az információkat a nyomtatás végéig." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3043,12 +3070,14 @@ msgstr "" "aktuális filament kifogy." msgid "Air Printing Detection" -msgstr "" +msgstr "Air Printing Detection" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"Detects clogging and filament grinding, halting printing immediately to " +"conserve time and filament." msgid "File" msgstr "Fájl" @@ -3126,7 +3155,7 @@ msgid "Running post-processing scripts" msgstr "Utófeldolgozási szkriptek futtatása" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." msgstr "" @@ -3192,10 +3221,10 @@ msgid "Device" msgstr "Nyomtató" msgid "Task Sending" -msgstr "" +msgstr "Task Sending" msgid "Task Sent" -msgstr "" +msgstr "Task Sent" msgid "Edit multiple printers" msgstr "" @@ -3215,7 +3244,7 @@ msgid "Offline" msgstr "Offline" msgid "No task" -msgstr "" +msgstr "No task" msgid "View" msgstr "Nézet" @@ -3227,16 +3256,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "" +msgstr "Device Name" msgid "Task Name" -msgstr "" +msgstr "Task Name" msgid "Device Status" -msgstr "" +msgstr "Device Status" msgid "Actions" -msgstr "" +msgstr "Actions" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3279,7 +3308,7 @@ msgid "Pending" msgstr "" msgid "Sending" -msgstr "" +msgstr "Küldés" msgid "Sending Finish" msgstr "" @@ -3306,25 +3335,25 @@ msgid "Stop" msgstr "Állj" msgid "Task Status" -msgstr "" +msgstr "Task Status" msgid "Sent Time" -msgstr "" +msgstr "Sent Time" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "There are no tasks to be sent!" msgid "No historical tasks!" -msgstr "" +msgstr "No historical tasks!" msgid "Loading..." msgstr "Betöltés…" msgid "No AMS" -msgstr "" +msgstr "No AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "Send to Multi-device" msgid "Preparing print job" msgstr "Nyomtatási feladat előkészítése" @@ -3339,22 +3368,31 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "" +msgstr "Use External Spool" msgid "Use AMS" -msgstr "" +msgstr "Use AMS" msgid "Select Printers" -msgstr "" +msgstr "Select Printers" msgid "Ams Status" -msgstr "" +msgstr "AMS Status" msgid "Printing Options" +msgstr "Printing Options" + +msgid "Bed Leveling" +msgstr "Asztalszintezés" + +msgid "Timelapse" +msgstr "Timelapse" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "Send Options" msgid "Send" msgstr "Küldés" @@ -3363,13 +3401,16 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"printers at the same time. (It depends on how many devices can undergo " +"heating at the same time.)" msgid "Wait" -msgstr "" +msgstr "Wait" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Name is invalid;" msgstr "A név érvénytelen;" @@ -3464,14 +3505,18 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" +"Az ajánlott minimum hőmérséklet kevesebb, mint 190 fok, vagy az ajánlott " +"maximális hőmérséklet nagyobb, mint 300 fok.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" +"The recommended minimum temperature cannot be higher than the recommended " +"maximum temperature.\n" msgid "Please check.\n" -msgstr "" +msgstr "Kérjük, ellenőrizd.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3503,6 +3548,9 @@ msgid "" "it may result in material softening and clogging.The maximum safe " "temperature for the material is %d" msgstr "" +"Current chamber temperature is higher than the material's safe temperature; " +"this may result in material softening and nozzle clogs.The maximum safe " +"temperature for the material is %d" msgid "" "Too small layer height.\n" @@ -3624,6 +3672,7 @@ msgstr "" msgid " But machines with I3 structure will not generate timelapse videos." msgstr "" +" Az I3-szerkezetű gépek azonban nem fognak timelapse videókat készíteni." msgid "" "Change these settings automatically? \n" @@ -3699,46 +3748,46 @@ msgid "Paused due to heat bed temperature malfunction" msgstr "Szüneteltetve a tárgyasztal hőmérsékletének rendellenessége miatt" msgid "Filament unloading" -msgstr "" +msgstr "Filament kitöltése" msgid "Skip step pause" -msgstr "" +msgstr "Lépésvesztés miatti szünet" msgid "Filament loading" -msgstr "" +msgstr "Filament betöltése" msgid "Motor noise calibration" -msgstr "" +msgstr "Motorzaj-kalibrálás" msgid "Paused due to AMS lost" -msgstr "" +msgstr "Szüneteltetve az AMS elvesztése miatt" msgid "Paused due to low speed of the heat break fan" -msgstr "" +msgstr "Szüneteltetve a heat break ventilátor alacsony fordulatszáma miatt" msgid "Paused due to chamber temperature control error" -msgstr "" +msgstr "Szüneteltetve a kamra hőmérséklet-szabályzó hibája miatt" msgid "Cooling chamber" -msgstr "" +msgstr "Kamra hűtése" msgid "Paused by the Gcode inserted by user" -msgstr "" +msgstr "Szüneteltetve a felhasználó által beillesztett G-kód miatt" msgid "Motor noise showoff" -msgstr "" +msgstr "Motorzaj bemutató" msgid "Nozzle filament covered detected pause" -msgstr "" +msgstr "Szüneteltetve a fúvókára került filament miatt" msgid "Cutter error pause" -msgstr "" +msgstr "Szüneteltetve a filamentvágó meghibásodása miatt" msgid "First layer error pause" -msgstr "" +msgstr "Szüneteltetve a kezdőrétegen található hiba miatt" msgid "Nozzle clog pause" -msgstr "" +msgstr "Szüneteltetve a fúvóka eltömődése miatt" msgid "Unknown" msgstr "Ismeretlen" @@ -3769,53 +3818,66 @@ msgid "" "45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" +"The current chamber temperature or the target chamber temperature exceeds " +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" +"TPU) is not allowed to be loaded." msgid "" "Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " "avoid extruder clogging,it is not allowed to set the chamber temperature " "above 45℃." msgstr "" +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " +"above 45℃." msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated. And the target chamber temperature will " "automatically be set to 0℃." msgstr "" +"When you set the chamber temperature below 40℃, the chamber temperature " +"control will not be activated, and the target chamber temperature will " +"automatically be set to 0℃." msgid "Failed to start printing job" msgstr "Nem sikerült elindítani a nyomtatási feladatot" msgid "" "This calibration does not support the currently selected nozzle diameter" -msgstr "" +msgstr "Ezt a kalibrálást nem lehet elvégezni a kiválasztott fúvókaátmérővel" msgid "Current flowrate cali param is invalid" -msgstr "" +msgstr "Az anyagáramlás kalibrációs paramétere érvénytelen" msgid "Selected diameter and machine diameter do not match" -msgstr "" +msgstr "A kiválasztott átmérő és a nyomtatóban megadott átmérő nem egyezik" msgid "Failed to generate cali gcode" -msgstr "" +msgstr "Nem sikerült létrehozni a kalibrációs G-kódot" msgid "Calibration error" -msgstr "" +msgstr "Kalibrációs hiba" msgid "TPU is not supported by AMS." -msgstr "" +msgstr "Az AMS nem támogatja a TPU-t." msgid "Bambu PET-CF/PA6-CF is not supported by AMS." -msgstr "" +msgstr "A Bambu PET-CF/PA6-CF filament nem használható az AMS-sel." msgid "" "Damp PVA will become flexible and get stuck inside AMS,please take care to " "dry it before use." msgstr "" +"A nedves PVA rugalmassá válik és elakadhat az AMS belsejében; kérjük, " +"használat előtt alaposan szárítsd ki." msgid "" "CF/GF filaments are hard and brittle, It's easy to break or get stuck in " "AMS, please use with caution." msgstr "" +"A CF/GF filament rideg és törékeny, ezért könnyen eltörhet vagy elakadhat az " +"AMS-ben; kérjük, légy körültekintő a használatakor." msgid "default" msgstr "alapértelmezett" @@ -3898,7 +3960,7 @@ msgstr "Paraméter validáció" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "" +msgstr "Value %s is out of range. The valid range is from %d to %d." msgid "Value is out of range." msgstr "Az érték tartományon kívül esik." @@ -3981,7 +4043,7 @@ msgid "Flushed" msgstr "Öblített" msgid "Tower" -msgstr "" +msgstr "Torony" msgid "Total" msgstr "Összesen" @@ -3993,7 +4055,7 @@ msgid "Total time" msgstr "Teljes idő" msgid "Total cost" -msgstr "" +msgstr "Total cost" msgid "up to" msgstr "legfeljebb" @@ -4089,10 +4151,10 @@ msgid "Normal mode" msgstr "Normál mód" msgid "Total Filament" -msgstr "" +msgstr "Total Filament" msgid "Model Filament" -msgstr "" +msgstr "Model Filament" msgid "Prepare time" msgstr "Előkészítési idő" @@ -4188,7 +4250,7 @@ msgid "Spacing" msgstr "Térköz" msgid "0 means auto spacing." -msgstr "" +msgstr "0 means auto spacing." msgid "Auto rotate for arrangement" msgstr "Automatikus forgatás az elrendezéshez" @@ -4200,7 +4262,7 @@ msgid "Avoid extrusion calibration region" msgstr "Extrudáláskalibráció környékének elkerülése" msgid "Align to Y axis" -msgstr "" +msgstr "Igazítás az Y-tengelyhez" msgid "Add plate" msgstr "Tálca hozzáadása" @@ -4266,7 +4328,7 @@ msgid "An object is layed over the boundary of plate." msgstr "Egy objektum a tálca határvonalán túlra került." msgid "A G-code path goes beyond the max print height." -msgstr "" +msgstr "A G-kód útvonala túlmegy a maximális nyomtatási magasságon." msgid "A G-code path goes beyond the boundary of plate." msgstr "A G-kód útvonala túlmegy a tálca peremén." @@ -4294,10 +4356,10 @@ msgid "Bed leveling" msgstr "Asztalszintezés" msgid "Vibration compensation" -msgstr "" +msgstr "Rezgés-kompenzáció" msgid "Motor noise cancellation" -msgstr "" +msgstr "Motorzajszűrés" msgid "Calibration program" msgstr "Kalibrációs program" @@ -4324,7 +4386,7 @@ msgid "Calibrating" msgstr "Kalibrálás" msgid "No step selected" -msgstr "" +msgstr "Nincs kiválasztva lépés" msgid "Auto-record Monitoring" msgstr "Automatikus felügyelet" @@ -4333,7 +4395,7 @@ msgid "Go Live" msgstr "Streamelés indítása" msgid "Liveview Retry" -msgstr "" +msgstr "Élő nézet újra próbálása" msgid "Resolution" msgstr "Felbontás" @@ -4391,7 +4453,7 @@ msgid "Preview" msgstr "Előnézet" msgid "Multi-device" -msgstr "" +msgstr "Multi-device" msgid "Project" msgstr "Projekt" @@ -4537,6 +4599,12 @@ msgstr "Importálás 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Modell betöltése" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Import Configs" @@ -4547,10 +4615,10 @@ msgid "Import" msgstr "Import" msgid "Export all objects as one STL" -msgstr "" +msgstr "Az összes objektum exportálása egy STL-ként" msgid "Export all objects as STLs" -msgstr "" +msgstr "Az összes objektum exportálása STL-ként" msgid "Export Generic 3MF" msgstr "Export Generic 3MF" @@ -4676,49 +4744,49 @@ msgid "Help" msgstr "Segítség" msgid "Temperature Calibration" -msgstr "" +msgstr "Hőmérséklet kalibrálás" msgid "Pass 1" -msgstr "" +msgstr "1. menet" msgid "Flow rate test - Pass 1" -msgstr "" +msgstr "Anyagáramlás teszt - 1. menet" msgid "Pass 2" -msgstr "" +msgstr "2. menet" msgid "Flow rate test - Pass 2" -msgstr "" +msgstr "Anyagáramlás teszt - 2. menet" msgid "Flow rate" -msgstr "" +msgstr "Anyagáramlás" msgid "Pressure advance" -msgstr "" +msgstr "Nyomáselőtolás (PA)" msgid "Retraction test" -msgstr "" +msgstr "Visszahúzás teszt" msgid "Orca Tolerance Test" -msgstr "" +msgstr "Orca Tolerance Test" msgid "Max flowrate" -msgstr "" +msgstr "Max. anyagáramlás" msgid "VFA" -msgstr "" +msgstr "VFA" msgid "More..." -msgstr "" +msgstr "Több..." msgid "Tutorial" -msgstr "" +msgstr "Útmutató" msgid "Calibration help" -msgstr "" +msgstr "Kalibrálási segítség" msgid "More calibrations" -msgstr "" +msgstr "További kalibrációk" msgid "&Open G-code" msgstr "&G-kód megnyitása" @@ -4834,48 +4902,58 @@ msgid "Synchronization" msgstr "Szinkronizálás" msgid "The device cannot handle more conversations. Please retry later." -msgstr "" +msgstr "Az eszköz nem tud több kapcsolatot kezelni. Kérjük, próbálkozz később." msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "" +msgstr "A lejátszó hibásan működik. Kérjük, telepítsd újra." msgid "The player is not loaded, please click \"play\" button to retry." msgstr "" +"A lejátszó nem töltődött be; kérjük, kattints a „lejátszás” gombra az újra " +"próbálkozáshoz." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "Kérjük, ellenőrizd, hogy a nyomtató csatlakoztatva van." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" +"A nyomtató a letöltéssel van elfoglalva. Kérjük, várd meg, amíg a letöltés " +"befejeződik." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "A nyomtató kamerája hibásan működik." msgid "Problem occured. Please update the printer firmware and try again." msgstr "" +"Probléma merült fel. Kérjük, frissítsd a nyomtató firmware-ét, és próbáld " +"meg újra." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "A csatlakozáshoz add meg a nyomtató IP-címét." msgid "Initializing..." msgstr "Inicializálás…" msgid "Connection Failed. Please check the network and try again" msgstr "" +"Csatlakozás sikertelen. Kérjük, ellenőrizd a hálózatot, és próbáld újra" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"Kérjük, ellenőrizd a hálózatot, és próbáld újra. Ha a probléma továbbra is " +"fennáll, indítsd újra vagy frissítsd a nyomtatót." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "A nyomtató ki van jelentkezve, és nem tud csatlakozni." msgid "Stopped." msgstr "Megállítva." @@ -4933,9 +5011,6 @@ msgstr "Fájlok csoportosítása hónap szerint, elöl a legújabb." msgid "Show all files, recent first." msgstr "Minden fájl megjelenítése, elöl a legújabb." -msgid "Timelapse" -msgstr "Timelapse" - msgid "Switch to timelapse files." msgstr "Váltás timelapse fájlokra." @@ -4967,7 +5042,7 @@ msgid "Refresh" msgstr "Frissítés" msgid "Reload file list from printer." -msgstr "" +msgstr "Reload file list from printer." msgid "No printers." msgstr "No printers." @@ -4980,10 +5055,10 @@ msgid "Loading file list..." msgstr "Loading file list..." msgid "No files" -msgstr "" +msgstr "Nincs fájl" msgid "Load failed" -msgstr "" +msgstr "Load failed" msgid "Initialize failed (Device connection not ready)!" msgstr "Initialization failed (Device connection not ready)!" @@ -4992,15 +5067,17 @@ msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"Browsing file in SD card is not supported in current firmware. Please update " +"the printer firmware." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "LAN Connection Failed (Failed to view sdcard)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "Browsing file in SD card is not supported in LAN Only Mode." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -5027,10 +5104,10 @@ msgid "Fetching model infomations ..." msgstr "Fetching model information..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "Nem sikerült letölteni a modellinfomációt a nyomtatóról." msgid "Failed to parse model information." -msgstr "" +msgstr "Nem sikerült feldolgozni a modellinformációkat" msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -5046,6 +5123,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"File: %s\n" +"Title: %s\n" msgid "Download waiting..." msgstr "Várakozás letöltésre..." @@ -5067,22 +5146,24 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"Reconnecting the printer, the operation cannot be completed immediately, " +"please try again later." msgid "File does not exist." -msgstr "" +msgstr "A fájl nem létezik." msgid "File checksum error. Please retry." -msgstr "" +msgstr "Fájl checksum hiba. Kérjük, próbáld újra." msgid "Not supported on the current printer version." -msgstr "" +msgstr "A nyomtató jelenlegi szoftvere nem támogatja." msgid "Storage unavailable, insert SD card." -msgstr "" +msgstr "A tárhely nem elérhető; kérjük helyezz be egy MicroSD-kártyát." #, c-format, boost-format msgid "Error code: %d" -msgstr "" +msgstr "Hibakód: %d" msgid "Speed:" msgstr "Sebesség:" @@ -5139,17 +5220,19 @@ msgid "" "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." msgstr "" +"You have completed printing the mall model, \n" +"but synchronizing rating information has failed." msgid "How do you like this printing file?" -msgstr "" +msgstr "Hogy tetszik ez a nyomtatási fájl?" msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" -msgstr "" +msgstr "(Már értékelted ezt a modellt. Az új értékelésed felülírja az előzőt.)" msgid "Rate" -msgstr "" +msgstr "Értékelés" msgid "Camera" msgstr "Kamera" @@ -5167,7 +5250,7 @@ msgid "Control" msgstr "Vezérlés" msgid "Printer Parts" -msgstr "" +msgstr "Printer Parts" msgid "Print Options" msgstr "Nyomtatási lehetőségek" @@ -5224,6 +5307,8 @@ msgid "" "Please heat the nozzle to above 170 degree before loading or unloading " "filament." msgstr "" +"Kérjük, melegítsd a fúvókát 170 fok fölé a filament betöltése vagy kihúzása " +"előtt." msgid "Still unload" msgstr "Még kitöltődik" @@ -5260,95 +5345,108 @@ msgid "Can't start this without SD card." msgstr "MicroSD kártya nélkül nem indítható." msgid "Rate the Print Profile" -msgstr "" +msgstr "Értékeld a nyomtatási profilt" msgid "Comment" -msgstr "" +msgstr "Megjegyzés" msgid "Rate this print" -msgstr "" +msgstr "Értékeld ezt a nyomtatást" msgid "Add Photo" -msgstr "" +msgstr "Fénykép hozzáadása" msgid "Delete Photo" -msgstr "" +msgstr "Fénykép törlése" msgid "Submit" -msgstr "" +msgstr "Elküldés" msgid "Please click on the star first." -msgstr "" +msgstr "Kérjük, először kattints a csillagokra." msgid "InFo" -msgstr "" +msgstr "Infó" msgid "Get oss config failed." -msgstr "" +msgstr "OSS-konfiguráció letöltése sikertelen." msgid "Upload Pictrues" -msgstr "" +msgstr "Upload Pictures" msgid "Number of images successfully uploaded" -msgstr "" +msgstr "Sikeresen feltöltött képek száma" msgid " upload failed" -msgstr "" +msgstr " feltöltés sikertelen" msgid " upload config prase failed\n" -msgstr "" +msgstr " upload config prase failed\n" msgid " No corresponding storage bucket\n" -msgstr "" +msgstr " Nincs megfelelő tárolóhely\n" msgid " can not be opened\n" -msgstr "" +msgstr " cannot be opened\n" msgid "" "The following issues occurred during the process of uploading images. Do you " "want to ignore them?\n" "\n" msgstr "" +"A képek feltöltése során a következő problémák merültek fel. Szeretnéd " +"figyelmen kívül hagyni őket?\n" +"\n" msgid "info" msgstr "infó" msgid "Synchronizing the printing results. Please retry a few seconds later." -msgstr "" +msgstr "Nyomtatási eredmények szinkronizálása. Kérjük, próbáld újra később." msgid "Upload failed\n" -msgstr "" +msgstr "Feltöltés sikertelen\n" msgid "obtaining instance_id failed\n" -msgstr "" +msgstr "Az instance_id beszerzése sikertelen\n" msgid "" "Your comment result cannot be uploaded due to some reasons. As follows:\n" "\n" " error code: " msgstr "" +"Your comment result cannot be uploaded due to the following reasons:\n" +"\n" +" error code: " msgid "error message: " -msgstr "" +msgstr "hibaüzenet: " msgid "" "\n" "\n" "Would you like to redirect to the webpage for rating?" msgstr "" +"\n" +"\n" +"Would you like to redirect to the webpage to give a rating?" msgid "" "Some of your images failed to upload. Would you like to redirect to the " "webpage for rating?" msgstr "" +"Néhány képet nem sikerült feltölteni. Szeretnéd, ha átirányítanánk a " +"weboldalra az értékelés beküldéséhez?" msgid "You can select up to 16 images." -msgstr "" +msgstr "Legfeljebb 16 képet választhatsz ki." msgid "" "At least one successful print record of this print profile is required \n" "to give a positive rating(4 or 5stars)." msgstr "" +"At least one successful print record of this print profile is required \n" +"to give a positive rating (4 or 5 stars)." msgid "Status" msgstr "Állapot" @@ -5398,7 +5496,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "" +msgstr "Béta verzió letöltése" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5407,13 +5505,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "" +msgstr "Jelenlegi verzió: " msgid "Latest Version: " -msgstr "" +msgstr "Legújabb verzió: " msgid "Not for now" -msgstr "" +msgstr "Not for now" msgid "3D Mouse disconnected." msgstr "3D Mouse csatlakoztatva." @@ -5440,10 +5538,10 @@ msgid "Details" msgstr "Részletek" msgid "New printer config available." -msgstr "" +msgstr "Új nyomtatókonfiguráció érhető el." msgid "Wiki" -msgstr "" +msgstr "Wiki" msgid "Undo integration failed." msgstr "Az integráció visszavonása nem sikerült." @@ -5484,12 +5582,12 @@ msgstr[1] "" msgid "ERROR" msgstr "HIBA" -msgid "CANCELED" -msgstr "MEGSZAKÍTVA" - msgid "COMPLETED" msgstr "KÉSZ" +msgid "CANCELED" +msgstr "MEGSZAKÍTVA" + msgid "Cancel upload" msgstr "Feltöltés megszakítása" @@ -5506,10 +5604,10 @@ msgid "Export successfully." msgstr "Sikeresen exportálva" msgid "Model file downloaded." -msgstr "" +msgstr "Modellfájl letöltve." msgid "Serious warning:" -msgstr "" +msgstr "Súlyos figyelmeztetés:" msgid " (Repair)" msgstr " (Javítás)" @@ -5597,29 +5695,29 @@ msgid "Auto-recovery from step loss" msgstr "Automatikus helyreállítás lépésvesztésből" msgid "Allow Prompt Sound" -msgstr "" +msgstr "Hangjelzés engedélyezése" msgid "Filament Tangle Detect" -msgstr "" +msgstr "Filament Tangle Detection" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Nozzle Clumping Detection" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "" +msgstr "Check if the nozzle is clumping by filament or other foreign objects." msgid "Nozzle Type" -msgstr "" +msgstr "Nozzle Type" msgid "Stainless Steel" -msgstr "" +msgstr "Rozsdamentes acél" msgid "Hardened Steel" -msgstr "" +msgstr "Edzett acél" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "Globális" @@ -5710,7 +5808,7 @@ msgid "Set filaments to use" msgstr "Használni kívánt filament beállítása" msgid "Search plate, object and part." -msgstr "" +msgstr "Tálca, objektum és tárgy keresése." msgid "" "No AMS filaments. Please select a printer in 'Device' page to load AMS info." @@ -5777,6 +5875,9 @@ msgid "" "clogged when printing this filament in a closed enclosure. Please open the " "front door and/or remove the upper glass." msgstr "" +"The current heatbed temperature is relatively high. The nozzle may clog when " +"printing this filament in a closed environment. Please open the front door " +"and/or remove the upper glass." msgid "" "The nozzle hardness required by the filament is higher than the default " @@ -5791,6 +5892,8 @@ msgid "" "Enabling traditional timelapse photography may cause surface imperfections. " "It is recommended to change to smooth mode." msgstr "" +"A hagyományos timelapse engedélyezése felületi hibákat okozhat. Javasoljuk, " +"hogy válts a sima módra." msgid "Expand sidebar" msgstr "" @@ -5834,26 +5937,31 @@ msgid "Please correct them in the param tabs" msgstr "Please correct them in the Param tabs" msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "" +msgstr "The 3mf has following modified G-code in filament or printer presets:" msgid "" "Please confirm that these modified G-codes are safe to prevent any damage to " "the machine!" msgstr "" +"Kérjük, győződj meg arról, hogy ezek a módosított G-kódok biztonságosak, " +"hogy elkerüld a nyomtató esetleges károsodását!" msgid "Modified G-codes" -msgstr "" +msgstr "Modified G-code" msgid "The 3mf has following customized filament or printer presets:" msgstr "" +"A 3mf a következő egyedi filament- vagy nyomtatóbeállításokat tartalmazza:" msgid "" "Please confirm that the G-codes within these presets are safe to prevent any " "damage to the machine!" msgstr "" +"Kérjük, győződj meg arról, hogy a beállításokban található G-kódok " +"biztonságosak, hogy elkerüld a nyomtató esetleges károsodását!" msgid "Customized Preset" -msgstr "" +msgstr "Egyedi beállítás" msgid "Name of components inside step file is not UTF8 format!" msgstr "A STEP fájlon belüli komponens neve nem UTF-8 formátumban van!" @@ -5920,22 +6028,24 @@ msgid "Export STL file:" msgstr "STL fájl exportálása:" msgid "Export AMF file:" -msgstr "" +msgstr "AMF fájl exportálása:" msgid "Save file as:" msgstr "Fájl mentése mint:" msgid "Export OBJ file:" -msgstr "" +msgstr "OBJ fájl exportálása:" #, c-format, boost-format msgid "" "The file %s already exists\n" "Do you want to replace it?" msgstr "" +"The file %s already exists.\n" +"Do you want to replace it?" msgid "Comfirm Save As" -msgstr "" +msgstr "Mentés másként megerősítése" msgid "Delete object which is a part of cut object" msgstr "Delete object which is a part of cut object" @@ -5956,13 +6066,13 @@ msgid "Another export job is running." msgstr "Egy másik exportálási feladat is fut." msgid "Unable to replace with more than one volume" -msgstr "" +msgstr "Nem lehet egynél több kötetre cserélni" msgid "Error during replace" msgstr "Hiba a csere során" msgid "Replace from:" -msgstr "" +msgstr "Csere innen:" msgid "Select a new file" msgstr "Válassz egy új fájlt" @@ -5974,19 +6084,19 @@ msgid "Please select a file" msgstr "Kérjük, válassz egy fájlt" msgid "Do you want to replace it" -msgstr "" +msgstr "Do you want to replace it?" msgid "Message" -msgstr "" +msgstr "Üzenet" msgid "Reload from:" -msgstr "" +msgstr "Újratöltés innen:" msgid "Unable to reload:" -msgstr "" +msgstr "Nem sikerült újratölteni:" msgid "Error during reload" -msgstr "" +msgstr "Hiba az újratöltés során" msgid "There are warnings after slicing models:" msgstr "A modellek szeletelése a következő figyelmeztetéseket generálta:" @@ -6050,13 +6160,13 @@ msgid "prepare 3mf file..." msgstr "3mf fájl előkészítése..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "Download failed; unknown file format." msgid "downloading project ..." msgstr "projekt letöltése ..." msgid "Download failed, File size exception." -msgstr "" +msgstr "Download failed; File size exception." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6079,6 +6189,20 @@ msgstr "nem tartalmaz érvényes G-kódot." msgid "Error occurs while loading G-code file" msgstr "Hiba a G-kód betöltésének során" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Projekt fájl elvetése" @@ -6121,13 +6245,13 @@ msgid "Save G-code file as:" msgstr "G-kód fájl mentése mint:" msgid "Save SLA file as:" -msgstr "" +msgstr "SLA fájl mentése mint:" msgid "The provided file name is not valid." -msgstr "" +msgstr "A megadott fájlnév érvénytelen." msgid "The following characters are not allowed by a FAT file system:" -msgstr "" +msgstr "A következő karakterek nem engedélyezettek a FAT fájlrendszerben:" msgid "Save Sliced file as:" msgstr "Szeletelt fájl mentése mint:" @@ -6143,22 +6267,24 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try agian." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "Reason: part \"%1%\" is empty." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "Reason: part \"%1%\" does not bound a volume." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "Reason: part \"%1%\" has self intersection." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "Reason: \"%1%\" and another part have no intersection." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6208,7 +6334,7 @@ msgstr "Number of currently selected parts: %1%\n" #, boost-format msgid "Number of currently selected objects: %1%\n" -msgstr "" +msgstr "Kijelölt objektumok száma: %1%\n" #, boost-format msgid "Part name: %1%\n" @@ -6338,6 +6464,10 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"OSX rendszeren alapértelmezés szerint mindig csak egy példány fut az " +"alkalmazásból. Ugyanakkor ugyanaz az alkalmazás több példánya is futtatható " +"a parancssorból. Ebben az esetben ez a beállítás csak egy példányt " +"engedélyez." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6402,16 +6532,19 @@ msgstr "Ha engedélyezve van, hasznos tippek jelennek meg indításkor." msgid "Flushing volumes: Auto-calculate everytime the color changed." msgstr "" +"Öblítési mennyiség: Automatikus kiszámításra kerül minden színcserekor." msgid "If enabled, auto-calculate everytime the color changed." msgstr "" +"Ha engedélyezve van, automatikusan kiszámításra kerül minden színcsere " +"alkalmával." msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "" +msgstr "Flushing volumes: Auto-calculate every time the filament is changed." msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "" +msgstr "If enabled, auto-calculate every time filament is changed" msgid "Remember printer configuration" msgstr "" @@ -6428,6 +6561,8 @@ msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." msgid "Network" msgstr "" @@ -6476,6 +6611,20 @@ msgstr "" "Ha engedélyezve van, a OrcaSlicer-t állítja be alapértelmezett " "alkalmazásként a .step fájlok megnyitásához" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Maximum recent projects" @@ -6486,7 +6635,7 @@ msgid "Clear my choice on the unsaved projects." msgstr "Clear my choice on the unsaved projects." msgid "No warnings when loading 3MF with modified G-codes" -msgstr "" +msgstr "No warnings when loading 3MF with modified G-code" msgid "Auto-Backup" msgstr "Automatikus biztonsági mentés" @@ -6642,25 +6791,25 @@ msgid "Add/Remove materials" msgstr "Anyagok hozzáadása/eltávolítása" msgid "Select/Remove printers(system presets)" -msgstr "" +msgstr "Nyomtatók kiválasztása/eltávolítása (rendszerbeállítások)" msgid "Create printer" -msgstr "" +msgstr "Nyomtató létrehozása" msgid "The selected preset is null!" -msgstr "" +msgstr "A kiválasztott beállítás nulla!" msgid "End" -msgstr "" +msgstr "End" msgid "Customize" -msgstr "" +msgstr "Testreszabás" msgid "Other layer filament sequence" -msgstr "" +msgstr "Other layer filament sequence" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "Please input layer value (>= 2)." msgid "Plate name" msgstr "Plate name" @@ -6672,16 +6821,16 @@ msgid "Print sequence" msgstr "Nyomtatás sorrendje" msgid "Same as Global" -msgstr "" +msgstr "Same as Global" msgid "Disable" -msgstr "" +msgstr "Disable" msgid "Spiral vase" msgstr "Spirál (váza)" msgid "First layer filament sequence" -msgstr "" +msgstr "Kezdőréteg filament sorrendje" msgid "Same as Global Plate Type" msgstr "Same as Global Plate Type" @@ -6795,7 +6944,7 @@ msgid "(LAN)" msgstr "(LAN)" msgid "Search" -msgstr "" +msgstr "Keresés" msgid "My Device" msgstr "Saját eszköz" @@ -6831,7 +6980,7 @@ msgid "Bambu Smooth PEI Plate" msgstr "" msgid "High temperature Plate" -msgstr "" +msgstr "High Temperature Plate" msgid "Bambu Textured PEI Plate" msgstr "" @@ -6839,14 +6988,11 @@ msgstr "" msgid "Send print job to" msgstr "Nyomtatási feladat küldése" -msgid "Bed Leveling" -msgstr "Asztalszintezés" - msgid "Flow Dynamics Calibration" -msgstr "" +msgstr "Áramlásdinamikai kalibrálás" msgid "Click here if you can't connect to the printer" -msgstr "" +msgstr "Kattints ide, ha nem tudsz csatlakozni a nyomtatóhoz" msgid "send completed" msgstr "küldés befejezve" @@ -6943,6 +7089,8 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"The selected printer (%s) is incompatible with the chosen printer profile in " +"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "A timelapse rögzítéséhez egy microSD kártyára van szükség." @@ -6964,10 +7112,14 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" +"When spiral vase mode is enabled, machines with I3 structure will not " +"generate timelapse videos." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" +"A timelapse nem támogatott ebben a módban, mert a nyomtatási sorrend " +"„Tárgyanként” értékre van állítva." msgid "Errors" msgstr "Hibák" @@ -6995,26 +7147,31 @@ msgstr "" #, c-format, boost-format msgid "nozzle in preset: %s %s" -msgstr "" +msgstr "fúvóka a beállításban: %s %s" #, c-format, boost-format msgid "nozzle memorized: %.1f %s" -msgstr "" +msgstr "eltárolt fúvóka: %.1f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"Your nozzle diameter in sliced file is not consistent with the saved nozzle. " +"If you changed your nozzle lately, please go to Device > Printer Parts to " +"change settings." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" msgstr "" +"Printing high temperature material(%s material) with %s may cause nozzle " +"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" +msgstr "Please fix the error above, otherwise printing cannot continue." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7024,20 +7181,24 @@ msgstr "" msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" +"Csatlakozás a nyomtatóhoz. A csatlakozási folyamatot nem lehetett " +"megszakítani." msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." msgstr "" +"Figyelem! A „Textured PEI“ tálcán való áramláskalibrálás a durva felület " +"miatt hamis eredményeket adhat." msgid "Automatic flow calibration using Micro Lidar" -msgstr "" +msgstr "Automatic flow calibration using the Micro Lidar" msgid "Modifying the device name" msgstr "Eszköz nevének módosítása" msgid "Bind with Pin Code" -msgstr "" +msgstr "Bind with Pin Code" msgid "Send to Printer SD card" msgstr "Küldés a nyomtatóban lévő MicroSD kártyára" @@ -7048,7 +7209,7 @@ msgstr "" "folyamatban" msgid "The selected printer is incompatible with the chosen printer presets." -msgstr "" +msgstr "A nyomtató nem kompatibilis a kiválasztott nyomtatóbeállításokkal." msgid "An SD card needs to be inserted before send to printer SD card." msgstr "" @@ -7065,7 +7226,7 @@ msgid "Slice ok." msgstr "Szeletelés kész." msgid "View all Daily tips" -msgstr "" +msgstr "Napi tippek megtekintése" msgid "Failed to create socket" msgstr "Failed to create socket" @@ -7098,21 +7259,23 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"Please Find the Pin Code in Account page on printer screen,\n" +" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "" +msgstr "Can't find Pin Code?" msgid "Pin Code" -msgstr "" +msgstr "Pin Code" msgid "Binding..." -msgstr "" +msgstr "Binding..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Please confirm on the printer screen" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "Log in failed. Please check the Pin Code." msgid "Log in printer" msgstr "Bejelentkezés a nyomtatóra" @@ -7231,7 +7394,7 @@ msgstr "" "hibák a nyomtatott tárgyon. Engedélyezed a törlőtornyot?" msgid "Still print by object?" -msgstr "" +msgstr "Továbbra is tárgyanként szeretnél nyomtatni?" msgid "" "We have added an experimental style \"Tree Slim\" that features smaller " @@ -7290,15 +7453,19 @@ msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " "height limits ,this may cause printing quality issues." msgstr "" +"A rétegmagasság meghaladja a Nyomtatóbeállítások -> Extruder -> " +"Rétegmagasság limitek menüpontban megadott értéket, ez minőségbeli " +"problémákat okozhat a nyomtatás során." msgid "Adjust to the set range automatically? \n" msgstr "" +"Szeretnéd az értéket automatikusan a beállított tartományhoz igazítani? \n" msgid "Adjust" -msgstr "" +msgstr "Módosítás" msgid "Ignore" -msgstr "" +msgstr "Mellőzés" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7306,6 +7473,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " +"printing complications." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7313,6 +7484,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications. Please use with the latest printer firmware." msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7383,7 +7558,7 @@ msgid "Acceleration" msgstr "Gyorsulás" msgid "Jerk(XY)" -msgstr "" +msgstr "Jerk(XY)" msgid "Raft" msgstr "Tutaj" @@ -7410,7 +7585,7 @@ msgid "Post-processing Scripts" msgstr "Post-processing Scripts" msgid "Notes" -msgstr "" +msgstr "Notes" msgid "Frequent" msgstr "Gyakori" @@ -7486,13 +7661,16 @@ msgstr "" "a filament nem támogatja az Engineering Plate-re történő nyomtatást" msgid "Smooth PEI Plate / High Temp Plate" -msgstr "" +msgstr "Smooth PEI Plate / High Temp Plate" msgid "" "Bed temperature when Smooth PEI Plate/High temperature plate is installed. " "Value 0 means the filament does not support to print on the Smooth PEI Plate/" "High Temp Plate" msgstr "" +"Az asztal hőmérséklete Smooth PEI / High Temperature tálca használatakor. A " +"0 érték azt jelenti, hogy a filament nem támogatja Smooth PEI / High " +"Temperature tálcára történő nyomtatást" msgid "Textured PEI Plate" msgstr "Textured PEI Plate" @@ -7546,13 +7724,13 @@ msgid "Auxiliary part cooling fan" msgstr "Kiegészítő tárgyhűtő ventilátor" msgid "Exhaust fan" -msgstr "" +msgstr "Elszívóventilátor" msgid "During print" -msgstr "" +msgstr "Nyomtatás közben" msgid "Complete print" -msgstr "" +msgstr "Teljes nyomtatás" msgid "Filament start G-code" msgstr "Filament kezdő G-kód" @@ -7603,7 +7781,7 @@ msgid "Machine end G-code" msgstr "Gép befejező G-kód" msgid "Printing by object G-code" -msgstr "" +msgstr "Nyomtatás objektumonként G-kód" msgid "Before layer change G-code" msgstr "Rétegváltás előtti G-kód" @@ -7612,7 +7790,7 @@ msgid "Layer change G-code" msgstr "Rétegváltás G-kód" msgid "Time lapse G-code" -msgstr "" +msgstr "Timelapse G-kód" msgid "Change filament G-code" msgstr "Filament csere G-kód" @@ -7664,9 +7842,12 @@ msgid "" "\n" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Disable it in order to enable Firmware Retraction?" msgid "Firmware Retraction" -msgstr "" +msgstr "Firmware-ben megadott visszahúzás" msgid "Detached" msgstr "Különálló" @@ -7676,9 +7857,11 @@ msgid "" "%d Filament Preset and %d Process Preset is attached to this printer. Those " "presets would be deleted if the printer is deleted." msgstr "" +"A(z) %d filamentbeállítás és a(z) %d folyamatbeállítás ehhez a nyomtatóhoz " +"kapcsolódik. Ha törlöd a nyomtatót, akkor ezek a beállítások is törlődnek." msgid "Presets inherited by other presets can not be deleted!" -msgstr "" +msgstr "A más beállítások által örökölt beállítások nem törölhetők!" msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." @@ -7700,6 +7883,9 @@ msgid "" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" +"Biztosan törlöd a kiválasztott beállítást? \n" +"Ha ez a filament jelenleg használatban van a nyomtatón, kérjük, töröld az " +"adott férőhelyen a filamentadatokat." #, boost-format msgid "Are you sure to %1% the selected preset?" @@ -7804,12 +7990,14 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "You have changed some settings of preset \"%1%\". " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"You can save or discard the preset values you have modified." msgid "" "\n" @@ -7818,7 +8006,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "" +msgstr "You have previously modified your settings." msgid "" "\n" @@ -7971,7 +8159,7 @@ msgid "Auto-Calc" msgstr "Automatikus számítás" msgid "Re-calculate" -msgstr "" +msgstr "Újraszámítás" msgid "Flushing volumes for filament change" msgstr "Filament csere tiszítási mennyisége" @@ -8011,10 +8199,10 @@ msgid "To" msgstr "Eddig:" msgid "Bambu Network plug-in not detected." -msgstr "" +msgstr "A Bambu Network plug-in nem található." msgid "Click here to download it." -msgstr "" +msgstr "Kattints ide a letöltéshez." msgid "Login" msgstr "Bejelentkezés" @@ -8047,7 +8235,7 @@ msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "3Dconnexion-eszközbeállítások párbeszédablak megjelenítése/elrejtése" msgid "Switch table page" -msgstr "" +msgstr "Váltás táblázatra" msgid "Show keyboard shortcuts list" msgstr "Gyorsgombok listájának megjelenítése" @@ -8314,49 +8502,49 @@ msgid "New version of Orca Slicer" msgstr "A Orca Slicer új verziója" msgid "Skip this Version" -msgstr "" +msgstr "Verzió kihagyása" msgid "Done" msgstr "Done" msgid "resume" -msgstr "" +msgstr "resume" msgid "Resume Printing" -msgstr "" +msgstr "Resume Printing" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Resume Printing (defects acceptable)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Resume Printing (problem solved)" msgid "Stop Printing" -msgstr "" +msgstr "Stop Printing" msgid "Check Assistant" -msgstr "" +msgstr "Check Assistant" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Filament Extruded, Continue" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Not Extruded Yet, Retry" msgid "Finished, Continue" -msgstr "" +msgstr "Finished, Continue" msgid "Load Filament" msgstr "Filament betöltés" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Filament Loaded, Resume" msgid "View Liveview" -msgstr "" +msgstr "View Liveview" msgid "Confirm and Update Nozzle" -msgstr "" +msgstr "Fúvóka lecserélésének megerősítése" msgid "LAN Connection Failed (Sending print file)" msgstr "LAN kapcsolódás sikertelen (nyomtatási fájl küldése)" @@ -8385,20 +8573,25 @@ msgstr "Hol találom a nyomtató IP címét és a hozzáférési kódot?" msgid "Step 3: Ping the IP address to check for packet loss and latency." msgstr "" +"3. lépés: Pingeld meg az IP-címet a csomagveszteség és késleltetés " +"ellenőrzéséhez." msgid "Test" -msgstr "" +msgstr "Teszt" msgid "IP and Access Code Verified! You may close the window" -msgstr "" +msgstr "IP és hozzáférési kód leellenőrizve! Bezárhatod az ablakot" msgid "Connection failed, please double check IP and Access Code" msgstr "" +"Sikertelen kapcsolódás, kérjük, ellenőrizd az IP-t és a hozzáférési kódot" msgid "" "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" msgstr "" +"Sikertelen kapcsolódás! Ha az IP-cím és a hozzáférési kód helyes,\n" +"folytasd a 3. lépéssel a hálózati problémák elhárításához" msgid "Model:" msgstr "Modell:" @@ -8413,7 +8606,7 @@ msgid "Update firmware" msgstr "Firmware frissítése" msgid "Beta version" -msgstr "" +msgstr "Béta verzió" msgid "Latest version" msgstr "Legfrissebb verzió" @@ -8789,26 +8982,33 @@ msgid "" msgstr "" msgid "Variable layer height is not supported with Organic supports." -msgstr "" +msgstr "A változó rétegmagasság nem működik az organikus támaszokkal." msgid "" "Different nozzle diameters and different filament diameters is not allowed " "when prime tower is enabled." msgstr "" +"Nem használhatsz különböző fúvókaátmérőt és filamentátmérőt, ha a " +"törlőtorony engedélyezve van." msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" +"A törlőtorony jelenleg csak relatív extruder címzéssel használható " +"(use_relative_e_distances=1)." msgid "" "Ooze prevention is currently not supported with the prime tower enabled." msgstr "" +"A szivárgás elleni védelem nem működik, ha a törlőtorony engedélyezve van." msgid "" "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" +"A törlőtorony jelenleg csak a Marlin, RepRap/Sprinter, RepRapFirmware és " +"Repetier G-kód szoftverekkel használható." msgid "The prime tower is not supported in \"By object\" print." msgstr "A prime tower is not supported in “By object” print." @@ -9037,11 +9237,13 @@ msgstr "" "https://username:password@your-octopi-address/" msgid "Device UI" -msgstr "" +msgstr "Eszköz UI" msgid "" "Specify the URL of your device user interface if it's not same as print_host" msgstr "" +"Add meg az eszköz felhasználói felületének URL-címét, ha az nem azonos a " +"print_host címével." msgid "API Key / Password" msgstr "API kulcs / jelszó" @@ -9201,16 +9403,16 @@ msgid "Engineering Plate" msgstr "Engineering Plate" msgid "First layer print sequence" -msgstr "" +msgstr "Az első réteg nyomtatási sorrendje" msgid "Other layers print sequence" -msgstr "" +msgstr "Other layers print sequence" msgid "The number of other layers print sequence" -msgstr "" +msgstr "The number of other layers print sequence" msgid "Other layers filament sequence" -msgstr "" +msgstr "Other layers filament sequence" msgid "This G-code is inserted at every layer change before lifting z" msgstr "Ez a G-kód minden rétegváltáshoz bekerül a Z tengely emelése előtt." @@ -9344,12 +9546,14 @@ msgid "" msgstr "" msgid "Top surface flow ratio" -msgstr "" +msgstr "Felső felület anyagáramlása" msgid "" "This factor affects the amount of material for top solid infill. You can " "decrease it slightly to have smooth surface finish" msgstr "" +"Ez a beállítás a felső szilárd kitöltésnél használt anyag mennyiségét " +"befolyásolja. Kis mértékben csökkentve simább felület érhető el vele." msgid "Bottom surface flow ratio" msgstr "" @@ -9494,7 +9698,7 @@ msgid "" msgstr "" msgid "mm/s or %" -msgstr "" +msgstr "mm/s vagy %" msgid "External" msgstr "" @@ -9637,7 +9841,7 @@ msgid "Default process profile when switch to this machine profile" msgstr "Alapértelmezett folyamat profil, ha erre a gép profilra váltasz" msgid "Activate air filtration" -msgstr "" +msgstr "Activate air filtration" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" @@ -9649,6 +9853,8 @@ msgid "" "Speed of exhaust fan during printing.This speed will overwrite the speed in " "filament custom gcode" msgstr "" +"Az elszívó ventilátor sebessége nyomtatás közben: ez a sebesség felülírja a " +"sebességet a filament egyéni G-kódjában." msgid "Speed of exhaust fan after printing completes" msgstr "" @@ -9756,12 +9962,14 @@ msgid "End G-code when finish the whole printing" msgstr "Befejező G-kód az egész nyomtatás befejezésekor" msgid "Between Object Gcode" -msgstr "" +msgstr "Objektumok közötti G-kód" msgid "" "Insert Gcode between objects. This parameter will only come into effect when " "you print your models object by object" msgstr "" +"A tárgyak nyomtatása között használt G-kód. Ez a paraméter csak akkor " +"működik, ha a nyomtatás tárgyankénti sorrendben történik." msgid "End G-code when finish the printing of this filament" msgstr "Befejező G-kód a filament nyomtatásának befejezésekor" @@ -9823,7 +10031,7 @@ msgid "Line pattern of bottom surface infill, not bridge infill" msgstr "Ez az alsó felület kitöltésének mintája, kivéve az áthidalásokat." msgid "Internal solid infill pattern" -msgstr "" +msgstr "Belső tömör kitöltés mintája" msgid "" "Line pattern of internal solid infill. if the detect narrow internal solid " @@ -9843,7 +10051,7 @@ msgstr "" "a belső fal sebessége." msgid "Small perimeters" -msgstr "" +msgstr "Kis peremek" msgid "" "This separate setting will affect the speed of perimeters having radius <= " @@ -9858,6 +10066,8 @@ msgstr "" msgid "" "This sets the threshold for small perimeter length. Default threshold is 0mm" msgstr "" +"A kis peremek hosszának küszöbértékét határozza meg. Az alapértelmezett " +"érték 0 mm" msgid "Walls printing order" msgstr "" @@ -9897,7 +10107,7 @@ msgid "Inner/Outer/Inner" msgstr "" msgid "Print infill first" -msgstr "" +msgstr "Kitöltés a falak előtt" msgid "" "Order of wall/infill. When the tickbox is unchecked the walls are printed " @@ -9958,10 +10168,10 @@ msgstr "" "nyomtatás során az ütközések elkerülésére szolgál." msgid "Nozzle height" -msgstr "" +msgstr "Fúvóka magassága" msgid "The height of nozzle tip." -msgstr "" +msgstr "A fúvókacsúcs magassága." msgid "Bed mesh min" msgstr "" @@ -10033,7 +10243,7 @@ msgstr "" "hogy túl sok vagy kevés az anyagáramlás." msgid "Enable pressure advance" -msgstr "" +msgstr "Nyomáselőtolás engedélyezése" msgid "" "Enable pressure advance, auto calibration result will be overwriten once " @@ -10079,10 +10289,10 @@ msgid "Default filament color" msgstr "Alapértelmezett filament szín" msgid "Filament notes" -msgstr "" +msgstr "Filament notes" msgid "You can put your notes regarding the filament here." -msgstr "" +msgstr "You can put your notes regarding the filament here." msgid "Required nozzle HRC" msgstr "Szükséges fúvóka HRC-érték" @@ -10282,13 +10492,16 @@ msgstr "" "van használva." msgid "Softening temperature" -msgstr "" +msgstr "Lágyulási hőmérséklet" msgid "" "The material softens at this temperature, so when the bed temperature is " "equal to or greater than it, it's highly recommended to open the front door " "and/or remove the upper glass to avoid cloggings." msgstr "" +"The material softens at this temperature, so when the bed temperature is " +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogs." msgid "Price" msgstr "Költség" @@ -10300,10 +10513,10 @@ msgid "money/kg" msgstr "pénz/kg" msgid "Vendor" -msgstr "" +msgstr "Gyártó" msgid "Vendor of filament. For show only" -msgstr "" +msgstr "Filamentgyártó." msgid "(Undefined)" msgstr "(Undefined)" @@ -10378,7 +10591,7 @@ msgid "Lightning" msgstr "Világítás" msgid "Cross Hatch" -msgstr "" +msgstr "Cross Hatch" msgid "Sparse infill anchor length" msgstr "" @@ -10448,12 +10661,14 @@ msgid "" msgstr "" msgid "mm/s² or %" -msgstr "" +msgstr "mm/s² or %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage (e." "g. 100%), it will be calculated based on the default acceleration." msgstr "" +"Gyorsulás a ritkás kitöltéseknél. Ha az érték százalékban van megadva (pl. " +"100%), akkor az alapértelmezett gyorsulás alapján kerül kiszámításra." msgid "" "Acceleration of internal solid infill. If the value is expressed as a " @@ -10469,13 +10684,14 @@ msgstr "" "tárgyasztalhoz való tapadást" msgid "Enable accel_to_decel" -msgstr "" +msgstr "accel_to_decel engedélyezése" msgid "Klipper's max_accel_to_decel will be adjusted automatically" msgstr "" +"A Klipper max_accel_to_decel értékét a rendszer automatikusan beállítja" msgid "accel_to_decel" -msgstr "" +msgstr "accel_to_decel" #, c-format, boost-format msgid "" @@ -10483,10 +10699,10 @@ msgid "" msgstr "" msgid "Jerk of outer walls" -msgstr "" +msgstr "Jerk a külső falaknál" msgid "Jerk of inner walls" -msgstr "" +msgstr "Jerk a belső falaknál" msgid "Jerk for top surface" msgstr "" @@ -10607,7 +10823,7 @@ msgid "Whether to apply fuzzy skin on the first layer" msgstr "" msgid "Filter out tiny gaps" -msgstr "" +msgstr "Apró rések szűrése" msgid "Layers and Perimeters" msgstr "Rétegek és peremek" @@ -10623,13 +10839,16 @@ msgstr "" "vonalszélességű, és lassabban kell nyomtatni" msgid "Precise Z height" -msgstr "" +msgstr "Precise Z height" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"Enable this to get precise z height of object after slicing. It will get the " +"precise object height by fine-tuning the layer heights of the last few " +"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "Íves illesztés" @@ -10699,10 +10918,10 @@ msgid "HRC" msgstr "HRC" msgid "Printer structure" -msgstr "" +msgstr "Nyomtató szerkezete" msgid "The physical arrangement and components of a printing device" -msgstr "" +msgstr "A nyomtató fizikai felépítése és alkatrészei" msgid "CoreXY" msgstr "" @@ -10717,10 +10936,12 @@ msgid "Delta" msgstr "" msgid "Best object position" -msgstr "" +msgstr "Legjobb tárgypozíció" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." msgstr "" +"A legjobb automatikus elrendezés tartománya [0,1] a tárgyasztal alakja " +"szerint." msgid "" "Enable this option if machine has auxiliary part cooling fan. G-code " @@ -10766,7 +10987,7 @@ msgid "money/h" msgstr "" msgid "Support control chamber temperature" -msgstr "" +msgstr "Kamrahőmérséklet-szabályozás engedélyezése" msgid "" "This option is enabled if machine support controlling chamber temperature\n" @@ -10774,7 +10995,7 @@ msgid "" msgstr "" msgid "Support air filtration" -msgstr "" +msgstr "Légszűrés támogatása" msgid "" "Enable this if printer support air filtration\n" @@ -10807,7 +11028,7 @@ msgid "" msgstr "" msgid "Exclude objects" -msgstr "" +msgstr "Tárgyak kizárása" msgid "Enable this option to add EXCLUDE OBJECT command in g-code" msgstr "" @@ -10867,25 +11088,31 @@ msgid "Speed of internal sparse infill" msgstr "A belső ritkás kitöltés sebessége" msgid "Interface shells" -msgstr "" +msgstr "Interface shells" 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 the generation of solid shells between adjacent materials/volumes. " +"Useful for multi-extruder prints with translucent materials or manual " +"soluble support material" msgid "Maximum width of a segmented region" -msgstr "" +msgstr "Szegmentált régió maximális szélessége" msgid "Maximum width of a segmented region. Zero disables this feature." msgstr "" +"Szegmentált régió maximális szélessége. A 0 érték letiltja ezt a funkciót." msgid "Interlocking depth of a segmented region" -msgstr "" +msgstr "Szegmentált régió összekapcsolódási mélysége" msgid "Interlocking depth of a segmented region. Zero disables this feature." msgstr "" +"Szegmentált régió összekapcsolódási mélysége. A 0 érték letiltja ezt a " +"funkciót." msgid "Ironing Type" msgstr "Vasalás típusa" @@ -11364,10 +11591,10 @@ msgid "" msgstr "" msgid "Printer notes" -msgstr "" +msgstr "Printer notes" msgid "You can put your notes regarding the printer here." -msgstr "" +msgstr "You can put your notes regarding the printer here." msgid "Raft contact Z distance" msgstr "Tutaj érintkezés Z távolság" @@ -11451,7 +11678,7 @@ msgstr "" "állítsd nullára" msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "Long retraction when cut (experimental)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -11459,14 +11686,20 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge.While this reduces flush " +"significantly, it may also raise the risk of nozzle clogs or other printing " +"problems." msgid "Retraction distance when cut" -msgstr "" +msgstr "Retraction distance when cut" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" msgstr "" +"Experimental feature. Retraction length before cutting off during filament " +"change" msgid "Z hop when retract" msgstr "Z-tengely emelés visszahúzáskor" @@ -11482,20 +11715,24 @@ msgstr "" "körkörös mozgás megelőzheti a szálazást." msgid "Z hop lower boundary" -msgstr "" +msgstr "Z-emelés alsó határa" msgid "" "Z hop will only come into effect when Z is above this value and is below the " "parameter: \"Z hop upper boundary\"" msgstr "" +"A Z-tengely emelése csak akkor történik meg, ha az emelés mértéke nagyobb " +"ennél az értéknél, de kisebb a „Z-emelés felső határánál“" msgid "Z hop upper boundary" -msgstr "" +msgstr "Z-emelés felső határa" msgid "" "If this value is positive, Z hop will only come into effect when Z is above " "the parameter: \"Z hop lower boundary\" and is below this value" msgstr "" +"Ha ez az érték pozitív, a Z-emelés csak akkor történik meg, ha az emelés " +"mértéke a „Z-emelés alsó határánál“ nagyobb, de kisebb ennél az értéknél" msgid "Z hop type" msgstr "" @@ -11543,7 +11780,7 @@ msgid "Top and Bottom" msgstr "" msgid "Extra length on restart" -msgstr "" +msgstr "Extra hossz újraindításkor" msgid "" "When the retraction is compensated after the travel move, the extruder will " @@ -11572,7 +11809,7 @@ msgstr "" "sebességet jelent a visszahúzással" msgid "Use firmware retraction" -msgstr "" +msgstr "Firmware-ben megadott visszahúzás használata" msgid "" "This experimental setting uses G10 and G11 commands to have the firmware " @@ -11616,7 +11853,7 @@ msgid "" msgstr "" msgid "Seam gap" -msgstr "" +msgstr "Varrat hézag" msgid "" "In order to reduce the visibility of the seam in a closed loop extrusion, " @@ -11630,17 +11867,20 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" +"Use scarf joint to minimize seam visibility and increase seam strength." msgid "Conditional scarf joint" -msgstr "" +msgstr "Conditional scarf joint" msgid "" "Apply scarf joints only to smooth perimeters where traditional seams do not " "conceal the seams at sharp corners effectively." msgstr "" +"Apply scarf joints only to smooth perimeters where traditional seams do not " +"conceal the seams at sharp corners effectively." msgid "Conditional angle threshold" -msgstr "" +msgstr "Conditional angle threshold" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -11683,39 +11923,44 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "" +msgstr "Scarf start height" msgid "" "Start height of the scarf.\n" "This amount can be specified in millimeters or as a percentage of the " "current layer height. The default value for this parameter is 0." msgstr "" +"Start height of the scarf.\n" +"This amount can be specified in millimeters or as a percentage of the " +"current layer height. The default value for this parameter is 0." msgid "Scarf around entire wall" -msgstr "" +msgstr "Scarf around entire wall" msgid "The scarf extends to the entire length of the wall." -msgstr "" +msgstr "The scarf extends to the entire length of the wall." msgid "Scarf length" -msgstr "" +msgstr "Scarf length" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" +"Length of the scarf. Setting this parameter to zero effectively disables the " +"scarf." msgid "Scarf steps" -msgstr "" +msgstr "Scarf steps" msgid "Minimum number of segments of each scarf." -msgstr "" +msgstr "Minimum number of segments of each scarf." msgid "Scarf joint for inner walls" -msgstr "" +msgstr "Scarf joint for inner walls" msgid "Use scarf joint for inner walls as well." -msgstr "" +msgstr "Use scarf joint for inner walls as well." msgid "Role base wipe speed" msgstr "" @@ -11750,7 +11995,7 @@ msgid "" msgstr "" msgid "Wipe speed" -msgstr "" +msgstr "Törlés sebessége" msgid "" "The wipe speed is determined by the speed setting specified in this " @@ -11758,6 +12003,10 @@ msgid "" "be calculated based on the travel speed setting above.The default value for " "this parameter is 80%" msgstr "" +"A törlés sebességét az itt megadott beállítás határozza meg. Ha az érték " +"százalékban van megadva (pl. 80%), akkor azt a rendszer a mozgási " +"sebességbeállítás alapján számítja ki. Ennek a paraméternek az " +"alapértelmezett értéke 80%" msgid "Skirt distance" msgstr "Szoknya távolsága" @@ -11861,20 +12110,24 @@ msgstr "" "varratok" msgid "Smooth Spiral" -msgstr "" +msgstr "Smooth Spiral" msgid "" "Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " "at all, even in the XY directions on walls that are not vertical" msgstr "" +"Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " +"at all, even in the XY directions on walls that are not vertical" msgid "Max XY Smoothing" -msgstr "" +msgstr "Max XY Smoothing" msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiralIf " "expressed as a %, it will be computed over nozzle diameter" msgstr "" +"Maximum distance to move points in XY to try to achieve a smooth spiral. If " +"expressed as a %, it will be computed over nozzle diameter" msgid "" "If smooth or traditional mode is selected, a timelapse video will be " @@ -12053,10 +12306,12 @@ msgstr "" "vagy egyéb kiálló részek." msgid "Remove small overhangs" -msgstr "" +msgstr "Kis túlnyúlások eltávolítása" msgid "Remove small overhangs that possibly need no supports." msgstr "" +"Eltávolítja a kis túlnyúlásokat, amelyek esetleg nem igényelnek " +"alátámasztást." msgid "Top Z distance" msgstr "Z távolság" @@ -12084,11 +12339,13 @@ msgstr "" "felhasználásra." msgid "Avoid interface filament for base" -msgstr "" +msgstr "Kerülje a támaszanyag használatát az alaphoz" msgid "" "Avoid using support interface filament to print support base if possible." msgstr "" +"Ha lehetséges, kerüli a dedikált támaszanyag (filament) használatát a " +"támaszalap nyomtatásához." msgid "" "Line width of support. If expressed as a %, it will be computed over the " @@ -12124,10 +12381,10 @@ msgid "Bottom interface layers" msgstr "Alsó érintkező rétegek" msgid "Number of bottom interface layers" -msgstr "" +msgstr "Alsó érintkezőrétegek száma" msgid "Same as top" -msgstr "" +msgstr "Ugyanaz, mint a felső" msgid "Top interface spacing" msgstr "Felső érintkező felület térköze" @@ -12336,10 +12593,10 @@ msgid "" msgstr "" msgid "Support wall loops" -msgstr "" +msgstr "Támaszfalak száma" msgid "This setting specify the count of walls around support" -msgstr "" +msgstr "A támasz körüli falak száma" msgid "Tree support with infill" msgstr "Fa támasz kitöltéssel" @@ -12361,7 +12618,7 @@ msgid "" msgstr "" msgid "Chamber temperature" -msgstr "" +msgstr "Kamra hőmérséklete" msgid "" "Higher chamber temperature can help suppress or reduce warping and " @@ -12372,6 +12629,12 @@ msgid "" "high to avoid cloggings, so 0 which stands for turning off is highly " "recommended" msgstr "" +"Higher chamber temperature can help suppress or reduce warping and " +"potentially lead to higher interlayer bonding strength for high temperature " +"materials like ABS, ASA, PC, PA and so on. At the same time, the air " +"filtration of ABS and ASA will get worse.While for PLA, PETG, TPU, PVA and " +"other low temperature materials, the actual chamber temperature should not " +"be high to avoid clogs, so 0 (turned off) is highly recommended." msgid "Nozzle temperature for layers after the initial one" msgstr "Fúvóka hőmérséklete az első réteg után" @@ -12516,17 +12779,29 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -12655,7 +12930,7 @@ msgid "" msgstr "" msgid "Use relative E distances" -msgstr "" +msgstr "Relatív E távolságok használata" msgid "" "Relative extrusion is recommended when using \"label_objects\" option.Some " @@ -13211,7 +13486,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj: failed to parse" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "load mtl in obj: failed to parse" msgid "The file contains polygons with more than 4 vertices." msgstr "The file contains polygons with more than 4 vertices." @@ -13226,67 +13501,69 @@ msgid "This OBJ file couldn't be read because it's empty." msgstr "This OBJ file couldn't be read because it's empty." msgid "Flow Rate Calibration" -msgstr "" +msgstr "Anyagáramlás kalibrálása" msgid "Max Volumetric Speed Calibration" -msgstr "" +msgstr "Max. volumetrikus sebesség kalibrálása" msgid "Manage Result" -msgstr "" +msgstr "Eredmények kezelése" msgid "Manual Calibration" -msgstr "" +msgstr "Kézi kalibrálás" msgid "Result can be read by human eyes." -msgstr "" +msgstr "Az eredmények könnyen átláthatóak és megérthetőek." msgid "Auto-Calibration" -msgstr "" +msgstr "Auto-Calibration" msgid "We would use Lidar to read the calibration result" -msgstr "" +msgstr "A Lidar segítségével olvassuk le a kalibrálás eredményét" msgid "Prev" -msgstr "" +msgstr "Előző" msgid "Recalibration" -msgstr "" +msgstr "Újrakalibrálás" msgid "Calibrate" -msgstr "" +msgstr "Kalibrálás" msgid "Finish" msgstr "Kész" msgid "How to use calibration result?" -msgstr "" +msgstr "Hogyan használjam a kalibrálási eredményeket?" msgid "" "You could change the Flow Dynamics Calibration Factor in material editing" -msgstr "" +msgstr "Az anyag beállításaiban módosíthatod az áramlásdinamikai értékeket" msgid "" "The current firmware version of the printer does not support calibration.\n" "Please upgrade the printer firmware." msgstr "" +"A nyomtató jelenlegi firmware-verziója nem támogatja a kalibrálást.\n" +"Kérjük, frissítsd a nyomtató firmware-jét." msgid "Calibration not supported" -msgstr "" +msgstr "Kalibrálás nem támogatott" msgid "Error desc" -msgstr "" +msgstr "Hibaleírás" msgid "Extra info" -msgstr "" +msgstr "Extra infó" msgid "Flow Dynamics" -msgstr "" +msgstr "Áramlásdinamika" msgid "Flow Rate" -msgstr "" +msgstr "Anyagáramlás" msgid "Max Volumetric Speed" -msgstr "" +msgstr "Max. volumetrikus sebesség" #, c-format, boost-format msgid "" @@ -13296,38 +13573,45 @@ msgid "" "End value: > Start value\n" "Value step: >= %.3f)" msgstr "" +"Kérjük, érvényes értékeket adj meg:\n" +"Kezdő érték: >= %.1f\n" +"Végérték: <= %.1f\n" +"Végérték: > Kezdő érték\n" +"Lépésköz: >=) %.3f" msgid "The name cannot be empty." -msgstr "" +msgstr "A név nem lehet üres." #, c-format, boost-format msgid "The selected preset: %s is not found." -msgstr "" +msgstr "A kiválasztott beállítás: %s nem található." msgid "The name cannot be the same as the system preset name." -msgstr "" +msgstr "A név nem lehet azonos egy rendszerbeállítás nevével." msgid "The name is the same as another existing preset name" -msgstr "" +msgstr "A név megegyezik egy másik meglévő beállítás nevével" msgid "create new preset failed." -msgstr "" +msgstr "Új beállítás létrehozása sikertelen." msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" +"Are you sure you want to cancel the current calibration and return to the " +"home page?" msgid "No Printer Connected!" -msgstr "" +msgstr "Nincs nyomtató csatlakoztatva!" msgid "Printer is not connected yet." -msgstr "" +msgstr "Még nincs csatlakoztatva nyomtató." msgid "Please select filament to calibrate." -msgstr "" +msgstr "Kérjük, válaszd ki a kalibrálandó filamenteket." msgid "The input value size must be 3." -msgstr "" +msgstr "A bemeneti értéknek 3-nak kell lennie." msgid "" "This machine type can only hold 16 history results per nozzle. You can " @@ -13336,15 +13620,20 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"This machine type can only hold 16 historical results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results. \n" +"Do you still want to continue the calibration?" msgid "Connecting to printer..." -msgstr "" +msgstr "Csatlakozás a nyomtatóhoz..." msgid "The failed test result has been dropped." -msgstr "" +msgstr "A sikertelen teszteredményt eltávolítottuk." msgid "Flow Dynamics Calibration result has been saved to the printer" -msgstr "" +msgstr "Az áramlásdinamikai kalibráció eredményeit elmentette a nyomtató" #, c-format, boost-format msgid "" @@ -13352,27 +13641,34 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"Már létezik egy ugyanilyen nevű, korábbi kalibrálási eredmény: %s. Csak egy " +"azonos nevű eredményt lehet elmenteni. Biztos, hogy felül akarod írni a " +"korábbi eredményeket?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"This machine type can only hold %d historical results per nozzle. This " +"result will not be saved." msgid "Internal Error" -msgstr "" +msgstr "Belső hiba" msgid "Please select at least one filament for calibration" -msgstr "" +msgstr "Kérjük, válassz ki legalább egy filamentet a kalibráláshoz." msgid "Flow rate calibration result has been saved to preset" -msgstr "" +msgstr "Az anyagáramlás kalibrálásának eredményeit elmentettük a beállításokba" msgid "Max volumetric speed calibration result has been saved to preset" msgstr "" +"A maximális volumetrikus sebesség kalibrálásának eredményét elmentettük a " +"beállításokban" msgid "When do you need Flow Dynamics Calibration" -msgstr "" +msgstr "Mikor van szükség az áramlásdinamika kalibrálására?" msgid "" "We now have added the auto-calibration for different filaments, which is " @@ -13384,9 +13680,17 @@ msgid "" "3. If the max volumetric speed or print temperature is changed in the " "filament setting." msgstr "" +"Mostantól elérhető a különböző filamentek automatikus kalibrálása, amely " +"teljesen automatizált, és az eredményt a nyomtató elmenti. A kalibrálást " +"csak a következő esetekben kell elvégezned:\n" +"1. Ha új, különböző márkájú filamenteket töltesz be, vagy a filament " +"nedves.\n" +"2. Ha a fúvóka elhasználódott vagy kicserélted egy újra.\n" +"3. Ha a maximális volumetrikus sebesség vagy a nyomtatási hőmérséklet " +"megváltozott a filamentbeállításokban." msgid "About this calibration" -msgstr "" +msgstr "Információ a kalibrálásról" msgid "" "Please find the details of Flow Dynamics Calibration from our wiki.\n" @@ -13407,9 +13711,27 @@ msgid "" "cause the result not exactly the same in each calibration. We are still " "investigating the root cause to do improvements with new updates." msgstr "" +"Az áramlásdinamikai kalibráció részleteit a wikiben találod.\n" +"\n" +"Általában nincs szükség a kalibrálásra. Ha egyszínű / egy anyagból álló " +"nyomtatást indítasz, és a nyomtatás indítása menüben be van jelölve az " +"„Áramlásdinamika kalibrálás“ opció, a nyomtató a nyomtatás előtt kalibrálja " +"a filamenteket. Ha többszínű / több anyagból álló nyomtatást indítasz, a " +"nyomtató minden filamentváltáskor az alapértelmezett kompenzációs paramétert " +"használja a filamentekhez, ami a legtöbb esetben jó eredményt ad.\n" +"\n" +"Felhívjuk a figyelmed, hogy néhány esetben a kalibrálás eredménye " +"megbízhatatlan lehet: texturált tálcát / rossz tapadású tálcát használsz a " +"kalibráláshoz. (Kérjük, mosd le a tálcát vagy használj ragasztót!) További " +"információkat a wikiben találhatsz.\n" +"\n" +"A kalibrációs eredmények körülbelül 10 százalékos szórást mutatnak a " +"tesztjeinkben, ami miatt előfordulhat, hogy az eredmények nem azonosak " +"minden kalibrációnál. Még vizsgáljuk a kiváltó okot, hogy a jövőbeni " +"frissítésekkel tovább javíthassuk ezt a funkciót." msgid "When to use Flow Rate Calibration" -msgstr "" +msgstr "Mikor van szükség az anyagáramlás kalibrálására?" msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " @@ -13422,12 +13744,25 @@ msgid "" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " "they should be." msgstr "" +"After using Flow Dynamics Calibration, there might still be some extrusion " +"issues, such as:\n" +"1. Over-Extrusion: Excess material on your printed object, forming blobs or " +"zits, or the layers seem thicker than expected and not uniform.\n" +"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " +"top layer of the model, even when printing slowly.\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " +"they should be." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" "PLA used in RC planes. These materials expand greatly when heated, and " "calibration provides a useful reference flow rate." msgstr "" +"Ezenkívül az anyagáramlás kalibrálása létfontosságú az olyan habzó anyagok " +"esetében, mint az RC repülőkben használt LW-PLA. Ezek az anyagok " +"melegítéskor nagymértékben tágulnak, és a kalibrálás hasznos referencia-" +"anyagáramlást biztosít." msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " @@ -13437,6 +13772,12 @@ msgid "" "you still see the listed defects after you have done other calibrations. For " "more details, please check out the wiki article." msgstr "" +"Az anyagáramlás kalibrálása a várt és a tényleges extrudált mennyiségek " +"arányát méri. Az alapértelmezett érték jól működik a Bambu Lab nyomtatókkal " +"és gyári filamentekkel, mivel azokat előre kalibráltuk és finomhangoltuk. " +"Egy hagyományos filament esetében általában nem kell anyagáramlás " +"kalibrálását elvégezni, kivéve, ha más kalibrálások után még mindig látod a " +"felsorolt hibákat. További részletekért kérjük, olvasd el a wiki cikkünket." msgid "" "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " @@ -13456,48 +13797,73 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" +"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " +"directly measuring the calibration patterns. However, please be advised that " +"the efficacy and accuracy of this method may be compromised with specific " +"types of materials. Particularly, filaments that are transparent or semi-" +"transparent, sparkling-particled, or have a high-reflective finish may not " +"be suitable for this calibration and can produce less-than-desirable " +"results.\n" +"\n" +"The calibration results may vary between each calibration or filament. We " +"are still improving the accuracy and compatibility of this calibration " +"through firmware updates over time.\n" +"\n" +"Caution: Flow Rate Calibration is an advanced process, to be attempted only " +"by those who fully understand its purpose and implications. Incorrect usage " +"can lead to sub-par prints or printer damage. Please make sure to carefully " +"read and understand the process before performing it." msgid "When you need Max Volumetric Speed Calibration" -msgstr "" +msgstr "Mikor van szükség a max. volumetrikus sebesség kalibrálására" msgid "Over-extrusion or under extrusion" -msgstr "" +msgstr "Túlextrudálás vagy alulextrudálás" msgid "Max Volumetric Speed calibration is recommended when you print with:" msgstr "" +"A maximális volumetrikus sebesség kalibrálása ajánlott, ha a következővel " +"nyomtatsz:" msgid "material with significant thermal shrinkage/expansion, such as..." msgstr "" +"jelentős termikus zsugorodással/tágulással rendelkező anyagok, mint pl." msgid "materials with inaccurate filament diameter" -msgstr "" +msgstr "pontatlan átmérőjű anyagok" msgid "We found the best Flow Dynamics Calibration Factor" -msgstr "" +msgstr "Megtaláltuk a legjobb áramlásdinamikai kalibrációs tényezőt" msgid "" "Part of the calibration failed! You may clean the plate and retry. The " "failed test result would be dropped." msgstr "" +"A kalibrálás egy része nem sikerült! Segíthet, ha megtisztítod a tálcát és " +"újrapróbálod. A sikertelen teszt eredményét töröljük." msgid "" "*We recommend you to add brand, materia, type, and even humidity level in " "the Name" msgstr "" +"* Javasoljuk, hogy a névhez add hozzá a márkát, az anyagot, a típust, " +"illetve a páratartalmat is" msgid "Failed" msgstr "Sikertelen" msgid "Please enter the name you want to save to printer." -msgstr "" +msgstr "Kérjük, add meg a nevet." msgid "The name cannot exceed 40 characters." -msgstr "" +msgstr "A név nem haladhatja meg a 40 karaktert." msgid "" "Only one of the results with the same name will be saved. Are you sure you " "want to overrides the other results?" msgstr "" +"Az azonos nevű eredmények közül csak az egyik kerül elmentésre. Biztos, hogy " +"felül akarod írni a többi eredményt?" #, c-format, boost-format msgid "" @@ -13505,188 +13871,198 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to overrides the historical result?" msgstr "" +"Már létezik egy ugyanilyen nevű, korábbi kalibrálási eredmény: %s. Csak egy " +"azonos nevű eredményt lehet elmenteni. Biztos, hogy felül akarod írni a " +"korábbi eredményeket?" msgid "Please find the best line on your plate" -msgstr "" +msgstr "Keresd meg a legjobb vonalat a tálcán" msgid "Please find the cornor with perfect degree of extrusion" -msgstr "" +msgstr "Keresd meg a tökéletesen extrudált sarkot" msgid "Input Value" -msgstr "" +msgstr "Bemeneti érték" msgid "Save to Filament Preset" -msgstr "" +msgstr "Mentés a filamentbeállításokba" msgid "Preset" -msgstr "" +msgstr "Beállítás" msgid "Record Factor" -msgstr "" +msgstr "Record Factor" msgid "We found the best flow ratio for you" -msgstr "" +msgstr "Megtaláltuk a legjobb anyagáramlást" msgid "Flow Ratio" -msgstr "" +msgstr "Anyagáramlás" msgid "Please input a valid value (0.0 < flow ratio < 2.0)" -msgstr "" +msgstr "Kérjük, adj meg egy érvényes értéket (0.0 < anyagáramlás < 2.0)." msgid "Please enter the name of the preset you want to save." -msgstr "" +msgstr "Kérjük, add meg az elmenteni kívánt beállítás nevét." msgid "Calibration1" -msgstr "" +msgstr "Kalibrálás 1" msgid "Calibration2" -msgstr "" +msgstr "Kalibrálás 2" msgid "Please find the best object on your plate" -msgstr "" +msgstr "Keresd meg a legjobb tárgyat a tálcán" msgid "Fill in the value above the block with smoothest top surface" -msgstr "" +msgstr "Töltsd ki az értéket a legsimább felső felületű blokkból" msgid "Skip Calibration2" -msgstr "" +msgstr "Kalibrálás 2 kihagyása" #, c-format, boost-format msgid "flow ratio : %s " -msgstr "" +msgstr "anyagáramlás: %s " msgid "Please choose a block with smoothest top surface" -msgstr "" +msgstr "Kérjük, válaszd a legsimább felülettel rendelkező blokkot" msgid "Please choose a block with smoothest top surface." -msgstr "" +msgstr "Kérjük, válaszd ki a legsimább felülettel rendelkező blokkot." msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" msgstr "" +"Kérjük, adj meg egy érvényes értéket (0 <= Max. volumetrikus sebesség <= 60)" msgid "Calibration Type" -msgstr "" +msgstr "Kalibrálás típusa" msgid "Complete Calibration" -msgstr "" +msgstr "Teljes kalibrálás" msgid "Fine Calibration based on flow ratio" -msgstr "" +msgstr "Finom kalibrálás az anyagáramlás alapján" msgid "Title" -msgstr "" +msgstr "Cím" msgid "" "A test model will be printed. Please clear the build plate and place it back " "to the hot bed before calibration." msgstr "" +"Egy tesztmodell kerül kinyomtatásra. Kérjük, tisztítsd meg a tálcát, és " +"helyezd vissza az asztalra a kalibrálás előtt." msgid "Printing Parameters" -msgstr "" +msgstr "Nyomtatási paraméterek" msgid "Plate Type" msgstr "Plate Type" msgid "filament position" -msgstr "" +msgstr "filamentpozíció" msgid "External Spool" -msgstr "" +msgstr "Külső tekercs" msgid "Filament For Calibration" -msgstr "" +msgstr "Filament a kalibráláshoz" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" "- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" msgstr "" +"Tippek a kalibrációs anyaghoz:\n" +"- Anyagok megegyező asztalhőmérséklettel\n" +"- Különböző márkájú és típusú filamentek (Márka = Bambu, Típus = Basic, " +"Matte stb.)" msgid "Pattern" -msgstr "" +msgstr "Mintázat" msgid "Method" -msgstr "" +msgstr "Módszer" #, c-format, boost-format msgid "%s is not compatible with %s" -msgstr "" +msgstr "%s nem kompatibilis ezzel: %s" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." -msgstr "" +msgstr "Nem használhatsz TPU-t az áramlásdinamika kalibrálásához." msgid "Connecting to printer" -msgstr "" +msgstr "Csatlakozás a nyomtatóhoz" msgid "From k Value" -msgstr "" +msgstr "K értéktől" msgid "To k Value" -msgstr "" +msgstr "K értékig" msgid "Step value" msgstr "" msgid "The nozzle diameter has been synchronized from the printer Settings" -msgstr "" +msgstr "A fúvóka átmérője a nyomtató beállításaiból került szinkronizálásra" msgid "From Volumetric Speed" -msgstr "" +msgstr "Ettől a volumetrikus sebességtől" msgid "To Volumetric Speed" -msgstr "" +msgstr "Eddig a volumetrikus sebességig" msgid "Flow Dynamics Calibration Result" -msgstr "" +msgstr "Áramlásdinamikai kalibrációs eredmény" msgid "New" -msgstr "" +msgstr "New" msgid "No History Result" -msgstr "" +msgstr "Nincs előzmény" msgid "Success to get history result" -msgstr "" +msgstr "Előzmények sikeresen lekérdezve" msgid "Refreshing the historical Flow Dynamics Calibration records" -msgstr "" +msgstr "Az előző anyagáramlás-dinamikai kalibrációs rekordok frissítése" msgid "Action" -msgstr "" +msgstr "Művelet" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "This machine type can only hold %d historical results per nozzle." msgid "Edit Flow Dynamics Calibration" -msgstr "" +msgstr "Áramlásdinamikai kalibráció szerkesztése" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "New Flow Dynamic Calibration" msgid "Ok" -msgstr "" +msgstr "Ok" msgid "The filament must be selected." -msgstr "" +msgstr "The filament must be selected." msgid "Network lookup" -msgstr "" +msgstr "Hálózati keresés" msgid "Address" -msgstr "" +msgstr "Address" msgid "Hostname" -msgstr "" +msgstr "Host név:" msgid "Service name" -msgstr "" +msgstr "Szolgáltatás neve" msgid "OctoPrint version" -msgstr "" +msgstr "OctoPrint verzió" msgid "Searching for devices" -msgstr "" +msgstr "Eszközök keresése" msgid "Finished" msgstr "Kész" @@ -13701,37 +14077,37 @@ msgid "" msgstr "" msgid "PA Calibration" -msgstr "" +msgstr "PA kalibrálás" msgid "DDE" msgstr "" msgid "Bowden" -msgstr "" +msgstr "Bowden" msgid "Extruder type" msgstr "" msgid "PA Tower" -msgstr "" +msgstr "PA-torony" msgid "PA Line" -msgstr "" +msgstr "PA vonal" msgid "PA Pattern" -msgstr "" +msgstr "PA-minta" msgid "Start PA: " -msgstr "" +msgstr "Kezdő PA: " msgid "End PA: " -msgstr "" +msgstr "Befejező PA:" msgid "PA step: " -msgstr "" +msgstr "PA lépcső: " msgid "Print numbers" -msgstr "" +msgstr "Számok nyomtatása" msgid "" "Please input valid values:\n" @@ -13739,39 +14115,43 @@ msgid "" "End PA: > Start PA\n" "PA step: >= 0.001)" msgstr "" +"Kérjük, adj meg érvényes értékeket:\n" +"Kezdő PA: >= 0.0\n" +"Befejező PA: > Start PA\n" +"PA lépcső: >= 0.001)" msgid "Temperature calibration" -msgstr "" +msgstr "Hőmérséklet kalibrálás" msgid "PLA" -msgstr "" +msgstr "PLA" msgid "ABS/ASA" -msgstr "" +msgstr "ABS/ASA" msgid "PETG" -msgstr "" +msgstr "PETG" msgid "TPU" -msgstr "" +msgstr "TPU" msgid "PA-CF" -msgstr "" +msgstr "PA-CF" msgid "PET-CF" -msgstr "" +msgstr "PET-CF" msgid "Filament type" -msgstr "" +msgstr "Filament típusa" msgid "Start temp: " -msgstr "" +msgstr "Kezdőhőmérséklet: " msgid "End temp: " -msgstr "" +msgstr "Befejező hőmérséklet: " msgid "Temp step: " -msgstr "" +msgstr "Hőmérséklet lépcső: " msgid "" "Please input valid values:\n" @@ -13781,16 +14161,16 @@ msgid "" msgstr "" msgid "Max volumetric speed test" -msgstr "" +msgstr "Maximális volumetrikus sebesség teszt" msgid "Start volumetric speed: " -msgstr "" +msgstr "Kezdő volumetrikus sebesség: " msgid "End volumetric speed: " -msgstr "" +msgstr "Befejező volumetrikus sebesség: " msgid "step: " -msgstr "" +msgstr "lépcső: " msgid "" "Please input valid values:\n" @@ -13800,13 +14180,13 @@ msgid "" msgstr "" msgid "VFA test" -msgstr "" +msgstr "VFA teszt" msgid "Start speed: " -msgstr "" +msgstr "Kezdősebesség: " msgid "End speed: " -msgstr "" +msgstr "Befejező sebesség: " msgid "" "Please input valid values:\n" @@ -13816,129 +14196,129 @@ msgid "" msgstr "" msgid "Start retraction length: " -msgstr "" +msgstr "Kezdő visszahúzás hossza: " msgid "End retraction length: " -msgstr "" +msgstr "Befejező visszahúzási hossz:" msgid "mm/mm" -msgstr "" +msgstr "mm/mm" msgid "Send G-Code to printer host" msgstr "" msgid "Upload to Printer Host with the following filename:" -msgstr "" +msgstr "Feltöltés a nyomtatóra a következő fájlnévvel:" msgid "Use forward slashes ( / ) as a directory separator if needed." -msgstr "" +msgstr "Ha szükséges, használj perjeleket ( / ) könyvtárelválasztóként." msgid "Upload to storage" msgstr "" #, c-format, boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" -msgstr "" +msgstr "A feltöltendő fájlnév nem végződik „%s”-ra. Folytatod?" msgid "Upload" -msgstr "" +msgstr "Feltöltés" msgid "Print host upload queue" -msgstr "" +msgstr "Feltöltési sor nyomtatása" msgid "ID" -msgstr "" +msgstr "ID" msgid "Progress" -msgstr "" +msgstr "Folyamat" msgid "Host" -msgstr "" +msgstr "Kiszolgáló" msgctxt "OfFile" msgid "Size" -msgstr "" +msgstr "Méret" msgid "Filename" -msgstr "" +msgstr "Fájlnév" msgid "Cancel selected" -msgstr "" +msgstr "Kiválasztott törlése" msgid "Show error message" -msgstr "" +msgstr "Hibaüzenet megjelenítése" msgid "Enqueued" -msgstr "" +msgstr "Sorban áll" msgid "Uploading" msgstr "Feltöltés" msgid "Cancelling" -msgstr "" +msgstr "Megszakítás" msgid "Error uploading to print host" msgstr "" msgid "Unable to perform boolean operation on selected parts" -msgstr "" +msgstr "Nem lehet logikai műveletet végrehajtani a kiválasztott tárgyakon" msgid "Mesh Boolean" -msgstr "" +msgstr "Mesh Boolean" msgid "Union" -msgstr "" +msgstr "Egyesítés" msgid "Difference" -msgstr "" +msgstr "Különbség" msgid "Intersection" -msgstr "" +msgstr "Metszéspont" msgid "Source Volume" -msgstr "" +msgstr "Forrás térfogat" msgid "Tool Volume" -msgstr "" +msgstr "Eszköz térfogat" msgid "Subtract from" -msgstr "" +msgstr "Kivonás ebből" msgid "Subtract with" -msgstr "" +msgstr "Kivonás ezzel" msgid "selected" -msgstr "" +msgstr "kiválasztva" msgid "Part 1" -msgstr "" +msgstr "1. tárgy" msgid "Part 2" -msgstr "" +msgstr "2. tárgy" msgid "Delete input" -msgstr "" +msgstr "Bemenet törlése" msgid "Network Test" -msgstr "" +msgstr "Hálózati teszt" msgid "Start Test Multi-Thread" -msgstr "" +msgstr "Teszt indítása több szálon" msgid "Start Test Single-Thread" -msgstr "" +msgstr "Teszt indítása egy szálon" msgid "Export Log" -msgstr "" +msgstr "Napló exportálása" msgid "OrcaSlicer Version:" msgstr "" msgid "System Version:" -msgstr "" +msgstr "Rendszerverzió:" msgid "DNS Server:" -msgstr "" +msgstr "DNS kiszolgáló:" msgid "Test OrcaSlicer(GitHub)" msgstr "" @@ -13947,92 +14327,98 @@ msgid "Test OrcaSlicer(GitHub):" msgstr "" msgid "Test Bing.com" -msgstr "" +msgstr "Bing.com tesztelése" msgid "Test bing.com:" -msgstr "" +msgstr "Bing.com tesztelése:" msgid "Log Info" -msgstr "" +msgstr "Napló adatok" msgid "Select filament preset" -msgstr "" +msgstr "Válassz ki filamentbeállítást" msgid "Create Filament" -msgstr "" +msgstr "Filament létrehozása" msgid "Create Based on Current Filament" -msgstr "" +msgstr "Létrehozás a jelenlegi filament alapján" msgid "Copy Current Filament Preset " -msgstr "" +msgstr "Jelenlegi filamentbeállítás másolása" msgid "Basic Information" -msgstr "" +msgstr "Alapinformációk" msgid "Add Filament Preset under this filament" -msgstr "" +msgstr "Filamentbeállítás hozzáadása ehhez a filamenthez" msgid "We could create the filament presets for your following printer:" -msgstr "" +msgstr "Létrehozhatjuk a filamentbeállításokat a következő nyomtatóhoz:" msgid "Select Vendor" -msgstr "" +msgstr "Válassz gyártót" msgid "Input Custom Vendor" -msgstr "" +msgstr "Egyedi gyártó megadása" msgid "Can't find vendor I want" -msgstr "" +msgstr "Nem találom a kívánt gyártót" msgid "Select Type" -msgstr "" +msgstr "Válassz típust" msgid "Select Filament Preset" -msgstr "" +msgstr "Válassz filamentbeállítást" msgid "Serial" -msgstr "" +msgstr "Sorozatszám" msgid "e.g. Basic, Matte, Silk, Marble" -msgstr "" +msgstr "pl.: Basic, Matt, Silk, Marble" msgid "Filament Preset" -msgstr "" +msgstr "Filamentbeállítás" msgid "Create" -msgstr "" +msgstr "Létrehoz" msgid "Vendor is not selected, please reselect vendor." -msgstr "" +msgstr "Vendor is not selected; please reselect vendor." msgid "Custom vendor is not input, please input custom vendor." -msgstr "" +msgstr "Custom vendor missing; please input custom vendor." msgid "" "\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." msgstr "" +"A „Bambu” vagy „Generic” nem használható gyártóként egyedi filamentek " +"esetében." msgid "Filament type is not selected, please reselect type." -msgstr "" +msgstr "A filament típusa nem lett kiválasztva, kérjük, válaszd ki a típust." msgid "Filament serial is not inputed, please input serial." -msgstr "" +msgstr "Filament serial missing; please input serial." msgid "" "There may be escape characters in the vendor or serial input of filament. " "Please delete and re-enter." msgstr "" +"There may be disallowed characters in the vendor or serial input of the " +"filament. Please delete and re-enter." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." -msgstr "" +msgstr "Az egyedi gyártó vagy sorozat értéke üres. Kérjük, írd be újra." msgid "The vendor can not be a number. Please re-enter." -msgstr "" +msgstr "The vendor can not be a number; please re-enter." msgid "" "You have not selected a printer or preset yet. Please select at least one." msgstr "" +"Még nem választottál nyomtatót vagy beállítást. Kérjük, válassz ki legalább " +"egyet." #, c-format, boost-format msgid "" @@ -14040,14 +14426,18 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"A(z) %s filamentnév már létezik.\n" +"Ha folytatod, az új beállítás a teljes nevével fog megjelenni. Folytatod?" msgid "Some existing presets have failed to be created, as follows:\n" -msgstr "" +msgstr "Nem sikerült létrehozni a következő beállításokat:\n" msgid "" "\n" "Do you want to rewrite it?" msgstr "" +"\n" +"Szeretnéd felülírni?" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you selected" @@ -14056,46 +14446,46 @@ msgid "" msgstr "" msgid "Create Printer/Nozzle" -msgstr "" +msgstr "Nyomtató/fúvóka létrehozása" msgid "Create Printer" -msgstr "" +msgstr "Nyomtató létrehozása" msgid "Create Nozzle for Existing Printer" -msgstr "" +msgstr "Fúvóka létrehozása meglévő nyomtatóhoz" msgid "Create from Template" -msgstr "" +msgstr "Létrehozás sablonból" msgid "Create Based on Current Printer" -msgstr "" +msgstr "Létrehozás az aktuális nyomtató alapján" msgid "Import Preset" -msgstr "" +msgstr "Beállítás importálása" msgid "Create Type" -msgstr "" +msgstr "Típus létrehozása" msgid "The model is not fond, place reselect vendor." -msgstr "" +msgstr "The model was not found; please reselect vendor." msgid "Select Model" -msgstr "" +msgstr "Válassz modellt" msgid "Select Printer" -msgstr "" +msgstr "Válassz nyomtatót" msgid "Input Custom Model" -msgstr "" +msgstr "Egyedi modell megadása" msgid "Can't find my printer model" -msgstr "" +msgstr "Nem találom a nyomtató modelljét" msgid "Rectangle" -msgstr "" +msgstr "Négyzet" msgid "Printable Space" -msgstr "" +msgstr "Nyomtatási terület" msgid "X" msgstr "" @@ -14104,66 +14494,73 @@ msgid "Y" msgstr "" msgid "Hot Bed STL" -msgstr "" +msgstr "Tárgyasztal STL" msgid "Load stl" -msgstr "" +msgstr "STL betöltése" msgid "Hot Bed SVG" -msgstr "" +msgstr "Tárgyasztal SVG" msgid "Load svg" -msgstr "" +msgstr "SVG betöltése" msgid "Max Print Height" -msgstr "" +msgstr "Maximális nyomtatási magasság" #, c-format, boost-format msgid "The file exceeds %d MB, please import again." msgstr "" +"A fájl mérete meghaladja a(z) %d MB-ot, kérjük ismételd meg az importálást." msgid "Exception in obtaining file size, please import again." msgstr "" +"Kivétel történt a fájlméret megállapításakor, kérjük ismételd meg az " +"importálást." msgid "Preset path is not find, please reselect vendor." -msgstr "" +msgstr "Útvonal nem található. Kérjük, válaszd ki újra a gyártót." msgid "The printer model was not found, please reselect." -msgstr "" +msgstr "A nyomtató modellje nem található, kérjük, válaszd ki újra." msgid "The nozzle diameter is not fond, place reselect." -msgstr "" +msgstr "The nozzle diameter was not found; please reselect." msgid "The printer preset is not fond, place reselect." -msgstr "" +msgstr "The printer preset was not found; please reselect." msgid "Printer Preset" -msgstr "" +msgstr "Nyomtatóbeállítás" msgid "Filament Preset Template" -msgstr "" +msgstr "Filamentbeállítás sablon" msgid "Deselect All" -msgstr "" +msgstr "Kijelölés megszüntetése" msgid "Process Preset Template" -msgstr "" +msgstr "Folyamatbeállítás sablon" msgid "Back Page 1" -msgstr "" +msgstr "Vissza az 1. oldalra" msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" msgstr "" +"Még nem választottad ki, hogy melyik nyomtató beállításai alapján készüljön " +"az új. Kérjük, válaszd ki a nyomtató gyártóját és modelljét" msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." msgstr "" +"Tiltott karakter került be az első oldalon a nyomtatási terület részbe. " +"Kérjük, csak számokat használj." msgid "The custom printer or model is not inputed, place input." -msgstr "" +msgstr "The custom printer or model missing; please input." msgid "" "The printer preset you created already has a preset with the same name. Do " @@ -14174,60 +14571,73 @@ msgid "" "reserve.\n" "\tCancel: Do not create a preset, return to the creation interface." msgstr "" +"The printer preset you created already has a preset with the same name. Do " +"you want to overwrite it?\n" +"\tYes: Overwrite the printer preset with the same name, and filament and " +"process presets with the same preset name will be recreated \n" +"and filament and process presets without the same preset name will be " +"reserved.\n" +"\tCancel: Do not create a preset; return to the creation interface." msgid "You need to select at least one filament preset." -msgstr "" +msgstr "Ki kell választanod legalább egy filamentbeállítást." msgid "You need to select at least one process preset." -msgstr "" +msgstr "Ki kell választanod legalább egy folyamatbeállítást." msgid "Create filament presets failed. As follows:\n" -msgstr "" +msgstr "A következő filamentbeállítások létrehozása nem sikerült:\n" msgid "Create process presets failed. As follows:\n" -msgstr "" +msgstr "A következő folyamatbeállítások létrehozása nem sikerült:\n" msgid "Vendor is not find, please reselect." -msgstr "" +msgstr "Gyártó nem található. Kérjük, válaszd ki újból." msgid "Current vendor has no models, please reselect." -msgstr "" +msgstr "A kiválasztott gyártónak nincsenek modelljei. Kérjük, válassz másikat." msgid "" "You have not selected the vendor and model or inputed the custom vendor and " "model." msgstr "" +"Nem választottad ki a gyártót és modellt, vagy nem adtál meg egy egyedi " +"gyártót és modellt." msgid "" "There may be escape characters in the custom printer vendor or model. Please " "delete and re-enter." msgstr "" +"Érvénytelen karakter(ek) az egyedi gyártó vagy modell mezőjében. Kérjük, írd " +"be őket újra." msgid "" "All inputs in the custom printer vendor or model are spaces. Please re-enter." -msgstr "" +msgstr "Az egyedi gyártó vagy modell értéke üres. Kérjük, írd be újra." msgid "Please check bed printable shape and origin input." -msgstr "" +msgstr "Kérjük, ellenőrizd az asztal alakját és a kezdőpont koordinátáit." msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "" +"Nem választottál nyomtatót a fúvókacseréhez. Kérjük, válassz egy nyomtatót." msgid "Create Printer Successful" -msgstr "" +msgstr "Nyomtató sikeresen létrehozva" msgid "Create Filament Successful" -msgstr "" +msgstr "Filament Created Successfully" msgid "Printer Created" -msgstr "" +msgstr "Nyomtató létrehozva" msgid "Please go to printer settings to edit your presets" msgstr "" +"Kérjük, a beállítások szerkesztéséhez lépj be a nyomtató beállításaiba." msgid "Filament Created" -msgstr "" +msgstr "Filament létrehozva" msgid "" "Please go to filament setting to edit your presets if you need.\n" @@ -14235,6 +14645,9 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"Ha szükséges, lépj be az filamentbeállításokhoz az értékek szerkesztéséhez.\n" +"Figyelem: a fúvóka hőmérséklete, a tárgyasztal hőmérséklete és a maximális " +"volumetrikus sebesség jelentős hatással van a nyomtatási minőségre." msgid "" "\n" @@ -14246,7 +14659,7 @@ msgid "" msgstr "" msgid "Printer Setting" -msgstr "" +msgstr "Nyomtatóbeállítás" msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -14255,31 +14668,31 @@ msgid "Filament bundle(.orca_filament)" msgstr "" msgid "Printer presets(.zip)" -msgstr "" +msgstr "Nyomtatóbeállítások (.zip)" msgid "Filament presets(.zip)" -msgstr "" +msgstr "Filamentbeállítások (.zip)" msgid "Process presets(.zip)" -msgstr "" +msgstr "Folyamatbeállítások (.zip)" msgid "initialize fail" -msgstr "" +msgstr "inicializálás sikertelen" msgid "add file fail" -msgstr "" +msgstr "fájl hozzáadása sikertelen" msgid "add bundle structure file fail" -msgstr "" +msgstr "kötegstruktúra fájl hozzáadása sikertelen" msgid "finalize fail" -msgstr "" +msgstr "véglegesítés sikertelen" msgid "open zip written fail" -msgstr "" +msgstr "ZIP-fájl írása sikertelen" msgid "Export successful" -msgstr "" +msgstr "Sikeres exportálás!" #, c-format, boost-format msgid "" @@ -14288,6 +14701,10 @@ msgid "" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" +"The '%s' folder already exists in the current directory. Do you want to " +"clear it and rebuild it?\n" +"If not, a time suffix will be added, and you can modify the name after " +"creation." msgid "" "Printer and all the filament&&process presets that belongs to the printer. \n" @@ -14298,54 +14715,68 @@ msgid "" "User's fillment preset set. \n" "Can be shared with others." msgstr "" +"Felhasználói filamentbeállítások.\n" +"Megosztható másokkal." msgid "" "Only display printer names with changes to printer, filament, and process " "presets." msgstr "" +"Csak azok a nyomtatók jelennek meg, amelyeknél változtak a nyomtató-, " +"filament- és folyamatbeállítások." msgid "Only display the filament names with changes to filament presets." msgstr "" +"Csak azok a filamentnevek jelennek meg, ahol változtak a filamentbeállítások." msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" +"Csak azok a nyomtatónevek jelennek meg, amelyekhez tartoznak felhasználói " +"beállítások. A kiválasztott beállítások ZIP fájlként kerülnek exportálásra." msgid "" "Only the filament names with user filament presets will be displayed, \n" "and all user filament presets in each filament name you select will be " "exported as a zip." msgstr "" +"Csak azok a nyomtatónevek jelennek meg, amelyekhez tartoznak felhasználói " +"beállítások. A kiválasztott beállítások ZIP fájlként kerülnek exportálásra." msgid "" "Only printer names with changed process presets will be displayed, \n" "and all user process presets in each printer name you select will be " "exported as a zip." msgstr "" +"Csak azok a nyomtatónevek jelennek meg, amelyeknél változtak a " +"folyamatbeállítások. A kiválasztott beállítások ZIP fájlként kerülnek " +"exportálásra." msgid "Please select at least one printer or filament." -msgstr "" +msgstr "Kérjük, válassz ki legalább egy nyomtatót vagy filamentet." msgid "Please select a type you want to export" -msgstr "" +msgstr "Válaszd ki az exportálandó beállítás típusát" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "" +msgstr "Failed to create temporary folder, please try Export Configs again." msgid "Edit Filament" -msgstr "" +msgstr "Filament szerkesztése" msgid "Filament presets under this filament" -msgstr "" +msgstr "A filamenthez tartozó beállítások" msgid "" "Note: If the only preset under this filament is deleted, the filament will " "be deleted after exiting the dialog." msgstr "" +"Megjegyzés: Ha a filamenthez tartozó utolsó beállítás is törlődik, akkor a " +"filament szintén törlésre kerül a párbeszédablak bezárása után." msgid "Presets inherited by other presets can not be deleted" -msgstr "" +msgstr "A más beállítások által örökölt beállítások nem törölhetők" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." @@ -14353,190 +14784,207 @@ msgstr[0] "" msgstr[1] "" msgid "Delete Preset" -msgstr "" +msgstr "Beállítás törlése" msgid "Are you sure to delete the selected preset?" -msgstr "" +msgstr "Biztosan törlöd a kiválasztott beállítást?" msgid "Delete preset" -msgstr "" +msgstr "Beállítás törlése" msgid "+ Add Preset" -msgstr "" +msgstr "+ Beállítás hozzáadása" msgid "Delete Filament" -msgstr "" +msgstr "Filament törlése" msgid "" "All the filament presets belong to this filament would be deleted. \n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" +"A filamenthez tartozó összes beállítás törölve lesz. \n" +"Ha ez a filament jelenleg használatban van a nyomtatón, kérjük, töröld az " +"adott férőhelyen a filamentadatokat." msgid "Delete filament" -msgstr "" +msgstr "Filament törlése" msgid "Add Preset" -msgstr "" +msgstr "Beállítás hozzáadása" msgid "Add preset for new printer" -msgstr "" +msgstr "Beállítás hozzáadása új nyomtatóhoz" msgid "Copy preset from filament" -msgstr "" +msgstr "Beállítás másolása filamentről" msgid "The filament choice not find filament preset, please reselect it" -msgstr "" +msgstr "A filamenthez nem található beállítás. Kérjük, válassz ki másikat." msgid "[Delete Required]" -msgstr "" +msgstr "[Törlés szükséges]" msgid "Edit Preset" -msgstr "" +msgstr "Beállítás módosítása" msgid "For more information, please check out Wiki" -msgstr "" +msgstr "For more information, please check out our Wiki" msgid "Collapse" -msgstr "" +msgstr "Összecsuk" msgid "Daily Tips" -msgstr "" +msgstr "Napi tippek" msgid "" "Your nozzle diameter in preset is not consistent with memorized nozzle " "diameter. Did you change your nozzle lately?" msgstr "" +"Your nozzle diameter in preset is not consistent with the saved nozzle " +"diameter. Have you changed your nozzle?" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" -msgstr "" +msgstr "* %s anyag nyomtatása ezzel: %s a fúvóka eltömődéséhez vezethet" msgid "Need select printer" -msgstr "" +msgstr "Ki kell választanod a nyomtatót" msgid "The start, end or step is not valid value." -msgstr "" +msgstr "A kezdő-, vég- vagy lépésérték nem érvényes." msgid "" "Unable to calibrate: maybe because the set calibration value range is too " "large, or the step is too small" msgstr "" +"Nem lehet kalibrálni: előfordulhat, hogy a beállított kalibrációs " +"értéktartomány túl nagy, vagy a lépésköz túl kicsi" msgid "Physical Printer" -msgstr "" +msgstr "Fizikai nyomtató" msgid "Print Host upload" -msgstr "" +msgstr "Feltöltés a nyomtatóra" msgid "Could not get a valid Printer Host reference" -msgstr "" +msgstr "Nem sikerült érvényes nyomtató hivatkozást lekérni" msgid "Success!" -msgstr "" +msgstr "Sikerült!" msgid "Are you sure to log out?" msgstr "" msgid "Refresh Printers" -msgstr "" +msgstr "Nyomtatók frissítése" msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" +"A HTTPS CA-fájl nem kötelező. Csak akkor szükséges, ha a HTTPS-t saját " +"aláírású tanúsítvánnyal használod." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -msgstr "" +msgstr "Tanúsítványfájlok (*.crt, *.pem) |*.crt; *.pem|Minden fájl|* . *" msgid "Open CA certificate file" -msgstr "" +msgstr "CA tanúsítványfájl megnyitása" #, c-format, boost-format msgid "" "On this system, %s uses HTTPS certificates from the system Certificate Store " "or Keychain." msgstr "" +"Ezen a rendszeren %s HTTPS-tanúsítványokat használ a rendszer " +"tanúsítványtárolójából vagy kulcstárolójából." msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " "Keychain." msgstr "" +"Egyéni CA-fájl használatához importáld azt a tanúsítványtárolóba / " +"kulcstárolóba." msgid "Login/Test" msgstr "" msgid "Connection to printers connected via the print host failed." msgstr "" +"A nyomtatóállomáson keresztül csatlakoztatott nyomtatókhoz való csatlakozás " +"sikertelen." #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "" +msgstr "A nyomtatóállomás típusa nem egyezik: %s" msgid "Connection to AstroBox works correctly." -msgstr "" +msgstr "Connection to AstroBox is working correctly." msgid "Could not connect to AstroBox" -msgstr "" +msgstr "Nem sikerült csatlakozni az AstroBoxhoz" msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "" +msgstr "Note: AstroBox version 1.1.0 or higher is required." msgid "Connection to Duet works correctly." -msgstr "" +msgstr "Connection to Duet is working correctly." msgid "Could not connect to Duet" -msgstr "" +msgstr "Nem sikerült csatlakozni a Duethez" msgid "Unknown error occured" -msgstr "" +msgstr "Ismeretlen hiba történt" msgid "Wrong password" -msgstr "" +msgstr "Hibás jelszó" msgid "Could not get resources to create a new connection" -msgstr "" +msgstr "Nem sikerült erőforrásokat szerezni új kapcsolat létrehozásához" msgid "Upload not enabled on FlashAir card." -msgstr "" +msgstr "A feltöltés nincs engedélyezve a FlashAir kártyán." msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "" +msgstr "Connection to FlashAir is working correctly and upload is enabled." msgid "Could not connect to FlashAir" -msgstr "" +msgstr "Nem sikerült csatlakozni a FlashAirhez" msgid "" "Note: FlashAir with firmware 2.00.02 or newer and activated upload function " "is required." msgstr "" +"Megjegyzés: FlashAir 2.00.02 vagy újabb firmware és bekapcsolt feltöltési " +"funkció szükséges." msgid "Connection to MKS works correctly." -msgstr "" +msgstr "Connection to MKS is working correctly." msgid "Could not connect to MKS" -msgstr "" +msgstr "Nem sikerült csatlakozni az MKS-hez" msgid "Connection to OctoPrint works correctly." -msgstr "" +msgstr "Connection to OctoPrint is working correctly." msgid "Could not connect to OctoPrint" -msgstr "" +msgstr "Nem sikerült csatlakozni az OctoPrinthez" msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "" +msgstr "Note: OctoPrint version 1.1.0 or higher is required." msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "" +msgstr "Connection to Prusa SL1 / SL1S is working correctly." msgid "Could not connect to Prusa SLA" -msgstr "" +msgstr "Nem sikerült csatlakozni a Prusa SLA-hoz" msgid "Connection to PrusaLink works correctly." -msgstr "" +msgstr "Connection to PrusaLink is working correctly." msgid "Could not connect to PrusaLink" -msgstr "" +msgstr "Nem sikerült csatlakozni a PrusaLinkhez" msgid "Storages found" msgstr "" @@ -14563,19 +15011,21 @@ msgid "Could not connect to Prusa Connect" msgstr "" msgid "Connection to Repetier works correctly." -msgstr "" +msgstr "Connection to Repetier is working correctly." msgid "Could not connect to Repetier" -msgstr "" +msgstr "Nem sikerült csatlakozni a Repetierhez" msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "" +msgstr "Note: Repetier version 0.90.0 or higher is required." #, boost-format msgid "" "HTTP status: %1%\n" "Message body: \"%2%\"" msgstr "" +"HTTP állapot: %1%\n" +"Üzenet törzse: „%2%“" #, boost-format msgid "" @@ -14583,6 +15033,9 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"A válasz feldolgozása sikertelen.\n" +"Üzenet törzse: „%1%“\n" +"Hiba: „%2%“" #, boost-format msgid "" @@ -14590,35 +15043,51 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"A nyomtató lekérdezése sikertelen.\n" +"Üzenet törzse: „%1%“\n" +"Hiba: „%2%”" msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"It has a small layer height, and results in almost negligible layer lines " +"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " +"bigger layer height. This results in almost negligible layer lines and " +"slightly longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " +"height. This results in slightly visible layer lines but shorter print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in almost invisible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14626,12 +15095,19 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality but " +"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14639,35 +15115,53 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"It has a normal layer height, and results in average layer lines and print " +"quality. It is suitable for most printing cases." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but slightly shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14675,12 +15169,19 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14688,64 +15189,95 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and longer print time." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"It has a big layer height, and results in apparent layer lines and ordinary " +"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and slightly higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"It has a very big layer height, and results in very apparent layer lines, " +"low print quality and shorter printing time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -14753,12 +15285,18 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality, but longer print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgid "Connected to Obico successfully!" msgstr "" @@ -14884,6 +15422,9 @@ msgid "" "Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " "problems on the Windows system?" msgstr "" +"Modell javítása\n" +"Tudtad, hogy Windows rendszeren a sérült 3D-modelleket kijavíthatod, hogy " +"elkerüld a szeletelési problémákat?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" @@ -15123,6 +15664,10 @@ msgid "" "extruder/hotend clogging when printing lower temperature filament with a " "higher enclosure temperature. More info about this in the Wiki." msgstr "" +"Mikor nyomtass nyitott ajtóval\n" +"Tudtad, hogy a nyomtató ajtajának kinyitásával csökkentheted az extruder/" +"hotend eltömődésének valószínűségét, ha alacsonyabb hőmérsékletű filamentet " +"nyomtatsz? További információ a Wikiben olvashatsz erről." #: resources/data/hints.ini: [hint:Avoid warping] msgid "" @@ -15131,6 +15676,12 @@ msgid "" "ABS, appropriately increasing the heatbed temperature can reduce the " "probability of warping." msgstr "" +"Vetemedés elkerülése\n" +"Tudtad, hogy a vetemedésre hajlamos anyagok (például ABS) nyomtatásakor a " +"tárgyasztal hőmérsékletének növelése csökkentheti a vetemedés valószínűségét?" + +#~ msgid "V" +#~ msgstr "V" #~ msgid "Export &Configs" #~ msgstr "Export &Configs" diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index 0132fabd4a..f12461a169 100644 --- a/localization/i18n/it/OrcaSlicer_it.po +++ b/localization/i18n/it/OrcaSlicer_it.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -1405,9 +1406,6 @@ msgstr "" "Il file di configurazione \"%1%\" è stato caricato, ma alcuni valori non " "sono stati riconosciuti." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1516,6 +1514,9 @@ msgstr "Scegli uno o più file (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Scegli uno o più file (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Scegli file (gcode/3mf):" @@ -1586,6 +1587,11 @@ msgstr "Caricamenti in corso" msgid "Select a G-code file:" msgstr "Seleziona file G-code:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Importa File" @@ -2441,7 +2447,7 @@ msgid "AMS not connected" msgstr "AMS non collegato" msgid "Load" -msgstr "" +msgstr "Load" msgid "Unload" msgstr "Scarica" @@ -2506,6 +2512,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Scegliere uno slot AMS, quindi premi il pulsante \"Carica\" o \"Scarica\" " +"per caricare o scaricare automaticamente il filamento." msgid "Edit" msgstr "Modifica" @@ -2986,7 +2994,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "Stampa filamento con bobina esterna" msgid "Current Cabin humidity" -msgstr "" +msgstr "Current Cabin humidity" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2994,6 +3002,10 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"Please change the desiccant when it is too wet. The indicator may not " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It takes a few hours to absorb the moisture, and " +"low temperatures also slow down the process." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -3053,10 +3065,10 @@ msgstr "" "stesso marchio, tipo di materiale e colore)" msgid "DRY" -msgstr "" +msgstr "DRY" msgid "WET" -msgstr "" +msgstr "WET" msgid "AMS Settings" msgstr "Impostazioni AMS" @@ -3076,6 +3088,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"Nota: se durante la stampa viene inserito un nuovo filamento, l'AMS non " +"leggerà automaticamente alcuna informazione fino al termine della stampa." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3128,12 +3142,14 @@ msgstr "" "quando il filamento corrente si esaurisce" msgid "Air Printing Detection" -msgstr "" +msgstr "Air Printing Detection" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"Detects clogging and filament grinding, halting printing immediately to " +"conserve time and filament." msgid "File" msgstr "File" @@ -3213,7 +3229,7 @@ msgid "Running post-processing scripts" msgstr "Esecuzione script di post-elaborazione" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." msgstr "" @@ -3280,10 +3296,10 @@ msgid "Device" msgstr "Dispositivo" msgid "Task Sending" -msgstr "" +msgstr "Task Sending" msgid "Task Sent" -msgstr "" +msgstr "Task Sent" msgid "Edit multiple printers" msgstr "" @@ -3303,7 +3319,7 @@ msgid "Offline" msgstr "Offline" msgid "No task" -msgstr "" +msgstr "No task" msgid "View" msgstr "Vista" @@ -3315,16 +3331,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "" +msgstr "Device Name" msgid "Task Name" -msgstr "" +msgstr "Task Name" msgid "Device Status" -msgstr "" +msgstr "Device Status" msgid "Actions" -msgstr "" +msgstr "Actions" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3367,7 +3383,7 @@ msgid "Pending" msgstr "" msgid "Sending" -msgstr "" +msgstr "Invio…" msgid "Sending Finish" msgstr "" @@ -3394,25 +3410,25 @@ msgid "Stop" msgstr "Ferma" msgid "Task Status" -msgstr "" +msgstr "Task Status" msgid "Sent Time" -msgstr "" +msgstr "Sent Time" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "There are no tasks to be sent!" msgid "No historical tasks!" -msgstr "" +msgstr "No historical tasks!" msgid "Loading..." msgstr "Caricamento…" msgid "No AMS" -msgstr "" +msgstr "No AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "Send to Multi-device" msgid "Preparing print job" msgstr "Preparazione lavoro di stampa" @@ -3427,22 +3443,31 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "" +msgstr "Use External Spool" msgid "Use AMS" -msgstr "" +msgstr "Use AMS" msgid "Select Printers" -msgstr "" +msgstr "Select Printers" msgid "Ams Status" -msgstr "" +msgstr "AMS Status" msgid "Printing Options" +msgstr "Printing Options" + +msgid "Bed Leveling" +msgstr "Livellamento piano" + +msgid "Timelapse" +msgstr "Timelapse" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "Send Options" msgid "Send" msgstr "Invia" @@ -3451,13 +3476,16 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"printers at the same time. (It depends on how many devices can undergo " +"heating at the same time.)" msgid "Wait" -msgstr "" +msgstr "Wait" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Name is invalid;" msgstr "Nome non valido;" @@ -3555,14 +3583,18 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" +"La temperatura minima consigliata è inferiore a 190 gradi o la temperatura " +"massima consigliata è superiore a 300 gradi.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" +"The recommended minimum temperature cannot be higher than the recommended " +"maximum temperature.\n" msgid "Please check.\n" -msgstr "" +msgstr "Controlla.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -4017,7 +4049,7 @@ msgstr "Validazione parametri" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "" +msgstr "Value %s is out of range. The valid range is from %d to %d." msgid "Value is out of range." msgstr "Valore fuori intervallo." @@ -4208,10 +4240,10 @@ msgid "Normal mode" msgstr "Modalità normale" msgid "Total Filament" -msgstr "" +msgstr "Total Filament" msgid "Model Filament" -msgstr "" +msgstr "Model Filament" msgid "Prepare time" msgstr "Tempo preparazione" @@ -4307,7 +4339,7 @@ msgid "Spacing" msgstr "Spaziatura" msgid "0 means auto spacing." -msgstr "" +msgstr "0 means auto spacing." msgid "Auto rotate for arrangement" msgstr "Ruota automaticamente per disporre" @@ -4454,7 +4486,7 @@ msgid "Go Live" msgstr "Vai in diretta" msgid "Liveview Retry" -msgstr "" +msgstr "Riprova Liveview" msgid "Resolution" msgstr "Risoluzione" @@ -4512,7 +4544,7 @@ msgid "Preview" msgstr "Anteprima" msgid "Multi-device" -msgstr "" +msgstr "Multi-device" msgid "Project" msgstr "Progetto" @@ -4658,6 +4690,12 @@ msgstr "Importa 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Carica modello" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Importa configurazioni" @@ -4970,44 +5008,48 @@ msgstr "" msgid "Player is malfunctioning. Please reinstall the system player." msgstr "" +"Lettore non funzionante correttamente. Reinstallare il lettore di sistema." msgid "The player is not loaded, please click \"play\" button to retry." -msgstr "" +msgstr "Player non caricato; fai clic sul pulsante «play» per riprovare." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "Verifica che la stampante sia collegata." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." -msgstr "" +msgstr "La stampante è in fase di download. Attendi il completamento." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "La fotocamera della stampante non funziona correttamente." msgid "Problem occured. Please update the printer firmware and try again." -msgstr "" +msgstr "Si è verificato un problema. Aggiorna il firmware stampante e riprova." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "Inserisci l'IP stampante da connettere." msgid "Initializing..." msgstr "Inizializzazione ..." msgid "Connection Failed. Please check the network and try again" -msgstr "" +msgstr "Connessione fallita. Controlla la rete e riprova" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"Controlla la rete e riprova. Se il problema persiste prova ad aggiornare o " +"riavviare la stampante." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "La stampante è stata disconnessa e non può connettersi." msgid "Stopped." msgstr "Interrotto." @@ -5065,9 +5107,6 @@ msgstr "Raggruppa i file per mese, prima i recenti." msgid "Show all files, recent first." msgstr "Mostra tutti i file, prima i recenti." -msgid "Timelapse" -msgstr "Timelapse" - msgid "Switch to timelapse files." msgstr "Passa ai file timelapse." @@ -5099,7 +5138,7 @@ msgid "Refresh" msgstr "Aggiorna" msgid "Reload file list from printer." -msgstr "" +msgstr "Reload file list from printer." msgid "No printers." msgstr "Nessuna stampante." @@ -5112,10 +5151,10 @@ msgid "Loading file list..." msgstr "Caricamento elenco file..." msgid "No files" -msgstr "" +msgstr "Nessun file" msgid "Load failed" -msgstr "" +msgstr "Load failed" msgid "Initialize failed (Device connection not ready)!" msgstr "" @@ -5125,15 +5164,17 @@ msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"Browsing file in SD card is not supported in current firmware. Please update " +"the printer firmware." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "LAN Connection Failed (Failed to view sdcard)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "Browsing file in SD card is not supported in LAN Only Mode." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -5162,10 +5203,10 @@ msgid "Fetching model infomations ..." msgstr "Recupero informazioni del modello..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "Impossibile recuperare le informazioni del modello dalla stampante." msgid "Failed to parse model information." -msgstr "" +msgstr "Impossibile analizzare le informazioni del modello" msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -5183,6 +5224,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"File: %s\n" +"Title: %s\n" msgid "Download waiting..." msgstr "Download in attesa..." @@ -5204,9 +5247,11 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"Reconnecting the printer, the operation cannot be completed immediately, " +"please try again later." msgid "File does not exist." -msgstr "" +msgstr "Il file non esiste" msgid "File checksum error. Please retry." msgstr "Errore di checksum del file. Si prega di riprovare." @@ -5309,7 +5354,7 @@ msgid "Control" msgstr "Controllo" msgid "Printer Parts" -msgstr "" +msgstr "Printer Parts" msgid "Print Options" msgstr "Opzioni stampa" @@ -5557,7 +5602,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "" +msgstr "Scarica la versione beta" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5566,13 +5611,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "" +msgstr "Versione corrente:" msgid "Latest Version: " -msgstr "" +msgstr "Ultima versione: " msgid "Not for now" -msgstr "" +msgstr "Not for now" msgid "3D Mouse disconnected." msgstr "Mouse 3D disconnesso." @@ -5643,12 +5688,12 @@ msgstr[1] "%1$d oggetti sono stati caricati come parti di un oggetto tagliato" msgid "ERROR" msgstr "ERRORE" -msgid "CANCELED" -msgstr "ANNULLATO" - msgid "COMPLETED" msgstr "COMPLETATO" +msgid "CANCELED" +msgstr "ANNULLATO" + msgid "Cancel upload" msgstr "Annulla caricamento" @@ -5761,13 +5806,13 @@ msgid "Filament Tangle Detect" msgstr "Rilevamento del groviglio del filamento" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Nozzle Clumping Detection" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "" +msgstr "Check if the nozzle is clumping by filament or other foreign objects." msgid "Nozzle Type" -msgstr "" +msgstr "Nozzle Type" msgid "Stainless Steel" msgstr "Acciaio inox" @@ -5777,7 +5822,7 @@ msgstr "Acciaio temprato" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "Globale" @@ -6233,13 +6278,13 @@ msgid "prepare 3mf file..." msgstr "preparazione file 3mf..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "Download failed; unknown file format." msgid "downloading project ..." msgstr "Download progetto..." msgid "Download failed, File size exception." -msgstr "" +msgstr "Download failed; File size exception." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6264,6 +6309,20 @@ msgstr "non contiene un g-code valido." msgid "Error occurs while loading G-code file" msgstr "Si è verificato un errore durante il caricamento del file G-code." +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Elimina il file di progetto" @@ -6329,22 +6388,24 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try agian." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "Reason: part \"%1%\" is empty." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "Reason: part \"%1%\" does not bound a volume." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "Reason: part \"%1%\" has self intersection." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "Reason: \"%1%\" and another part have no intersection." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6531,6 +6592,10 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"Su OSX per impostazione predefinita c'è sempre una sola istanza dell'app in " +"esecuzione. Tuttavia è consentito eseguire più istanze della stessa app da " +"riga di comando. In tal caso, questa impostazione consentirà una sola " +"istanza." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6603,10 +6668,10 @@ msgstr "Se abilitato, calcola automaticamente ogni volta che il colore cambia." msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "" +msgstr "Flushing volumes: Auto-calculate every time the filament is changed." msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "" +msgstr "If enabled, auto-calculate every time filament is changed" msgid "Remember printer configuration" msgstr "" @@ -6623,6 +6688,8 @@ msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." msgid "Network" msgstr "Rete" @@ -6673,6 +6740,20 @@ msgstr "" "\"\n" "\"i file .step." +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Numero massimo di progetti recenti" @@ -6848,16 +6929,16 @@ msgid "The selected preset is null!" msgstr "Il preset selezionato è nullo!" msgid "End" -msgstr "" +msgstr "End" msgid "Customize" msgstr "Personalizza" msgid "Other layer filament sequence" -msgstr "" +msgstr "Other layer filament sequence" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "Please input layer value (>= 2)." msgid "Plate name" msgstr "Nome Piatto" @@ -6869,10 +6950,10 @@ msgid "Print sequence" msgstr "Sequenza di stampa" msgid "Same as Global" -msgstr "" +msgstr "Same as Global" msgid "Disable" -msgstr "" +msgstr "Disable" msgid "Spiral vase" msgstr "Vaso a spirale" @@ -7039,9 +7120,6 @@ msgstr "Piastra PEI testurizzata Bambu" msgid "Send print job to" msgstr "Invia stampa a" -msgid "Bed Leveling" -msgstr "Livellamento piano" - msgid "Flow Dynamics Calibration" msgstr "Calibrazione della dinamica del flusso" @@ -7142,6 +7220,8 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"The selected printer (%s) is incompatible with the chosen printer profile in " +"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "È necessario inserire una scheda microSD per registrare un timelapse." @@ -7209,15 +7289,20 @@ msgid "" "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"Your nozzle diameter in sliced file is not consistent with the saved nozzle. " +"If you changed your nozzle lately, please go to Device > Printer Parts to " +"change settings." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" msgstr "" +"Printing high temperature material(%s material) with %s may cause nozzle " +"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" +msgstr "Please fix the error above, otherwise printing cannot continue." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7244,7 +7329,7 @@ msgid "Modifying the device name" msgstr "Modifica nome del dispositivo" msgid "Bind with Pin Code" -msgstr "" +msgstr "Bind with Pin Code" msgid "Send to Printer SD card" msgstr "Invia a microSD stampante" @@ -7305,21 +7390,23 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"Please Find the Pin Code in Account page on printer screen,\n" +" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "" +msgstr "Can't find Pin Code?" msgid "Pin Code" -msgstr "" +msgstr "Pin Code" msgid "Binding..." -msgstr "" +msgstr "Binding..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Please confirm on the printer screen" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "Log in failed. Please check the Pin Code." msgid "Log in printer" msgstr "Log in stampante" @@ -7528,6 +7615,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " +"printing complications." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7535,6 +7626,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications. Please use with the latest printer firmware." msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -8039,12 +8134,14 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "You have changed some settings of preset \"%1%\". " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"You can save or discard the preset values you have modified." msgid "" "\n" @@ -8053,7 +8150,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "" +msgstr "You have previously modified your settings." msgid "" "\n" @@ -8585,40 +8682,40 @@ msgid "Done" msgstr "Fine" msgid "resume" -msgstr "" +msgstr "resume" msgid "Resume Printing" -msgstr "" +msgstr "Resume Printing" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Resume Printing (defects acceptable)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Resume Printing (problem solved)" msgid "Stop Printing" -msgstr "" +msgstr "Stop Printing" msgid "Check Assistant" -msgstr "" +msgstr "Check Assistant" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Filament Extruded, Continue" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Not Extruded Yet, Retry" msgid "Finished, Continue" -msgstr "" +msgstr "Finished, Continue" msgid "Load Filament" msgstr "Carica" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Filament Loaded, Resume" msgid "View Liveview" -msgstr "" +msgstr "View Liveview" msgid "Confirm and Update Nozzle" msgstr "Conferma e aggiorna l'ugello" @@ -9535,13 +9632,13 @@ msgid "First layer print sequence" msgstr "Sequenza di stampa del primo strato" msgid "Other layers print sequence" -msgstr "" +msgstr "Other layers print sequence" msgid "The number of other layers print sequence" -msgstr "" +msgstr "The number of other layers print sequence" msgid "Other layers filament sequence" -msgstr "" +msgstr "Other layers filament sequence" msgid "This G-code is inserted at every layer change before lifting z" msgstr "" @@ -10479,10 +10576,10 @@ msgstr "" "nella stampa per oggetto." msgid "Nozzle height" -msgstr "" +msgstr "Altezza nozzle" msgid "The height of nozzle tip." -msgstr "" +msgstr "L'altezza punta del nozzle." msgid "Bed mesh min" msgstr "Maglia del letto min" @@ -10977,7 +11074,7 @@ msgid "Lightning" msgstr "Lightning" msgid "Cross Hatch" -msgstr "" +msgstr "Cross Hatch" msgid "Sparse infill anchor length" msgstr "Lunghezza dell'ancora di riempimento sparsa" @@ -11271,13 +11368,16 @@ msgstr "" "larghezza linea irregolare e devono essere stampate più lentamente." msgid "Precise Z height" -msgstr "" +msgstr "Precise Z height" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"Enable this to get precise z height of object after slicing. It will get the " +"precise object height by fine-tuning the layer heights of the last few " +"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "Arc fitting" @@ -12244,7 +12344,7 @@ msgstr "" "retrazione." msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "Long retraction when cut (experimental)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -12252,14 +12352,20 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge.While this reduces flush " +"significantly, it may also raise the risk of nozzle clogs or other printing " +"problems." msgid "Retraction distance when cut" -msgstr "" +msgstr "Retraction distance when cut" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" msgstr "" +"Experimental feature. Retraction length before cutting off during filament " +"change" msgid "Z hop when retract" msgstr "Z hop in fase retrazione" @@ -13469,17 +13575,29 @@ msgstr "Spaziatura delle linee di spurgo della torre di pulitura" msgid "Spacing of purge lines on the wipe tower." msgstr "Spaziatura delle linee di spurgo sulla torre di pulitura." -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -14260,7 +14378,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj: analisi non riuscita" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "load mtl in obj: failed to parse" msgid "The file contains polygons with more than 4 vertices." msgstr "Il file contiene poligoni con più di 4 vertici." @@ -14397,6 +14515,11 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"This machine type can only hold 16 historical results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results. \n" +"Do you still want to continue the calibration?" msgid "Connecting to printer..." msgstr "Collegamento alla stampante..." @@ -14415,12 +14538,17 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"C'è già un risultato di calibrazione precedente con lo stesso nome: %s. Ne " +"può essere salvato solo uno. Sei sicuro di voler sovrascrivere il risultato " +"precedente?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"This machine type can only hold %d historical results per nozzle. This " +"result will not be saved." msgid "Internal Error" msgstr "Errore interno" @@ -14801,7 +14929,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "Risultato della calibrazione della dinamica del flusso" msgid "New" -msgstr "" +msgstr "New" msgid "No History Result" msgstr "Nessun risultato della cronologia" @@ -14817,19 +14945,19 @@ msgstr "Azione" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "This machine type can only hold %d historical results per nozzle." msgid "Edit Flow Dynamics Calibration" msgstr "Modifica calibrazione dinamica flusso (Edit Flow Dynamics)" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "New Flow Dynamic Calibration" msgid "Ok" -msgstr "" +msgstr "Ok" msgid "The filament must be selected." -msgstr "" +msgstr "The filament must be selected." msgid "Network lookup" msgstr "Ricerca network" @@ -15229,6 +15357,9 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"Il nome del filamento %s che hai creato esiste già. \n" +"Se continui nella creazione, il preset creato verrà visualizzato con il suo " +"nome completo. Vuoi continuare?" msgid "Some existing presets have failed to be created, as follows:\n" msgstr "" @@ -15462,6 +15593,10 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"Se necessario, vai alle impostazioni filamento per modificare i preset.\n" +"Tieni presente che la temperatura del nozzle, la temperatura del piano e la " +"massima velocità volumetrica hanno ciascuna un impatto significativo sulla " +"qualità di stampa. Impostali con attenzione." msgid "" "\n" @@ -15582,7 +15717,7 @@ msgid "Please select a type you want to export" msgstr "Seleziona il tipo che desideri esportare" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "" +msgstr "Failed to create temporary folder, please try Export Configs again." msgid "Edit Filament" msgstr "Modifica filamento" @@ -15878,30 +16013,43 @@ msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"It has a small layer height, and results in almost negligible layer lines " +"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " +"bigger layer height. This results in almost negligible layer lines and " +"slightly longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " +"height. This results in slightly visible layer lines but shorter print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in almost invisible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15909,12 +16057,19 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality but " +"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15922,35 +16077,53 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"It has a normal layer height, and results in average layer lines and print " +"quality. It is suitable for most printing cases." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but slightly shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15958,12 +16131,19 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15971,64 +16151,95 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and longer print time." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"It has a big layer height, and results in apparent layer lines and ordinary " +"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and slightly higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"It has a very big layer height, and results in very apparent layer lines, " +"low print quality and shorter printing time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -16036,12 +16247,18 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality, but longer print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgid "Connected to Obico successfully!" msgstr "" @@ -16472,6 +16689,9 @@ msgstr "" "aumentare in modo appropriato la temperatura del piano riscaldato può " "ridurre la probabilità di deformazione." +#~ msgid "V" +#~ msgstr "V" + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index 2d9cd610fc..9c4151ba8c 100644 --- a/localization/i18n/ja/OrcaSlicer_ja.po +++ b/localization/i18n/ja/OrcaSlicer_ja.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -151,7 +152,7 @@ msgid "Height range" msgstr "高さ範囲" msgid "Alt + Shift + Enter" -msgstr "" +msgstr "Alt + Shift + Enter" msgid "Toggle Wireframe" msgstr "ワイヤフレームの表示/非表示" @@ -166,10 +167,10 @@ msgid "Height Range" msgstr "高さ範囲" msgid "Vertical" -msgstr "" +msgstr "Vertical" msgid "Horizontal" -msgstr "" +msgstr "Horizontal" msgid "Remove painted color" msgstr "塗った色を消去" @@ -270,16 +271,16 @@ msgid "uniform scale" msgstr "スケール" msgid "Planar" -msgstr "" +msgstr "Planar" msgid "Dovetail" -msgstr "" +msgstr "Dovetail" msgid "Auto" msgstr "自動" msgid "Manual" -msgstr "" +msgstr "手動" msgid "Plug" msgstr "Plug" @@ -288,7 +289,7 @@ msgid "Dowel" msgstr "Dowel" msgid "Snap" -msgstr "" +msgstr "Snap" msgid "Prism" msgstr "" @@ -303,7 +304,7 @@ msgid "Hexagon" msgstr "Hexagon" msgid "Keep orientation" -msgstr "" +msgstr "Keep orientation" msgid "Place on cut" msgstr "Place on cut" @@ -327,19 +328,19 @@ msgstr "形状" #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "" +msgstr "Depth" msgid "Groove" -msgstr "" +msgstr "Groove" msgid "Width" msgstr "幅" msgid "Flap Angle" -msgstr "" +msgstr "Flap Angle" msgid "Groove Angle" -msgstr "" +msgstr "Groove Angle" msgid "Part" msgstr "パーツ" @@ -362,7 +363,7 @@ msgid "Move cut plane" msgstr "" msgid "Mode" -msgstr "" +msgstr "Mode" msgid "Change cut mode" msgstr "" @@ -410,7 +411,7 @@ msgid "Remove connectors" msgstr "Remove connectors" msgid "Bulge" -msgstr "" +msgstr "Bulge" msgid "Bulge proportion related to radius" msgstr "" @@ -517,7 +518,7 @@ msgid "Cut by Plane" msgstr "" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" -msgstr "" +msgstr "Non-manifold edges be caused by cut tool: do you want to fix now?" msgid "Repairing model object" msgstr "モデルオブジェクトを修復" @@ -614,13 +615,13 @@ msgid "Remove selection" msgstr "選択を削除" msgid "Entering Seam painting" -msgstr "" +msgstr "継ぎ目をペイント" msgid "Leaving Seam painting" -msgstr "" +msgstr "継ぎ目ペイントを退出" msgid "Paint-on seam editing" -msgstr "" +msgstr "継ぎ目編集" #. TRN - Input label. Be short as possible #. Select look of letter shape @@ -759,7 +760,7 @@ msgstr "" msgctxt "EmbossOperation" msgid "Cut" -msgstr "" +msgstr "カット" msgid "Click to change part type into negative volume." msgstr "" @@ -901,19 +902,19 @@ msgstr "" msgctxt "Alignment" msgid "Left" -msgstr "" +msgstr "左面" msgctxt "Alignment" msgid "Center" -msgstr "" +msgstr "センター" msgctxt "Alignment" msgid "Right" -msgstr "" +msgstr "右面" msgctxt "Alignment" msgid "Top" -msgstr "" +msgstr "トップ" msgctxt "Alignment" msgid "Middle" @@ -921,7 +922,7 @@ msgstr "" msgctxt "Alignment" msgid "Bottom" -msgstr "" +msgstr "底面" msgid "Revert alignment." msgstr "" @@ -1233,43 +1234,43 @@ msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "" msgid "Vertex" -msgstr "" +msgstr "Vertex" msgid "Edge" -msgstr "" +msgstr "Edge" msgid "Plane" -msgstr "" +msgstr "Plane" msgid "Point on edge" -msgstr "" +msgstr "Point on edge" msgid "Point on circle" -msgstr "" +msgstr "Point on circle" msgid "Point on plane" -msgstr "" +msgstr "Point on plane" msgid "Center of edge" -msgstr "" +msgstr "Center of edge" msgid "Center of circle" -msgstr "" +msgstr "Center of circle" msgid "ShiftLeft mouse button" msgstr "" msgid "Select feature" -msgstr "" +msgstr "Select feature" msgid "Select point" -msgstr "" +msgstr "Select point" msgid "Delete" msgstr "削除" msgid "Restart selection" -msgstr "" +msgstr "Restart selection" msgid "Esc" msgstr "Esc" @@ -1278,14 +1279,14 @@ msgid "Unselect" msgstr "" msgid "Measure" -msgstr "" +msgstr "Measure" msgid "Edit to scale" -msgstr "" +msgstr "Edit to scale" msgctxt "Verb" msgid "Scale" -msgstr "" +msgstr "スケール" msgid "None" msgstr "無し" @@ -1297,22 +1298,22 @@ msgid "Length" msgstr "長さ" msgid "Selection" -msgstr "" +msgstr "Selection" msgid "Copy to clipboard" msgstr "コピー" msgid "Perpendicular distance" -msgstr "" +msgstr "Perpendicular distance" msgid "Distance" -msgstr "" +msgstr "Distance" msgid "Direct distance" -msgstr "" +msgstr "Direct distance" msgid "Distance XYZ" -msgstr "" +msgstr "Distance XYZ" msgid "Ctrl+" msgstr "Ctrl+" @@ -1350,9 +1351,6 @@ msgid "" "Configuration file \"%1%\" was loaded, but some values were not recognized." msgstr "構成ファイル %1% がロードされましたが、一部の値が認識できませんでした" -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1445,11 +1443,14 @@ msgid "Choose one file (3mf):" msgstr "ファイルを選択 (3mf):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" -msgstr "" +msgstr "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "ファイルを選択 (3mf/step/stl/svg/obj/amf)" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "" @@ -1484,9 +1485,11 @@ msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " "newly created user presets can only be used locally." msgstr "" +"The number of user presets cached in the cloud has exceeded the upper limit, " +"newly created user presets can only be used locally." msgid "Sync user presets" -msgstr "" +msgstr "Sync user presets" msgid "Loading user preset" msgstr "ユーザープリセットを読込み中" @@ -1515,6 +1518,11 @@ msgstr "進行中のアップロード" msgid "Select a G-code file:" msgstr "G-codeファイルを選択" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Import File" @@ -1649,16 +1657,16 @@ msgid "Cone" msgstr "コーン" msgid "Disc" -msgstr "" +msgstr "Disc" msgid "Torus" -msgstr "" +msgstr "Torus" msgid "Orca Cube" msgstr "" msgid "3DBenchy" -msgstr "" +msgstr "3DBenchy" msgid "Autodesk FDM Test" msgstr "" @@ -1711,10 +1719,10 @@ msgid "Fix model" msgstr "モデルを修復" msgid "Export as one STL" -msgstr "" +msgstr "Export as one STL" msgid "Export as STLs" -msgstr "" +msgstr "Export as STLs" msgid "Reload from disk" msgstr "ディスクから再読込み" @@ -1787,10 +1795,10 @@ msgid "Assemble the selected objects to an object with single part" msgstr "選択したオブジェクトを一つオブジェクトに組み立てます(単パーツ)" msgid "Mesh boolean" -msgstr "" +msgstr "Mesh boolean" msgid "Mesh boolean operations including union and subtraction" -msgstr "" +msgstr "Mesh boolean operations including union and subtraction" msgid "Along X axis" msgstr "X軸方向" @@ -1934,7 +1942,7 @@ msgid "Lock" msgstr "ロック" msgid "Edit Plate Name" -msgstr "" +msgstr "Edit Plate Name" msgid "Name" msgstr "名称" @@ -1991,7 +1999,7 @@ msgid "Error!" msgstr "エラー!" msgid "Failed to get the model data in the current file." -msgstr "" +msgstr "Failed to get the model data in the current file." msgid "Generic" msgstr "一般" @@ -2226,7 +2234,7 @@ msgid "Pause" msgstr "一時停止" msgid "Template" -msgstr "" +msgstr "Template" msgid "Custom" msgstr "カスタム" @@ -2277,7 +2285,7 @@ msgid "Change filament at the beginning of this layer." msgstr "Change filament at the beginning of this layer." msgid "Delete Pause" -msgstr "" +msgstr "Delete Pause" msgid "Delete Custom Template" msgstr "Delete Custom Template" @@ -2295,7 +2303,7 @@ msgid "No printer" msgstr "プリンタ無し" msgid "..." -msgstr "" +msgstr "..." msgid "Failed to connect to the server" msgstr "サーバーに接続できませんでした" @@ -2328,7 +2336,7 @@ msgid "?" msgstr "?" msgid "/" -msgstr "" +msgstr "/" msgid "Empty" msgstr "空" @@ -2337,13 +2345,13 @@ msgid "AMS" msgstr "AMS" msgid "Auto Refill" -msgstr "" +msgstr "Auto Refill" msgid "AMS not connected" msgstr "AMS が接続されていません" msgid "Load" -msgstr "" +msgstr "Load" msgid "Unload" msgstr "アンロード" @@ -2375,7 +2383,7 @@ msgid "Cancel calibration" msgstr "キャリブレーションを取消し" msgid "Idling..." -msgstr "" +msgstr "Idling..." msgid "Heat the nozzle" msgstr "ノズルを加熱" @@ -2393,13 +2401,13 @@ msgid "Purge old filament" msgstr "古いフィラメントを排出" msgid "Feed Filament" -msgstr "" +msgstr "Feed Filament" msgid "Confirm extruded" -msgstr "" +msgstr "Confirm that filament has been extruded" msgid "Check filament location" -msgstr "" +msgstr "Check filament location" msgid "Grab new filament" msgstr "Grab new filament" @@ -2408,6 +2416,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " +"load or unload filament." msgid "Edit" msgstr "編集" @@ -2482,7 +2492,7 @@ msgid "Orienting canceled." msgstr "" msgid "Filling" -msgstr "" +msgstr "Filling" msgid "Bed filling canceled." msgstr "Bed filling canceled." @@ -2566,7 +2576,7 @@ msgid "Sending print job through cloud service" msgstr "クラウド経由で造形タスクを送信" msgid "Print task sending times out." -msgstr "" +msgstr "Print task sending times out." msgid "Service Unavailable" msgstr "サービスは利用できません" @@ -2583,7 +2593,7 @@ msgstr "送信しました、%s秒後デバイスページへ移動します" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" -msgstr "" +msgstr "Successfully sent. Automatically jumping to the next page in %ss" msgid "An SD card needs to be inserted before printing via LAN." msgstr "SDカードが必要です" @@ -2740,10 +2750,10 @@ msgid "Setting AMS slot information while printing is not supported" msgstr "造形中に、AMSスロットを設定できません。" msgid "Factors of Flow Dynamics Calibration" -msgstr "" +msgstr "Factors of Flow Dynamics Calibration" msgid "PA Profile" -msgstr "" +msgstr "PA Profile" msgid "Factor K" msgstr "係数K" @@ -2761,10 +2771,10 @@ msgid "You need to select the material type and color first." msgstr "You need to select the material type and color first." msgid "Please input a valid value (K in 0~0.3)" -msgstr "" +msgstr "Please input a valid value (K in 0~0.3)" msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" -msgstr "" +msgstr "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" msgid "Other Color" msgstr "Other Color" @@ -2865,7 +2875,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "外部スプールホルダーのフィラメントで造形します" msgid "Current Cabin humidity" -msgstr "" +msgstr "Current Cabin humidity" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2873,6 +2883,10 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"Please change the desiccant when it is too wet. The indicator may not " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It takes a few hours to absorb the moisture, and " +"low temperatures also slow down the process." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -2903,16 +2917,19 @@ msgid "" "When the current material run out, the printer will continue to print in the " "following order." msgstr "" +"When the current material runs out, the printer will continue to print " +"materials in the following order." msgid "Group" msgstr "Group" msgid "The printer does not currently support auto refill." -msgstr "" +msgstr "The printer does not currently support auto refill." msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "" +"AMS filament backup is not enabled; please enable it in the AMS settings." msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " @@ -2920,12 +2937,16 @@ msgid "" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" +"If there are two identical filaments in an AMS, AMS filament backup will be " +"enabled. \n" +"(This currently supports automatic supply of consumables with the same " +"brand, material type, and color)" msgid "DRY" -msgstr "" +msgstr "DRY" msgid "WET" -msgstr "" +msgstr "WET" msgid "AMS Settings" msgstr "AMS 設定" @@ -2944,6 +2965,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"Note: if a new filament is inserted during printing, the AMS will not " +"automatically read any information until printing is completed." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -2987,12 +3010,14 @@ msgid "" msgstr "使用中のフィラメントが切れた時に、同じ属性のフィラメントに切り替えます" msgid "Air Printing Detection" -msgstr "" +msgstr "Air Printing Detection" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"Detects clogging and filament grinding, halting printing immediately to " +"conserve time and filament." msgid "File" msgstr "ファイル" @@ -3067,7 +3092,7 @@ msgid "Running post-processing scripts" msgstr "後処理スクリプトを実行" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." msgstr "" @@ -3134,10 +3159,10 @@ msgid "Device" msgstr "デバイス" msgid "Task Sending" -msgstr "" +msgstr "Task Sending" msgid "Task Sent" -msgstr "" +msgstr "Task Sent" msgid "Edit multiple printers" msgstr "" @@ -3157,7 +3182,7 @@ msgid "Offline" msgstr "オフライン" msgid "No task" -msgstr "" +msgstr "No task" msgid "View" msgstr "表示" @@ -3169,16 +3194,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "" +msgstr "Device Name" msgid "Task Name" -msgstr "" +msgstr "Task Name" msgid "Device Status" -msgstr "" +msgstr "Device Status" msgid "Actions" -msgstr "" +msgstr "Actions" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3221,7 +3246,7 @@ msgid "Pending" msgstr "" msgid "Sending" -msgstr "" +msgstr "送信中" msgid "Sending Finish" msgstr "" @@ -3248,25 +3273,25 @@ msgid "Stop" msgstr "中止" msgid "Task Status" -msgstr "" +msgstr "Task Status" msgid "Sent Time" -msgstr "" +msgstr "Sent Time" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "There are no tasks to be sent!" msgid "No historical tasks!" -msgstr "" +msgstr "No historical tasks!" msgid "Loading..." msgstr "読込み中" msgid "No AMS" -msgstr "" +msgstr "No AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "Send to Multi-device" msgid "Preparing print job" msgstr "造形タスクを準備" @@ -3281,22 +3306,31 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "" +msgstr "Use External Spool" msgid "Use AMS" -msgstr "" +msgstr "Use AMS" msgid "Select Printers" -msgstr "" +msgstr "Select Printers" msgid "Ams Status" -msgstr "" +msgstr "AMS Status" msgid "Printing Options" +msgstr "Printing Options" + +msgid "Bed Leveling" +msgstr "ベッドレベリング" + +msgid "Timelapse" +msgstr "タイムラプス" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "Send Options" msgid "Send" msgstr "送信" @@ -3305,13 +3339,16 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"printers at the same time. (It depends on how many devices can undergo " +"heating at the same time.)" msgid "Wait" -msgstr "" +msgstr "Wait" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Name is invalid;" msgstr "名称が無効です" @@ -3403,14 +3440,18 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" +"The recommended minimum temperature is less than 190 degree or the " +"recommended maximum temperature is greater than 300 degree.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" +"The recommended minimum temperature cannot be higher than the recommended " +"maximum temperature.\n" msgid "Please check.\n" -msgstr "" +msgstr "Please check.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3437,6 +3478,9 @@ msgid "" "it may result in material softening and clogging.The maximum safe " "temperature for the material is %d" msgstr "" +"Current chamber temperature is higher than the material's safe temperature; " +"this may result in material softening and nozzle clogs.The maximum safe " +"temperature for the material is %d" msgid "" "Too small layer height.\n" @@ -3547,7 +3591,7 @@ msgstr "" "layers is 0, sparse infill density is 0 and timelapse type is traditional." msgid " But machines with I3 structure will not generate timelapse videos." -msgstr "" +msgstr " But machines with I3 structure will not generate timelapse videos." msgid "" "Change these settings automatically? \n" @@ -3622,46 +3666,46 @@ msgid "Paused due to heat bed temperature malfunction" msgstr "ベッド温度異常により一時停止" msgid "Filament unloading" -msgstr "" +msgstr "Filament unloading" msgid "Skip step pause" -msgstr "" +msgstr "Skip step pause" msgid "Filament loading" -msgstr "" +msgstr "Filament loading" msgid "Motor noise calibration" -msgstr "" +msgstr "Motor noise calibration" msgid "Paused due to AMS lost" -msgstr "" +msgstr "Paused due to AMS lost" msgid "Paused due to low speed of the heat break fan" -msgstr "" +msgstr "Paused due to low speed of the heat break fan" msgid "Paused due to chamber temperature control error" -msgstr "" +msgstr "Paused due to chamber temperature control error" msgid "Cooling chamber" -msgstr "" +msgstr "Cooling chamber" msgid "Paused by the Gcode inserted by user" -msgstr "" +msgstr "Paused by the Gcode inserted by user" msgid "Motor noise showoff" -msgstr "" +msgstr "Motor noise showoff" msgid "Nozzle filament covered detected pause" -msgstr "" +msgstr "Nozzle filament covered detected pause" msgid "Cutter error pause" -msgstr "" +msgstr "Cutter error pause" msgid "First layer error pause" -msgstr "" +msgstr "First layer error pause" msgid "Nozzle clog pause" -msgstr "" +msgstr "Nozzle clog pause" msgid "Unknown" msgstr "不明" @@ -3692,18 +3736,27 @@ msgid "" "45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" +"The current chamber temperature or the target chamber temperature exceeds " +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" +"TPU) is not allowed to be loaded." msgid "" "Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " "avoid extruder clogging,it is not allowed to set the chamber temperature " "above 45℃." msgstr "" +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " +"above 45℃." msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated. And the target chamber temperature will " "automatically be set to 0℃." msgstr "" +"When you set the chamber temperature below 40℃, the chamber temperature " +"control will not be activated, and the target chamber temperature will " +"automatically be set to 0℃." msgid "Failed to start printing job" msgstr "造形タスクを開始できませんでした" @@ -3711,34 +3764,39 @@ msgstr "造形タスクを開始できませんでした" msgid "" "This calibration does not support the currently selected nozzle diameter" msgstr "" +"This calibration does not support the currently selected nozzle diameter" msgid "Current flowrate cali param is invalid" -msgstr "" +msgstr "Current flowrate cali param is invalid" msgid "Selected diameter and machine diameter do not match" -msgstr "" +msgstr "Selected diameter and machine diameter do not match" msgid "Failed to generate cali gcode" -msgstr "" +msgstr "Failed to generate cali gcode" msgid "Calibration error" -msgstr "" +msgstr "Calibration error" msgid "TPU is not supported by AMS." -msgstr "" +msgstr "TPU is not supported by the AMS." msgid "Bambu PET-CF/PA6-CF is not supported by AMS." -msgstr "" +msgstr "Bambu PET-CF/PA6-CF is not supported by the AMS." msgid "" "Damp PVA will become flexible and get stuck inside AMS,please take care to " "dry it before use." msgstr "" +"Damp PVA will become flexible and get stuck inside the AMS; please take care " +"to dry it well before use." msgid "" "CF/GF filaments are hard and brittle, It's easy to break or get stuck in " "AMS, please use with caution." msgstr "" +"CF/GF filaments are hard and brittle, so they can easily break or get stuck " +"in an AMS; please use with caution." msgid "default" msgstr "デフォルト" @@ -3821,7 +3879,7 @@ msgstr "パラメータ検証" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "" +msgstr "Value %s is out of range. The valid range is from %d to %d." msgid "Value is out of range." msgstr "値が範囲外です。" @@ -3903,7 +3961,7 @@ msgid "Flushed" msgstr "フラッシュ" msgid "Tower" -msgstr "" +msgstr "Tower" msgid "Total" msgstr "合計" @@ -3915,7 +3973,7 @@ msgid "Total time" msgstr "総時間" msgid "Total cost" -msgstr "" +msgstr "Total cost" msgid "up to" msgstr "最大" @@ -4011,10 +4069,10 @@ msgid "Normal mode" msgstr "通常モード" msgid "Total Filament" -msgstr "" +msgstr "Total Filament" msgid "Model Filament" -msgstr "" +msgstr "Model Filament" msgid "Prepare time" msgstr "準備時間" @@ -4110,7 +4168,7 @@ msgid "Spacing" msgstr "間隔" msgid "0 means auto spacing." -msgstr "" +msgstr "0 means auto spacing." msgid "Auto rotate for arrangement" msgstr "自動回転" @@ -4122,7 +4180,7 @@ msgid "Avoid extrusion calibration region" msgstr "押出しキャリブレーション領域を避ける" msgid "Align to Y axis" -msgstr "" +msgstr "Align to Y axis" msgid "Add plate" msgstr "プレートを追加" @@ -4188,7 +4246,7 @@ msgid "An object is layed over the boundary of plate." msgstr "プレートの境界を超えるオブジェクトがあります" msgid "A G-code path goes beyond the max print height." -msgstr "" +msgstr "A G-code path goes beyond the max print height." msgid "A G-code path goes beyond the boundary of plate." msgstr "G-codeはプレートの境界を超えています。" @@ -4214,10 +4272,10 @@ msgid "Bed leveling" msgstr "ベッドレベリング" msgid "Vibration compensation" -msgstr "" +msgstr "Vibration compensation" msgid "Motor noise cancellation" -msgstr "" +msgstr "Motor noise cancellation" msgid "Calibration program" msgstr "キャリブレーション項目" @@ -4243,7 +4301,7 @@ msgid "Calibrating" msgstr "キャリブレーション中" msgid "No step selected" -msgstr "" +msgstr "No step selected" msgid "Auto-record Monitoring" msgstr "自動録画モニタリング" @@ -4252,7 +4310,7 @@ msgid "Go Live" msgstr "公開" msgid "Liveview Retry" -msgstr "" +msgstr "Liveview Retry" msgid "Resolution" msgstr "分解能" @@ -4309,7 +4367,7 @@ msgid "Preview" msgstr "プレビュー" msgid "Multi-device" -msgstr "" +msgstr "Multi-device" msgid "Project" msgstr "プロジェクト" @@ -4455,6 +4513,12 @@ msgstr "3MF/STL/STEP/SVG/OBJ/AMFをインポート" msgid "Load a model" msgstr "モデルを読み込む" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "構成データ" @@ -4465,10 +4529,10 @@ msgid "Import" msgstr "インポート" msgid "Export all objects as one STL" -msgstr "" +msgstr "Export all objects as one STL" msgid "Export all objects as STLs" -msgstr "" +msgstr "Export all objects as STLs" msgid "Export Generic 3MF" msgstr "汎用3MF" @@ -4594,49 +4658,49 @@ msgid "Help" msgstr "ヘルプ" msgid "Temperature Calibration" -msgstr "" +msgstr "Temperature Calibration" msgid "Pass 1" -msgstr "" +msgstr "Pass 1" msgid "Flow rate test - Pass 1" -msgstr "" +msgstr "Flow rate test - Pass 1" msgid "Pass 2" -msgstr "" +msgstr "Pass 2" msgid "Flow rate test - Pass 2" -msgstr "" +msgstr "Flow rate test - Pass 2" msgid "Flow rate" -msgstr "" +msgstr "Flow rate" msgid "Pressure advance" -msgstr "" +msgstr "Pressure advance" msgid "Retraction test" -msgstr "" +msgstr "Retraction test" msgid "Orca Tolerance Test" -msgstr "" +msgstr "Orca Tolerance Test" msgid "Max flowrate" -msgstr "" +msgstr "Max flowrate" msgid "VFA" -msgstr "" +msgstr "VFA" msgid "More..." -msgstr "" +msgstr "More..." msgid "Tutorial" -msgstr "" +msgstr "Tutorial" msgid "Calibration help" -msgstr "" +msgstr "Calibration help" msgid "More calibrations" -msgstr "" +msgstr "More calibrations" msgid "&Open G-code" msgstr "G-codeを開く" @@ -4749,48 +4813,53 @@ msgid "Synchronization" msgstr "同期" msgid "The device cannot handle more conversations. Please retry later." -msgstr "" +msgstr "The device cannot handle more conversations. Please retry later." msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "" +msgstr "Player is malfunctioning. Please reinstall the system player." msgid "The player is not loaded, please click \"play\" button to retry." -msgstr "" +msgstr "The player is not loaded; please click the \"play\" button to retry." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "Please confirm if the printer is connected." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" +"The printer is currently busy downloading. Please try again after it " +"finishes." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "Printer camera is malfunctioning." msgid "Problem occured. Please update the printer firmware and try again." -msgstr "" +msgstr "A problem occurred. Please update the printer firmware and try again." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "Please enter the IP of the printer to connect." msgid "Initializing..." msgstr "初期化中..." msgid "Connection Failed. Please check the network and try again" -msgstr "" +msgstr "Connection Failed. Please check the network and try again" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"Please check the network and try again. You can restart or update the " +"printer if the issue persists." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "The printer has been logged out and cannot connect." msgid "Stopped." msgstr "中止しました" @@ -4845,9 +4914,6 @@ msgstr "月でグループ化、新しい順で並べ替え" msgid "Show all files, recent first." msgstr "全てのファイルを表示" -msgid "Timelapse" -msgstr "タイムラプス" - msgid "Switch to timelapse files." msgstr "タイムラプスに切替え" @@ -4879,7 +4945,7 @@ msgid "Refresh" msgstr "再読込" msgid "Reload file list from printer." -msgstr "" +msgstr "Reload file list from printer." msgid "No printers." msgstr "プリンタなし" @@ -4892,10 +4958,10 @@ msgid "Loading file list..." msgstr "ファイルリストを読込み中" msgid "No files" -msgstr "" +msgstr "ファイル無し" msgid "Load failed" -msgstr "" +msgstr "Load failed" msgid "Initialize failed (Device connection not ready)!" msgstr "Initialization failed (Device connection not ready)!" @@ -4904,15 +4970,17 @@ msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"Browsing file in SD card is not supported in current firmware. Please update " +"the printer firmware." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "LAN Connection Failed (Failed to view sdcard)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "Browsing file in SD card is not supported in LAN Only Mode." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -4938,10 +5006,10 @@ msgid "Fetching model infomations ..." msgstr "Fetching model information..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "Failed to fetch model information from printer." msgid "Failed to parse model information." -msgstr "" +msgstr "Failed to parse model information." msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -4957,6 +5025,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"File: %s\n" +"Title: %s\n" msgid "Download waiting..." msgstr "ダウンロード待ち" @@ -4978,22 +5048,24 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"Reconnecting the printer, the operation cannot be completed immediately, " +"please try again later." msgid "File does not exist." -msgstr "" +msgstr "File does not exist." msgid "File checksum error. Please retry." -msgstr "" +msgstr "File checksum error. Please retry." msgid "Not supported on the current printer version." -msgstr "" +msgstr "Not supported on the current printer version." msgid "Storage unavailable, insert SD card." -msgstr "" +msgstr "Storage unavailable; please insert MicroSD card." #, c-format, boost-format msgid "Error code: %d" -msgstr "" +msgstr "Error code: %d" msgid "Speed:" msgstr "速度" @@ -5050,17 +5122,21 @@ msgid "" "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." msgstr "" +"You have completed printing the mall model, \n" +"but synchronizing rating information has failed." msgid "How do you like this printing file?" -msgstr "" +msgstr "How do you like this printing file?" msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" msgstr "" +"(The model has already been rated. Your rating will overwrite the previous " +"rating.)" msgid "Rate" -msgstr "" +msgstr "Rate" msgid "Camera" msgstr "カメラ" @@ -5078,7 +5154,7 @@ msgid "Control" msgstr "コントロール" msgid "Printer Parts" -msgstr "" +msgstr "Printer Parts" msgid "Print Options" msgstr "造型オプション" @@ -5135,6 +5211,8 @@ msgid "" "Please heat the nozzle to above 170 degree before loading or unloading " "filament." msgstr "" +"Please heat the nozzle to above 170 degree before loading or unloading " +"filament." msgid "Still unload" msgstr "アンロード" @@ -5171,95 +5249,108 @@ msgid "Can't start this without SD card." msgstr "起動するのにSDカードが必要です。" msgid "Rate the Print Profile" -msgstr "" +msgstr "Rate the Print Profile" msgid "Comment" -msgstr "" +msgstr "Comment" msgid "Rate this print" -msgstr "" +msgstr "Rate this print" msgid "Add Photo" -msgstr "" +msgstr "Add Photo" msgid "Delete Photo" -msgstr "" +msgstr "Delete Photo" msgid "Submit" -msgstr "" +msgstr "Submit" msgid "Please click on the star first." -msgstr "" +msgstr "Please click on the star first." msgid "InFo" -msgstr "" +msgstr "Info" msgid "Get oss config failed." -msgstr "" +msgstr "Get oss config failed." msgid "Upload Pictrues" -msgstr "" +msgstr "Upload Pictures" msgid "Number of images successfully uploaded" -msgstr "" +msgstr "Number of images successfully uploaded" msgid " upload failed" -msgstr "" +msgstr " upload failed" msgid " upload config prase failed\n" -msgstr "" +msgstr " upload config prase failed\n" msgid " No corresponding storage bucket\n" -msgstr "" +msgstr " No corresponding storage bucket\n" msgid " can not be opened\n" -msgstr "" +msgstr " cannot be opened\n" msgid "" "The following issues occurred during the process of uploading images. Do you " "want to ignore them?\n" "\n" msgstr "" +"The following issues occurred during the process of uploading images. Do you " +"want to ignore them?\n" +"\n" msgid "info" msgstr "情報" msgid "Synchronizing the printing results. Please retry a few seconds later." -msgstr "" +msgstr "Synchronizing the printing results. Please retry a few seconds later." msgid "Upload failed\n" -msgstr "" +msgstr "Upload failed\n" msgid "obtaining instance_id failed\n" -msgstr "" +msgstr "obtaining instance_id failed\n" msgid "" "Your comment result cannot be uploaded due to some reasons. As follows:\n" "\n" " error code: " msgstr "" +"Your comment result cannot be uploaded due to the following reasons:\n" +"\n" +" error code: " msgid "error message: " -msgstr "" +msgstr "error message: " msgid "" "\n" "\n" "Would you like to redirect to the webpage for rating?" msgstr "" +"\n" +"\n" +"Would you like to redirect to the webpage to give a rating?" msgid "" "Some of your images failed to upload. Would you like to redirect to the " "webpage for rating?" msgstr "" +"Some of your images failed to upload. Would you like to redirect to the " +"webpage for rating?" msgid "You can select up to 16 images." -msgstr "" +msgstr "You can select up to 16 images." msgid "" "At least one successful print record of this print profile is required \n" "to give a positive rating(4 or 5stars)." msgstr "" +"At least one successful print record of this print profile is required \n" +"to give a positive rating (4 or 5 stars)." msgid "Status" msgstr "デバイス状態" @@ -5309,7 +5400,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "" +msgstr "Download Beta Version" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5318,13 +5409,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "" +msgstr "Current Version: " msgid "Latest Version: " -msgstr "" +msgstr "Latest Version: " msgid "Not for now" -msgstr "" +msgstr "Not for now" msgid "3D Mouse disconnected." msgstr "3D Mouseが切断されました。" @@ -5351,10 +5442,10 @@ msgid "Details" msgstr "詳細" msgid "New printer config available." -msgstr "" +msgstr "New printer config available." msgid "Wiki" -msgstr "" +msgstr "Wiki" msgid "Undo integration failed." msgstr "統合の取り消しに失敗しました。" @@ -5392,12 +5483,12 @@ msgstr[0] "" msgid "ERROR" msgstr "エラー" -msgid "CANCELED" -msgstr "取消し済" - msgid "COMPLETED" msgstr "完了" +msgid "CANCELED" +msgstr "取消し済" + msgid "Cancel upload" msgstr "アップロードを取消し" @@ -5414,10 +5505,10 @@ msgid "Export successfully." msgstr "エクスポートが成功しました。" msgid "Model file downloaded." -msgstr "" +msgstr "Model file downloaded." msgid "Serious warning:" -msgstr "" +msgstr "Serious warning:" msgid " (Repair)" msgstr " (修復)" @@ -5501,29 +5592,29 @@ msgid "Auto-recovery from step loss" msgstr "自動回復" msgid "Allow Prompt Sound" -msgstr "" +msgstr "Allow Prompt Sound" msgid "Filament Tangle Detect" -msgstr "" +msgstr "Filament Tangle Detection" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Nozzle Clumping Detection" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "" +msgstr "Check if the nozzle is clumping by filament or other foreign objects." msgid "Nozzle Type" -msgstr "" +msgstr "Nozzle Type" msgid "Stainless Steel" -msgstr "" +msgstr "Stainless Steel" msgid "Hardened Steel" -msgstr "" +msgstr "Hardened Steel" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "全般" @@ -5614,7 +5705,7 @@ msgid "Set filaments to use" msgstr "フィラメントを選択" msgid "Search plate, object and part." -msgstr "" +msgstr "Search plate, object and part." msgid "" "No AMS filaments. Please select a printer in 'Device' page to load AMS info." @@ -5678,6 +5769,9 @@ msgid "" "clogged when printing this filament in a closed enclosure. Please open the " "front door and/or remove the upper glass." msgstr "" +"The current heatbed temperature is relatively high. The nozzle may clog when " +"printing this filament in a closed environment. Please open the front door " +"and/or remove the upper glass." msgid "" "The nozzle hardness required by the filament is higher than the default " @@ -5691,6 +5785,8 @@ msgid "" "Enabling traditional timelapse photography may cause surface imperfections. " "It is recommended to change to smooth mode." msgstr "" +"Enabling traditional timelapse photography may cause surface imperfections. " +"It is recommended to change to smooth mode." msgid "Expand sidebar" msgstr "" @@ -5734,26 +5830,30 @@ msgid "Please correct them in the param tabs" msgstr "Please correct them in the Param tabs" msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "" +msgstr "The 3mf has following modified G-code in filament or printer presets:" msgid "" "Please confirm that these modified G-codes are safe to prevent any damage to " "the machine!" msgstr "" +"Please confirm that these modified G-codes are safe to prevent any damage to " +"the machine!" msgid "Modified G-codes" -msgstr "" +msgstr "Modified G-code" msgid "The 3mf has following customized filament or printer presets:" -msgstr "" +msgstr "The 3mf has following customized filament or printer presets:" msgid "" "Please confirm that the G-codes within these presets are safe to prevent any " "damage to the machine!" msgstr "" +"Please confirm that the G-codes within these presets are safe to prevent any " +"damage to the machine!" msgid "Customized Preset" -msgstr "" +msgstr "Customized Preset" msgid "Name of components inside step file is not UTF8 format!" msgstr "ファイルのエンコーディング方式はUTF8形式ではありません" @@ -5818,22 +5918,24 @@ msgid "Export STL file:" msgstr "STLファイルをエクスポート:" msgid "Export AMF file:" -msgstr "" +msgstr "Export AMF file:" msgid "Save file as:" msgstr "名前を付けて保存" msgid "Export OBJ file:" -msgstr "" +msgstr "Export OBJ file:" #, c-format, boost-format msgid "" "The file %s already exists\n" "Do you want to replace it?" msgstr "" +"The file %s already exists.\n" +"Do you want to replace it?" msgid "Comfirm Save As" -msgstr "" +msgstr "Confirm Save As" msgid "Delete object which is a part of cut object" msgstr "Delete object which is a part of cut object" @@ -5854,13 +5956,13 @@ msgid "Another export job is running." msgstr "エクスポート中です" msgid "Unable to replace with more than one volume" -msgstr "" +msgstr "Unable to replace with more than one volume" msgid "Error during replace" msgstr "交換時のエラー" msgid "Replace from:" -msgstr "" +msgstr "Replace from:" msgid "Select a new file" msgstr "ファイルを選択" @@ -5872,19 +5974,19 @@ msgid "Please select a file" msgstr "ファイルを選択してください" msgid "Do you want to replace it" -msgstr "" +msgstr "Do you want to replace it?" msgid "Message" -msgstr "" +msgstr "Message" msgid "Reload from:" -msgstr "" +msgstr "Reload from:" msgid "Unable to reload:" -msgstr "" +msgstr "Unable to reload:" msgid "Error during reload" -msgstr "" +msgstr "Error during reload" msgid "There are warnings after slicing models:" msgstr "スライスの警告:" @@ -5945,13 +6047,13 @@ msgid "prepare 3mf file..." msgstr "3mfファイルを準備" msgid "Download failed, unknown file format." -msgstr "" +msgstr "Download failed; unknown file format." msgid "downloading project ..." msgstr "プロジェクトをダウンロード中" msgid "Download failed, File size exception." -msgstr "" +msgstr "Download failed; File size exception." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -5974,6 +6076,20 @@ msgstr "有効なG-codeが含まれていません。" msgid "Error occurs while loading G-code file" msgstr "G-codeファイルの読込みにエラーが発生しました" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "プロジェクトをドロップ" @@ -6015,13 +6131,13 @@ msgid "Save G-code file as:" msgstr "名前を付けて保存" msgid "Save SLA file as:" -msgstr "" +msgstr "Save SLA file as:" msgid "The provided file name is not valid." -msgstr "" +msgstr "The provided file name is not valid." msgid "The following characters are not allowed by a FAT file system:" -msgstr "" +msgstr "The following characters are not allowed by a FAT file system:" msgid "Save Sliced file as:" msgstr "名前を付けて保存:" @@ -6036,22 +6152,24 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try agian." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "Reason: part \"%1%\" is empty." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "Reason: part \"%1%\" does not bound a volume." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "Reason: part \"%1%\" has self intersection." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "Reason: \"%1%\" and another part have no intersection." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6100,7 +6218,7 @@ msgstr "Number of currently selected parts: %1%\n" #, boost-format msgid "Number of currently selected objects: %1%\n" -msgstr "" +msgstr "Number of currently selected objects: %1%\n" #, boost-format msgid "Part name: %1%\n" @@ -6232,6 +6350,9 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"On OSX there is always only one instance of app running by default. However " +"it is allowed to run multiple instances of same app from the command line. " +"In such case this setting will allow only one instance." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6295,17 +6416,17 @@ msgid "If enabled, useful hints are displayed at startup." msgstr "有効になる場合、起動時にヒントを表示されます。" msgid "Flushing volumes: Auto-calculate everytime the color changed." -msgstr "" +msgstr "Flushing volumes: Auto-calculate everytime the color changed." msgid "If enabled, auto-calculate everytime the color changed." -msgstr "" +msgstr "If enabled, auto-calculate every time the color changes." msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "" +msgstr "Flushing volumes: Auto-calculate every time the filament is changed." msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "" +msgstr "If enabled, auto-calculate every time filament is changed" msgid "Remember printer configuration" msgstr "" @@ -6322,6 +6443,8 @@ msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." msgid "Network" msgstr "" @@ -6362,6 +6485,20 @@ msgstr ".step/.stpファイルをOrca Slicerに関連付けます。" msgid "If enabled, sets OrcaSlicer as default application to open .step files" msgstr "デフォルトで.step/.stpファイルをOrca Slicerで開く" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Maximum recent projects" @@ -6372,7 +6509,7 @@ msgid "Clear my choice on the unsaved projects." msgstr "Clear my choice on the unsaved projects." msgid "No warnings when loading 3MF with modified G-codes" -msgstr "" +msgstr "No warnings when loading 3MF with modified G-code" msgid "Auto-Backup" msgstr "自動バックアップ" @@ -6528,25 +6665,25 @@ msgid "Add/Remove materials" msgstr "素材を追加/削除" msgid "Select/Remove printers(system presets)" -msgstr "" +msgstr "Select/Remove printers(system presets)" msgid "Create printer" -msgstr "" +msgstr "Create printer" msgid "The selected preset is null!" -msgstr "" +msgstr "The selected preset is null!" msgid "End" -msgstr "" +msgstr "End" msgid "Customize" -msgstr "" +msgstr "Customize" msgid "Other layer filament sequence" -msgstr "" +msgstr "Other layer filament sequence" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "Please input layer value (>= 2)." msgid "Plate name" msgstr "Plate name" @@ -6558,16 +6695,16 @@ msgid "Print sequence" msgstr "造形シーケンス" msgid "Same as Global" -msgstr "" +msgstr "Same as Global" msgid "Disable" -msgstr "" +msgstr "Disable" msgid "Spiral vase" msgstr "スパイラル" msgid "First layer filament sequence" -msgstr "" +msgstr "First layer filament sequence" msgid "Same as Global Plate Type" msgstr "Same as Global Plate Type" @@ -6681,7 +6818,7 @@ msgid "(LAN)" msgstr "(LAN)" msgid "Search" -msgstr "" +msgstr "Search" msgid "My Device" msgstr "私のデバイス" @@ -6717,7 +6854,7 @@ msgid "Bambu Smooth PEI Plate" msgstr "" msgid "High temperature Plate" -msgstr "" +msgstr "High temperature Plate" msgid "Bambu Textured PEI Plate" msgstr "" @@ -6725,14 +6862,11 @@ msgstr "" msgid "Send print job to" msgstr "造形タスクを送信" -msgid "Bed Leveling" -msgstr "ベッドレベリング" - msgid "Flow Dynamics Calibration" -msgstr "" +msgstr "Flow Dynamics Calibration" msgid "Click here if you can't connect to the printer" -msgstr "" +msgstr "Click here if you can't connect to the printer" msgid "send completed" msgstr "送信完了" @@ -6811,6 +6945,8 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"The selected printer (%s) is incompatible with the chosen printer profile in " +"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "SDカードが必要です" @@ -6830,10 +6966,13 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" +"When spiral vase mode is enabled, machines with I3 structure will not " +"generate timelapse videos." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" +"Timelapse is not supported because Print sequence is set to \"By object\"." msgid "Errors" msgstr "エラー" @@ -6860,26 +6999,31 @@ msgstr "" #, c-format, boost-format msgid "nozzle in preset: %s %s" -msgstr "" +msgstr "nozzle in preset: %s %s" #, c-format, boost-format msgid "nozzle memorized: %.1f %s" -msgstr "" +msgstr "nozzle memorized: %.1f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"Your nozzle diameter in sliced file is not consistent with the saved nozzle. " +"If you changed your nozzle lately, please go to Device > Printer Parts to " +"change settings." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" msgstr "" +"Printing high temperature material(%s material) with %s may cause nozzle " +"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" +msgstr "Please fix the error above, otherwise printing cannot continue." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -6889,20 +7033,23 @@ msgstr "" msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" +"Connecting to the printer. Unable to cancel during the connection process." msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." msgstr "" +"Caution! Flow calibration on Textured PEI Plates may fail due to the " +"scattered surface." msgid "Automatic flow calibration using Micro Lidar" -msgstr "" +msgstr "Automatic flow calibration using the Micro Lidar" msgid "Modifying the device name" msgstr "デバイス名を変更" msgid "Bind with Pin Code" -msgstr "" +msgstr "Bind with Pin Code" msgid "Send to Printer SD card" msgstr "プリンターのSDカードに送信" @@ -6911,7 +7058,7 @@ msgid "Cannot send the print task when the upgrade is in progress" msgstr "アップデート中では造形タスクを送信できません" msgid "The selected printer is incompatible with the chosen printer presets." -msgstr "" +msgstr "The selected printer is incompatible with the chosen printer presets." msgid "An SD card needs to be inserted before send to printer SD card." msgstr "" @@ -6928,7 +7075,7 @@ msgid "Slice ok." msgstr "スライス完了" msgid "View all Daily tips" -msgstr "" +msgstr "View all Daily tips" msgid "Failed to create socket" msgstr "Failed to create socket" @@ -6961,21 +7108,23 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"Please Find the Pin Code in Account page on printer screen,\n" +" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "" +msgstr "Can't find Pin Code?" msgid "Pin Code" -msgstr "" +msgstr "Pin Code" msgid "Binding..." -msgstr "" +msgstr "Binding..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Please confirm on the printer screen" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "Log in failed. Please check the Pin Code." msgid "Log in printer" msgstr "プリンターを登録" @@ -7093,7 +7242,7 @@ msgstr "" "ワーを有効にしますか?" msgid "Still print by object?" -msgstr "" +msgstr "Still print by object?" msgid "" "We have added an experimental style \"Tree Slim\" that features smaller " @@ -7147,15 +7296,17 @@ msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " "height limits ,this may cause printing quality issues." msgstr "" +"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " +"height limits ,this may cause printing quality issues." msgid "Adjust to the set range automatically? \n" -msgstr "" +msgstr "Adjust to the set range automatically? \n" msgid "Adjust" -msgstr "" +msgstr "Adjust" msgid "Ignore" -msgstr "" +msgstr "Ignore" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7163,6 +7314,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " +"printing complications." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7170,6 +7325,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications. Please use with the latest printer firmware." msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7238,7 +7397,7 @@ msgid "Acceleration" msgstr "加速度" msgid "Jerk(XY)" -msgstr "" +msgstr "Jerk(XY)" msgid "Raft" msgstr "ラフト" @@ -7265,7 +7424,7 @@ msgid "Post-processing Scripts" msgstr "Post-processing Scripts" msgid "Notes" -msgstr "" +msgstr "Notes" msgid "Frequent" msgstr "よく使う" @@ -7334,13 +7493,16 @@ msgstr "" "エンジニアリングプレートに使用できない意味です。" msgid "Smooth PEI Plate / High Temp Plate" -msgstr "" +msgstr "Smooth PEI Plate / High Temp Plate" msgid "" "Bed temperature when Smooth PEI Plate/High temperature plate is installed. " "Value 0 means the filament does not support to print on the Smooth PEI Plate/" "High Temp Plate" msgstr "" +"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " +"Value 0 means the filament does not support to print on the Smooth PEI Plate/" +"High Temp Plate" msgid "Textured PEI Plate" msgstr "PEIプレート" @@ -7390,13 +7552,13 @@ msgid "Auxiliary part cooling fan" msgstr "パーツ補助冷却ファン" msgid "Exhaust fan" -msgstr "" +msgstr "Exhaust fan" msgid "During print" -msgstr "" +msgstr "During print" msgid "Complete print" -msgstr "" +msgstr "Complete print" msgid "Filament start G-code" msgstr "フィラメント開始G-code" @@ -7447,7 +7609,7 @@ msgid "Machine end G-code" msgstr "プリンター終了G-code" msgid "Printing by object G-code" -msgstr "" +msgstr "Printing by object G-code" msgid "Before layer change G-code" msgstr "積層変更前のG-code" @@ -7456,7 +7618,7 @@ msgid "Layer change G-code" msgstr "積層変更時のG-code" msgid "Time lapse G-code" -msgstr "" +msgstr "Time lapse G-code" msgid "Change filament G-code" msgstr "フィラメント変更G-code" @@ -7508,9 +7670,12 @@ msgid "" "\n" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Disable it in order to enable Firmware Retraction?" msgid "Firmware Retraction" -msgstr "" +msgstr "Firmware Retraction" msgid "Detached" msgstr "分離的" @@ -7520,9 +7685,11 @@ msgid "" "%d Filament Preset and %d Process Preset is attached to this printer. Those " "presets would be deleted if the printer is deleted." msgstr "" +"%d Filament Preset and %d Process Preset is attached to this printer. Those " +"presets would be deleted if the printer is deleted." msgid "Presets inherited by other presets can not be deleted!" -msgstr "" +msgstr "Presets inherited by other presets can not be deleted!" msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." @@ -7542,6 +7709,9 @@ msgid "" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" +"Are you sure to delete the selected preset? \n" +"If the preset corresponds to a filament currently in use on your printer, " +"please reset the filament information for that slot." #, boost-format msgid "Are you sure to %1% the selected preset?" @@ -7638,12 +7808,14 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "You have changed some settings of preset \"%1%\". " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"You can save or discard the preset values you have modified." msgid "" "\n" @@ -7652,7 +7824,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "" +msgstr "You have previously modified your settings." msgid "" "\n" @@ -7804,7 +7976,7 @@ msgid "Auto-Calc" msgstr "自動計算" msgid "Re-calculate" -msgstr "" +msgstr "Re-calculate" msgid "Flushing volumes for filament change" msgstr "フィラメントを入替える為のフラッシュ量" @@ -7844,10 +8016,10 @@ msgid "To" msgstr "→" msgid "Bambu Network plug-in not detected." -msgstr "" +msgstr "Bambu Network plug-in not detected." msgid "Click here to download it." -msgstr "" +msgstr "Click here to download it." msgid "Login" msgstr "サインイン" @@ -7880,7 +8052,7 @@ msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "3Dconnexion設定を表示/非表示" msgid "Switch table page" -msgstr "" +msgstr "Switch table page" msgid "Show keyboard shortcuts list" msgstr "ショートカット一覧を表示" @@ -8140,49 +8312,49 @@ msgid "New version of Orca Slicer" msgstr "新バージョン" msgid "Skip this Version" -msgstr "" +msgstr "Skip this Version" msgid "Done" msgstr "Done" msgid "resume" -msgstr "" +msgstr "resume" msgid "Resume Printing" -msgstr "" +msgstr "Resume Printing" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Resume Printing (defects acceptable)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Resume Printing (problem solved)" msgid "Stop Printing" -msgstr "" +msgstr "Stop Printing" msgid "Check Assistant" -msgstr "" +msgstr "Check Assistant" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Filament Extruded, Continue" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Not Extruded Yet, Retry" msgid "Finished, Continue" -msgstr "" +msgstr "Finished, Continue" msgid "Load Filament" msgstr "ロード" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Filament Loaded, Resume" msgid "View Liveview" -msgstr "" +msgstr "View Liveview" msgid "Confirm and Update Nozzle" -msgstr "" +msgstr "Confirm and Update Nozzle" msgid "LAN Connection Failed (Sending print file)" msgstr "LAN接続失敗 (造形ファイル送信)" @@ -8206,21 +8378,23 @@ msgid "Where to find your printer's IP and Access Code?" msgstr "どこでプリンターのIPアドレスとアクセスコードを確認できますか?" msgid "Step 3: Ping the IP address to check for packet loss and latency." -msgstr "" +msgstr "Step 3: Ping the IP address to check for packet loss and latency." msgid "Test" -msgstr "" +msgstr "Test" msgid "IP and Access Code Verified! You may close the window" -msgstr "" +msgstr "IP and Access Code Verified! You may close the window" msgid "Connection failed, please double check IP and Access Code" -msgstr "" +msgstr "Connection failed, please double check IP and Access Code" msgid "" "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" msgstr "" +"Connection failed! If your IP and Access Code is correct, \n" +"please move to step 3 for troubleshooting network issues" msgid "Model:" msgstr "モデル" @@ -8235,7 +8409,7 @@ msgid "Update firmware" msgstr "ファームウェアを更新" msgid "Beta version" -msgstr "" +msgstr "Beta version" msgid "Latest version" msgstr "最新バージョン" @@ -8584,26 +8758,33 @@ msgid "" msgstr "" msgid "Variable layer height is not supported with Organic supports." -msgstr "" +msgstr "Variable layer height is not supported with Organic supports." msgid "" "Different nozzle diameters and different filament diameters is not allowed " "when prime tower is enabled." msgstr "" +"Different nozzle diameters and different filament diameters is not allowed " +"when prime tower is enabled." msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" +"The Wipe Tower is currently only supported with the relative extruder " +"addressing (use_relative_e_distances=1)." msgid "" "Ooze prevention is currently not supported with the prime tower enabled." msgstr "" +"Ooze prevention is currently not supported with the prime tower enabled." msgid "" "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" +"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." msgid "The prime tower is not supported in \"By object\" print." msgstr "オブジェクト順で造形する場合、プライムタワーを利用できません" @@ -8823,11 +9004,13 @@ msgstr "" "下記形式を参照してください https://username:password@your-octopi-address/" msgid "Device UI" -msgstr "" +msgstr "Device UI" msgid "" "Specify the URL of your device user interface if it's not same as print_host" msgstr "" +"Specify the URL of your device user interface if it's not the same as " +"print_host" msgid "API Key / Password" msgstr "APIキー/パスワード" @@ -8975,16 +9158,16 @@ msgid "Engineering Plate" msgstr "エンジニアリングプレート" msgid "First layer print sequence" -msgstr "" +msgstr "First layer print sequence" msgid "Other layers print sequence" -msgstr "" +msgstr "Other layers print sequence" msgid "The number of other layers print sequence" -msgstr "" +msgstr "The number of other layers print sequence" msgid "Other layers filament sequence" -msgstr "" +msgstr "Other layers filament sequence" msgid "This G-code is inserted at every layer change before lifting z" msgstr "積層が変わる直前に実行するG-codeです。" @@ -9109,12 +9292,14 @@ msgid "" msgstr "" msgid "Top surface flow ratio" -msgstr "" +msgstr "Top surface flow ratio" msgid "" "This factor affects the amount of material for top solid infill. You can " "decrease it slightly to have smooth surface finish" msgstr "" +"This factor affects the amount of material for top solid infill. You can " +"decrease it slightly to have a smooth surface finish." msgid "Bottom surface flow ratio" msgstr "" @@ -9257,7 +9442,7 @@ msgid "" msgstr "" msgid "mm/s or %" -msgstr "" +msgstr "mm/s or %" msgid "External" msgstr "" @@ -9395,7 +9580,7 @@ msgid "Default process profile when switch to this machine profile" msgstr "デバイスを切替える時のデフォルト プロセス プロファイル" msgid "Activate air filtration" -msgstr "" +msgstr "Activate air filtration" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" @@ -9407,6 +9592,8 @@ msgid "" "Speed of exhaust fan during printing.This speed will overwrite the speed in " "filament custom gcode" msgstr "" +"Speed of exhaust fan during printing.This speed will override the speed in " +"filament custom g-code" msgid "Speed of exhaust fan after printing completes" msgstr "" @@ -9510,12 +9697,14 @@ msgid "End G-code when finish the whole printing" msgstr "造形完了時のG-codeを追加" msgid "Between Object Gcode" -msgstr "" +msgstr "Between Object Gcode" msgid "" "Insert Gcode between objects. This parameter will only come into effect when " "you print your models object by object" msgstr "" +"Insert G-code between objects. This parameter will only come into effect " +"when you print your models object by object." msgid "End G-code when finish the printing of this filament" msgstr "このフィラメントを使用終わった時のG-codeを追加" @@ -9577,7 +9766,7 @@ msgid "Line pattern of bottom surface infill, not bridge infill" msgstr "底面のインフィル パターンです、ブリッジインフィルが含まれていません。" msgid "Internal solid infill pattern" -msgstr "" +msgstr "Internal solid infill pattern" msgid "" "Line pattern of internal solid infill. if the detect narrow internal solid " @@ -9596,7 +9785,7 @@ msgstr "" "外壁の造形速度です。普段は内壁より遅い速度を指定し、仕上がりが良くなります。" msgid "Small perimeters" -msgstr "" +msgstr "Small perimeters" msgid "" "This separate setting will affect the speed of perimeters having radius <= " @@ -9611,6 +9800,7 @@ msgstr "" msgid "" "This sets the threshold for small perimeter length. Default threshold is 0mm" msgstr "" +"This sets the threshold for small perimeter length. Default threshold is 0mm" msgid "Walls printing order" msgstr "" @@ -9650,7 +9840,7 @@ msgid "Inner/Outer/Inner" msgstr "" msgid "Print infill first" -msgstr "" +msgstr "Print infill first" msgid "" "Order of wall/infill. When the tickbox is unchecked the walls are printed " @@ -9710,10 +9900,10 @@ msgstr "" "ブジェクトの間隔を計算します。" msgid "Nozzle height" -msgstr "" +msgstr "Nozzle height" msgid "The height of nozzle tip." -msgstr "" +msgstr "The height of nozzle tip." msgid "Bed mesh min" msgstr "" @@ -9782,7 +9972,7 @@ msgstr "" "ます。 0.95 ~ 1.05の間で設定していください。" msgid "Enable pressure advance" -msgstr "" +msgstr "Enable pressure advance" msgid "" "Enable pressure advance, auto calibration result will be overwriten once " @@ -9823,10 +10013,10 @@ msgid "Default filament color" msgstr "フィラメントのデフォルト色" msgid "Filament notes" -msgstr "" +msgstr "Filament notes" msgid "You can put your notes regarding the filament here." -msgstr "" +msgstr "You can put your notes regarding the filament here." msgid "Required nozzle HRC" msgstr "ノズルHRC" @@ -10020,13 +10210,16 @@ msgid "" msgstr "サポート素材は、サポート又はサポート接触面の造形によく使われます。" msgid "Softening temperature" -msgstr "" +msgstr "Softening temperature" msgid "" "The material softens at this temperature, so when the bed temperature is " "equal to or greater than it, it's highly recommended to open the front door " "and/or remove the upper glass to avoid cloggings." msgstr "" +"The material softens at this temperature, so when the bed temperature is " +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogs." msgid "Price" msgstr "価格" @@ -10038,10 +10231,10 @@ msgid "money/kg" msgstr "USD/kg" msgid "Vendor" -msgstr "" +msgstr "Vendor" msgid "Vendor of filament. For show only" -msgstr "" +msgstr "Filament Vendor (Only for show)" msgid "(Undefined)" msgstr "(未定義)" @@ -10114,7 +10307,7 @@ msgid "Lightning" msgstr "ライトニング" msgid "Cross Hatch" -msgstr "" +msgstr "Cross Hatch" msgid "Sparse infill anchor length" msgstr "" @@ -10182,12 +10375,14 @@ msgid "" msgstr "" msgid "mm/s² or %" -msgstr "" +msgstr "mm/s² or %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage (e." "g. 100%), it will be calculated based on the default acceleration." msgstr "" +"Acceleration of sparse infill. If the value is expressed as a percentage (e." +"g. 100%), it will be calculated based on the default acceleration." msgid "" "Acceleration of internal solid infill. If the value is expressed as a " @@ -10202,13 +10397,13 @@ msgstr "" "1層目の造形加速度です。遅くするとプレートとの接着を向上させることができます" msgid "Enable accel_to_decel" -msgstr "" +msgstr "Enable accel_to_decel" msgid "Klipper's max_accel_to_decel will be adjusted automatically" -msgstr "" +msgstr "Klipper's max_accel_to_decel will be adjusted automatically" msgid "accel_to_decel" -msgstr "" +msgstr "accel_to_decel" #, c-format, boost-format msgid "" @@ -10216,10 +10411,10 @@ msgid "" msgstr "" msgid "Jerk of outer walls" -msgstr "" +msgstr "Jerk of outer walls" msgid "Jerk of inner walls" -msgstr "" +msgstr "Jerk of inner walls" msgid "Jerk for top surface" msgstr "" @@ -10335,7 +10530,7 @@ msgid "Whether to apply fuzzy skin on the first layer" msgstr "" msgid "Filter out tiny gaps" -msgstr "" +msgstr "Filter out tiny gaps" msgid "Layers and Perimeters" msgstr "積層と境界" @@ -10351,13 +10546,16 @@ msgstr "" "す。" msgid "Precise Z height" -msgstr "" +msgstr "Precise Z height" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"Enable this to get precise z height of object after slicing. It will get the " +"precise object height by fine-tuning the layer heights of the last few " +"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "曲線フィッティング" @@ -10421,10 +10619,10 @@ msgid "HRC" msgstr "HRC" msgid "Printer structure" -msgstr "" +msgstr "Printer structure" msgid "The physical arrangement and components of a printing device" -msgstr "" +msgstr "The physical arrangement and components of a printing device" msgid "CoreXY" msgstr "" @@ -10439,10 +10637,10 @@ msgid "Delta" msgstr "" msgid "Best object position" -msgstr "" +msgstr "Best object position" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." -msgstr "" +msgstr "Best auto arranging position in range [0,1] w.r.t. bed shape." msgid "" "Enable this option if machine has auxiliary part cooling fan. G-code " @@ -10488,7 +10686,7 @@ msgid "money/h" msgstr "" msgid "Support control chamber temperature" -msgstr "" +msgstr "Support controlling chamber temperature" msgid "" "This option is enabled if machine support controlling chamber temperature\n" @@ -10496,7 +10694,7 @@ msgid "" msgstr "" msgid "Support air filtration" -msgstr "" +msgstr "Support air filtration" msgid "" "Enable this if printer support air filtration\n" @@ -10529,7 +10727,7 @@ msgid "" msgstr "" msgid "Exclude objects" -msgstr "" +msgstr "Exclude objects" msgid "Enable this option to add EXCLUDE OBJECT command in g-code" msgstr "" @@ -10588,25 +10786,29 @@ msgid "Speed of internal sparse infill" msgstr "スパース インフィルの造形速度です。" msgid "Interface shells" -msgstr "" +msgstr "Interface shells" 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 the generation of solid shells between adjacent materials/volumes. " +"Useful for multi-extruder prints with translucent materials or manual " +"soluble support material" msgid "Maximum width of a segmented region" -msgstr "" +msgstr "Maximum width of a segmented region" msgid "Maximum width of a segmented region. Zero disables this feature." msgstr "" +"Maximum width of a segmented region. A value of 0 disables this feature." msgid "Interlocking depth of a segmented region" -msgstr "" +msgstr "Interlocking depth of a segmented region" msgid "Interlocking depth of a segmented region. Zero disables this feature." -msgstr "" +msgstr "Interlocking depth of a segmented region. Zero disables this feature." msgid "Ironing Type" msgstr "アイロン面" @@ -11068,10 +11270,10 @@ msgid "" msgstr "" msgid "Printer notes" -msgstr "" +msgstr "Printer notes" msgid "You can put your notes regarding the printer here." -msgstr "" +msgstr "You can put your notes regarding the printer here." msgid "Raft contact Z distance" msgstr "ラフト接触面Z間隔" @@ -11152,7 +11354,7 @@ msgstr "" "ションが無効になります。" msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "Long retraction when cut (experimental)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -11160,14 +11362,20 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge.While this reduces flush " +"significantly, it may also raise the risk of nozzle clogs or other printing " +"problems." msgid "Retraction distance when cut" -msgstr "" +msgstr "Retraction distance when cut" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" msgstr "" +"Experimental feature. Retraction length before cutting off during filament " +"change" msgid "Z hop when retract" msgstr "リトラクト時にZ方向調整" @@ -11181,20 +11389,24 @@ msgstr "" "突を回避できます。" msgid "Z hop lower boundary" -msgstr "" +msgstr "Z hop lower boundary" msgid "" "Z hop will only come into effect when Z is above this value and is below the " "parameter: \"Z hop upper boundary\"" msgstr "" +"Z hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z hop upper boundary\"" msgid "Z hop upper boundary" -msgstr "" +msgstr "Z hop upper boundary" msgid "" "If this value is positive, Z hop will only come into effect when Z is above " "the parameter: \"Z hop lower boundary\" and is below this value" msgstr "" +"If this value is positive, Z hop will only come into effect when Z is above " +"the parameter: \"Z hop lower boundary\" and is below this value" msgid "Z hop type" msgstr "" @@ -11242,7 +11454,7 @@ msgid "Top and Bottom" msgstr "" msgid "Extra length on restart" -msgstr "" +msgstr "Extra length on restart" msgid "" "When the retraction is compensated after the travel move, the extruder will " @@ -11271,7 +11483,7 @@ msgstr "" "ションの速度と同じくなります。" msgid "Use firmware retraction" -msgstr "" +msgstr "Use firmware retraction" msgid "" "This experimental setting uses G10 and G11 commands to have the firmware " @@ -11315,7 +11527,7 @@ msgid "" msgstr "" msgid "Seam gap" -msgstr "" +msgstr "Seam gap" msgid "" "In order to reduce the visibility of the seam in a closed loop extrusion, " @@ -11329,17 +11541,20 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" +"Use scarf joint to minimize seam visibility and increase seam strength." msgid "Conditional scarf joint" -msgstr "" +msgstr "Conditional scarf joint" msgid "" "Apply scarf joints only to smooth perimeters where traditional seams do not " "conceal the seams at sharp corners effectively." msgstr "" +"Apply scarf joints only to smooth perimeters where traditional seams do not " +"conceal the seams at sharp corners effectively." msgid "Conditional angle threshold" -msgstr "" +msgstr "Conditional angle threshold" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -11382,39 +11597,44 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "" +msgstr "Scarf start height" msgid "" "Start height of the scarf.\n" "This amount can be specified in millimeters or as a percentage of the " "current layer height. The default value for this parameter is 0." msgstr "" +"Start height of the scarf.\n" +"This amount can be specified in millimeters or as a percentage of the " +"current layer height. The default value for this parameter is 0." msgid "Scarf around entire wall" -msgstr "" +msgstr "Scarf around entire wall" msgid "The scarf extends to the entire length of the wall." -msgstr "" +msgstr "The scarf extends to the entire length of the wall." msgid "Scarf length" -msgstr "" +msgstr "Scarf length" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" +"Length of the scarf. Setting this parameter to zero effectively disables the " +"scarf." msgid "Scarf steps" -msgstr "" +msgstr "Scarf steps" msgid "Minimum number of segments of each scarf." -msgstr "" +msgstr "Minimum number of segments of each scarf." msgid "Scarf joint for inner walls" -msgstr "" +msgstr "Scarf joint for inner walls" msgid "Use scarf joint for inner walls as well." -msgstr "" +msgstr "Use scarf joint for inner walls as well." msgid "Role base wipe speed" msgstr "" @@ -11449,7 +11669,7 @@ msgid "" msgstr "" msgid "Wipe speed" -msgstr "" +msgstr "Wipe speed" msgid "" "The wipe speed is determined by the speed setting specified in this " @@ -11457,6 +11677,10 @@ msgid "" "be calculated based on the travel speed setting above.The default value for " "this parameter is 80%" msgstr "" +"The wipe speed is determined by the speed setting specified in this " +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgid "Skirt distance" msgstr "スカート距離" @@ -11549,20 +11773,24 @@ msgstr "" "で、シームはありません。" msgid "Smooth Spiral" -msgstr "" +msgstr "Smooth Spiral" msgid "" "Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " "at all, even in the XY directions on walls that are not vertical" msgstr "" +"Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " +"at all, even in the XY directions on walls that are not vertical" msgid "Max XY Smoothing" -msgstr "" +msgstr "Max XY Smoothing" msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiralIf " "expressed as a %, it will be computed over nozzle diameter" msgstr "" +"Maximum distance to move points in XY to try to achieve a smooth spiral. If " +"expressed as a %, it will be computed over nozzle diameter" msgid "" "If smooth or traditional mode is selected, a timelapse video will be " @@ -11730,10 +11958,10 @@ msgid "" msgstr "造形しにくい部分だけサポートを生成します、例えば細長いしっぽ、ハリなど" msgid "Remove small overhangs" -msgstr "" +msgstr "Remove small overhangs" msgid "Remove small overhangs that possibly need no supports." -msgstr "" +msgstr "This removes small overhangs that may need no support." msgid "Top Z distance" msgstr "トップ面とのZ間隔" @@ -11758,11 +11986,12 @@ msgstr "" "を使用する意味です。" msgid "Avoid interface filament for base" -msgstr "" +msgstr "Avoid interface filament for base" msgid "" "Avoid using support interface filament to print support base if possible." msgstr "" +"Avoid using support interface filament to print support base if possible." msgid "" "Line width of support. If expressed as a %, it will be computed over the " @@ -11798,10 +12027,10 @@ msgid "Bottom interface layers" msgstr "底部接触面層数" msgid "Number of bottom interface layers" -msgstr "" +msgstr "Number of bottom interface layers" msgid "Same as top" -msgstr "" +msgstr "Same as top" msgid "Top interface spacing" msgstr "トップ接触面間隔" @@ -12002,10 +12231,10 @@ msgid "" msgstr "" msgid "Support wall loops" -msgstr "" +msgstr "Support wall loops" msgid "This setting specify the count of walls around support" -msgstr "" +msgstr "This setting specify the count of walls around support" msgid "Tree support with infill" msgstr "ツリーサポートインフィル使用" @@ -12026,7 +12255,7 @@ msgid "" msgstr "" msgid "Chamber temperature" -msgstr "" +msgstr "Chamber temperature" msgid "" "Higher chamber temperature can help suppress or reduce warping and " @@ -12037,6 +12266,12 @@ msgid "" "high to avoid cloggings, so 0 which stands for turning off is highly " "recommended" msgstr "" +"Higher chamber temperature can help suppress or reduce warping and " +"potentially lead to higher interlayer bonding strength for high temperature " +"materials like ABS, ASA, PC, PA and so on. At the same time, the air " +"filtration of ABS and ASA will get worse.While for PLA, PETG, TPU, PVA and " +"other low temperature materials, the actual chamber temperature should not " +"be high to avoid clogs, so 0 (turned off) is highly recommended." msgid "Nozzle temperature for layers after the initial one" msgstr "1層目後のノズル温度" @@ -12172,17 +12407,29 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -12303,7 +12550,7 @@ msgid "" msgstr "" msgid "Use relative E distances" -msgstr "" +msgstr "Use relative E distances" msgid "" "Relative extrusion is recommended when using \"label_objects\" option.Some " @@ -12851,7 +13098,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj: failed to parse" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "load mtl in obj: failed to parse" msgid "The file contains polygons with more than 4 vertices." msgstr "The file contains polygons with more than 4 vertices." @@ -12866,67 +13113,70 @@ msgid "This OBJ file couldn't be read because it's empty." msgstr "This OBJ file couldn't be read because it's empty." msgid "Flow Rate Calibration" -msgstr "" +msgstr "Flow Rate Calibration" msgid "Max Volumetric Speed Calibration" -msgstr "" +msgstr "Max Volumetric Speed Calibration" msgid "Manage Result" -msgstr "" +msgstr "Manage Results" msgid "Manual Calibration" -msgstr "" +msgstr "Manual Calibration" msgid "Result can be read by human eyes." -msgstr "" +msgstr "Results can be easily seen and understood." msgid "Auto-Calibration" -msgstr "" +msgstr "Auto-Calibration" msgid "We would use Lidar to read the calibration result" -msgstr "" +msgstr "We would use Lidar to read the calibration result." msgid "Prev" -msgstr "" +msgstr "Prev" msgid "Recalibration" -msgstr "" +msgstr "Recalibration" msgid "Calibrate" -msgstr "" +msgstr "Calibrate" msgid "Finish" msgstr "完了" msgid "How to use calibration result?" -msgstr "" +msgstr "How can I use calibration results?" msgid "" "You could change the Flow Dynamics Calibration Factor in material editing" msgstr "" +"You can change the Flow Dynamics Calibration Factor in material editing" msgid "" "The current firmware version of the printer does not support calibration.\n" "Please upgrade the printer firmware." msgstr "" +"The current firmware version of the printer does not support calibration.\n" +"Please update the printer firmware." msgid "Calibration not supported" -msgstr "" +msgstr "Calibration not supported" msgid "Error desc" -msgstr "" +msgstr "Error desc" msgid "Extra info" -msgstr "" +msgstr "Extra info" msgid "Flow Dynamics" -msgstr "" +msgstr "Flow Dynamics" msgid "Flow Rate" -msgstr "" +msgstr "Flow Rate" msgid "Max Volumetric Speed" -msgstr "" +msgstr "Max Volumetric Speed" #, c-format, boost-format msgid "" @@ -12936,38 +13186,45 @@ msgid "" "End value: > Start value\n" "Value step: >= %.3f)" msgstr "" +"Please input valid values:\n" +"Start value: >= %.1f\n" +"End value: <= %.1f\n" +"End value: > Start value\n" +"Value step: >= %.3f)" msgid "The name cannot be empty." -msgstr "" +msgstr "The name cannot be empty." #, c-format, boost-format msgid "The selected preset: %s is not found." -msgstr "" +msgstr "The selected preset: %s is not found." msgid "The name cannot be the same as the system preset name." -msgstr "" +msgstr "The name cannot be the same as the system preset name." msgid "The name is the same as another existing preset name" -msgstr "" +msgstr "The name is the same as another existing preset name." msgid "create new preset failed." -msgstr "" +msgstr "Creating new preset failed." msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" +"Are you sure you want to cancel the current calibration and return to the " +"home page?" msgid "No Printer Connected!" -msgstr "" +msgstr "No Printer Connected!" msgid "Printer is not connected yet." -msgstr "" +msgstr "A printer is not connected yet." msgid "Please select filament to calibrate." -msgstr "" +msgstr "Please select filament to calibrate." msgid "The input value size must be 3." -msgstr "" +msgstr "The input value size must be 3." msgid "" "This machine type can only hold 16 history results per nozzle. You can " @@ -12976,15 +13233,20 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"This machine type can only hold 16 historical results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results. \n" +"Do you still want to continue the calibration?" msgid "Connecting to printer..." -msgstr "" +msgstr "Connecting to printer..." msgid "The failed test result has been dropped." -msgstr "" +msgstr "The failed test result has been removed." msgid "Flow Dynamics Calibration result has been saved to the printer" -msgstr "" +msgstr "Flow Dynamics Calibration results have been saved to the printer." #, c-format, boost-format msgid "" @@ -12992,27 +13254,32 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"There is already a previous calibration result with the same name: %s. Only " +"one result with a name is saved. Are you sure you want to overwrite the " +"previous result?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"This machine type can only hold %d historical results per nozzle. This " +"result will not be saved." msgid "Internal Error" -msgstr "" +msgstr "Internal Error" msgid "Please select at least one filament for calibration" -msgstr "" +msgstr "Please select at least one filament for calibration" msgid "Flow rate calibration result has been saved to preset" -msgstr "" +msgstr "Flow rate calibration results have been saved to preset." msgid "Max volumetric speed calibration result has been saved to preset" -msgstr "" +msgstr "Max volumetric speed calibration result has been saved to preset" msgid "When do you need Flow Dynamics Calibration" -msgstr "" +msgstr "When do you need Flow Dynamics Calibration?" msgid "" "We now have added the auto-calibration for different filaments, which is " @@ -13024,9 +13291,17 @@ msgid "" "3. If the max volumetric speed or print temperature is changed in the " "filament setting." msgstr "" +"We now have added auto-calibration for different filaments, which is fully " +"automated and the result will be saved to the printer for future use. You " +"only need to do the calibration in the following limited cases:\n" +"1. If you introduce a new filament of different brands/models or the " +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one;\n" +"3. If the max volumetric speed or print temperature is changed in the " +"filament setting." msgid "About this calibration" -msgstr "" +msgstr "About this calibration" msgid "" "Please find the details of Flow Dynamics Calibration from our wiki.\n" @@ -13047,9 +13322,27 @@ msgid "" "cause the result not exactly the same in each calibration. We are still " "investigating the root cause to do improvements with new updates." msgstr "" +"Please find the details of Flow Dynamics Calibration from our wiki.\n" +"\n" +"Usually the calibration is unnecessary. When you start a single color/" +"material print, with the \"flow dynamics calibration\" option checked in the " +"print start menu, the printer will calibrate the filament before the print; " +"When you start a multi color/material print, the printer will use the " +"default compensation parameter for the filament during every filament switch " +"which will have a good result in most cases.\n" +"\n" +"Please note there are a few cases that may make the calibration result " +"unreliable: using a texture plate to do the calibration; using a build plate " +"with poor adhesion. (please wash the build plate or apply gluestick!) You " +"can find more on our wiki.\n" +"\n" +"The calibration results have about 10 percent variation in our test, which " +"may cause the results to not be identical for each calibration. We are still " +"investigating the root cause to further improve this calibration in future " +"updates." msgid "When to use Flow Rate Calibration" -msgstr "" +msgstr "When to use Flow Rate Calibration" msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " @@ -13062,12 +13355,24 @@ msgid "" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " "they should be." msgstr "" +"After using Flow Dynamics Calibration, there might still be some extrusion " +"issues, such as:\n" +"1. Over-Extrusion: Excess material on your printed object, forming blobs or " +"zits, or the layers seem thicker than expected and not uniform.\n" +"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " +"top layer of the model, even when printing slowly.\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " +"they should be." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" "PLA used in RC planes. These materials expand greatly when heated, and " "calibration provides a useful reference flow rate." msgstr "" +"In addition, Flow Rate Calibration is crucial for foaming materials like LW-" +"PLA used in RC planes. These materials expand greatly when heated, and " +"calibration provides a useful reference flow rate." msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " @@ -13077,6 +13382,12 @@ msgid "" "you still see the listed defects after you have done other calibrations. For " "more details, please check out the wiki article." msgstr "" +"Flow Rate Calibration measures the ratio of expected to actual extrusion " +"volumes. The default setting works well with Bambu Lab printers and official " +"filaments as they were pre-calibrated and fine-tuned. For a regular " +"filament, you usually won't need to perform a Flow Rate Calibration unless " +"you still see the listed defects after you have done other calibrations. For " +"more details, please check out our wiki article." msgid "" "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " @@ -13096,48 +13407,70 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" +"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " +"directly measuring the calibration patterns. However, please be advised that " +"the efficacy and accuracy of this method may be compromised with specific " +"types of materials. Particularly, filaments that are transparent or semi-" +"transparent, sparkling-particled, or have a high-reflective finish may not " +"be suitable for this calibration and can produce less-than-desirable " +"results.\n" +"\n" +"The calibration results may vary between each calibration or filament. We " +"are still improving the accuracy and compatibility of this calibration " +"through firmware updates over time.\n" +"\n" +"Caution: Flow Rate Calibration is an advanced process, to be attempted only " +"by those who fully understand its purpose and implications. Incorrect usage " +"can lead to sub-par prints or printer damage. Please make sure to carefully " +"read and understand the process before performing it." msgid "When you need Max Volumetric Speed Calibration" -msgstr "" +msgstr "When you need Max Volumetric Speed Calibration" msgid "Over-extrusion or under extrusion" -msgstr "" +msgstr "Over-extrusion or under extrusion" msgid "Max Volumetric Speed calibration is recommended when you print with:" -msgstr "" +msgstr "Max Volumetric Speed Calibration is recommended when you print with:" msgid "material with significant thermal shrinkage/expansion, such as..." -msgstr "" +msgstr "material with significant thermal shrinkage/expansion, such as..." msgid "materials with inaccurate filament diameter" -msgstr "" +msgstr "materials with inaccurate filament diameter" msgid "We found the best Flow Dynamics Calibration Factor" -msgstr "" +msgstr "We found the best Flow Dynamics Calibration Factor." msgid "" "Part of the calibration failed! You may clean the plate and retry. The " "failed test result would be dropped." msgstr "" +"Part of the calibration failed! It may help to clean the plate and retry. " +"The failed test result will be deleted." msgid "" "*We recommend you to add brand, materia, type, and even humidity level in " "the Name" msgstr "" +"*We recommend that you add brand, material, type, and even humidity level to " +"the name" msgid "Failed" msgstr "失敗" msgid "Please enter the name you want to save to printer." -msgstr "" +msgstr "Please enter the name you want to save to printer." msgid "The name cannot exceed 40 characters." -msgstr "" +msgstr "The name cannot exceed 40 characters." msgid "" "Only one of the results with the same name will be saved. Are you sure you " "want to overrides the other results?" msgstr "" +"Only one of the results with the same name will be saved. Are you sure you " +"want to override the other results?" #, c-format, boost-format msgid "" @@ -13145,188 +13478,197 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to overrides the historical result?" msgstr "" +"There is already a historical calibration result with the same name: %s. " +"Only one set of results with the same name is saved. Are you sure you want " +"to override the previous results?" msgid "Please find the best line on your plate" -msgstr "" +msgstr "Please find the best line on your plate." msgid "Please find the cornor with perfect degree of extrusion" -msgstr "" +msgstr "Please find the corner with the perfect degree of extrusion" msgid "Input Value" -msgstr "" +msgstr "Input Value" msgid "Save to Filament Preset" -msgstr "" +msgstr "Save to Filament Presets" msgid "Preset" -msgstr "" +msgstr "Preset" msgid "Record Factor" -msgstr "" +msgstr "Record Factor" msgid "We found the best flow ratio for you" -msgstr "" +msgstr "We found the best flow ratio for you." msgid "Flow Ratio" -msgstr "" +msgstr "Flow Ratio" msgid "Please input a valid value (0.0 < flow ratio < 2.0)" -msgstr "" +msgstr "Please input a valid value (0.0 < flow ratio < 2.0)" msgid "Please enter the name of the preset you want to save." -msgstr "" +msgstr "Please enter the name of the preset you want to save." msgid "Calibration1" -msgstr "" +msgstr "Calibration1" msgid "Calibration2" -msgstr "" +msgstr "Calibration2" msgid "Please find the best object on your plate" -msgstr "" +msgstr "Please find the best object on your plate." msgid "Fill in the value above the block with smoothest top surface" -msgstr "" +msgstr "Fill in the value from the block with smoothest top surface" msgid "Skip Calibration2" -msgstr "" +msgstr "Skip Calibration 2" #, c-format, boost-format msgid "flow ratio : %s " -msgstr "" +msgstr "flow ratio: %s " msgid "Please choose a block with smoothest top surface" -msgstr "" +msgstr "Please choose the block with the smoothest top surface." msgid "Please choose a block with smoothest top surface." -msgstr "" +msgstr "Please choose the block with the smoothest top surface." msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" -msgstr "" +msgstr "Please input a valid value (0 <= Max Volumetric Speed <= 60)" msgid "Calibration Type" -msgstr "" +msgstr "Calibration Type" msgid "Complete Calibration" -msgstr "" +msgstr "Complete Calibration" msgid "Fine Calibration based on flow ratio" -msgstr "" +msgstr "Fine Calibration based on flow ratio" msgid "Title" -msgstr "" +msgstr "Title" msgid "" "A test model will be printed. Please clear the build plate and place it back " "to the hot bed before calibration." msgstr "" +"A test model will be printed. Please clear the build plate and place it back " +"on the heatbed before calibration." msgid "Printing Parameters" -msgstr "" +msgstr "Printing Parameters" msgid "Plate Type" msgstr "Plate Type" msgid "filament position" -msgstr "" +msgstr "filament position" msgid "External Spool" -msgstr "" +msgstr "External Spool" msgid "Filament For Calibration" -msgstr "" +msgstr "Filament For Calibration" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" "- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" msgstr "" +"Tips for calibration material: \n" +"- Materials that can share same hot bed temperature\n" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte, " +"etc.)" msgid "Pattern" -msgstr "" +msgstr "Pattern" msgid "Method" -msgstr "" +msgstr "Method" #, c-format, boost-format msgid "%s is not compatible with %s" -msgstr "" +msgstr "%s is not compatible with %s" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." -msgstr "" +msgstr "TPU is not supported by Flow Dynamics Auto-Calibration." msgid "Connecting to printer" -msgstr "" +msgstr "Connecting to printer" msgid "From k Value" -msgstr "" +msgstr "From k Value" msgid "To k Value" -msgstr "" +msgstr "To k Value" msgid "Step value" msgstr "" msgid "The nozzle diameter has been synchronized from the printer Settings" -msgstr "" +msgstr "The nozzle diameter has been synchronized from the printer settings." msgid "From Volumetric Speed" -msgstr "" +msgstr "From Volumetric Speed" msgid "To Volumetric Speed" -msgstr "" +msgstr "To Volumetric Speed" msgid "Flow Dynamics Calibration Result" -msgstr "" +msgstr "Flow Dynamics Calibration Result" msgid "New" -msgstr "" +msgstr "New" msgid "No History Result" -msgstr "" +msgstr "No History Result" msgid "Success to get history result" -msgstr "" +msgstr "Success to get history result" msgid "Refreshing the historical Flow Dynamics Calibration records" -msgstr "" +msgstr "Refreshing the previous Flow Dynamics Calibration records" msgid "Action" -msgstr "" +msgstr "Action" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "This machine type can only hold %d historical results per nozzle." msgid "Edit Flow Dynamics Calibration" -msgstr "" +msgstr "Edit Flow Dynamics Calibration" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "New Flow Dynamic Calibration" msgid "Ok" -msgstr "" +msgstr "Ok" msgid "The filament must be selected." -msgstr "" +msgstr "The filament must be selected." msgid "Network lookup" -msgstr "" +msgstr "Network lookup" msgid "Address" -msgstr "" +msgstr "Address" msgid "Hostname" -msgstr "" +msgstr "Hostname" msgid "Service name" -msgstr "" +msgstr "Service name" msgid "OctoPrint version" -msgstr "" +msgstr "OctoPrint version" msgid "Searching for devices" -msgstr "" +msgstr "Searching for devices" msgid "Finished" msgstr "完了" @@ -13341,37 +13683,37 @@ msgid "" msgstr "" msgid "PA Calibration" -msgstr "" +msgstr "PA Calibration" msgid "DDE" msgstr "" msgid "Bowden" -msgstr "" +msgstr "Bowden" msgid "Extruder type" msgstr "" msgid "PA Tower" -msgstr "" +msgstr "PA Tower" msgid "PA Line" -msgstr "" +msgstr "PA Line" msgid "PA Pattern" -msgstr "" +msgstr "PA Pattern" msgid "Start PA: " -msgstr "" +msgstr "Start PA:" msgid "End PA: " -msgstr "" +msgstr "End PA: " msgid "PA step: " -msgstr "" +msgstr "PA step:" msgid "Print numbers" -msgstr "" +msgstr "Print numbers" msgid "" "Please input valid values:\n" @@ -13379,39 +13721,43 @@ msgid "" "End PA: > Start PA\n" "PA step: >= 0.001)" msgstr "" +"Please input valid values:\n" +"Start PA: >= 0.0\n" +"End PA: > Start PA\n" +"PA step: >= 0.001)" msgid "Temperature calibration" -msgstr "" +msgstr "Temperature calibration" msgid "PLA" -msgstr "" +msgstr "PLA" msgid "ABS/ASA" -msgstr "" +msgstr "ABS/ASA" msgid "PETG" -msgstr "" +msgstr "PETG" msgid "TPU" -msgstr "" +msgstr "TPU" msgid "PA-CF" -msgstr "" +msgstr "PA-CF" msgid "PET-CF" -msgstr "" +msgstr "PET-CF" msgid "Filament type" -msgstr "" +msgstr "Filament type" msgid "Start temp: " -msgstr "" +msgstr "Start temp:" msgid "End temp: " -msgstr "" +msgstr "End temp:" msgid "Temp step: " -msgstr "" +msgstr "Temp step:" msgid "" "Please input valid values:\n" @@ -13421,16 +13767,16 @@ msgid "" msgstr "" msgid "Max volumetric speed test" -msgstr "" +msgstr "Max volumetric speed test" msgid "Start volumetric speed: " -msgstr "" +msgstr "Start volumetric speed:" msgid "End volumetric speed: " -msgstr "" +msgstr "End volumetric speed:" msgid "step: " -msgstr "" +msgstr "step:" msgid "" "Please input valid values:\n" @@ -13440,13 +13786,13 @@ msgid "" msgstr "" msgid "VFA test" -msgstr "" +msgstr "VFA test" msgid "Start speed: " -msgstr "" +msgstr "Start speed:" msgid "End speed: " -msgstr "" +msgstr "End speed:" msgid "" "Please input valid values:\n" @@ -13456,129 +13802,129 @@ msgid "" msgstr "" msgid "Start retraction length: " -msgstr "" +msgstr "Start retraction length:" msgid "End retraction length: " -msgstr "" +msgstr "End retraction length: " msgid "mm/mm" -msgstr "" +msgstr "mm/mm" msgid "Send G-Code to printer host" msgstr "" msgid "Upload to Printer Host with the following filename:" -msgstr "" +msgstr "Upload to Printer Host with the following filename:" msgid "Use forward slashes ( / ) as a directory separator if needed." -msgstr "" +msgstr "Use forward slashes ( / ) as a directory separator if needed." msgid "Upload to storage" msgstr "" #, c-format, boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" -msgstr "" +msgstr "Filename to upload doesn't end with \"%s\". Do you want to continue?" msgid "Upload" -msgstr "" +msgstr "Upload" msgid "Print host upload queue" -msgstr "" +msgstr "Print host upload queue" msgid "ID" -msgstr "" +msgstr "ID" msgid "Progress" -msgstr "" +msgstr "Progress" msgid "Host" -msgstr "" +msgstr "Host" msgctxt "OfFile" msgid "Size" -msgstr "" +msgstr "Size of file" msgid "Filename" -msgstr "" +msgstr "Filename" msgid "Cancel selected" -msgstr "" +msgstr "Cancel selected" msgid "Show error message" -msgstr "" +msgstr "Show error message" msgid "Enqueued" -msgstr "" +msgstr "Queued" msgid "Uploading" msgstr "アップロード中" msgid "Cancelling" -msgstr "" +msgstr "Canceling" msgid "Error uploading to print host" msgstr "" msgid "Unable to perform boolean operation on selected parts" -msgstr "" +msgstr "Unable to perform boolean operation on selected parts" msgid "Mesh Boolean" -msgstr "" +msgstr "Mesh Boolean" msgid "Union" -msgstr "" +msgstr "Union" msgid "Difference" -msgstr "" +msgstr "Difference" msgid "Intersection" -msgstr "" +msgstr "Intersection" msgid "Source Volume" -msgstr "" +msgstr "Source Volume" msgid "Tool Volume" -msgstr "" +msgstr "Tool Volume" msgid "Subtract from" -msgstr "" +msgstr "Subtract from" msgid "Subtract with" -msgstr "" +msgstr "Subtract with" msgid "selected" -msgstr "" +msgstr "selected" msgid "Part 1" -msgstr "" +msgstr "Part 1" msgid "Part 2" -msgstr "" +msgstr "Part 2" msgid "Delete input" -msgstr "" +msgstr "Delete input" msgid "Network Test" -msgstr "" +msgstr "Network Test" msgid "Start Test Multi-Thread" -msgstr "" +msgstr "Start Test Multi-Thread" msgid "Start Test Single-Thread" -msgstr "" +msgstr "Start Test Single-Thread" msgid "Export Log" -msgstr "" +msgstr "Export Log" msgid "OrcaSlicer Version:" msgstr "" msgid "System Version:" -msgstr "" +msgstr "System Version:" msgid "DNS Server:" -msgstr "" +msgstr "DNS Server:" msgid "Test OrcaSlicer(GitHub)" msgstr "" @@ -13587,92 +13933,96 @@ msgid "Test OrcaSlicer(GitHub):" msgstr "" msgid "Test Bing.com" -msgstr "" +msgstr "Test Bing.com" msgid "Test bing.com:" -msgstr "" +msgstr "Test bing.com:" msgid "Log Info" -msgstr "" +msgstr "Log Info" msgid "Select filament preset" -msgstr "" +msgstr "Select filament preset" msgid "Create Filament" -msgstr "" +msgstr "Create Filament" msgid "Create Based on Current Filament" -msgstr "" +msgstr "Create Based on Current Filament" msgid "Copy Current Filament Preset " -msgstr "" +msgstr "Copy Current Filament Preset " msgid "Basic Information" -msgstr "" +msgstr "Basic Information" msgid "Add Filament Preset under this filament" -msgstr "" +msgstr "Add Filament Preset under this filament" msgid "We could create the filament presets for your following printer:" -msgstr "" +msgstr "We could create the filament presets for your following printer:" msgid "Select Vendor" -msgstr "" +msgstr "Select Vendor" msgid "Input Custom Vendor" -msgstr "" +msgstr "Input Custom Vendor" msgid "Can't find vendor I want" -msgstr "" +msgstr "Can't find vendor I want" msgid "Select Type" -msgstr "" +msgstr "Select Type" msgid "Select Filament Preset" -msgstr "" +msgstr "Select Filament Preset" msgid "Serial" -msgstr "" +msgstr "Serial" msgid "e.g. Basic, Matte, Silk, Marble" -msgstr "" +msgstr "e.g. Basic, Matte, Silk, Marble" msgid "Filament Preset" -msgstr "" +msgstr "Filament Preset" msgid "Create" -msgstr "" +msgstr "Create" msgid "Vendor is not selected, please reselect vendor." -msgstr "" +msgstr "Vendor is not selected; please reselect vendor." msgid "Custom vendor is not input, please input custom vendor." -msgstr "" +msgstr "Custom vendor missing; please input custom vendor." msgid "" "\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." msgstr "" +"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." msgid "Filament type is not selected, please reselect type." -msgstr "" +msgstr "Filament type is not selected, please reselect type." msgid "Filament serial is not inputed, please input serial." -msgstr "" +msgstr "Filament serial missing; please input serial." msgid "" "There may be escape characters in the vendor or serial input of filament. " "Please delete and re-enter." msgstr "" +"There may be disallowed characters in the vendor or serial input of the " +"filament. Please delete and re-enter." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." -msgstr "" +msgstr "All inputs in the custom vendor or serial are spaces. Please re-enter." msgid "The vendor can not be a number. Please re-enter." -msgstr "" +msgstr "The vendor can not be a number; please re-enter." msgid "" "You have not selected a printer or preset yet. Please select at least one." msgstr "" +"You have not selected a printer or preset yet. Please select at least one." #, c-format, boost-format msgid "" @@ -13680,14 +14030,19 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"The Filament name %s you created already exists. \n" +"If you continue, the preset created will be displayed with its full name. Do " +"you want to continue?" msgid "Some existing presets have failed to be created, as follows:\n" -msgstr "" +msgstr "Some existing presets have failed to be created, as follows:\n" msgid "" "\n" "Do you want to rewrite it?" msgstr "" +"\n" +"Do you want to rewrite it?" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you selected" @@ -13696,46 +14051,46 @@ msgid "" msgstr "" msgid "Create Printer/Nozzle" -msgstr "" +msgstr "Create Printer/Nozzle" msgid "Create Printer" -msgstr "" +msgstr "Create Printer" msgid "Create Nozzle for Existing Printer" -msgstr "" +msgstr "Create Nozzle for Existing Printer" msgid "Create from Template" -msgstr "" +msgstr "Create from Template" msgid "Create Based on Current Printer" -msgstr "" +msgstr "Create Based on Current Printer" msgid "Import Preset" -msgstr "" +msgstr "Import Preset" msgid "Create Type" -msgstr "" +msgstr "Create Type" msgid "The model is not fond, place reselect vendor." -msgstr "" +msgstr "The model was not found; please reselect vendor." msgid "Select Model" -msgstr "" +msgstr "Select Model" msgid "Select Printer" -msgstr "" +msgstr "Select Printer" msgid "Input Custom Model" -msgstr "" +msgstr "Input Custom Model" msgid "Can't find my printer model" -msgstr "" +msgstr "Can't find my printer model" msgid "Rectangle" -msgstr "" +msgstr "Rectangle" msgid "Printable Space" -msgstr "" +msgstr "Printable Space" msgid "X" msgstr "" @@ -13744,66 +14099,70 @@ msgid "Y" msgstr "" msgid "Hot Bed STL" -msgstr "" +msgstr "Hot Bed STL" msgid "Load stl" -msgstr "" +msgstr "Load stl" msgid "Hot Bed SVG" -msgstr "" +msgstr "Hot Bed SVG" msgid "Load svg" -msgstr "" +msgstr "Load svg" msgid "Max Print Height" -msgstr "" +msgstr "Max Print Height" #, c-format, boost-format msgid "The file exceeds %d MB, please import again." -msgstr "" +msgstr "The file exceeds %d MB, please import again." msgid "Exception in obtaining file size, please import again." -msgstr "" +msgstr "Exception in obtaining file size, please import again." msgid "Preset path is not find, please reselect vendor." -msgstr "" +msgstr "Preset path was not found; please reselect vendor." msgid "The printer model was not found, please reselect." -msgstr "" +msgstr "The printer model was not found, please reselect." msgid "The nozzle diameter is not fond, place reselect." -msgstr "" +msgstr "The nozzle diameter was not found; please reselect." msgid "The printer preset is not fond, place reselect." -msgstr "" +msgstr "The printer preset was not found; please reselect." msgid "Printer Preset" -msgstr "" +msgstr "Printer Preset" msgid "Filament Preset Template" -msgstr "" +msgstr "Filament Preset Template" msgid "Deselect All" -msgstr "" +msgstr "Deselect All" msgid "Process Preset Template" -msgstr "" +msgstr "Process Preset Template" msgid "Back Page 1" -msgstr "" +msgstr "Back Page 1" msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" msgstr "" +"You have not yet chosen which printer preset to create based on. Please " +"choose the vendor and model of the printer" msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." msgstr "" +"You have entered a disallowed character in the printable area section on the " +"first page. Please use only numbers." msgid "The custom printer or model is not inputed, place input." -msgstr "" +msgstr "The custom printer or model missing; please input." msgid "" "The printer preset you created already has a preset with the same name. Do " @@ -13814,60 +14173,74 @@ msgid "" "reserve.\n" "\tCancel: Do not create a preset, return to the creation interface." msgstr "" +"The printer preset you created already has a preset with the same name. Do " +"you want to overwrite it?\n" +"\tYes: Overwrite the printer preset with the same name, and filament and " +"process presets with the same preset name will be recreated \n" +"and filament and process presets without the same preset name will be " +"reserved.\n" +"\tCancel: Do not create a preset; return to the creation interface." msgid "You need to select at least one filament preset." -msgstr "" +msgstr "You need to select at least one filament preset." msgid "You need to select at least one process preset." -msgstr "" +msgstr "You need to select at least one process preset." msgid "Create filament presets failed. As follows:\n" -msgstr "" +msgstr "Create filament presets failed. As follows:\n" msgid "Create process presets failed. As follows:\n" -msgstr "" +msgstr "Create process presets failed. As follows:\n" msgid "Vendor is not find, please reselect." -msgstr "" +msgstr "Vendor was not found; please reselect." msgid "Current vendor has no models, please reselect." -msgstr "" +msgstr "Current vendor has no models, please reselect." msgid "" "You have not selected the vendor and model or inputed the custom vendor and " "model." msgstr "" +"You have not selected the vendor and model or input the custom vendor and " +"model." msgid "" "There may be escape characters in the custom printer vendor or model. Please " "delete and re-enter." msgstr "" +"There may be escape characters in the custom printer vendor or model. Please " +"delete and re-enter." msgid "" "All inputs in the custom printer vendor or model are spaces. Please re-enter." msgstr "" +"All inputs in the custom printer vendor or model are spaces. Please re-enter." msgid "Please check bed printable shape and origin input." -msgstr "" +msgstr "Please check bed printable shape and origin input." msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "" +"You have not yet selected the printer to replace the nozzle for; please " +"choose a printer." msgid "Create Printer Successful" -msgstr "" +msgstr "Create Printer Successful" msgid "Create Filament Successful" -msgstr "" +msgstr "Filament Created Successfully" msgid "Printer Created" -msgstr "" +msgstr "Printer Created" msgid "Please go to printer settings to edit your presets" -msgstr "" +msgstr "Please go to printer settings to edit your presets" msgid "Filament Created" -msgstr "" +msgstr "Filament Created" msgid "" "Please go to filament setting to edit your presets if you need.\n" @@ -13875,6 +14248,10 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"Please go to filament settings to edit your presets if you need to.\n" +"Please note that nozzle temperature, hot bed temperature, and maximum " +"volumetric speed each have a significant impact on printing quality. Please " +"set them carefully." msgid "" "\n" @@ -13886,7 +14263,7 @@ msgid "" msgstr "" msgid "Printer Setting" -msgstr "" +msgstr "Printer Setting" msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -13895,31 +14272,31 @@ msgid "Filament bundle(.orca_filament)" msgstr "" msgid "Printer presets(.zip)" -msgstr "" +msgstr "Printer presets(.zip)" msgid "Filament presets(.zip)" -msgstr "" +msgstr "Filament presets(.zip)" msgid "Process presets(.zip)" -msgstr "" +msgstr "Process presets(.zip)" msgid "initialize fail" -msgstr "" +msgstr "initialize fail" msgid "add file fail" -msgstr "" +msgstr "add file fail" msgid "add bundle structure file fail" -msgstr "" +msgstr "add bundle structure file fail" msgid "finalize fail" -msgstr "" +msgstr "finalize fail" msgid "open zip written fail" -msgstr "" +msgstr "open zip written fail" msgid "Export successful" -msgstr "" +msgstr "Export successful" #, c-format, boost-format msgid "" @@ -13928,6 +14305,10 @@ msgid "" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" +"The '%s' folder already exists in the current directory. Do you want to " +"clear it and rebuild it?\n" +"If not, a time suffix will be added, and you can modify the name after " +"creation." msgid "" "Printer and all the filament&&process presets that belongs to the printer. \n" @@ -13938,244 +14319,273 @@ msgid "" "User's fillment preset set. \n" "Can be shared with others." msgstr "" +"User's fillment preset set. \n" +"Can be shared with others." msgid "" "Only display printer names with changes to printer, filament, and process " "presets." msgstr "" +"Only display printers with changes to printer, filament, and process presets " +"are displayed." msgid "Only display the filament names with changes to filament presets." -msgstr "" +msgstr "Only display the filament names with changes to filament presets." msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" +"Only printer names with user printer presets will be displayed, and each " +"preset you choose will be exported as a zip." msgid "" "Only the filament names with user filament presets will be displayed, \n" "and all user filament presets in each filament name you select will be " "exported as a zip." msgstr "" +"Only the filament names with user filament presets will be displayed, \n" +"and all user filament presets in each filament name you select will be " +"exported as a zip." msgid "" "Only printer names with changed process presets will be displayed, \n" "and all user process presets in each printer name you select will be " "exported as a zip." msgstr "" +"Only printer names with changed process presets will be displayed, \n" +"and all user process presets in each printer name you select will be " +"exported as a zip." msgid "Please select at least one printer or filament." -msgstr "" +msgstr "Please select at least one printer or filament." msgid "Please select a type you want to export" -msgstr "" +msgstr "Please select a preset type you want to export" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "" +msgstr "Failed to create temporary folder, please try Export Configs again." msgid "Edit Filament" -msgstr "" +msgstr "Edit Filament" msgid "Filament presets under this filament" -msgstr "" +msgstr "Filament presets under this filament" msgid "" "Note: If the only preset under this filament is deleted, the filament will " "be deleted after exiting the dialog." msgstr "" +"Note: If the only preset under this filament is deleted, the filament will " +"be deleted after exiting the dialog." msgid "Presets inherited by other presets can not be deleted" -msgstr "" +msgstr "Presets inherited by other presets can not be deleted" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." msgstr[0] "" msgid "Delete Preset" -msgstr "" +msgstr "Delete Preset" msgid "Are you sure to delete the selected preset?" -msgstr "" +msgstr "Are you sure to delete the selected preset?" msgid "Delete preset" -msgstr "" +msgstr "Delete preset" msgid "+ Add Preset" -msgstr "" +msgstr "+ Add Preset" msgid "Delete Filament" -msgstr "" +msgstr "Delete Filament" msgid "" "All the filament presets belong to this filament would be deleted. \n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" +"All the filament presets belong to this filament would be deleted. \n" +"If you are using this filament on your printer, please reset the filament " +"information for that slot." msgid "Delete filament" -msgstr "" +msgstr "Delete filament" msgid "Add Preset" -msgstr "" +msgstr "Add Preset" msgid "Add preset for new printer" -msgstr "" +msgstr "Add preset for new printer" msgid "Copy preset from filament" -msgstr "" +msgstr "Copy preset from filament" msgid "The filament choice not find filament preset, please reselect it" -msgstr "" +msgstr "The filament choice not find filament preset, please reselect it" msgid "[Delete Required]" -msgstr "" +msgstr "[Delete Required]" msgid "Edit Preset" -msgstr "" +msgstr "Edit Preset" msgid "For more information, please check out Wiki" -msgstr "" +msgstr "For more information, please check out our Wiki" msgid "Collapse" -msgstr "" +msgstr "Collapse" msgid "Daily Tips" -msgstr "" +msgstr "Daily Tips" msgid "" "Your nozzle diameter in preset is not consistent with memorized nozzle " "diameter. Did you change your nozzle lately?" msgstr "" +"Your nozzle diameter in preset is not consistent with the saved nozzle " +"diameter. Have you changed your nozzle?" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" -msgstr "" +msgstr "*Printing %s material with %s may cause nozzle damage" msgid "Need select printer" -msgstr "" +msgstr "Need select printer" msgid "The start, end or step is not valid value." -msgstr "" +msgstr "The start, end or step is not valid value." msgid "" "Unable to calibrate: maybe because the set calibration value range is too " "large, or the step is too small" msgstr "" +"Unable to calibrate: maybe because the set calibration value range is too " +"large, or the step is too small" msgid "Physical Printer" -msgstr "" +msgstr "Physical Printer" msgid "Print Host upload" -msgstr "" +msgstr "Print Host upload" msgid "Could not get a valid Printer Host reference" -msgstr "" +msgstr "Could not get a valid Printer Host reference" msgid "Success!" -msgstr "" +msgstr "Success!" msgid "Are you sure to log out?" msgstr "" msgid "Refresh Printers" -msgstr "" +msgstr "Refresh Printers" msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" +"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" +"signed certificate." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -msgstr "" +msgstr "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgid "Open CA certificate file" -msgstr "" +msgstr "Open CA certificate file" #, c-format, boost-format msgid "" "On this system, %s uses HTTPS certificates from the system Certificate Store " "or Keychain." msgstr "" +"On this system, %s uses HTTPS certificates from the system Certificate Store " +"or Keychain." msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " "Keychain." msgstr "" +"To use a custom CA file, please import your CA file into Certificate Store / " +"Keychain." msgid "Login/Test" msgstr "" msgid "Connection to printers connected via the print host failed." -msgstr "" +msgstr "Connection to printers connected via the print host failed." #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "" +msgstr "Mismatched type of print host: %s" msgid "Connection to AstroBox works correctly." -msgstr "" +msgstr "Connection to AstroBox is working correctly." msgid "Could not connect to AstroBox" -msgstr "" +msgstr "Could not connect to AstroBox" msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "" +msgstr "Note: AstroBox version 1.1.0 or higher is required." msgid "Connection to Duet works correctly." -msgstr "" +msgstr "Connection to Duet is working correctly." msgid "Could not connect to Duet" -msgstr "" +msgstr "Could not connect to Duet" msgid "Unknown error occured" -msgstr "" +msgstr "Unknown error occured" msgid "Wrong password" -msgstr "" +msgstr "Wrong password" msgid "Could not get resources to create a new connection" -msgstr "" +msgstr "Could not get resources to create a new connection" msgid "Upload not enabled on FlashAir card." -msgstr "" +msgstr "Upload not enabled on FlashAir card." msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "" +msgstr "Connection to FlashAir is working correctly and upload is enabled." msgid "Could not connect to FlashAir" -msgstr "" +msgstr "Could not connect to FlashAir" msgid "" "Note: FlashAir with firmware 2.00.02 or newer and activated upload function " "is required." msgstr "" +"Note: FlashAir with firmware 2.00.02 or newer and activated upload function " +"is required." msgid "Connection to MKS works correctly." -msgstr "" +msgstr "Connection to MKS is working correctly." msgid "Could not connect to MKS" -msgstr "" +msgstr "Could not connect to MKS" msgid "Connection to OctoPrint works correctly." -msgstr "" +msgstr "Connection to OctoPrint is working correctly." msgid "Could not connect to OctoPrint" -msgstr "" +msgstr "Could not connect to OctoPrint" msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "" +msgstr "Note: OctoPrint version 1.1.0 or higher is required." msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "" +msgstr "Connection to Prusa SL1 / SL1S is working correctly." msgid "Could not connect to Prusa SLA" -msgstr "" +msgstr "Could not connect to Prusa SLA" msgid "Connection to PrusaLink works correctly." -msgstr "" +msgstr "Connection to PrusaLink is working correctly." msgid "Could not connect to PrusaLink" -msgstr "" +msgstr "Could not connect to PrusaLink" msgid "Storages found" msgstr "" @@ -14202,19 +14612,21 @@ msgid "Could not connect to Prusa Connect" msgstr "" msgid "Connection to Repetier works correctly." -msgstr "" +msgstr "Connection to Repetier is working correctly." msgid "Could not connect to Repetier" -msgstr "" +msgstr "Could not connect to Repetier" msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "" +msgstr "Note: Repetier version 0.90.0 or higher is required." #, boost-format msgid "" "HTTP status: %1%\n" "Message body: \"%2%\"" msgstr "" +"HTTP status: %1%\n" +"Message body: \"%2%\"" #, boost-format msgid "" @@ -14222,6 +14634,9 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Parsing of host response failed.\n" +"Message body: \"%1%\"\n" +"Error: \"%2%\"" #, boost-format msgid "" @@ -14229,35 +14644,51 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Enumeration of host printers failed.\n" +"Message body: \"%1%\"\n" +"Error: \"%2%\"" msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"It has a small layer height, and results in almost negligible layer lines " +"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " +"bigger layer height. This results in almost negligible layer lines and " +"slightly longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " +"height. This results in slightly visible layer lines but shorter print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in almost invisible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14265,12 +14696,19 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality but " +"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14278,35 +14716,53 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"It has a normal layer height, and results in average layer lines and print " +"quality. It is suitable for most printing cases." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but slightly shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14314,12 +14770,19 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14327,64 +14790,95 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and longer print time." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"It has a big layer height, and results in apparent layer lines and ordinary " +"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and slightly higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"It has a very big layer height, and results in very apparent layer lines, " +"low print quality and shorter printing time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -14392,12 +14886,18 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality, but longer print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgid "Connected to Obico successfully!" msgstr "" @@ -14522,6 +15022,9 @@ msgid "" "Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " "problems on the Windows system?" msgstr "" +"Fix Model\n" +"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " +"problems on the Windows system?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" @@ -14741,6 +15244,10 @@ msgid "" "extruder/hotend clogging when printing lower temperature filament with a " "higher enclosure temperature. More info about this in the Wiki." msgstr "" +"When do you need to print with the printer door opened?\n" +"Did you know that opening the printer door can reduce the probability of " +"extruder/hotend clogging when printing lower temperature filament with a " +"higher enclosure temperature? There is more info about this in the Wiki." #: resources/data/hints.ini: [hint:Avoid warping] msgid "" @@ -14749,6 +15256,13 @@ msgid "" "ABS, appropriately increasing the heatbed temperature can reduce the " "probability of warping." msgstr "" +"Avoid warping\n" +"Did you know that when printing materials that are prone to warping such as " +"ABS, appropriately increasing the heatbed temperature can reduce the " +"probability of warping?" + +#~ msgid "V" +#~ msgstr "V" #~ msgid "Export &Configs" #~ msgstr "構成データ" diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index 4148be61ef..715f5f53b3 100644 --- a/localization/i18n/ko/OrcaSlicer_ko.po +++ b/localization/i18n/ko/OrcaSlicer_ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: 2024-05-01 04:51+0900\n" "Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply." "github.com>, crwusiz \n" @@ -1376,9 +1376,6 @@ msgid "" "Configuration file \"%1%\" was loaded, but some values were not recognized." msgstr "구성 파일 \"%1%\"이(가) 로드되었지만 일부 값이 인식되지 않았습니다." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1486,6 +1483,9 @@ msgstr "하나 이상의 파일 선택 (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "하나 이상의 파일 선택 (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "하나의 파일 선택 (gcode/3mf):" @@ -1557,6 +1557,11 @@ msgstr "진행 중인 업로드" msgid "Select a G-code file:" msgstr "G코드 파일 선택:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "파일 가져오기" @@ -3211,10 +3216,10 @@ msgid "Device" msgstr "장치" msgid "Task Sending" -msgstr "" +msgstr "Task Sending" msgid "Task Sent" -msgstr "" +msgstr "Task Sent" msgid "Edit multiple printers" msgstr "" @@ -3234,7 +3239,7 @@ msgid "Offline" msgstr "오프라인" msgid "No task" -msgstr "" +msgstr "No task" msgid "View" msgstr "시점" @@ -3246,16 +3251,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "" +msgstr "Device Name" msgid "Task Name" -msgstr "" +msgstr "Task Name" msgid "Device Status" -msgstr "" +msgstr "Device Status" msgid "Actions" -msgstr "" +msgstr "Actions" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3298,7 +3303,7 @@ msgid "Pending" msgstr "" msgid "Sending" -msgstr "" +msgstr "전송 중…" msgid "Sending Finish" msgstr "" @@ -3325,22 +3330,22 @@ msgid "Stop" msgstr "정지" msgid "Task Status" -msgstr "" +msgstr "Task Status" msgid "Sent Time" -msgstr "" +msgstr "Sent Time" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "There are no tasks to be sent!" msgid "No historical tasks!" -msgstr "" +msgstr "No historical tasks!" msgid "Loading..." msgstr "로딩 중..." msgid "No AMS" -msgstr "" +msgstr "No AMS" msgid "Send to Multi-device" msgstr "여러 장치로 보내기" @@ -3358,22 +3363,31 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "" +msgstr "Use External Spool" msgid "Use AMS" -msgstr "" +msgstr "Use AMS" msgid "Select Printers" -msgstr "" +msgstr "Select Printers" msgid "Ams Status" -msgstr "" +msgstr "AMS Status" msgid "Printing Options" +msgstr "Printing Options" + +msgid "Bed Leveling" +msgstr "베드 레벨링" + +msgid "Timelapse" +msgstr "타임랩스" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "Send Options" msgid "Send" msgstr "전송" @@ -3382,13 +3396,16 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"printers at the same time. (It depends on how many devices can undergo " +"heating at the same time.)" msgid "Wait" -msgstr "" +msgstr "Wait" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Name is invalid;" msgstr "이름이 잘못되었습니다;" @@ -4566,6 +4583,12 @@ msgstr "3MF/STL/STEP/SVG/OBJ/AMF 가져오기" msgid "Load a model" msgstr "모델 불러오기" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "설정 가져오기" @@ -4966,9 +4989,6 @@ msgstr "월별 그룹 파일, 최근 파일 순." msgid "Show all files, recent first." msgstr "모든 파일 표시, 최근 파일 순." -msgid "Timelapse" -msgstr "타임랩스" - msgid "Switch to timelapse files." msgstr "타임랩스 파일로 전환합니다." @@ -5540,12 +5560,12 @@ msgstr[0] "%1$d 개체가 잘라낸 개체의 부품으로 로드되었습니다 msgid "ERROR" msgstr "오류" -msgid "CANCELED" -msgstr "취소됨" - msgid "COMPLETED" msgstr "완료됨" +msgid "CANCELED" +msgstr "취소됨" + msgid "Cancel upload" msgstr "업로드 취소" @@ -6146,6 +6166,20 @@ msgstr "유효한 G코드를 포함하지 않습니다." msgid "Error occurs while loading G-code file" msgstr "G코드 파일을 로드하는 중 오류가 발생했습니다" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "드롭 프로젝트 파일" @@ -6554,6 +6588,20 @@ msgstr "" "활성화된 경우 OrcaSlicer를 기본 응용 프로그램으로 설정하여 .step 파일을 엽니" "다" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "최근 프로젝트 최대 표시" @@ -6915,9 +6963,6 @@ msgstr "뱀부 텍스처 PEI 플레이트" msgid "Send print job to" msgstr "출력 작업 보내기" -msgid "Bed Leveling" -msgstr "베드 레벨링" - msgid "Flow Dynamics Calibration" msgstr "동적 유량 교정" @@ -12960,17 +13005,29 @@ msgstr "닦기 타워 청소 선 간격" msgid "Spacing of purge lines on the wipe tower." msgstr "닦기 타워의 청소 선 간격입니다." -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -15910,6 +15967,9 @@ msgstr "" "ABS 등 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이" "면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?" +#~ msgid "V" +#~ msgstr "V" + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index 3b38d6b6e8..40d3fd558d 100644 --- a/localization/i18n/nl/OrcaSlicer_nl.po +++ b/localization/i18n/nl/OrcaSlicer_nl.po @@ -1,14 +1,15 @@ +# msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Localazy (https://localazy.com)\n" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" +"X-Generator: Localazy (https://localazy.com)\n" msgid "Supports Painting" msgstr "Ondersteuning (Support) tekenen" @@ -150,7 +151,7 @@ msgid "Height range" msgstr "Hoogtebereik" msgid "Alt + Shift + Enter" -msgstr "" +msgstr "Alt + Shift + Enter" msgid "Toggle Wireframe" msgstr "Schakel draadmodel in of uit" @@ -165,10 +166,10 @@ msgid "Height Range" msgstr "Hoogtebereik" msgid "Vertical" -msgstr "" +msgstr "Verticaal" msgid "Horizontal" -msgstr "" +msgstr "Horizontaal" msgid "Remove painted color" msgstr "Geschilderd kleur verwijderen" @@ -269,16 +270,16 @@ msgid "uniform scale" msgstr "Uniform schalen" msgid "Planar" -msgstr "" +msgstr "Planair" msgid "Dovetail" -msgstr "" +msgstr "Zwaluwstaart" msgid "Auto" msgstr "Automatisch" msgid "Manual" -msgstr "" +msgstr "Handmatig" msgid "Plug" msgstr "Plug" @@ -287,7 +288,7 @@ msgid "Dowel" msgstr "Deuvel" msgid "Snap" -msgstr "" +msgstr "Snap" msgid "Prism" msgstr "" @@ -302,7 +303,7 @@ msgid "Hexagon" msgstr "Zeskant" msgid "Keep orientation" -msgstr "" +msgstr "Oriëntatie behouden" msgid "Place on cut" msgstr "Op kniplijn plaatsen" @@ -326,19 +327,19 @@ msgstr "Vorm" #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "" +msgstr "Diepte" msgid "Groove" -msgstr "" +msgstr "Groef" msgid "Width" msgstr "Breedte" msgid "Flap Angle" -msgstr "" +msgstr "Klephoek" msgid "Groove Angle" -msgstr "" +msgstr "Groefhoek" msgid "Part" msgstr "Onderdeel" @@ -361,7 +362,7 @@ msgid "Move cut plane" msgstr "" msgid "Mode" -msgstr "" +msgstr "Modus" msgid "Change cut mode" msgstr "" @@ -409,7 +410,7 @@ msgid "Remove connectors" msgstr "Verbindingen verwijderen" msgid "Bulge" -msgstr "" +msgstr "Uitstulping" msgid "Bulge proportion related to radius" msgstr "" @@ -519,6 +520,8 @@ msgstr "" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" msgstr "" +"Niet-gevormde randen worden veroorzaakt door snijgereedschap: wil je dit nu " +"herstellen?" msgid "Repairing model object" msgstr "Model object repareren" @@ -618,13 +621,13 @@ msgid "Remove selection" msgstr "Selectie verwijderen" msgid "Entering Seam painting" -msgstr "" +msgstr "Naad schilderen invoeren" msgid "Leaving Seam painting" -msgstr "" +msgstr "Naad schilderen verlaten" msgid "Paint-on seam editing" -msgstr "" +msgstr "Paint-on naadbewerking" #. TRN - Input label. Be short as possible #. Select look of letter shape @@ -763,7 +766,7 @@ msgstr "" msgctxt "EmbossOperation" msgid "Cut" -msgstr "" +msgstr "Knippen" msgid "Click to change part type into negative volume." msgstr "" @@ -905,19 +908,19 @@ msgstr "" msgctxt "Alignment" msgid "Left" -msgstr "" +msgstr "Links" msgctxt "Alignment" msgid "Center" -msgstr "" +msgstr "Centreren" msgctxt "Alignment" msgid "Right" -msgstr "" +msgstr "Rechts" msgctxt "Alignment" msgid "Top" -msgstr "" +msgstr "Bovenste" msgctxt "Alignment" msgid "Middle" @@ -925,7 +928,7 @@ msgstr "" msgctxt "Alignment" msgid "Bottom" -msgstr "" +msgstr "Onderste" msgid "Revert alignment." msgstr "" @@ -1237,43 +1240,43 @@ msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "" msgid "Vertex" -msgstr "" +msgstr "Vertex" msgid "Edge" -msgstr "" +msgstr "Rand" msgid "Plane" -msgstr "" +msgstr "Vlak" msgid "Point on edge" -msgstr "" +msgstr "Punt op rand" msgid "Point on circle" -msgstr "" +msgstr "Punt op cirkel" msgid "Point on plane" -msgstr "" +msgstr "Punt op vlak" msgid "Center of edge" -msgstr "" +msgstr "Midden van rand" msgid "Center of circle" -msgstr "" +msgstr "Middelpunt van cirkel" msgid "ShiftLeft mouse button" msgstr "" msgid "Select feature" -msgstr "" +msgstr "Functie selecteren" msgid "Select point" -msgstr "" +msgstr "Kies punt" msgid "Delete" msgstr "Verwijderen" msgid "Restart selection" -msgstr "" +msgstr "Selectie herstarten" msgid "Esc" msgstr "Esc" @@ -1282,14 +1285,14 @@ msgid "Unselect" msgstr "" msgid "Measure" -msgstr "" +msgstr "Maatregel" msgid "Edit to scale" -msgstr "" +msgstr "Op schaal bewerken" msgctxt "Verb" msgid "Scale" -msgstr "" +msgstr "Schalen" msgid "None" msgstr "Geen" @@ -1301,22 +1304,22 @@ msgid "Length" msgstr "Lengte" msgid "Selection" -msgstr "" +msgstr "Selectie" msgid "Copy to clipboard" msgstr "Kopieer naar klembord" msgid "Perpendicular distance" -msgstr "" +msgstr "Perpendicular distance" msgid "Distance" -msgstr "" +msgstr "Distance" msgid "Direct distance" -msgstr "" +msgstr "Direct distance" msgid "Distance XYZ" -msgstr "" +msgstr "Distance XYZ" msgid "Ctrl+" msgstr "Ctrl+" @@ -1358,9 +1361,6 @@ msgstr "" "Configuratiebestand “%1%” werd geladen, maar sommige waarden werden niet " "herkend." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1466,6 +1466,9 @@ msgstr "Kies één of meer bestanden (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Kies één of meer bestanden (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Kies één bestand (gcode/3mf):" @@ -1502,9 +1505,12 @@ msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " "newly created user presets can only be used locally." msgstr "" +"Het aantal gebruikersvoorinstellingen dat in de cloud is opgeslagen, heeft " +"de bovengrens overschreden. Nieuw gemaakte gebruikersvoorinstellingen kunnen " +"alleen lokaal worden gebruikt." msgid "Sync user presets" -msgstr "" +msgstr "Synchroniseer gebruikersvoorinstellingen" msgid "Loading user preset" msgstr "Voorinstelling voor gebruiker laden" @@ -1533,6 +1539,11 @@ msgstr "Lopende uploads" msgid "Select a G-code file:" msgstr "Selecteer een G-code bestand:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Importeer bestand" @@ -1667,10 +1678,10 @@ msgid "Cone" msgstr "Kegel" msgid "Disc" -msgstr "" +msgstr "Schijf" msgid "Torus" -msgstr "" +msgstr "Torus" msgid "Orca Cube" msgstr "Orca-kubus" @@ -1729,10 +1740,10 @@ msgid "Fix model" msgstr "Repareer model" msgid "Export as one STL" -msgstr "" +msgstr "Exporteren als één STL" msgid "Export as STLs" -msgstr "" +msgstr "Exporteren als STL's" msgid "Reload from disk" msgstr "Opnieuw laden vanaf schijf" @@ -2271,7 +2282,7 @@ msgid "Pause" msgstr "Pauze" msgid "Template" -msgstr "" +msgstr "Sjabloon" msgid "Custom" msgstr "Aangepast" @@ -2322,7 +2333,7 @@ msgid "Change filament at the beginning of this layer." msgstr "Change filament at the beginning of this layer." msgid "Delete Pause" -msgstr "" +msgstr "Pauze verwijderen" msgid "Delete Custom Template" msgstr "Delete Custom Template" @@ -2340,7 +2351,7 @@ msgid "No printer" msgstr "Geen printer" msgid "..." -msgstr "" +msgstr "..." msgid "Failed to connect to the server" msgstr "Verbinding maken met de server is mislukt" @@ -2373,7 +2384,7 @@ msgid "?" msgstr " ?" msgid "/" -msgstr "" +msgstr "/" msgid "Empty" msgstr "Leeg" @@ -2382,13 +2393,13 @@ msgid "AMS" msgstr "AMS" msgid "Auto Refill" -msgstr "" +msgstr "Auto Refill" msgid "AMS not connected" msgstr "AMS niet aangesloten" msgid "Load" -msgstr "" +msgstr "Load" msgid "Unload" msgstr "Lossen" @@ -2420,7 +2431,7 @@ msgid "Cancel calibration" msgstr "Kalibreren afbreken" msgid "Idling..." -msgstr "" +msgstr "Inactief..." msgid "Heat the nozzle" msgstr "Verwarm de nozzle" @@ -2438,13 +2449,13 @@ msgid "Purge old filament" msgstr "Oud filament verwijderen" msgid "Feed Filament" -msgstr "" +msgstr "Voer filament in" msgid "Confirm extruded" -msgstr "" +msgstr "Bevestig geëxtrudeerd" msgid "Check filament location" -msgstr "" +msgstr "Controleer de positie van het filament" msgid "Grab new filament" msgstr "Grab new filament" @@ -2453,6 +2464,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Kies een AMS-sleuf en druk op de knop \"Laden\" of \"Lossen\" om automatisch " +"filament te laden of te ontladen." msgid "Edit" msgstr "Bewerken" @@ -2532,7 +2545,7 @@ msgid "Orienting canceled." msgstr "" msgid "Filling" -msgstr "" +msgstr "Vullen" msgid "Bed filling canceled." msgstr "Bed filling canceled." @@ -2616,7 +2629,7 @@ msgid "Sending print job through cloud service" msgstr "Printopdracht verzenden via cloud service" msgid "Print task sending times out." -msgstr "" +msgstr "Het verzenden van de printtaak loopt uit." msgid "Service Unavailable" msgstr "Service niet beschikbaar" @@ -2634,6 +2647,7 @@ msgstr "Succesvol verzonden. Springt automatisch naar de apparaatpagina in %ss" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" msgstr "" +"Succesvol verzonden. Springt automatisch naar de volgende pagina in %ss" msgid "An SD card needs to be inserted before printing via LAN." msgstr "" @@ -2799,10 +2813,10 @@ msgstr "" "ondersteund." msgid "Factors of Flow Dynamics Calibration" -msgstr "" +msgstr "Factoren van Flow Dynamics Calibration" msgid "PA Profile" -msgstr "" +msgstr "PA-profiel" msgid "Factor K" msgstr "Factor K" @@ -2820,10 +2834,10 @@ msgid "You need to select the material type and color first." msgstr "You need to select the material type and color first." msgid "Please input a valid value (K in 0~0.3)" -msgstr "" +msgstr "Voer een geldige waarde in (K in 0~0.3)" msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" -msgstr "" +msgstr "Voer een geldige waarde in (K in 0~0,3, N in 0,6~2,0)" msgid "Other Color" msgstr "Other Color" @@ -2931,7 +2945,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "Print met filament op een externe spoel" msgid "Current Cabin humidity" -msgstr "" +msgstr "Current Cabin humidity" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2939,6 +2953,10 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"Please change the desiccant when it is too wet. The indicator may not " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It takes a few hours to absorb the moisture, and " +"low temperatures also slow down the process." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -2971,16 +2989,19 @@ msgid "" "When the current material run out, the printer will continue to print in the " "following order." msgstr "" +"Als het huidige materiaal op is, gaat de printer verder met afdrukken in de " +"volgende volgorde." msgid "Group" msgstr "Group" msgid "The printer does not currently support auto refill." -msgstr "" +msgstr "De printer ondersteunt automatisch bijvullen momenteel niet." msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "" +"AMS filament backup is not enabled; please enable it in the AMS settings." msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " @@ -2988,12 +3009,16 @@ msgid "" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" +"If there are two identical filaments in an AMS, AMS filament backup will be " +"enabled. \n" +"(This currently supports automatic supply of consumables with the same " +"brand, material type, and color)" msgid "DRY" -msgstr "" +msgstr "DRY" msgid "WET" -msgstr "" +msgstr "WET" msgid "AMS Settings" msgstr "AMS Instellingen" @@ -3012,6 +3037,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"Opmerking: als er tijdens het printen een nieuw filament wordt geplaatst, " +"zal het AMS niet automatisch informatie lezen totdat het printen is voltooid." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3064,12 +3091,14 @@ msgstr "" "eigenschappen wanneer het huidige filament op is." msgid "Air Printing Detection" -msgstr "" +msgstr "Air Printing Detection" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"Detects clogging and filament grinding, halting printing immediately to " +"conserve time and filament." msgid "File" msgstr "Bestand" @@ -3148,7 +3177,7 @@ msgid "Running post-processing scripts" msgstr "Het uitvoeren van post-processing scripts" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." msgstr "" @@ -3214,10 +3243,10 @@ msgid "Device" msgstr "Apparaat" msgid "Task Sending" -msgstr "" +msgstr "Task Sending" msgid "Task Sent" -msgstr "" +msgstr "Task Sent" msgid "Edit multiple printers" msgstr "" @@ -3237,7 +3266,7 @@ msgid "Offline" msgstr "Offline" msgid "No task" -msgstr "" +msgstr "No task" msgid "View" msgstr "Weergave" @@ -3249,16 +3278,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "" +msgstr "Device Name" msgid "Task Name" -msgstr "" +msgstr "Task Name" msgid "Device Status" -msgstr "" +msgstr "Device Status" msgid "Actions" -msgstr "" +msgstr "Actions" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3301,7 +3330,7 @@ msgid "Pending" msgstr "" msgid "Sending" -msgstr "" +msgstr "Verzenden" msgid "Sending Finish" msgstr "" @@ -3328,25 +3357,25 @@ msgid "Stop" msgstr "Stop" msgid "Task Status" -msgstr "" +msgstr "Task Status" msgid "Sent Time" -msgstr "" +msgstr "Sent Time" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "There are no tasks to be sent!" msgid "No historical tasks!" -msgstr "" +msgstr "No historical tasks!" msgid "Loading..." msgstr "Laden..." msgid "No AMS" -msgstr "" +msgstr "No AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "Send to Multi-device" msgid "Preparing print job" msgstr "Print opdracht voorbereiden" @@ -3361,22 +3390,31 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "" +msgstr "Use External Spool" msgid "Use AMS" -msgstr "" +msgstr "Use AMS" msgid "Select Printers" -msgstr "" +msgstr "Select Printers" msgid "Ams Status" -msgstr "" +msgstr "AMS Status" msgid "Printing Options" +msgstr "Printing Options" + +msgid "Bed Leveling" +msgstr "Bed leveling" + +msgid "Timelapse" +msgstr "Timelapse" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "Send Options" msgid "Send" msgstr "Versturen" @@ -3385,13 +3423,16 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"printers at the same time. (It depends on how many devices can undergo " +"heating at the same time.)" msgid "Wait" -msgstr "" +msgstr "Wait" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Name is invalid;" msgstr "Naam is ongeldig;" @@ -3491,14 +3532,18 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" +"De aanbevolen minimumtemperatuur is lager dan 190 graden of de aanbevolen " +"maximumtemperatuur is hoger dan 300 graden.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" +"The recommended minimum temperature cannot be higher than the recommended " +"maximum temperature.\n" msgid "Please check.\n" -msgstr "" +msgstr "Controleer het.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3531,6 +3576,9 @@ msgid "" "it may result in material softening and clogging.The maximum safe " "temperature for the material is %d" msgstr "" +"Current chamber temperature is higher than the material's safe temperature; " +"this may result in material softening and nozzle clogs.The maximum safe " +"temperature for the material is %d" msgid "" "Too small layer height.\n" @@ -3653,7 +3701,7 @@ msgstr "" "layers is 0, sparse infill density is 0 and timelapse type is traditional." msgid " But machines with I3 structure will not generate timelapse videos." -msgstr "" +msgstr " Maar machines met een I3-structuur genereren geen timelapsevideo's." msgid "" "Change these settings automatically? \n" @@ -3728,46 +3776,47 @@ msgid "Paused due to heat bed temperature malfunction" msgstr "Onderbroken vanwege storing in de temperatuur van het printbed" msgid "Filament unloading" -msgstr "" +msgstr "Lossen van filament" msgid "Skip step pause" -msgstr "" +msgstr "Stappauze overslaan" msgid "Filament loading" -msgstr "" +msgstr "Filament bezig met laden" msgid "Motor noise calibration" -msgstr "" +msgstr "Kalibratie van motorgeluid" msgid "Paused due to AMS lost" -msgstr "" +msgstr "Gepauzeerd wegens verlies van AMS" msgid "Paused due to low speed of the heat break fan" msgstr "" +"Gepauzeerd vanwege lage snelheid van de ventilator voor warmteonderbreking" msgid "Paused due to chamber temperature control error" -msgstr "" +msgstr "Gepauzeerd vanwege een fout in de temperatuurregeling van de kamer" msgid "Cooling chamber" -msgstr "" +msgstr "Koelkamer" msgid "Paused by the Gcode inserted by user" -msgstr "" +msgstr "Gepauzeerd door de Gcode ingevoegd door gebruiker" msgid "Motor noise showoff" -msgstr "" +msgstr "Motorgeluid showoff" msgid "Nozzle filament covered detected pause" -msgstr "" +msgstr "Nozzle filament bedekt gedetecteerde pauze" msgid "Cutter error pause" -msgstr "" +msgstr "Pauze bij snijfout" msgid "First layer error pause" -msgstr "" +msgstr "Eerste laag foutpauze" msgid "Nozzle clog pause" -msgstr "" +msgstr "Pauze bij verstopping van het mondstuk" msgid "Unknown" msgstr "Onbekend" @@ -3798,18 +3847,27 @@ msgid "" "45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" +"The current chamber temperature or the target chamber temperature exceeds " +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" +"TPU) is not allowed to be loaded." msgid "" "Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " "avoid extruder clogging,it is not allowed to set the chamber temperature " "above 45℃." msgstr "" +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " +"above 45℃." msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated. And the target chamber temperature will " "automatically be set to 0℃." msgstr "" +"When you set the chamber temperature below 40℃, the chamber temperature " +"control will not be activated, and the target chamber temperature will " +"automatically be set to 0℃." msgid "Failed to start printing job" msgstr "Het starten van de printopdracht is mislukt" @@ -3817,34 +3875,39 @@ msgstr "Het starten van de printopdracht is mislukt" msgid "" "This calibration does not support the currently selected nozzle diameter" msgstr "" +"Deze kalibratie ondersteunt de momenteel geselecteerde mondstukdiameter niet" msgid "Current flowrate cali param is invalid" -msgstr "" +msgstr "Huidige stroomsnelheid cali param is ongeldig" msgid "Selected diameter and machine diameter do not match" -msgstr "" +msgstr "Geselecteerde diameter en machinediameter komen niet overeen" msgid "Failed to generate cali gcode" -msgstr "" +msgstr "Cali gcode niet gegenereerd" msgid "Calibration error" -msgstr "" +msgstr "Kalibratiefout" msgid "TPU is not supported by AMS." -msgstr "" +msgstr "TPU wordt niet ondersteund door AMS." msgid "Bambu PET-CF/PA6-CF is not supported by AMS." -msgstr "" +msgstr "Bambu PET-CF/PA6-CF wordt niet ondersteund door AMS." msgid "" "Damp PVA will become flexible and get stuck inside AMS,please take care to " "dry it before use." msgstr "" +"Vochtige PVA zal flexibel worden en vast komen te zitten in de AMS, zorg er " +"dus voor dat je het droogt voor gebruik." msgid "" "CF/GF filaments are hard and brittle, It's easy to break or get stuck in " "AMS, please use with caution." msgstr "" +"CF/GF-filamenten zijn hard en bros. Ze kunnen gemakkelijk breken of vast " +"komen te zitten in AMS." msgid "default" msgstr "Standaard" @@ -3927,7 +3990,7 @@ msgstr "Parametervalidatie" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "" +msgstr "Value %s is out of range. The valid range is from %d to %d." msgid "Value is out of range." msgstr "Waarde is buiten het bereik." @@ -4010,7 +4073,7 @@ msgid "Flushed" msgstr "Flushed" msgid "Tower" -msgstr "" +msgstr "Toren" msgid "Total" msgstr "Totaal" @@ -4022,7 +4085,7 @@ msgid "Total time" msgstr "Totale tijd" msgid "Total cost" -msgstr "" +msgstr "Total cost" msgid "up to" msgstr "tot" @@ -4118,10 +4181,10 @@ msgid "Normal mode" msgstr "Normale modus" msgid "Total Filament" -msgstr "" +msgstr "Total Filament" msgid "Model Filament" -msgstr "" +msgstr "Model Filament" msgid "Prepare time" msgstr "Voorbereidingstijd" @@ -4217,7 +4280,7 @@ msgid "Spacing" msgstr "Uitlijning" msgid "0 means auto spacing." -msgstr "" +msgstr "0 means auto spacing." msgid "Auto rotate for arrangement" msgstr "Automatisch roteren voor rankschikking" @@ -4229,7 +4292,7 @@ msgid "Avoid extrusion calibration region" msgstr "Vermijd het extrusie kalibratie gebied" msgid "Align to Y axis" -msgstr "" +msgstr "Uitlijnen op Y-as" msgid "Add plate" msgstr "Printbed toevoegen" @@ -4295,7 +4358,7 @@ msgid "An object is layed over the boundary of plate." msgstr "Er bevind zich een object buiten de grenzen van de printplaat." msgid "A G-code path goes beyond the max print height." -msgstr "" +msgstr "Een G-codepad gaat verder dan de maximale printhoogte." msgid "A G-code path goes beyond the boundary of plate." msgstr "Een G-code pad treedt buiten de grenzen van de printplaat." @@ -4323,10 +4386,10 @@ msgid "Bed leveling" msgstr "Bed leveling" msgid "Vibration compensation" -msgstr "" +msgstr "Trillingscompensatie" msgid "Motor noise cancellation" -msgstr "" +msgstr "Motorruisonderdrukking" msgid "Calibration program" msgstr "Kalibratie programma" @@ -4353,7 +4416,7 @@ msgid "Calibrating" msgstr "Kalibreren" msgid "No step selected" -msgstr "" +msgstr "Geen stap geselecteerd" msgid "Auto-record Monitoring" msgstr "Automatische opnamebewaking" @@ -4362,7 +4425,7 @@ msgid "Go Live" msgstr "Live gaan" msgid "Liveview Retry" -msgstr "" +msgstr "Liveweergave opnieuw proberen" msgid "Resolution" msgstr "Resolutie" @@ -4420,7 +4483,7 @@ msgid "Preview" msgstr "Voorvertoning" msgid "Multi-device" -msgstr "" +msgstr "Multi-device" msgid "Project" msgstr "Project" @@ -4566,6 +4629,12 @@ msgstr "3MF/STL/STEP/SVG/OBJ/AMF importeren" msgid "Load a model" msgstr "Laad een model" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Importeer configuratie" @@ -4576,10 +4645,10 @@ msgid "Import" msgstr "Importeren" msgid "Export all objects as one STL" -msgstr "" +msgstr "Alle objecten exporteren als één STL" msgid "Export all objects as STLs" -msgstr "" +msgstr "Alle objecten exporteren als STL's" msgid "Export Generic 3MF" msgstr "Generiek 3MF exporteren" @@ -4705,49 +4774,49 @@ msgid "Help" msgstr "Help" msgid "Temperature Calibration" -msgstr "" +msgstr "Temperatuurkalibratie" msgid "Pass 1" -msgstr "" +msgstr "Fase 1" msgid "Flow rate test - Pass 1" -msgstr "" +msgstr "Stroomsnelheidstest - Fase 1" msgid "Pass 2" -msgstr "" +msgstr "Fase 2" msgid "Flow rate test - Pass 2" -msgstr "" +msgstr "Stroomsnelheidstest - Fase 2" msgid "Flow rate" -msgstr "" +msgstr "Flowrate" msgid "Pressure advance" -msgstr "" +msgstr "Drukverhoging" msgid "Retraction test" -msgstr "" +msgstr "Retractietest" msgid "Orca Tolerance Test" -msgstr "" +msgstr "Orca Tolerance Test" msgid "Max flowrate" -msgstr "" +msgstr "Max flowrate" msgid "VFA" -msgstr "" +msgstr "VFA" msgid "More..." -msgstr "" +msgstr "Meer..." msgid "Tutorial" -msgstr "" +msgstr "Tutorial" msgid "Calibration help" -msgstr "" +msgstr "Hulp bij kalibratie" msgid "More calibrations" -msgstr "" +msgstr "Meer kalibraties" msgid "&Open G-code" msgstr "&Open G-code" @@ -4863,48 +4932,57 @@ msgid "Synchronization" msgstr "Synchronisatie" msgid "The device cannot handle more conversations. Please retry later." -msgstr "" +msgstr "Het apparaat kan niet meer gesprekken aan. Probeer het later opnieuw." msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "" +msgstr "De speler werkt niet goed. Installeer de systeemspeler opnieuw." msgid "The player is not loaded, please click \"play\" button to retry." msgstr "" +"De speler is niet geladen; klik op de \"play\" knop om het opnieuw te " +"proberen." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "Controleer of de printer is aangesloten." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" +"De printer is momenteel bezig met downloaden. Probeer het opnieuw nadat het " +"is voltooid." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "De printercamera werkt niet goed." msgid "Problem occured. Please update the printer firmware and try again." msgstr "" +"Er heeft zich een probleem voorgedaan. Werk de printerfirmware bij en " +"probeer het opnieuw." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "Voer het IP-adres in van de printer waarmee u verbinding wilt maken." msgid "Initializing..." msgstr "Initialiseren..." msgid "Connection Failed. Please check the network and try again" -msgstr "" +msgstr "Verbinding mislukt. Controleer het netwerk en probeer het opnieuw" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"Controleer het netwerk en probeer het opnieuw. U kunt de printer opnieuw " +"opstarten of bijwerken als het probleem zich blijft voordoen." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "De printer is afgemeld en kan geen verbinding maken." msgid "Stopped." msgstr "Gestopt." @@ -4962,9 +5040,6 @@ msgstr "Groepeer bestanden per maand, recent eerst." msgid "Show all files, recent first." msgstr "Toon alle bestanden, recentste eerst." -msgid "Timelapse" -msgstr "Timelapse" - msgid "Switch to timelapse files." msgstr "Schakel over naar timelapse bestanden." @@ -4996,7 +5071,7 @@ msgid "Refresh" msgstr "Vernieuwen" msgid "Reload file list from printer." -msgstr "" +msgstr "Reload file list from printer." msgid "No printers." msgstr "Geen printers" @@ -5009,10 +5084,10 @@ msgid "Loading file list..." msgstr "Bestandslijst laden..." msgid "No files" -msgstr "" +msgstr "Geen bestanden" msgid "Load failed" -msgstr "" +msgstr "Load failed" msgid "Initialize failed (Device connection not ready)!" msgstr "Initialization failed (Device connection not ready)!" @@ -5021,15 +5096,17 @@ msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"Browsing file in SD card is not supported in current firmware. Please update " +"the printer firmware." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "LAN Connection Failed (Failed to view sdcard)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "Browsing file in SD card is not supported in LAN Only Mode." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -5056,10 +5133,10 @@ msgid "Fetching model infomations ..." msgstr "Fetching model information..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "Mislukt bij het ophalen van modelgegevens van de printer." msgid "Failed to parse model information." -msgstr "" +msgstr "Mislukt bij het parsen van modelinformatie." msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -5075,6 +5152,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"File: %s\n" +"Title: %s\n" msgid "Download waiting..." msgstr "Download wacht..." @@ -5096,22 +5175,24 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"Reconnecting the printer, the operation cannot be completed immediately, " +"please try again later." msgid "File does not exist." -msgstr "" +msgstr "Bestand bestaat niet." msgid "File checksum error. Please retry." -msgstr "" +msgstr "Fout in bestandscontrolesom. Probeer opnieuw." msgid "Not supported on the current printer version." -msgstr "" +msgstr "Niet ondersteund op de huidige printerversie." msgid "Storage unavailable, insert SD card." -msgstr "" +msgstr "Opslagruimte niet beschikbaar, Micro SD-kaart plaatsen." #, c-format, boost-format msgid "Error code: %d" -msgstr "" +msgstr "Foutcode: %d" msgid "Speed:" msgstr "Snelheid" @@ -5168,17 +5249,21 @@ msgid "" "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." msgstr "" +"You have completed printing the mall model, \n" +"but synchronizing rating information has failed." msgid "How do you like this printing file?" -msgstr "" +msgstr "Wat vind je van dit afdrukbestand?" msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" msgstr "" +"(Het model is al beoordeeld. Uw beoordeling overschrijft de vorige " +"beoordeling)." msgid "Rate" -msgstr "" +msgstr "Tarief" msgid "Camera" msgstr "Camera" @@ -5196,7 +5281,7 @@ msgid "Control" msgstr "Besturing" msgid "Printer Parts" -msgstr "" +msgstr "Printer Parts" msgid "Print Options" msgstr "Print Opties" @@ -5253,6 +5338,8 @@ msgid "" "Please heat the nozzle to above 170 degree before loading or unloading " "filament." msgstr "" +"Verwarm het mondstuk tot boven de 170 graden voordat u filament laadt of " +"lost." msgid "Still unload" msgstr "Nog steeds aan het ontladen" @@ -5289,95 +5376,110 @@ msgid "Can't start this without SD card." msgstr "Kan niet starten zonder microSD-kaart." msgid "Rate the Print Profile" -msgstr "" +msgstr "Beoordeel het printprofiel" msgid "Comment" -msgstr "" +msgstr "Opmerking" msgid "Rate this print" -msgstr "" +msgstr "Beoordeel deze print" msgid "Add Photo" -msgstr "" +msgstr "Foto toevoegen" msgid "Delete Photo" -msgstr "" +msgstr "Foto verwijderen" msgid "Submit" -msgstr "" +msgstr "Indienen" msgid "Please click on the star first." -msgstr "" +msgstr "Klik eerst op de ster." msgid "InFo" -msgstr "" +msgstr "Informatie" msgid "Get oss config failed." -msgstr "" +msgstr "Het ophalen van de oss-configuratie is mislukt." msgid "Upload Pictrues" -msgstr "" +msgstr "Upload Pictures" msgid "Number of images successfully uploaded" -msgstr "" +msgstr "Aantal afbeeldingen succesvol geüpload" msgid " upload failed" -msgstr "" +msgstr "uploaden mislukt" msgid " upload config prase failed\n" -msgstr "" +msgstr " upload config prase mislukt\n" msgid " No corresponding storage bucket\n" -msgstr "" +msgstr " Geen bijbehorende opslag bucket\n" msgid " can not be opened\n" -msgstr "" +msgstr " cannot be opened\n" msgid "" "The following issues occurred during the process of uploading images. Do you " "want to ignore them?\n" "\n" msgstr "" +"De volgende problemen deden zich voor tijdens het uploaden van afbeeldingen. " +"Wil je ze negeren?\n" +"\n" msgid "info" msgstr "Informatie" msgid "Synchronizing the printing results. Please retry a few seconds later." msgstr "" +"De afdrukresultaten worden gesynchroniseerd. Probeer het een paar seconden " +"later opnieuw." msgid "Upload failed\n" -msgstr "" +msgstr "Uploaden mislukt\n" msgid "obtaining instance_id failed\n" -msgstr "" +msgstr "het verkrijgen van instance_id is mislukt\n" msgid "" "Your comment result cannot be uploaded due to some reasons. As follows:\n" "\n" " error code: " msgstr "" +"Your comment result cannot be uploaded due to the following reasons:\n" +"\n" +" error code: " msgid "error message: " -msgstr "" +msgstr "foutmelding: " msgid "" "\n" "\n" "Would you like to redirect to the webpage for rating?" msgstr "" +"\n" +"\n" +"Would you like to redirect to the webpage to give a rating?" msgid "" "Some of your images failed to upload. Would you like to redirect to the " "webpage for rating?" msgstr "" +"Sommige afbeeldingen zijn niet geüpload. Wilt u doorverwijzen naar de " +"webpagina voor beoordeling?" msgid "You can select up to 16 images." -msgstr "" +msgstr "Je kunt tot 16 afbeeldingen selecteren." msgid "" "At least one successful print record of this print profile is required \n" "to give a positive rating(4 or 5stars)." msgstr "" +"At least one successful print record of this print profile is required \n" +"to give a positive rating (4 or 5 stars)." msgid "Status" msgstr "Status" @@ -5427,7 +5529,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "" +msgstr "Beta-versie downloaden" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5436,13 +5538,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "" +msgstr "Huidige versie:" msgid "Latest Version: " -msgstr "" +msgstr "Laatste versie:" msgid "Not for now" -msgstr "" +msgstr "Not for now" msgid "3D Mouse disconnected." msgstr "3D-muis losgekoppeld." @@ -5469,10 +5571,10 @@ msgid "Details" msgstr "Détails" msgid "New printer config available." -msgstr "" +msgstr "Nieuwe printerconfiguratie beschikbaar." msgid "Wiki" -msgstr "" +msgstr "Wiki" msgid "Undo integration failed." msgstr "Het ongedaan maken van de integratie is mislukt." @@ -5521,12 +5623,12 @@ msgstr[1] "" msgid "ERROR" msgstr "Fout" -msgid "CANCELED" -msgstr "GEANNULEERD" - msgid "COMPLETED" msgstr "VOLTOOID" +msgid "CANCELED" +msgstr "GEANNULEERD" + msgid "Cancel upload" msgstr "Upload annuleren" @@ -5543,10 +5645,10 @@ msgid "Export successfully." msgstr "Succesvol geëxporteerd" msgid "Model file downloaded." -msgstr "" +msgstr "Modelbestand gedownload." msgid "Serious warning:" -msgstr "" +msgstr "Ernstige waarschuwing:" msgid " (Repair)" msgstr " (Repareren)" @@ -5634,29 +5736,29 @@ msgid "Auto-recovery from step loss" msgstr "Automatisch herstel na stapverlies" msgid "Allow Prompt Sound" -msgstr "" +msgstr "Promptgeluid toestaan" msgid "Filament Tangle Detect" -msgstr "" +msgstr "Filament Tangle Detection" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Nozzle Clumping Detection" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "" +msgstr "Check if the nozzle is clumping by filament or other foreign objects." msgid "Nozzle Type" -msgstr "" +msgstr "Nozzle Type" msgid "Stainless Steel" -msgstr "" +msgstr "Roestvrij staal" msgid "Hardened Steel" -msgstr "" +msgstr "Gehard staal" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "Globale" @@ -5747,7 +5849,7 @@ msgid "Set filaments to use" msgstr "Stel filamenten in om te gebruiken" msgid "Search plate, object and part." -msgstr "" +msgstr "Zoek plaat, object en onderdeel." msgid "" "No AMS filaments. Please select a printer in 'Device' page to load AMS info." @@ -5817,6 +5919,9 @@ msgid "" "clogged when printing this filament in a closed enclosure. Please open the " "front door and/or remove the upper glass." msgstr "" +"The current heatbed temperature is relatively high. The nozzle may clog when " +"printing this filament in a closed environment. Please open the front door " +"and/or remove the upper glass." msgid "" "The nozzle hardness required by the filament is higher than the default " @@ -5831,6 +5936,9 @@ msgid "" "Enabling traditional timelapse photography may cause surface imperfections. " "It is recommended to change to smooth mode." msgstr "" +"Het inschakelen van traditionele timelapse-fotografie kan oneffenheden in " +"het oppervlak veroorzaken. Het wordt aanbevolen om over te schakelen naar de " +"vloeiende modus." msgid "Expand sidebar" msgstr "" @@ -5875,26 +5983,32 @@ msgid "Please correct them in the param tabs" msgstr "Please correct them in the Param tabs" msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "" +msgstr "The 3mf has following modified G-code in filament or printer presets:" msgid "" "Please confirm that these modified G-codes are safe to prevent any damage to " "the machine!" msgstr "" +"Controleer of deze aangepaste G-codes veilig zijn om schade aan de machine " +"te voorkomen!" msgid "Modified G-codes" -msgstr "" +msgstr "Modified G-code" msgid "The 3mf has following customized filament or printer presets:" msgstr "" +"De 3mf heeft de volgende aangepaste voorinstellingen voor filament of " +"printer:" msgid "" "Please confirm that the G-codes within these presets are safe to prevent any " "damage to the machine!" msgstr "" +"Controleer of de G-codes in deze presets veilig zijn om schade aan de " +"machine te voorkomen!" msgid "Customized Preset" -msgstr "" +msgstr "Aangepaste voorinstelling" msgid "Name of components inside step file is not UTF8 format!" msgstr "Naam van componenten in step-bestand is niet UTF8-formaat!" @@ -5967,22 +6081,24 @@ msgid "Export STL file:" msgstr "Exporteer STL bestand:" msgid "Export AMF file:" -msgstr "" +msgstr "AMF-bestand exporteren:" msgid "Save file as:" msgstr "Bewaar bestand als:" msgid "Export OBJ file:" -msgstr "" +msgstr "OBJ-bestand exporteren:" #, c-format, boost-format msgid "" "The file %s already exists\n" "Do you want to replace it?" msgstr "" +"The file %s already exists.\n" +"Do you want to replace it?" msgid "Comfirm Save As" -msgstr "" +msgstr "Opslaan als bevestigen" msgid "Delete object which is a part of cut object" msgstr "Delete object which is a part of cut object" @@ -6003,13 +6119,13 @@ msgid "Another export job is running." msgstr "Er is reeds een export taak actief." msgid "Unable to replace with more than one volume" -msgstr "" +msgstr "Kan niet worden vervangen door meer dan één volume" msgid "Error during replace" msgstr "Fout tijdens vervanging" msgid "Replace from:" -msgstr "" +msgstr "Vervangen van:" msgid "Select a new file" msgstr "Selecteer een nieuw bestand" @@ -6021,19 +6137,19 @@ msgid "Please select a file" msgstr "Selecteer een bestand" msgid "Do you want to replace it" -msgstr "" +msgstr "Do you want to replace it?" msgid "Message" -msgstr "" +msgstr "Bericht" msgid "Reload from:" -msgstr "" +msgstr "Herladen vanaf:" msgid "Unable to reload:" -msgstr "" +msgstr "Kan niet herladen:" msgid "Error during reload" -msgstr "" +msgstr "Fout tijdens herladen" msgid "There are warnings after slicing models:" msgstr "Er zijn waarschuwingen na het slicen van modellen:" @@ -6098,13 +6214,13 @@ msgid "prepare 3mf file..." msgstr "voorbereiden van 3mf bestand..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "Download failed; unknown file format." msgid "downloading project ..." msgstr "project downloaden..." msgid "Download failed, File size exception." -msgstr "" +msgstr "Download failed; File size exception." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6127,6 +6243,20 @@ msgstr "Bevat geen geldige Gcode" msgid "Error occurs while loading G-code file" msgstr "Er is een fout opgetreden tijdens het laden van het G-codebestand." +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Projectbestand neerzetten" @@ -6169,13 +6299,13 @@ msgid "Save G-code file as:" msgstr "Bewaar G-code bestand als:" msgid "Save SLA file as:" -msgstr "" +msgstr "SLA-bestand opslaan als:" msgid "The provided file name is not valid." -msgstr "" +msgstr "De opgegeven bestandsnaam is ongeldig." msgid "The following characters are not allowed by a FAT file system:" -msgstr "" +msgstr "De volgende tekens zijn niet toegestaan in een FAT-bestandssysteem:" msgid "Save Sliced file as:" msgstr "Bewaar het geslicede bestand als:" @@ -6192,22 +6322,24 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try agian." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "Reason: part \"%1%\" is empty." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "Reason: part \"%1%\" does not bound a volume." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "Reason: part \"%1%\" has self intersection." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "Reason: \"%1%\" and another part have no intersection." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6257,7 +6389,7 @@ msgstr "Number of currently selected parts: %1%\n" #, boost-format msgid "Number of currently selected objects: %1%\n" -msgstr "" +msgstr "Aantal momenteel geselecteerde objecten: %1%\n" #, boost-format msgid "Part name: %1%\n" @@ -6390,6 +6522,10 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"Op OSX is er standaard altijd maar één instantie van een app actief. Het is " +"echter toegestaan om meerdere instanties van dezelfde app uit te voeren " +"vanaf de opdrachtregel. In dat geval staat deze instelling slechts één " +"instantie toe." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6455,16 +6591,19 @@ msgstr "" msgid "Flushing volumes: Auto-calculate everytime the color changed." msgstr "" +"Spoelvolumes: Automatisch berekenen telkens wanneer de kleur verandert." msgid "If enabled, auto-calculate everytime the color changed." msgstr "" +"Als deze optie is ingeschakeld, wordt elke keer dat de kleur verandert " +"automatisch berekend." msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "" +msgstr "Flushing volumes: Auto-calculate every time the filament is changed." msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "" +msgstr "If enabled, auto-calculate every time filament is changed" msgid "Remember printer configuration" msgstr "" @@ -6481,6 +6620,8 @@ msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." msgid "Network" msgstr "" @@ -6529,6 +6670,20 @@ msgstr "" "Indien ingeschakeld, wordt Orca Slicer ingesteld als de standaardtoepassing " "om .step-bestanden te openen" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Maximum recent projects" @@ -6539,7 +6694,7 @@ msgid "Clear my choice on the unsaved projects." msgstr "Clear my choice on the unsaved projects." msgid "No warnings when loading 3MF with modified G-codes" -msgstr "" +msgstr "No warnings when loading 3MF with modified G-code" msgid "Auto-Backup" msgstr "Automatisch backup maken" @@ -6695,25 +6850,25 @@ msgid "Add/Remove materials" msgstr "Materialen toevoegen/verwijderen" msgid "Select/Remove printers(system presets)" -msgstr "" +msgstr "Printers selecteren/verwijderen (systeemvoorinstellingen)" msgid "Create printer" -msgstr "" +msgstr "Printer maken" msgid "The selected preset is null!" -msgstr "" +msgstr "De geselecteerde preset is nul!" msgid "End" -msgstr "" +msgstr "End" msgid "Customize" -msgstr "" +msgstr "Aanpassen" msgid "Other layer filament sequence" -msgstr "" +msgstr "Other layer filament sequence" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "Please input layer value (>= 2)." msgid "Plate name" msgstr "Plate name" @@ -6725,16 +6880,16 @@ msgid "Print sequence" msgstr "Afdrukvolgorde" msgid "Same as Global" -msgstr "" +msgstr "Same as Global" msgid "Disable" -msgstr "" +msgstr "Disable" msgid "Spiral vase" msgstr "Spiraalvaas" msgid "First layer filament sequence" -msgstr "" +msgstr "Eerste laag filamentvolgorde" msgid "Same as Global Plate Type" msgstr "Same as Global Plate Type" @@ -6856,7 +7011,7 @@ msgid "(LAN)" msgstr "(LAN)" msgid "Search" -msgstr "" +msgstr "Zoeken" msgid "My Device" msgstr "Mijn apparaat" @@ -6892,7 +7047,7 @@ msgid "Bambu Smooth PEI Plate" msgstr "" msgid "High temperature Plate" -msgstr "" +msgstr "Plaat op hoge temperatuur" msgid "Bambu Textured PEI Plate" msgstr "" @@ -6900,14 +7055,11 @@ msgstr "" msgid "Send print job to" msgstr "Stuur de printtaak naar" -msgid "Bed Leveling" -msgstr "Bed leveling" - msgid "Flow Dynamics Calibration" -msgstr "" +msgstr "Kalibratie van Flow Dynamics" msgid "Click here if you can't connect to the printer" -msgstr "" +msgstr "Klik hier als je geen verbinding kunt maken met de printer" msgid "send completed" msgstr "Versturen gelukt" @@ -7003,6 +7155,8 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"The selected printer (%s) is incompatible with the chosen printer profile in " +"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "" @@ -7026,10 +7180,14 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" +"When spiral vase mode is enabled, machines with I3 structure will not " +"generate timelapse videos." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" +"Timelapse wordt niet ondersteund omdat Afdruksequentie is ingesteld op \"Per " +"object\"." msgid "Errors" msgstr "Fouten" @@ -7057,26 +7215,31 @@ msgstr "" #, c-format, boost-format msgid "nozzle in preset: %s %s" -msgstr "" +msgstr "mondstuk in voorinstelling: %s %s" #, c-format, boost-format msgid "nozzle memorized: %.1f %s" -msgstr "" +msgstr "mondstuk onthouden: %.1f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"Your nozzle diameter in sliced file is not consistent with the saved nozzle. " +"If you changed your nozzle lately, please go to Device > Printer Parts to " +"change settings." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" msgstr "" +"Printing high temperature material(%s material) with %s may cause nozzle " +"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" +msgstr "Please fix the error above, otherwise printing cannot continue." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7086,20 +7249,23 @@ msgstr "" msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" +"Aansluiten op de printer. Kan niet annuleren tijdens het verbindingsproces." msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." msgstr "" +"Let op bij gebruik! Flowkalibratie op de PEI-plaat met structuur kan " +"mislukken vanwege het verstrooide oppervlak." msgid "Automatic flow calibration using Micro Lidar" -msgstr "" +msgstr "Automatic flow calibration using the Micro Lidar" msgid "Modifying the device name" msgstr "De naam van het apparaat wijzigen" msgid "Bind with Pin Code" -msgstr "" +msgstr "Bind with Pin Code" msgid "Send to Printer SD card" msgstr "Verzenden naar de MicroSD-kaart in de printer" @@ -7109,6 +7275,8 @@ msgstr "Kan de printtaak niet verzenden wanneer de upgrade wordt uitgevoerd" msgid "The selected printer is incompatible with the chosen printer presets." msgstr "" +"De geselecteerde printer is niet compatibel met de gekozen " +"printervoorinstellingen." msgid "An SD card needs to be inserted before send to printer SD card." msgstr "" @@ -7126,7 +7294,7 @@ msgid "Slice ok." msgstr "Slice gelukt" msgid "View all Daily tips" -msgstr "" +msgstr "Bekijk alle dagelijkse tips" msgid "Failed to create socket" msgstr "Failed to create socket" @@ -7159,21 +7327,23 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"Please Find the Pin Code in Account page on printer screen,\n" +" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "" +msgstr "Can't find Pin Code?" msgid "Pin Code" -msgstr "" +msgstr "Pin Code" msgid "Binding..." -msgstr "" +msgstr "Binding..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Please confirm on the printer screen" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "Log in failed. Please check the Pin Code." msgid "Log in printer" msgstr "Inloggen op printer" @@ -7297,7 +7467,7 @@ msgstr "" "inschakelen?" msgid "Still print by object?" -msgstr "" +msgstr "Print je nog steeds per object?" msgid "" "We have added an experimental style \"Tree Slim\" that features smaller " @@ -7356,15 +7526,17 @@ msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " "height limits ,this may cause printing quality issues." msgstr "" +"De laaghoogte overschrijdt de limiet in Printerinstellingen -> Extruder -> " +"Laaghoogtelimieten, dit kan problemen met de afdrukkwaliteit veroorzaken." msgid "Adjust to the set range automatically? \n" -msgstr "" +msgstr "Automatisch aanpassen aan het ingestelde bereik? \n" msgid "Adjust" -msgstr "" +msgstr "Aanpassen" msgid "Ignore" -msgstr "" +msgstr "Negeer" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7372,6 +7544,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " +"printing complications." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7379,6 +7555,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications. Please use with the latest printer firmware." msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7450,7 +7630,7 @@ msgid "Acceleration" msgstr "Versnelling" msgid "Jerk(XY)" -msgstr "" +msgstr "Jerk(XY)" msgid "Raft" msgstr "Vlot" @@ -7477,7 +7657,7 @@ msgid "Post-processing Scripts" msgstr "Post-processing Scripts" msgid "Notes" -msgstr "" +msgstr "Notes" msgid "Frequent" msgstr "Veelgebruikt" @@ -7554,13 +7734,16 @@ msgstr "" "niet ondersteunt." msgid "Smooth PEI Plate / High Temp Plate" -msgstr "" +msgstr "Gladde PEI Plaat / Hoge Temp Plaat" msgid "" "Bed temperature when Smooth PEI Plate/High temperature plate is installed. " "Value 0 means the filament does not support to print on the Smooth PEI Plate/" "High Temp Plate" msgstr "" +"Bedtemperatuur wanneer gladde PEI-plaat/hoge temperatuurplaat is " +"geïnstalleerd. Waarde 0 betekent dat het filament niet geschikt is voor " +"afdrukken op de gladde PEI-plaat/hoge temperatuurplaat." msgid "Textured PEI Plate" msgstr "PEI plaat met structuur" @@ -7614,13 +7797,13 @@ msgid "Auxiliary part cooling fan" msgstr "Extra koel ventilator" msgid "Exhaust fan" -msgstr "" +msgstr "Uitlaatventilator" msgid "During print" -msgstr "" +msgstr "Tijdens het afdrukken" msgid "Complete print" -msgstr "" +msgstr "Afdruk compleet" msgid "Filament start G-code" msgstr "Filament start G-code" @@ -7671,7 +7854,7 @@ msgid "Machine end G-code" msgstr "Machine einde G-code" msgid "Printing by object G-code" -msgstr "" +msgstr "Afdrukken met object G-code" msgid "Before layer change G-code" msgstr "G-Code voor de laag wijziging" @@ -7680,7 +7863,7 @@ msgid "Layer change G-code" msgstr "G-code laag wijzigen" msgid "Time lapse G-code" -msgstr "" +msgstr "Time-lapse G-code" msgid "Change filament G-code" msgstr "Filament G-code aanpassen" @@ -7732,9 +7915,12 @@ msgid "" "\n" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Disable it in order to enable Firmware Retraction?" msgid "Firmware Retraction" -msgstr "" +msgstr "Firmware intrekken" msgid "Detached" msgstr "Losgemaakt" @@ -7744,9 +7930,12 @@ msgid "" "%d Filament Preset and %d Process Preset is attached to this printer. Those " "presets would be deleted if the printer is deleted." msgstr "" +"%d Filament Preset en %d Process Preset zijn gekoppeld aan deze printer. " +"Deze voorinstellingen worden verwijderd als de printer wordt verwijderd." msgid "Presets inherited by other presets can not be deleted!" msgstr "" +"Presets die door andere presets worden geërfd, kunnen niet worden verwijderd!" msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." @@ -7768,6 +7957,9 @@ msgid "" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" +"Weet je zeker dat je de geselecteerde preset wilt verwijderen? \n" +"Als de voorinstelling overeenkomt met een filament dat momenteel in gebruik " +"is op je printer, reset dan de filamentinformatie voor die sleuf." #, boost-format msgid "Are you sure to %1% the selected preset?" @@ -7875,12 +8067,14 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "You have changed some settings of preset \"%1%\". " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"You can save or discard the preset values you have modified." msgid "" "\n" @@ -7889,7 +8083,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "" +msgstr "You have previously modified your settings." msgid "" "\n" @@ -8045,7 +8239,7 @@ msgid "Auto-Calc" msgstr "Automatisch berekenen" msgid "Re-calculate" -msgstr "" +msgstr "Herbereken" msgid "Flushing volumes for filament change" msgstr "Volumes reinigen voor filament wijziging" @@ -8086,10 +8280,10 @@ msgid "To" msgstr "Naar" msgid "Bambu Network plug-in not detected." -msgstr "" +msgstr "Bambu Network-plug-in niet gedetecteerd." msgid "Click here to download it." -msgstr "" +msgstr "Klik hier om het te downloaden." msgid "Login" msgstr "Inloggen" @@ -8124,7 +8318,7 @@ msgstr "" "verbergen" msgid "Switch table page" -msgstr "" +msgstr "Schakeltabel pagina" msgid "Show keyboard shortcuts list" msgstr "Toon lijst met sneltoetsen" @@ -8391,49 +8585,49 @@ msgid "New version of Orca Slicer" msgstr "Nieuwe versie van Orca Slicer" msgid "Skip this Version" -msgstr "" +msgstr "Deze versie overslaan" msgid "Done" msgstr "Done" msgid "resume" -msgstr "" +msgstr "resume" msgid "Resume Printing" -msgstr "" +msgstr "Resume Printing" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Resume Printing (defects acceptable)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Resume Printing (problem solved)" msgid "Stop Printing" -msgstr "" +msgstr "Stop Printing" msgid "Check Assistant" -msgstr "" +msgstr "Check Assistant" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Filament Extruded, Continue" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Not Extruded Yet, Retry" msgid "Finished, Continue" -msgstr "" +msgstr "Finished, Continue" msgid "Load Filament" msgstr "Filament laden" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Filament Loaded, Resume" msgid "View Liveview" -msgstr "" +msgstr "View Liveview" msgid "Confirm and Update Nozzle" -msgstr "" +msgstr "Bevestig en update het mondstuk" msgid "LAN Connection Failed (Sending print file)" msgstr "LAN-verbinding mislukt (verzenden afdrukbestand)" @@ -8462,20 +8656,23 @@ msgstr "Waar vind je het IP-adres en de toegangscode van je printer?" msgid "Step 3: Ping the IP address to check for packet loss and latency." msgstr "" +"Stap 3: Ping het IP-adres om te controleren op pakketverlies en latentie." msgid "Test" -msgstr "" +msgstr "Test" msgid "IP and Access Code Verified! You may close the window" -msgstr "" +msgstr "IP en toegangscode geverifieerd! U kunt het venster sluiten" msgid "Connection failed, please double check IP and Access Code" -msgstr "" +msgstr "Verbinding mislukt, controleer IP en toegangscode opnieuw" msgid "" "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" msgstr "" +"Verbinding mislukt! Als uw IP-adres en toegangscode correct zijn, \n" +"ga dan naar stap 3 voor het oplossen van netwerkproblemen" msgid "Model:" msgstr "Model:" @@ -8490,7 +8687,7 @@ msgid "Update firmware" msgstr "Firmware bijwerken" msgid "Beta version" -msgstr "" +msgstr "Beta versie" msgid "Latest version" msgstr "Nieuwste versie" @@ -8865,26 +9062,34 @@ msgid "" msgstr "" msgid "Variable layer height is not supported with Organic supports." -msgstr "" +msgstr "Variabele laaghoogte wordt niet ondersteund met organische steunen." msgid "" "Different nozzle diameters and different filament diameters is not allowed " "when prime tower is enabled." msgstr "" +"Verschillende mondstukdiameters en verschillende filamentdiameters zijn niet " +"toegestaan als de prime-toren is ingeschakeld." msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" +"De Wipe Tower wordt momenteel alleen ondersteund met de relatieve " +"extruderadressering (use_relative_e_distances=1)." msgid "" "Ooze prevention is currently not supported with the prime tower enabled." msgstr "" +"Ooze-preventie wordt momenteel niet ondersteund als de prime tower is " +"ingeschakeld." msgid "" "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" +"De prime tower wordt momenteel alleen ondersteund voor de Marlin, RepRap/" +"Sprinter, RepRapFirmware en Repetier G-code smaken." msgid "The prime tower is not supported in \"By object\" print." msgstr "Een prime-toren wordt niet ondersteund bij het \"per object\" printen." @@ -9117,11 +9322,13 @@ msgstr "" "address/" msgid "Device UI" -msgstr "" +msgstr "UI van het apparaat" msgid "" "Specify the URL of your device user interface if it's not same as print_host" msgstr "" +"Geef de URL op van de gebruikersinterface van uw apparaat als deze niet " +"hetzelfde is als print_host" msgid "API Key / Password" msgstr "API sleutel / wachtwoord" @@ -9283,16 +9490,16 @@ msgid "Engineering Plate" msgstr "Engineering plate (technisch printbed)" msgid "First layer print sequence" -msgstr "" +msgstr "Afdrukvolgorde van de eerste laag" msgid "Other layers print sequence" -msgstr "" +msgstr "Other layers print sequence" msgid "The number of other layers print sequence" -msgstr "" +msgstr "The number of other layers print sequence" msgid "Other layers filament sequence" -msgstr "" +msgstr "Other layers filament sequence" msgid "This G-code is inserted at every layer change before lifting z" msgstr "" @@ -9426,12 +9633,14 @@ msgid "" msgstr "" msgid "Top surface flow ratio" -msgstr "" +msgstr "Flowratio bovenoppervlak" msgid "" "This factor affects the amount of material for top solid infill. You can " "decrease it slightly to have smooth surface finish" msgstr "" +"Deze factor beïnvloedt de hoeveelheid materiaal voor de bovenste vaste " +"vulling. Je kunt het iets verminderen om een glad oppervlak te krijgen." msgid "Bottom surface flow ratio" msgstr "" @@ -9576,7 +9785,7 @@ msgid "" msgstr "" msgid "mm/s or %" -msgstr "" +msgstr "mm/s of %" msgid "External" msgstr "" @@ -9721,7 +9930,7 @@ msgid "Default process profile when switch to this machine profile" msgstr "Standaard procesprofiel bij het overschakelen naar dit machineprofiel" msgid "Activate air filtration" -msgstr "" +msgstr "Activate air filtration" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" @@ -9733,6 +9942,8 @@ msgid "" "Speed of exhaust fan during printing.This speed will overwrite the speed in " "filament custom gcode" msgstr "" +"Snelheid van de afzuigventilator tijdens het printen. Deze snelheid " +"overschrijft de snelheid in de aangepaste g-code van het filament." msgid "Speed of exhaust fan after printing completes" msgstr "" @@ -9841,12 +10052,14 @@ msgid "End G-code when finish the whole printing" msgstr "Voeg een eind G-code toe bij het afwerken van de hele print." msgid "Between Object Gcode" -msgstr "" +msgstr "Tussen object Gcode" msgid "" "Insert Gcode between objects. This parameter will only come into effect when " "you print your models object by object" msgstr "" +"Gcode invoegen tussen objecten. Deze parameter wordt alleen actief wanneer u " +"uw modellen object voor object afdrukt." msgid "End G-code when finish the printing of this filament" msgstr "" @@ -9912,7 +10125,7 @@ msgstr "" "maar niet van de vulling van de brug." msgid "Internal solid infill pattern" -msgstr "" +msgstr "Intern massief invulpatroon" msgid "" "Line pattern of internal solid infill. if the detect narrow internal solid " @@ -9932,7 +10145,7 @@ msgstr "" "langzamer geprint dan de binnenste wanden om een betere kwaliteit te krijgen." msgid "Small perimeters" -msgstr "" +msgstr "Kleine omtrek" msgid "" "This separate setting will affect the speed of perimeters having radius <= " @@ -9947,6 +10160,7 @@ msgstr "" msgid "" "This sets the threshold for small perimeter length. Default threshold is 0mm" msgstr "" +"Dit stelt de drempel voor kleine omtreklengte in. De standaarddrempel is 0 mm" msgid "Walls printing order" msgstr "" @@ -9986,7 +10200,7 @@ msgid "Inner/Outer/Inner" msgstr "" msgid "Print infill first" -msgstr "" +msgstr "Eerst infill afdrukken" msgid "" "Order of wall/infill. When the tickbox is unchecked the walls are printed " @@ -10047,10 +10261,10 @@ msgstr "" "printen per object." msgid "Nozzle height" -msgstr "" +msgstr "Hoogte van het mondstuk" msgid "The height of nozzle tip." -msgstr "" +msgstr "De hoogte van de mondstukpunt." msgid "Bed mesh min" msgstr "" @@ -10123,7 +10337,7 @@ msgstr "" "lichte over- of onderflow is." msgid "Enable pressure advance" -msgstr "" +msgstr "Pressure advance inschakelen" msgid "" "Enable pressure advance, auto calibration result will be overwriten once " @@ -10169,10 +10383,10 @@ msgid "Default filament color" msgstr "Standaard filamentkleur" msgid "Filament notes" -msgstr "" +msgstr "Filament notes" msgid "You can put your notes regarding the filament here." -msgstr "" +msgstr "You can put your notes regarding the filament here." msgid "Required nozzle HRC" msgstr "Vereiste nozzle HRC" @@ -10372,13 +10586,16 @@ msgstr "" "drukken." msgid "Softening temperature" -msgstr "" +msgstr "Verzachtingstemperatuur" msgid "" "The material softens at this temperature, so when the bed temperature is " "equal to or greater than it, it's highly recommended to open the front door " "and/or remove the upper glass to avoid cloggings." msgstr "" +"The material softens at this temperature, so when the bed temperature is " +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogs." msgid "Price" msgstr "Prijs" @@ -10390,10 +10607,10 @@ msgid "money/kg" msgstr "Prijs per KG" msgid "Vendor" -msgstr "" +msgstr "Leverancier" msgid "Vendor of filament. For show only" -msgstr "" +msgstr "Verkoper van filament. Alleen voor show" msgid "(Undefined)" msgstr "(niet gedefinieerd)" @@ -10468,7 +10685,7 @@ msgid "Lightning" msgstr "Lightning" msgid "Cross Hatch" -msgstr "" +msgstr "Cross Hatch" msgid "Sparse infill anchor length" msgstr "" @@ -10537,12 +10754,15 @@ msgid "" msgstr "" msgid "mm/s² or %" -msgstr "" +msgstr "mm/s² or %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage (e." "g. 100%), it will be calculated based on the default acceleration." msgstr "" +"Versnelling van de schaarse invulling. Als de waarde wordt uitgedrukt als " +"een percentage (bijvoorbeeld 100%), wordt deze berekend op basis van de " +"standaardversnelling." msgid "" "Acceleration of internal solid infill. If the value is expressed as a " @@ -10558,13 +10778,13 @@ msgstr "" "kan de hechting van de bouwplaat verbeteren." msgid "Enable accel_to_decel" -msgstr "" +msgstr "Accel_to_decel inschakelen" msgid "Klipper's max_accel_to_decel will be adjusted automatically" -msgstr "" +msgstr "De max_accel_to_decel van Klipper wordt automatisch aangepast" msgid "accel_to_decel" -msgstr "" +msgstr "accel_to_decel" #, c-format, boost-format msgid "" @@ -10572,10 +10792,10 @@ msgid "" msgstr "" msgid "Jerk of outer walls" -msgstr "" +msgstr "Jerk van de buitenwand" msgid "Jerk of inner walls" -msgstr "" +msgstr "Jerk van de binnenwand" msgid "Jerk for top surface" msgstr "" @@ -10702,7 +10922,7 @@ msgid "Whether to apply fuzzy skin on the first layer" msgstr "" msgid "Filter out tiny gaps" -msgstr "" +msgstr "Kleine openingen wegfilteren" msgid "Layers and Perimeters" msgstr "Lagen en perimeters" @@ -10718,13 +10938,16 @@ msgstr "" "een onregelmatige lijndikte en moeten daarom langzamer worden afgedrukt." msgid "Precise Z height" -msgstr "" +msgstr "Precise Z height" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"Enable this to get precise z height of object after slicing. It will get the " +"precise object height by fine-tuning the layer heights of the last few " +"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "Boog montage" @@ -10794,10 +11017,10 @@ msgid "HRC" msgstr "HRC" msgid "Printer structure" -msgstr "" +msgstr "Printerstructuur" msgid "The physical arrangement and components of a printing device" -msgstr "" +msgstr "De fysieke opstelling en onderdelen van een afdrukapparaat" msgid "CoreXY" msgstr "" @@ -10812,10 +11035,12 @@ msgid "Delta" msgstr "" msgid "Best object position" -msgstr "" +msgstr "Beste objectpositie" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." msgstr "" +"Beste automatisch schikkende positie in het bereik [0,1] met betrekking tot " +"de bedvorm." msgid "" "Enable this option if machine has auxiliary part cooling fan. G-code " @@ -10861,7 +11086,7 @@ msgid "money/h" msgstr "" msgid "Support control chamber temperature" -msgstr "" +msgstr "Ondersteuning voor het regelen van de kamertemperatuur" msgid "" "This option is enabled if machine support controlling chamber temperature\n" @@ -10869,7 +11094,7 @@ msgid "" msgstr "" msgid "Support air filtration" -msgstr "" +msgstr "Ondersteun luchtfiltratie" msgid "" "Enable this if printer support air filtration\n" @@ -10902,7 +11127,7 @@ msgid "" msgstr "" msgid "Exclude objects" -msgstr "" +msgstr "Objecten uitsluiten" msgid "Enable this option to add EXCLUDE OBJECT command in g-code" msgstr "" @@ -10962,25 +11187,30 @@ msgid "Speed of internal sparse infill" msgstr "Dit is de snelheid voor de dunne vulling (infill)" msgid "Interface shells" -msgstr "" +msgstr "Interface shells" 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 the generation of solid shells between adjacent materials/volumes. " +"Useful for multi-extruder prints with translucent materials or manual " +"soluble support material" msgid "Maximum width of a segmented region" -msgstr "" +msgstr "Maximale breedte van een gesegmenteerd gebied" msgid "Maximum width of a segmented region. Zero disables this feature." msgstr "" +"Maximum width of a segmented region. A value of 0 disables this feature." msgid "Interlocking depth of a segmented region" -msgstr "" +msgstr "Insluitdiepte van een gesegmenteerde regio" msgid "Interlocking depth of a segmented region. Zero disables this feature." msgstr "" +"Insluitdiepte van een gesegmenteerd gebied. Nul schakelt deze functie uit." msgid "Ironing Type" msgstr "Strijk type" @@ -11463,10 +11693,10 @@ msgid "" msgstr "" msgid "Printer notes" -msgstr "" +msgstr "Printer notes" msgid "You can put your notes regarding the printer here." -msgstr "" +msgstr "You can put your notes regarding the printer here." msgid "Raft contact Z distance" msgstr "Vlot (raft) contact Z afstand:" @@ -11555,7 +11785,7 @@ msgstr "" "terugtrekken (retraction) uit te schakelen." msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "Long retraction when cut (experimental)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -11563,14 +11793,20 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge.While this reduces flush " +"significantly, it may also raise the risk of nozzle clogs or other printing " +"problems." msgid "Retraction distance when cut" -msgstr "" +msgstr "Retraction distance when cut" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" msgstr "" +"Experimental feature. Retraction length before cutting off during filament " +"change" msgid "Z hop when retract" msgstr "Z hop tijdens terugtrekken (retraction)" @@ -11586,20 +11822,24 @@ msgstr "" "op te tillen kan stringing voorkomen." msgid "Z hop lower boundary" -msgstr "" +msgstr "Z hop ondergrens" msgid "" "Z hop will only come into effect when Z is above this value and is below the " "parameter: \"Z hop upper boundary\"" msgstr "" +"Z hop treedt alleen in werking wanneer Z boven deze waarde ligt en onder de " +"parameter: \"Z hop bovengrens\"." msgid "Z hop upper boundary" -msgstr "" +msgstr "Z hop bovengrens" msgid "" "If this value is positive, Z hop will only come into effect when Z is above " "the parameter: \"Z hop lower boundary\" and is below this value" msgstr "" +"Als deze waarde positief is, treedt Z hop alleen in werking als Z boven de " +"parameter ligt: \"Z hop ondergrens\" en onder deze waarde ligt" msgid "Z hop type" msgstr "" @@ -11647,7 +11887,7 @@ msgid "Top and Bottom" msgstr "" msgid "Extra length on restart" -msgstr "" +msgstr "Extra lengte bij herstart" msgid "" "When the retraction is compensated after the travel move, the extruder will " @@ -11677,7 +11917,7 @@ msgstr "" "dezelfde snelheid heeft als het intrekken (retraction)." msgid "Use firmware retraction" -msgstr "" +msgstr "Gebruik firmware retractie" msgid "" "This experimental setting uses G10 and G11 commands to have the firmware " @@ -11721,7 +11961,7 @@ msgid "" msgstr "" msgid "Seam gap" -msgstr "" +msgstr "Naadopening" msgid "" "In order to reduce the visibility of the seam in a closed loop extrusion, " @@ -11735,17 +11975,20 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" +"Use scarf joint to minimize seam visibility and increase seam strength." msgid "Conditional scarf joint" -msgstr "" +msgstr "Conditional scarf joint" msgid "" "Apply scarf joints only to smooth perimeters where traditional seams do not " "conceal the seams at sharp corners effectively." msgstr "" +"Apply scarf joints only to smooth perimeters where traditional seams do not " +"conceal the seams at sharp corners effectively." msgid "Conditional angle threshold" -msgstr "" +msgstr "Conditional angle threshold" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -11788,39 +12031,44 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "" +msgstr "Scarf start height" msgid "" "Start height of the scarf.\n" "This amount can be specified in millimeters or as a percentage of the " "current layer height. The default value for this parameter is 0." msgstr "" +"Start height of the scarf.\n" +"This amount can be specified in millimeters or as a percentage of the " +"current layer height. The default value for this parameter is 0." msgid "Scarf around entire wall" -msgstr "" +msgstr "Scarf around entire wall" msgid "The scarf extends to the entire length of the wall." -msgstr "" +msgstr "The scarf extends to the entire length of the wall." msgid "Scarf length" -msgstr "" +msgstr "Scarf length" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" +"Length of the scarf. Setting this parameter to zero effectively disables the " +"scarf." msgid "Scarf steps" -msgstr "" +msgstr "Scarf steps" msgid "Minimum number of segments of each scarf." -msgstr "" +msgstr "Minimum number of segments of each scarf." msgid "Scarf joint for inner walls" -msgstr "" +msgstr "Scarf joint for inner walls" msgid "Use scarf joint for inner walls as well." -msgstr "" +msgstr "Use scarf joint for inner walls as well." msgid "Role base wipe speed" msgstr "" @@ -11855,7 +12103,7 @@ msgid "" msgstr "" msgid "Wipe speed" -msgstr "" +msgstr "Veegsnelheid" msgid "" "The wipe speed is determined by the speed setting specified in this " @@ -11863,6 +12111,10 @@ msgid "" "be calculated based on the travel speed setting above.The default value for " "this parameter is 80%" msgstr "" +"De veegsnelheid wordt bepaald door de snelheidsinstelling die in deze " +"configuratie is opgegeven.Als de waarde wordt uitgedrukt als percentage " +"(bijv. 80%), wordt deze berekend op basis van de bovenstaande instelling van " +"de rijsnelheid.De standaardwaarde voor deze parameter is 80%." msgid "Skirt distance" msgstr "Rand (skirt) afstand" @@ -11962,20 +12214,24 @@ msgstr "" "met solide onderlagen. Het uiteindelijke gegenereerde model heeft geen naad." msgid "Smooth Spiral" -msgstr "" +msgstr "Smooth Spiral" msgid "" "Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " "at all, even in the XY directions on walls that are not vertical" msgstr "" +"Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " +"at all, even in the XY directions on walls that are not vertical" msgid "Max XY Smoothing" -msgstr "" +msgstr "Max XY Smoothing" msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiralIf " "expressed as a %, it will be computed over nozzle diameter" msgstr "" +"Maximum distance to move points in XY to try to achieve a smooth spiral. If " +"expressed as a %, it will be computed over nozzle diameter" msgid "" "If smooth or traditional mode is selected, a timelapse video will be " @@ -12156,10 +12412,10 @@ msgstr "" "cantilever, etc." msgid "Remove small overhangs" -msgstr "" +msgstr "Kleine uitsteeksels verwijderen" msgid "Remove small overhangs that possibly need no supports." -msgstr "" +msgstr "Verwijder kleine overstekken die mogelijk geen steun nodig hebben." msgid "Top Z distance" msgstr "Top Z afstand" @@ -12186,11 +12442,13 @@ msgstr "" "huidige filament wordt gebruikt." msgid "Avoid interface filament for base" -msgstr "" +msgstr "Vermijd interfacedraad voor basis" msgid "" "Avoid using support interface filament to print support base if possible." msgstr "" +"Gebruik indien mogelijk geen filament voor de steuninterface om de " +"steunbasis te printen." msgid "" "Line width of support. If expressed as a %, it will be computed over the " @@ -12227,10 +12485,10 @@ msgid "Bottom interface layers" msgstr "Onderste interfacelagen" msgid "Number of bottom interface layers" -msgstr "" +msgstr "Aantal onderste interfacelagen" msgid "Same as top" -msgstr "" +msgstr "Hetzelfde als boven" msgid "Top interface spacing" msgstr "Bovenste interface-afstand" @@ -12442,10 +12700,10 @@ msgid "" msgstr "" msgid "Support wall loops" -msgstr "" +msgstr "Steunmuurlussen" msgid "This setting specify the count of walls around support" -msgstr "" +msgstr "Deze instelling specificeert het aantal muren rond de ondersteuning" msgid "Tree support with infill" msgstr "Tree support met vulling" @@ -12467,7 +12725,7 @@ msgid "" msgstr "" msgid "Chamber temperature" -msgstr "" +msgstr "Kamertemperatuur" msgid "" "Higher chamber temperature can help suppress or reduce warping and " @@ -12478,6 +12736,12 @@ msgid "" "high to avoid cloggings, so 0 which stands for turning off is highly " "recommended" msgstr "" +"Higher chamber temperature can help suppress or reduce warping and " +"potentially lead to higher interlayer bonding strength for high temperature " +"materials like ABS, ASA, PC, PA and so on. At the same time, the air " +"filtration of ABS and ASA will get worse.While for PLA, PETG, TPU, PVA and " +"other low temperature materials, the actual chamber temperature should not " +"be high to avoid clogs, so 0 (turned off) is highly recommended." msgid "Nozzle temperature for layers after the initial one" msgstr "Nozzle temperatuur voor de lagen na de eerstse laag" @@ -12626,17 +12890,29 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -12766,7 +13042,7 @@ msgid "" msgstr "" msgid "Use relative E distances" -msgstr "" +msgstr "Relatieve E-afstanden gebruiken" msgid "" "Relative extrusion is recommended when using \"label_objects\" option.Some " @@ -13325,7 +13601,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj: failed to parse" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "load mtl in obj: failed to parse" msgid "The file contains polygons with more than 4 vertices." msgstr "The file contains polygons with more than 4 vertices." @@ -13340,67 +13616,71 @@ msgid "This OBJ file couldn't be read because it's empty." msgstr "This OBJ file couldn't be read because it's empty." msgid "Flow Rate Calibration" -msgstr "" +msgstr "Flow Rate kalibratie" msgid "Max Volumetric Speed Calibration" -msgstr "" +msgstr "Kalibratie van maximale volumetrische snelheid" msgid "Manage Result" -msgstr "" +msgstr "Resultaat beheren" msgid "Manual Calibration" -msgstr "" +msgstr "Handmatige kalibratie" msgid "Result can be read by human eyes." -msgstr "" +msgstr "Het resultaat kan door mensenogen worden gelezen." msgid "Auto-Calibration" -msgstr "" +msgstr "Auto-Calibration" msgid "We would use Lidar to read the calibration result" -msgstr "" +msgstr "We zouden Lidar gebruiken om het kalibratieresultaat af te lezen" msgid "Prev" -msgstr "" +msgstr "Vorige" msgid "Recalibration" -msgstr "" +msgstr "Herkalibratie" msgid "Calibrate" -msgstr "" +msgstr "Kalibreren" msgid "Finish" msgstr "Klaar" msgid "How to use calibration result?" -msgstr "" +msgstr "Hoe kan ik kalibratieresultaten gebruiken?" msgid "" "You could change the Flow Dynamics Calibration Factor in material editing" msgstr "" +"Je kunt de kalibratiefactor van de stromingsdynamica wijzigen bij het " +"bewerken van materialen" msgid "" "The current firmware version of the printer does not support calibration.\n" "Please upgrade the printer firmware." msgstr "" +"De huidige firmwareversie van de printer ondersteunt geen kalibratie.\n" +"Voer een upgrade van de printerfirmware uit." msgid "Calibration not supported" -msgstr "" +msgstr "Kalibratie wordt niet ondersteund" msgid "Error desc" -msgstr "" +msgstr "Fout beschrijving" msgid "Extra info" -msgstr "" +msgstr "Extra informatie" msgid "Flow Dynamics" -msgstr "" +msgstr "Flowdynamiek" msgid "Flow Rate" -msgstr "" +msgstr "Flow Rate" msgid "Max Volumetric Speed" -msgstr "" +msgstr "Maximale volumetrische snelheid" #, c-format, boost-format msgid "" @@ -13410,38 +13690,46 @@ msgid "" "End value: > Start value\n" "Value step: >= %.3f)" msgstr "" +"Voer geldige waarden in:\n" +"Startwaarde: >= %.1f\n" +"Eindwaarde: <= %.1f\n" +"Eindwaarde: > Startwaarde\n" +"Waarde stap: >= %.3f)" msgid "The name cannot be empty." -msgstr "" +msgstr "De naam mag niet leeg zijn." #, c-format, boost-format msgid "The selected preset: %s is not found." -msgstr "" +msgstr "De geselecteerde preset: %s is niet gevonden." msgid "The name cannot be the same as the system preset name." msgstr "" +"De naam mag niet hetzelfde zijn als de naam van de systeemvoorinstelling." msgid "The name is the same as another existing preset name" -msgstr "" +msgstr "De naam is hetzelfde als een andere bestaande presetnaam" msgid "create new preset failed." -msgstr "" +msgstr "nieuwe voorinstelling maken mislukt." msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" +"Are you sure you want to cancel the current calibration and return to the " +"home page?" msgid "No Printer Connected!" -msgstr "" +msgstr "Geen printer aangesloten!" msgid "Printer is not connected yet." -msgstr "" +msgstr "Printer is nog niet aangesloten." msgid "Please select filament to calibrate." -msgstr "" +msgstr "Selecteer het filament dat u wilt kalibreren." msgid "The input value size must be 3." -msgstr "" +msgstr "De grootte van de invoerwaarde moet 3 zijn." msgid "" "This machine type can only hold 16 history results per nozzle. You can " @@ -13450,15 +13738,20 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"This machine type can only hold 16 historical results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results. \n" +"Do you still want to continue the calibration?" msgid "Connecting to printer..." -msgstr "" +msgstr "Aansluiten op de printer..." msgid "The failed test result has been dropped." -msgstr "" +msgstr "Het mislukte testresultaat is verwijderd." msgid "Flow Dynamics Calibration result has been saved to the printer" -msgstr "" +msgstr "Flow Dynamics kalibratieresultaat is opgeslagen in de printer" #, c-format, boost-format msgid "" @@ -13466,27 +13759,36 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"Er is al een eerder kalibratieresultaat met dezelfde naam: %s. Er wordt maar " +"één resultaat met een naam opgeslagen. Weet je zeker dat je het vorige " +"resultaat wilt overschrijven?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"This machine type can only hold %d historical results per nozzle. This " +"result will not be saved." msgid "Internal Error" -msgstr "" +msgstr "Interne fout" msgid "Please select at least one filament for calibration" -msgstr "" +msgstr "Selecteer ten minste één filament voor kalibratie" msgid "Flow rate calibration result has been saved to preset" msgstr "" +"Het resultaat van de debietkalibratie is opgeslagen in een " +"voorkeursinstelling." msgid "Max volumetric speed calibration result has been saved to preset" msgstr "" +"Het kalibratieresultaat van de maximale volumetrische snelheid is opgeslagen " +"in de vooraf ingestelde waarde" msgid "When do you need Flow Dynamics Calibration" -msgstr "" +msgstr "Wanneer heb je een Flow Dynamics-kalibratie nodig?" msgid "" "We now have added the auto-calibration for different filaments, which is " @@ -13498,9 +13800,18 @@ msgid "" "3. If the max volumetric speed or print temperature is changed in the " "filament setting." msgstr "" +"We hebben nu de automatische kalibratie voor verschillende filamenten " +"toegevoegd. Deze is volledig geautomatiseerd en het resultaat wordt " +"opgeslagen in de printer voor toekomstig gebruik. Je hoeft de kalibratie " +"alleen uit te voeren in de volgende beperkte gevallen:\n" +"1. Als je een nieuw filament van een ander merk/model introduceert of als " +"het filament vochtig is;\n" +"2. Als de spuitmond versleten is of vervangen is door een nieuwe;\n" +"3. Als de maximale volumetrische snelheid of printtemperatuur is gewijzigd " +"in de filamentinstelling." msgid "About this calibration" -msgstr "" +msgstr "Over deze kalibratie" msgid "" "Please find the details of Flow Dynamics Calibration from our wiki.\n" @@ -13521,9 +13832,28 @@ msgid "" "cause the result not exactly the same in each calibration. We are still " "investigating the root cause to do improvements with new updates." msgstr "" +"De details van Flow Dynamics Calibration vindt u op onze wiki.\n" +"\n" +"Meestal is kalibratie niet nodig. Als je een print met één kleur/materiaal " +"start en de optie \"kalibratie van de stroomdynamica\" is aangevinkt in het " +"startmenu van de printer, dan zal de printer de oude manier volgen en het " +"filament kalibreren voor het printen; als je een print met meerdere kleuren/" +"materialen start, dan zal de printer de standaard compensatieparameter voor " +"het filament gebruiken tijdens elke filamentwissel, wat in de meeste " +"gevallen een goed resultaat zal opleveren.\n" +"\n" +"Let op: er zijn een paar gevallen waardoor het kalibratieresultaat niet " +"betrouwbaar is: als je een textuurplaat gebruikt om de kalibratie uit te " +"voeren; als de bouwplaat geen goede hechting heeft (was de bouwplaat of " +"breng lijm aan!) ...Je kunt meer informatie vinden op onze wiki.\n" +"\n" +"De kalibratieresultaten hebben ongeveer 10 procent jitter in onze test, " +"waardoor het resultaat niet bij elke kalibratie precies hetzelfde is. We " +"onderzoeken nog steeds de oorzaak om verbeteringen aan te brengen met nieuwe " +"updates." msgid "When to use Flow Rate Calibration" -msgstr "" +msgstr "Wanneer moet u Flow Rate kalibratie gebruiken" msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " @@ -13536,12 +13866,24 @@ msgid "" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " "they should be." msgstr "" +"After using Flow Dynamics Calibration, there might still be some extrusion " +"issues, such as:\n" +"1. Over-Extrusion: Excess material on your printed object, forming blobs or " +"zits, or the layers seem thicker than expected and not uniform.\n" +"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " +"top layer of the model, even when printing slowly.\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " +"they should be." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" "PLA used in RC planes. These materials expand greatly when heated, and " "calibration provides a useful reference flow rate." msgstr "" +"Bovendien is Flow Rate kalibratie cruciaal voor schuimmaterialen zoals LW-" +"PLA die worden gebruikt in RC-vliegtuigen. Deze materialen zetten sterk uit " +"bij verhitting, en kalibratie levert een bruikbare referentiestroom op." msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " @@ -13551,6 +13893,13 @@ msgid "" "you still see the listed defects after you have done other calibrations. For " "more details, please check out the wiki article." msgstr "" +"Flow Rate Calibration meet de verhouding tussen verwachte en werkelijke " +"extrusievolumes. De standaardinstelling werkt goed in Bambu Lab printers en " +"officiële filamenten, omdat deze vooraf zijn gekalibreerd en afgestemd. Voor " +"een normaal filament is het meestal niet nodig om een kalibratie van de " +"stroomsnelheid uit te voeren, tenzij je nog steeds de genoemde defecten ziet " +"nadat je andere kalibraties hebt uitgevoerd. Kijk voor meer informatie in " +"het wiki-artikel." msgid "" "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " @@ -13570,48 +13919,72 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" +"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " +"directly measuring the calibration patterns. However, please be advised that " +"the efficacy and accuracy of this method may be compromised with specific " +"types of materials. Particularly, filaments that are transparent or semi-" +"transparent, sparkling-particled, or have a high-reflective finish may not " +"be suitable for this calibration and can produce less-than-desirable " +"results.\n" +"\n" +"The calibration results may vary between each calibration or filament. We " +"are still improving the accuracy and compatibility of this calibration " +"through firmware updates over time.\n" +"\n" +"Caution: Flow Rate Calibration is an advanced process, to be attempted only " +"by those who fully understand its purpose and implications. Incorrect usage " +"can lead to sub-par prints or printer damage. Please make sure to carefully " +"read and understand the process before performing it." msgid "When you need Max Volumetric Speed Calibration" -msgstr "" +msgstr "Wanneer u maximale volumetrische snelheidskalibratie nodig hebt" msgid "Over-extrusion or under extrusion" -msgstr "" +msgstr "Over-extrusie of onderextrusie" msgid "Max Volumetric Speed calibration is recommended when you print with:" msgstr "" +"Kalibratie van de maximale volumetrische snelheid wordt aanbevolen wanneer " +"je afdrukt met:" msgid "material with significant thermal shrinkage/expansion, such as..." -msgstr "" +msgstr "materiaal met aanzienlijke thermische krimp/uitzetting, zoals..." msgid "materials with inaccurate filament diameter" -msgstr "" +msgstr "materialen met een onnauwkeurige filamentdiameter" msgid "We found the best Flow Dynamics Calibration Factor" -msgstr "" +msgstr "We hebben de beste Flow Dynamics kalibratiefactor gevonden" msgid "" "Part of the calibration failed! You may clean the plate and retry. The " "failed test result would be dropped." msgstr "" +"Een deel van de kalibratie is mislukt! U kunt de plaat schoonmaken en het " +"opnieuw proberen. Het mislukte testresultaat komt te vervallen." msgid "" "*We recommend you to add brand, materia, type, and even humidity level in " "the Name" msgstr "" +"*We raden je aan om merk, materiaal, type en zelfs vochtigheidsgraad toe te " +"voegen in de Naam." msgid "Failed" msgstr "Mislukt" msgid "Please enter the name you want to save to printer." -msgstr "" +msgstr "Voer de naam in die u op de printer wilt opslaan." msgid "The name cannot exceed 40 characters." -msgstr "" +msgstr "De naam mag niet langer zijn dan 40 tekens." msgid "" "Only one of the results with the same name will be saved. Are you sure you " "want to overrides the other results?" msgstr "" +"Slechts één van de resultaten met dezelfde naam wordt opgeslagen. Weet je " +"zeker dat je de andere resultaten wilt vervangen?" #, c-format, boost-format msgid "" @@ -13619,188 +13992,199 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to overrides the historical result?" msgstr "" +"Er is al een eerder kalibratieresultaat met dezelfde naam: %s. Slechts één " +"van de resultaten met dezelfde naam wordt opgeslagen. Weet je zeker dat je " +"het vorige resultaat wilt vervangen?" msgid "Please find the best line on your plate" -msgstr "" +msgstr "Zoek de beste regel op je bord" msgid "Please find the cornor with perfect degree of extrusion" -msgstr "" +msgstr "Zoek de hoek met de perfecte extrusiegraad" msgid "Input Value" -msgstr "" +msgstr "Invoerwaarde" msgid "Save to Filament Preset" -msgstr "" +msgstr "Opslaan in filamentvoorinstellingen" msgid "Preset" -msgstr "" +msgstr "Voorinstelling" msgid "Record Factor" -msgstr "" +msgstr "Recordfactor" msgid "We found the best flow ratio for you" -msgstr "" +msgstr "We hebben de beste stroomverhouding voor je gevonden" msgid "Flow Ratio" -msgstr "" +msgstr "Flow ratio" msgid "Please input a valid value (0.0 < flow ratio < 2.0)" -msgstr "" +msgstr "Voer een geldige waarde in (0,0 < flow ratio < 2,0)" msgid "Please enter the name of the preset you want to save." -msgstr "" +msgstr "Voer de naam in van de voorinstelling die u wilt opslaan." msgid "Calibration1" -msgstr "" +msgstr "Kalibratie 1" msgid "Calibration2" -msgstr "" +msgstr "Kalibratie 2" msgid "Please find the best object on your plate" -msgstr "" +msgstr "Zoek het beste voorwerp op je bord" msgid "Fill in the value above the block with smoothest top surface" -msgstr "" +msgstr "Vul de waarde boven het blok in met het gladste bovenvlak" msgid "Skip Calibration2" -msgstr "" +msgstr "Kalibratie overslaan2" #, c-format, boost-format msgid "flow ratio : %s " -msgstr "" +msgstr "Stroomverhouding : %s " msgid "Please choose a block with smoothest top surface" -msgstr "" +msgstr "Kies een blok met de gladste bovenkant" msgid "Please choose a block with smoothest top surface." -msgstr "" +msgstr "Kies een blok met de gladste bovenkant." msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" msgstr "" +"Voer een geldige waarde in (0 <= maximale volumetrische snelheid <= 60)" msgid "Calibration Type" -msgstr "" +msgstr "Kalibratietype" msgid "Complete Calibration" -msgstr "" +msgstr "Volledige kalibratie" msgid "Fine Calibration based on flow ratio" -msgstr "" +msgstr "Fijne kalibratie op basis van flow ratio" msgid "Title" -msgstr "" +msgstr "Titel" msgid "" "A test model will be printed. Please clear the build plate and place it back " "to the hot bed before calibration." msgstr "" +"Er wordt een testmodel geprint. Maak de bouwplaat vrij en plaats deze terug " +"op het hotbed voordat je gaat kalibreren." msgid "Printing Parameters" -msgstr "" +msgstr "Afdrukparameters" msgid "Plate Type" msgstr "Plate Type" msgid "filament position" -msgstr "" +msgstr "filament positie" msgid "External Spool" -msgstr "" +msgstr "Externe spoel" msgid "Filament For Calibration" -msgstr "" +msgstr "Filament voor kalibratie" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" "- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" msgstr "" +"Tips voor kalibratiemateriaal: \n" +"- Materialen die dezelfde warmbedtemperatuur kunnen delen\n" +"- Verschillende filamentmerken en -families (Merk = Bambu, Familie = Basis, " +"Mat)" msgid "Pattern" -msgstr "" +msgstr "Patroon" msgid "Method" -msgstr "" +msgstr "Methode" #, c-format, boost-format msgid "%s is not compatible with %s" -msgstr "" +msgstr "%s is niet compatibel met %s" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." -msgstr "" +msgstr "TPU wordt niet ondersteund voor automatische Flow Dynamics-kalibratie." msgid "Connecting to printer" -msgstr "" +msgstr "Verbinding maken met printer" msgid "From k Value" -msgstr "" +msgstr "Van k Waarde" msgid "To k Value" -msgstr "" +msgstr "Naar k Waarde" msgid "Step value" msgstr "" msgid "The nozzle diameter has been synchronized from the printer Settings" msgstr "" +"De diameter van het mondstuk is gesynchroniseerd met de printerinstellingen." msgid "From Volumetric Speed" -msgstr "" +msgstr "Van Volumetric Speed" msgid "To Volumetric Speed" -msgstr "" +msgstr "Naar volumetrische snelheid" msgid "Flow Dynamics Calibration Result" -msgstr "" +msgstr "Kalibratieresultaat van Flow Dynamics" msgid "New" -msgstr "" +msgstr "New" msgid "No History Result" -msgstr "" +msgstr "Geen geschiedenisresultaat" msgid "Success to get history result" -msgstr "" +msgstr "Succes om geschiedenisresultaat te krijgen" msgid "Refreshing the historical Flow Dynamics Calibration records" -msgstr "" +msgstr "De vorige Flow Dynamics kalibratierecords vernieuwen" msgid "Action" -msgstr "" +msgstr "Actie" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "This machine type can only hold %d historical results per nozzle." msgid "Edit Flow Dynamics Calibration" -msgstr "" +msgstr "Flow Dynamics-kalibratie bewerken" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "New Flow Dynamic Calibration" msgid "Ok" -msgstr "" +msgstr "Ok" msgid "The filament must be selected." -msgstr "" +msgstr "The filament must be selected." msgid "Network lookup" -msgstr "" +msgstr "Netwerk opzoeken" msgid "Address" -msgstr "" +msgstr "Address" msgid "Hostname" -msgstr "" +msgstr "Hostnaam" msgid "Service name" -msgstr "" +msgstr "Servicenaam" msgid "OctoPrint version" -msgstr "" +msgstr "OctoPrint-versie" msgid "Searching for devices" -msgstr "" +msgstr "Zoeken naar apparaten" msgid "Finished" msgstr "Voltooid" @@ -13815,37 +14199,37 @@ msgid "" msgstr "" msgid "PA Calibration" -msgstr "" +msgstr "PA-kalibratie" msgid "DDE" msgstr "" msgid "Bowden" -msgstr "" +msgstr "Bowden" msgid "Extruder type" msgstr "" msgid "PA Tower" -msgstr "" +msgstr "PA-toren" msgid "PA Line" -msgstr "" +msgstr "PA-lijn" msgid "PA Pattern" -msgstr "" +msgstr "PA-patroon" msgid "Start PA: " -msgstr "" +msgstr "Start PA:" msgid "End PA: " -msgstr "" +msgstr "PA beëindigen: " msgid "PA step: " -msgstr "" +msgstr "PA-stap:" msgid "Print numbers" -msgstr "" +msgstr "Cijfers afdrukken" msgid "" "Please input valid values:\n" @@ -13853,39 +14237,43 @@ msgid "" "End PA: > Start PA\n" "PA step: >= 0.001)" msgstr "" +"Voer geldige waarden in:\n" +"PA starten: >= 0,0\n" +"PA beëindigen: > PA starten\n" +"PA-stap: >= 0,001)" msgid "Temperature calibration" -msgstr "" +msgstr "Temperatuurkalibratie" msgid "PLA" -msgstr "" +msgstr "PLA" msgid "ABS/ASA" -msgstr "" +msgstr "ABS/ASA" msgid "PETG" -msgstr "" +msgstr "PETG" msgid "TPU" -msgstr "" +msgstr "TPU" msgid "PA-CF" -msgstr "" +msgstr "PA-CF" msgid "PET-CF" -msgstr "" +msgstr "PET-CF" msgid "Filament type" -msgstr "" +msgstr "Filamenttype" msgid "Start temp: " -msgstr "" +msgstr "Starttemp:" msgid "End temp: " -msgstr "" +msgstr "Eindtemp:" msgid "Temp step: " -msgstr "" +msgstr "Temp stap:" msgid "" "Please input valid values:\n" @@ -13895,16 +14283,16 @@ msgid "" msgstr "" msgid "Max volumetric speed test" -msgstr "" +msgstr "Max. volumetrische snelheidstest" msgid "Start volumetric speed: " -msgstr "" +msgstr "Volumetrische snelheid starten:" msgid "End volumetric speed: " -msgstr "" +msgstr "Volumetrische eindsnelheid:" msgid "step: " -msgstr "" +msgstr "stap:" msgid "" "Please input valid values:\n" @@ -13914,13 +14302,13 @@ msgid "" msgstr "" msgid "VFA test" -msgstr "" +msgstr "VFA-test" msgid "Start speed: " -msgstr "" +msgstr "Startsnelheid:" msgid "End speed: " -msgstr "" +msgstr "Eindsnelheid:" msgid "" "Please input valid values:\n" @@ -13930,129 +14318,130 @@ msgid "" msgstr "" msgid "Start retraction length: " -msgstr "" +msgstr "Begin terugtreklengte:" msgid "End retraction length: " -msgstr "" +msgstr "Beëindig terugtreklengte: " msgid "mm/mm" -msgstr "" +msgstr "mm/mm" msgid "Send G-Code to printer host" msgstr "" msgid "Upload to Printer Host with the following filename:" -msgstr "" +msgstr "Uploaden naar Printer Host met de volgende bestandsnaam:" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "" +"Gebruik indien nodig schuine strepen (/) als scheidingsteken voor mappen." msgid "Upload to storage" msgstr "" #, c-format, boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" -msgstr "" +msgstr "De bestandsnaam van de upload eindigt niet op \"%s\". Wilt u doorgaan?" msgid "Upload" -msgstr "" +msgstr "Uploaden" msgid "Print host upload queue" -msgstr "" +msgstr "Uploadwachtrij van de host afdrukken" msgid "ID" -msgstr "" +msgstr "ID" msgid "Progress" -msgstr "" +msgstr "Voortgang" msgid "Host" -msgstr "" +msgstr "Host" msgctxt "OfFile" msgid "Size" -msgstr "" +msgstr "Maat" msgid "Filename" -msgstr "" +msgstr "Bestandsnaam" msgid "Cancel selected" -msgstr "" +msgstr "Annuleer geselecteerde" msgid "Show error message" -msgstr "" +msgstr "Foutmelding tonen" msgid "Enqueued" -msgstr "" +msgstr "In de wachtrij" msgid "Uploading" msgstr "Uploaden" msgid "Cancelling" -msgstr "" +msgstr "Annuleren" msgid "Error uploading to print host" msgstr "" msgid "Unable to perform boolean operation on selected parts" -msgstr "" +msgstr "Kan geen booleaanse bewerking uitvoeren op geselecteerde onderdelen" msgid "Mesh Boolean" -msgstr "" +msgstr "Mesh booleaans" msgid "Union" -msgstr "" +msgstr "Unie" msgid "Difference" -msgstr "" +msgstr "Verschil" msgid "Intersection" -msgstr "" +msgstr "Kruising" msgid "Source Volume" -msgstr "" +msgstr "Bronvolume" msgid "Tool Volume" -msgstr "" +msgstr "Gereedschapsvolume" msgid "Subtract from" -msgstr "" +msgstr "Aftrekken van" msgid "Subtract with" -msgstr "" +msgstr "Aftrekken met" msgid "selected" -msgstr "" +msgstr "geselecteerd" msgid "Part 1" -msgstr "" +msgstr "Deel 1" msgid "Part 2" -msgstr "" +msgstr "Deel 2" msgid "Delete input" -msgstr "" +msgstr "Invoer verwijderen" msgid "Network Test" -msgstr "" +msgstr "Netwerktest" msgid "Start Test Multi-Thread" -msgstr "" +msgstr "Multi-thread test starten" msgid "Start Test Single-Thread" -msgstr "" +msgstr "Test Single-Thread starten" msgid "Export Log" -msgstr "" +msgstr "Logboek exporteren" msgid "OrcaSlicer Version:" msgstr "" msgid "System Version:" -msgstr "" +msgstr "Systeemversie:" msgid "DNS Server:" -msgstr "" +msgstr "DNS-server:" msgid "Test OrcaSlicer(GitHub)" msgstr "" @@ -14061,92 +14450,99 @@ msgid "Test OrcaSlicer(GitHub):" msgstr "" msgid "Test Bing.com" -msgstr "" +msgstr "Test Bing.com" msgid "Test bing.com:" -msgstr "" +msgstr "Test bing.com:" msgid "Log Info" -msgstr "" +msgstr "Log-informatie" msgid "Select filament preset" -msgstr "" +msgstr "Selecteer voorinstelling gloeidraad" msgid "Create Filament" -msgstr "" +msgstr "Draad maken" msgid "Create Based on Current Filament" -msgstr "" +msgstr "Creëer op basis van huidig filament" msgid "Copy Current Filament Preset " -msgstr "" +msgstr "Kopieer de huidige filamentvoorinstelling " msgid "Basic Information" -msgstr "" +msgstr "Basisinformatie" msgid "Add Filament Preset under this filament" -msgstr "" +msgstr "Voeg Filament Preset toe onder dit filament" msgid "We could create the filament presets for your following printer:" -msgstr "" +msgstr "We kunnen de filament presets maken voor uw volgende printer:" msgid "Select Vendor" -msgstr "" +msgstr "Selecteer leverancier" msgid "Input Custom Vendor" -msgstr "" +msgstr "Aangepaste leverancier invoeren" msgid "Can't find vendor I want" -msgstr "" +msgstr "Kan de leverancier die ik wil niet vinden" msgid "Select Type" -msgstr "" +msgstr "Selecteer type" msgid "Select Filament Preset" -msgstr "" +msgstr "Selecteer filament preset" msgid "Serial" -msgstr "" +msgstr "Serieel" msgid "e.g. Basic, Matte, Silk, Marble" -msgstr "" +msgstr "bijv. Basic, Mat, Zijde, Marmer" msgid "Filament Preset" -msgstr "" +msgstr "Filament voorinstelling" msgid "Create" -msgstr "" +msgstr "Creëren" msgid "Vendor is not selected, please reselect vendor." -msgstr "" +msgstr "Vendor is not selected; please reselect vendor." msgid "Custom vendor is not input, please input custom vendor." -msgstr "" +msgstr "Custom vendor missing; please input custom vendor." msgid "" "\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." msgstr "" +"\"Bambu\" of \"Generic\" kan niet worden gebruikt als leverancier voor " +"aangepaste filamenten." msgid "Filament type is not selected, please reselect type." -msgstr "" +msgstr "Het type draad is niet geselecteerd, selecteer het type opnieuw." msgid "Filament serial is not inputed, please input serial." -msgstr "" +msgstr "Filament serial missing; please input serial." msgid "" "There may be escape characters in the vendor or serial input of filament. " "Please delete and re-enter." msgstr "" +"There may be disallowed characters in the vendor or serial input of the " +"filament. Please delete and re-enter." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "" +"Alle ingangen in de aangepaste verkoper of serie zijn spaties. Voer opnieuw " +"in." msgid "The vendor can not be a number. Please re-enter." -msgstr "" +msgstr "The vendor can not be a number; please re-enter." msgid "" "You have not selected a printer or preset yet. Please select at least one." msgstr "" +"Je hebt nog geen printer of preset geselecteerd. Selecteer er ten minste één." #, c-format, boost-format msgid "" @@ -14154,14 +14550,19 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"De filamentnaam %s die je hebt gemaakt, bestaat al. \n" +"Als u doorgaat, wordt de gemaakte voorinstelling weergegeven met de " +"volledige naam. Wilt u doorgaan?" msgid "Some existing presets have failed to be created, as follows:\n" -msgstr "" +msgstr "Sommige bestaande presets zijn niet aangemaakt, als volgt:\n" msgid "" "\n" "Do you want to rewrite it?" msgstr "" +"\n" +"Wil je het herschrijven?" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you selected" @@ -14170,46 +14571,46 @@ msgid "" msgstr "" msgid "Create Printer/Nozzle" -msgstr "" +msgstr "Printer/mondstuk maken" msgid "Create Printer" -msgstr "" +msgstr "Printer maken" msgid "Create Nozzle for Existing Printer" -msgstr "" +msgstr "Mondstuk maken voor bestaande printer" msgid "Create from Template" -msgstr "" +msgstr "Maken op basis van sjabloon" msgid "Create Based on Current Printer" -msgstr "" +msgstr "Aanmaken op basis van huidige printer" msgid "Import Preset" -msgstr "" +msgstr "Preset importeren" msgid "Create Type" -msgstr "" +msgstr "Type maken" msgid "The model is not fond, place reselect vendor." -msgstr "" +msgstr "The model was not found; please reselect vendor." msgid "Select Model" -msgstr "" +msgstr "Model kiezen" msgid "Select Printer" -msgstr "" +msgstr "Selecteer printer" msgid "Input Custom Model" -msgstr "" +msgstr "Invoer aangepast model" msgid "Can't find my printer model" -msgstr "" +msgstr "Kan mijn printermodel niet vinden" msgid "Rectangle" -msgstr "" +msgstr "Rechthoek" msgid "Printable Space" -msgstr "" +msgstr "Printbare ruimte" msgid "X" msgstr "" @@ -14218,66 +14619,70 @@ msgid "Y" msgstr "" msgid "Hot Bed STL" -msgstr "" +msgstr "Warm bed STL" msgid "Load stl" -msgstr "" +msgstr "Stl laden" msgid "Hot Bed SVG" -msgstr "" +msgstr "Warm bed SVG" msgid "Load svg" -msgstr "" +msgstr "svg laden" msgid "Max Print Height" -msgstr "" +msgstr "Max. afdrukhoogte" #, c-format, boost-format msgid "The file exceeds %d MB, please import again." -msgstr "" +msgstr "Het bestand is groter dan %d MB, importeer opnieuw." msgid "Exception in obtaining file size, please import again." -msgstr "" +msgstr "Uitzondering in het verkrijgen van bestandsgrootte, importeer opnieuw." msgid "Preset path is not find, please reselect vendor." -msgstr "" +msgstr "Preset-pad niet gevonden; selecteer leverancier opnieuw." msgid "The printer model was not found, please reselect." -msgstr "" +msgstr "Het printermodel is niet gevonden, selecteer opnieuw." msgid "The nozzle diameter is not fond, place reselect." -msgstr "" +msgstr "The nozzle diameter was not found; please reselect." msgid "The printer preset is not fond, place reselect." -msgstr "" +msgstr "The printer preset was not found; please reselect." msgid "Printer Preset" -msgstr "" +msgstr "Vooraf ingestelde printer" msgid "Filament Preset Template" -msgstr "" +msgstr "Filament vooraf ingestelde sjabloon" msgid "Deselect All" -msgstr "" +msgstr "Alles deselecteren" msgid "Process Preset Template" -msgstr "" +msgstr "Vooraf ingesteld proces sjabloon" msgid "Back Page 1" -msgstr "" +msgstr "Terug Pagina 1" msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" msgstr "" +"Je hebt nog niet gekozen op basis van welke preset je de printer wilt maken. " +"Kies de leverancier en het model van de printer" msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." msgstr "" +"U hebt een niet toegestaan teken ingevoerd in het gedeelte van het " +"afdrukbare gebied op de eerste pagina. Gebruik alleen cijfers." msgid "The custom printer or model is not inputed, place input." -msgstr "" +msgstr "The custom printer or model missing; please input." msgid "" "The printer preset you created already has a preset with the same name. Do " @@ -14288,60 +14693,75 @@ msgid "" "reserve.\n" "\tCancel: Do not create a preset, return to the creation interface." msgstr "" +"The printer preset you created already has a preset with the same name. Do " +"you want to overwrite it?\n" +"\tYes: Overwrite the printer preset with the same name, and filament and " +"process presets with the same preset name will be recreated \n" +"and filament and process presets without the same preset name will be " +"reserved.\n" +"\tCancel: Do not create a preset; return to the creation interface." msgid "You need to select at least one filament preset." -msgstr "" +msgstr "U moet ten minste één filamentvoorinstelling selecteren." msgid "You need to select at least one process preset." -msgstr "" +msgstr "Je moet minstens één procesvoorinstelling selecteren." msgid "Create filament presets failed. As follows:\n" -msgstr "" +msgstr "Voorinstellingen voor filament maken mislukt. Als volgt:\n" msgid "Create process presets failed. As follows:\n" -msgstr "" +msgstr "Procesvoorinstellingen maken mislukt. Als volgt:\n" msgid "Vendor is not find, please reselect." -msgstr "" +msgstr "Leverancier is niet gevonden; selecteer opnieuw." msgid "Current vendor has no models, please reselect." -msgstr "" +msgstr "De huidige leverancier heeft geen modellen. Selecteer opnieuw." msgid "" "You have not selected the vendor and model or inputed the custom vendor and " "model." msgstr "" +"U hebt de verkoper en het model niet geselecteerd of de aangepaste verkoper " +"en het aangepaste model niet ingevoerd." msgid "" "There may be escape characters in the custom printer vendor or model. Please " "delete and re-enter." msgstr "" +"Er kunnen escape-tekens staan in de aangepaste printerverkoper of het " +"aangepaste printermodel. Verwijder ze en voer ze opnieuw in." msgid "" "All inputs in the custom printer vendor or model are spaces. Please re-enter." msgstr "" +"Alle invoer in de aangepaste printerverkoper of het aangepaste printermodel " +"zijn spaties. Voer opnieuw in." msgid "Please check bed printable shape and origin input." -msgstr "" +msgstr "Controleer de bedrukbare vorm en oorsprongsinvoer." msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "" +"Je hebt de printer waarvoor je het mondstuk wilt vervangen nog niet " +"geselecteerd; kies een printer." msgid "Create Printer Successful" -msgstr "" +msgstr "Printer succesvol maken" msgid "Create Filament Successful" -msgstr "" +msgstr "Filament Created Successfully" msgid "Printer Created" -msgstr "" +msgstr "Printer gemaakt" msgid "Please go to printer settings to edit your presets" -msgstr "" +msgstr "Ga naar printerinstellingen om je voorinstellingen te bewerken" msgid "Filament Created" -msgstr "" +msgstr "Aangemaakt filament" msgid "" "Please go to filament setting to edit your presets if you need.\n" @@ -14349,6 +14769,11 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"Ga naar filamentinstellingen om uw voorinstellingen te bewerken als dat " +"nodig is.\n" +"Houd er rekening mee dat de spuitmondtemperatuur, warmbedtemperatuur en " +"maximale volumetrische snelheid elk een aanzienlijke invloed hebben op de " +"printkwaliteit. Stel ze daarom zorgvuldig in." msgid "" "\n" @@ -14360,7 +14785,7 @@ msgid "" msgstr "" msgid "Printer Setting" -msgstr "" +msgstr "Printerinstelling" msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -14369,31 +14794,31 @@ msgid "Filament bundle(.orca_filament)" msgstr "" msgid "Printer presets(.zip)" -msgstr "" +msgstr "Printer presets(.zip)" msgid "Filament presets(.zip)" -msgstr "" +msgstr "Filament presets(.zip)" msgid "Process presets(.zip)" -msgstr "" +msgstr "Proces presets(.zip)" msgid "initialize fail" -msgstr "" +msgstr "initialiseren mislukt" msgid "add file fail" -msgstr "" +msgstr "Bestand toevoegen mislukt" msgid "add bundle structure file fail" -msgstr "" +msgstr "bundle structuurbestand toevoegen mislukt" msgid "finalize fail" -msgstr "" +msgstr "afronden mislukt" msgid "open zip written fail" -msgstr "" +msgstr "open zip geschreven mislukt" msgid "Export successful" -msgstr "" +msgstr "Export succesvol" #, c-format, boost-format msgid "" @@ -14402,6 +14827,10 @@ msgid "" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" +"The '%s' folder already exists in the current directory. Do you want to " +"clear it and rebuild it?\n" +"If not, a time suffix will be added, and you can modify the name after " +"creation." msgid "" "Printer and all the filament&&process presets that belongs to the printer. \n" @@ -14412,54 +14841,69 @@ msgid "" "User's fillment preset set. \n" "Can be shared with others." msgstr "" +"Ingestelde preset vullingsset van de gebruiker.\n" +"Kan worden gedeeld met anderen." msgid "" "Only display printer names with changes to printer, filament, and process " "presets." msgstr "" +"Alleen printers met wijzigingen in printer-, filament- en proces presets " +"worden weergegeven." msgid "Only display the filament names with changes to filament presets." -msgstr "" +msgstr "Geef alleen de filamentnamen weer met wijzigingen in filament presets." msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" +"Alleen printernamen met gebruikersprinter presets worden weergegeven en elke " +"preset die je kiest, wordt als zip geëxporteerd." msgid "" "Only the filament names with user filament presets will be displayed, \n" "and all user filament presets in each filament name you select will be " "exported as a zip." msgstr "" +"Alleen de filamentnamen met gebruikers presets worden weergegeven, \n" +"en alle gebruikers presets in elke filamentnaam die u selecteert, worden " +"geëxporteerd als zip-bestand." msgid "" "Only printer names with changed process presets will be displayed, \n" "and all user process presets in each printer name you select will be " "exported as a zip." msgstr "" +"Alleen printernamen met gewijzigde proces presets worden weergegeven, \n" +"en alle gebruikersproces presets in elke printernaam die u selecteert, " +"worden als zip geëxporteerd." msgid "Please select at least one printer or filament." -msgstr "" +msgstr "Selecteer ten minste één printer of filament." msgid "Please select a type you want to export" -msgstr "" +msgstr "Selecteer het type preset dat je wilt exporteren" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "" +msgstr "Failed to create temporary folder, please try Export Configs again." msgid "Edit Filament" -msgstr "" +msgstr "Bewerk filament" msgid "Filament presets under this filament" -msgstr "" +msgstr "Presets onder deze gloeidraad" msgid "" "Note: If the only preset under this filament is deleted, the filament will " "be deleted after exiting the dialog." msgstr "" +"Opmerking: Als de enige preset onder deze gloeidraad wordt verwijderd, wordt " +"de gloeidraad verwijderd na het verlaten van het dialoogvenster." msgid "Presets inherited by other presets can not be deleted" msgstr "" +"Presets die door andere presets worden geërfd, kunnen niet worden verwijderd" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." @@ -14467,190 +14911,206 @@ msgstr[0] "" msgstr[1] "" msgid "Delete Preset" -msgstr "" +msgstr "Preset verwijderen" msgid "Are you sure to delete the selected preset?" -msgstr "" +msgstr "Weet je zeker dat je de geselecteerde preset wilt verwijderen?" msgid "Delete preset" -msgstr "" +msgstr "Preset verwijderen" msgid "+ Add Preset" -msgstr "" +msgstr "+ Preset toevoegen" msgid "Delete Filament" -msgstr "" +msgstr "Draad verwijderen" msgid "" "All the filament presets belong to this filament would be deleted. \n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" +"Alle presets van het filament die bij dit filament horen, worden " +"verwijderd. \n" +"Als u dit filament gebruikt in uw printer, reset dan de filamentinformatie " +"voor die sleuf." msgid "Delete filament" -msgstr "" +msgstr "Draad verwijderen" msgid "Add Preset" -msgstr "" +msgstr "Preset toevoegen" msgid "Add preset for new printer" -msgstr "" +msgstr "Preset toevoegen voor nieuwe printer" msgid "Copy preset from filament" -msgstr "" +msgstr "Kopieer preset van filament" msgid "The filament choice not find filament preset, please reselect it" -msgstr "" +msgstr "De filamentkeuze vindt geen filament preset, selecteer deze opnieuw" msgid "[Delete Required]" -msgstr "" +msgstr "[Verwijderen vereist]" msgid "Edit Preset" -msgstr "" +msgstr "Preset bewerken" msgid "For more information, please check out Wiki" -msgstr "" +msgstr "For more information, please check out our Wiki" msgid "Collapse" -msgstr "" +msgstr "Instorten" msgid "Daily Tips" -msgstr "" +msgstr "Dagelijkse tips" msgid "" "Your nozzle diameter in preset is not consistent with memorized nozzle " "diameter. Did you change your nozzle lately?" msgstr "" +"Your nozzle diameter in preset is not consistent with the saved nozzle " +"diameter. Have you changed your nozzle?" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" -msgstr "" +msgstr "*Afdrukken%s materiaal mee%s kan schade aan het mondstuk veroorzaken" msgid "Need select printer" -msgstr "" +msgstr "Printer selecteren" msgid "The start, end or step is not valid value." -msgstr "" +msgstr "Het begin, einde of stap is geen geldige waarde." msgid "" "Unable to calibrate: maybe because the set calibration value range is too " "large, or the step is too small" msgstr "" +"Kan niet kalibreren: misschien omdat het bereik van de ingestelde " +"kalibratiewaarde te groot is, of omdat de stap te klein is" msgid "Physical Printer" -msgstr "" +msgstr "Fysieke printer" msgid "Print Host upload" -msgstr "" +msgstr "Host-upload afdrukken" msgid "Could not get a valid Printer Host reference" -msgstr "" +msgstr "Kon geen geldige printerhostreferentie krijgen" msgid "Success!" -msgstr "" +msgstr "Succes!" msgid "Are you sure to log out?" msgstr "" msgid "Refresh Printers" -msgstr "" +msgstr "Printers vernieuwen" msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" +"HTTPS CA-bestand is optioneel. Het is alleen nodig als je HTTPS gebruikt met " +"een zelfondertekend certificaat." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -msgstr "" +msgstr "Certificaatbestanden (*.crt, *.pem)|*.crt;*.pem|Alle bestanden|*.*" msgid "Open CA certificate file" -msgstr "" +msgstr "Open CA-certificaatbestand" #, c-format, boost-format msgid "" "On this system, %s uses HTTPS certificates from the system Certificate Store " "or Keychain." msgstr "" +"Op dit systeem gebruikt %s HTTPS-certificaten uit de " +"systeemcertificaatopslag of de sleutelhanger." msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " "Keychain." msgstr "" +"Om een aangepast CA-bestand te gebruiken, importeert u uw CA-bestand in " +"Certificate Store / Keychain." msgid "Login/Test" msgstr "" msgid "Connection to printers connected via the print host failed." -msgstr "" +msgstr "Verbinding met printers aangesloten via de printhost mislukt." #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "" +msgstr "Verkeerd type afdrukhost: %s" msgid "Connection to AstroBox works correctly." -msgstr "" +msgstr "Connection to AstroBox is working correctly." msgid "Could not connect to AstroBox" -msgstr "" +msgstr "Kan geen verbinding maken met AstroBox" msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "" +msgstr "Note: AstroBox version 1.1.0 or higher is required." msgid "Connection to Duet works correctly." -msgstr "" +msgstr "Connection to Duet is working correctly." msgid "Could not connect to Duet" -msgstr "" +msgstr "Kan geen verbinding maken met Duet" msgid "Unknown error occured" -msgstr "" +msgstr "Onbekende fout opgetreden" msgid "Wrong password" -msgstr "" +msgstr "Verkeerd wachtwoord." msgid "Could not get resources to create a new connection" -msgstr "" +msgstr "Kan geen bronnen krijgen om een nieuwe verbinding te maken" msgid "Upload not enabled on FlashAir card." -msgstr "" +msgstr "Uploaden niet ingeschakeld op FlashAir-kaart." msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "" +msgstr "Connection to FlashAir is working correctly and upload is enabled." msgid "Could not connect to FlashAir" -msgstr "" +msgstr "Kan geen verbinding maken met FlashAir" msgid "" "Note: FlashAir with firmware 2.00.02 or newer and activated upload function " "is required." msgstr "" +"Opmerking: FlashAir met firmware 2.00.02 of nieuwer en geactiveerde " +"uploadfunctie is vereist." msgid "Connection to MKS works correctly." -msgstr "" +msgstr "Connection to MKS is working correctly." msgid "Could not connect to MKS" -msgstr "" +msgstr "Kan geen verbinding maken met MKS" msgid "Connection to OctoPrint works correctly." -msgstr "" +msgstr "Connection to OctoPrint is working correctly." msgid "Could not connect to OctoPrint" -msgstr "" +msgstr "Kan geen verbinding maken met OctoPrint" msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "" +msgstr "Note: OctoPrint version 1.1.0 or higher is required." msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "" +msgstr "Connection to Prusa SL1 / SL1S is working correctly." msgid "Could not connect to Prusa SLA" -msgstr "" +msgstr "Kan geen verbinding maken met Prusa SLA" msgid "Connection to PrusaLink works correctly." -msgstr "" +msgstr "Connection to PrusaLink is working correctly." msgid "Could not connect to PrusaLink" -msgstr "" +msgstr "Kan geen verbinding maken met PrusaLink" msgid "Storages found" msgstr "" @@ -14677,19 +15137,21 @@ msgid "Could not connect to Prusa Connect" msgstr "" msgid "Connection to Repetier works correctly." -msgstr "" +msgstr "Connection to Repetier is working correctly." msgid "Could not connect to Repetier" -msgstr "" +msgstr "Kan geen verbinding maken met Repetier" msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "" +msgstr "Note: Repetier version 0.90.0 or higher is required." #, boost-format msgid "" "HTTP status: %1%\n" "Message body: \"%2%\"" msgstr "" +"HTTP-status: %1%\n" +"Bericht: \"%2%\"" #, boost-format msgid "" @@ -14697,6 +15159,9 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Parsing van hostrespons mislukt.\n" +"Inhoud bericht: \"%1%\"\n" +"Fout: \"%2%\"" #, boost-format msgid "" @@ -14704,35 +15169,51 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Opsomming van hostprinters mislukt.\n" +"Inhoud bericht: \"%1%\"\n" +"Fout: \"%2%\"" msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"It has a small layer height, and results in almost negligible layer lines " +"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " +"bigger layer height. This results in almost negligible layer lines and " +"slightly longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " +"height. This results in slightly visible layer lines but shorter print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in almost invisible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14740,12 +15221,19 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality but " +"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14753,35 +15241,53 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"It has a normal layer height, and results in average layer lines and print " +"quality. It is suitable for most printing cases." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but slightly shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14789,12 +15295,19 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14802,64 +15315,95 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and longer print time." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"It has a big layer height, and results in apparent layer lines and ordinary " +"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and slightly higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"It has a very big layer height, and results in very apparent layer lines, " +"low print quality and shorter printing time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -14867,12 +15411,18 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality, but longer print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgid "Connected to Obico successfully!" msgstr "" @@ -14998,6 +15548,9 @@ msgid "" "Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " "problems on the Windows system?" msgstr "" +"Model repareren\n" +"Wist je dat je een beschadigd 3D-model kunt repareren om veel snijproblemen " +"op het Windows-systeem te voorkomen?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" @@ -15237,6 +15790,11 @@ msgid "" "extruder/hotend clogging when printing lower temperature filament with a " "higher enclosure temperature. More info about this in the Wiki." msgstr "" +"Wanneer moet u printen met de printerdeur open?\n" +"Wist je dat het openen van de printerdeur de kans op verstopping van de " +"extruder/hotend kan verminderen bij het printen van filament met een lagere " +"temperatuur en een hogere omgevingstemperatuur? Er staat meer informatie " +"hierover in de Wiki." #: resources/data/hints.ini: [hint:Avoid warping] msgid "" @@ -15245,6 +15803,13 @@ msgid "" "ABS, appropriately increasing the heatbed temperature can reduce the " "probability of warping." msgstr "" +"Kromtrekken voorkomen\n" +"Wist je dat bij het printen van materialen die gevoelig zijn voor " +"kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het " +"warmtebed de kans op kromtrekken kan verkleinen?" + +#~ msgid "V" +#~ msgstr "V" #~ msgid "Export &Configs" #~ msgstr "Export &Configs" diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index fe0359450f..0418f87c6b 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer 2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-22 17:37+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: \n" "Last-Translator: Krzysztof Morga \n" "Language-Team: \n" @@ -2503,8 +2503,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" -"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub " -"\"Wyładuj\" ,aby automatycznie załadować lub wyładować filamenty." +"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub \"Wyładuj" +"\" ,aby automatycznie załadować lub wyładować filamenty." msgid "Edit" msgstr "Edytuj" @@ -3462,6 +3462,15 @@ msgstr "Status Ams" msgid "Printing Options" msgstr "Opcje drukowania" +msgid "Bed Leveling" +msgstr "Poziomowanie stołu" + +msgid "Timelapse" +msgstr "Timelaps" + +msgid "Flow Dynamic Calibration" +msgstr "Kalibracja Dynamiki Przepływu" + msgid "Send Options" msgstr "Opcje wysyłania" @@ -5113,9 +5122,6 @@ msgstr "Grupuj pliki według miesiąca, najnowsze na początku." msgid "Show all files, recent first." msgstr "Pokaż wszystkie pliki, najnowsze na początku." -msgid "Timelapse" -msgstr "Timelaps" - msgid "Switch to timelapse files." msgstr "Przełącz się na pliki timelapse." @@ -7148,9 +7154,6 @@ msgstr "Bambu Textured PEI Plate" msgid "Send print job to" msgstr "Wyślij zadanie druku do" -msgid "Bed Leveling" -msgstr "Poziomowanie stołu" - msgid "Flow Dynamics Calibration" msgstr "Kalibracja Dynamiki Przepływu" @@ -7658,8 +7661,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add " -"Primitive\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add Primitive" +"\"->\"Timelapse Wipe Tower\"." msgstr "" "Podczas nagrywania timelapse'a bez głowicy drukującej zaleca się dodanie " "\"Timelaps - Wieża Czyszcząca\" \n" @@ -9553,10 +9556,10 @@ msgid "" msgstr "" "Unikaj ruchów nad obrysami-\n" "Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli " -"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad " -"obrysami\" zostanie zignorowana dla tej ścieżki. Długość objazdu można " -"zdefiniować jako wartość absolutna lub obliczona procentowo (np. 50%) z " -"długości ruchu bezpośredniego." +"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad obrysami" +"\" zostanie zignorowana dla tej ścieżki. Długość objazdu można zdefiniować " +"jako wartość absolutna lub obliczona procentowo (np. 50%) z długości ruchu " +"bezpośredniego." msgid "mm or %" msgstr "mm lub %" @@ -11278,10 +11281,10 @@ msgstr "Pełna prędkość wentylatora na warstwie" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer " -"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " -"than \"close_fan_the_first_x_layers\", in which case the fan will be running " -"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" +"\". \"full_fan_speed_layer\" will be ignored if lower than " +"\"close_fan_the_first_x_layers\", in which case the fan will be running at " +"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie " "\"close_fan_the_first_x_layers\" do maksymalnej na warstwie " @@ -12981,10 +12984,10 @@ msgid "" "triangle mesh slicing. The gap closing operation may reduce the final print " "resolution, therefore it is advisable to keep the value reasonably low." msgstr "" -"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania " -"szpar\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może " -"zmniejszyć finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej " -"wartości na rozsądnie niskim poziomie." +"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania szpar" +"\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może zmniejszyć " +"finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej wartości na " +"rozsądnie niskim poziomie." msgid "Slicing Mode" msgstr "Tryb cięcia" @@ -15374,8 +15377,8 @@ msgstr "" "Czy chcesz go zastąpić?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you selected" +"\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Nazwa profilu zostanie zmieniona na \"Dostawca Typ Seria @nazwa drukarki, " @@ -16706,9 +16709,6 @@ msgstr "" #~ msgid "V" #~ msgstr "V" -#~ msgid "Flow Dynamic Calibration" -#~ msgstr "Kalibracja Dynamiki Przepływu" - #~ msgid "Maximum print speed when purging" #~ msgstr "Maksymalna prędkość druku podczas czyszczenia" @@ -17851,8 +17851,8 @@ msgstr "" #~ "Elevation is too low for object. Use the \"Pad around object\" feature to " #~ "print the object without elevation." #~ msgstr "" -#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół " -#~ "modelu\", aby wydrukować model bez podniesienia." +#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu" +#~ "\", aby wydrukować model bez podniesienia." #~ msgid "" #~ "The endings of the support pillars will be deployed on the gap between " diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index 23877c5b17..976a749dcc 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: 2024-04-16 11:17-0300\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" @@ -1397,9 +1397,6 @@ msgstr "" "O arquivo de configuração \"%1%\" foi carregado, mas alguns valores não " "foram reconhecidos." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1509,6 +1506,9 @@ msgstr "Escolha um ou mais arquivos (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Escolha um ou mais arquivos (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Escolha um arquivo (gcode/3mf):" @@ -1580,6 +1580,11 @@ msgstr "Envios em andamento" msgid "Select a G-code file:" msgstr "Selecione um arquivo G-code:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Importar Arquivo" @@ -3434,6 +3439,15 @@ msgstr "" msgid "Printing Options" msgstr "" +msgid "Bed Leveling" +msgstr "Nivelamento da mesa" + +msgid "Timelapse" +msgstr "Timelapse" + +msgid "Flow Dynamic Calibration" +msgstr "" + msgid "Send Options" msgstr "" @@ -4657,6 +4671,12 @@ msgstr "Importar 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Carregar um modelo" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Importar Configurações" @@ -5075,9 +5095,6 @@ msgstr "Agrupar arquivos por mês, mais recentes primeiro." msgid "Show all files, recent first." msgstr "Mostrar todos os arquivos, mais recentes primeiro." -msgid "Timelapse" -msgstr "Timelapse" - msgid "Switch to timelapse files." msgstr "Mudar para arquivos de timelapse." @@ -5661,12 +5678,12 @@ msgstr[1] "%1$d objetos foram carregados como peças do objeto cortado" msgid "ERROR" msgstr "ERRO" -msgid "CANCELED" -msgstr "CANCELADO" - msgid "COMPLETED" msgstr "CONCLUÍDO" +msgid "CANCELED" +msgstr "CANCELADO" + msgid "Cancel upload" msgstr "Cancelar envio" @@ -6279,6 +6296,20 @@ msgstr "não contém código G válido." msgid "Error occurs while loading G-code file" msgstr "Erro ocorreu ao carregar o arquivo de código G" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Solte o arquivo do projeto" @@ -6689,6 +6720,20 @@ msgstr "" "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos ." "step" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Máximo de projetos recentes" @@ -7053,9 +7098,6 @@ msgstr "Mesa Texturizada PEI Bambu" msgid "Send print job to" msgstr "Enviar trabalho de impressão para" -msgid "Bed Leveling" -msgstr "Nivelamento da mesa" - msgid "Flow Dynamics Calibration" msgstr "Calibração de Dinâmica de Fluxo" @@ -13440,17 +13482,29 @@ msgstr "Espaçamento das linhas de purga da torre de limpeza" msgid "Spacing of purge lines on the wipe tower." msgstr "Espaçamento das linhas de purga na torre de limpeza." -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -16424,6 +16478,9 @@ msgstr "" "aumentar adequadamente a temperatura da mesa aquecida pode reduzir a " "probabilidade de empenamento?" +#~ msgid "V" +#~ msgstr "V" + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index 6ef7b7020b..b5159939f2 100644 --- a/localization/i18n/ru/OrcaSlicer_ru.po +++ b/localization/i18n/ru/OrcaSlicer_ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer V2.0.0 Official Release\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: 2024-04-12 13:49+0700\n" "Last-Translator: \n" "Language-Team: andylg@yandex.ru\n" @@ -1397,9 +1397,6 @@ msgstr "" "Файл конфигурации \"%1%\" был загружен, но некоторые значения не были " "распознаны." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1510,6 +1507,9 @@ msgstr "" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Выберите один или несколько файлов (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Выберите один файл (gcode/3mf):" @@ -1580,6 +1580,11 @@ msgstr "Текущие загрузки" msgid "Select a G-code file:" msgstr "Выберите файл G-кода:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Импорт файла" @@ -2500,6 +2505,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Выберите слот АСПП, затем нажмите кнопку «Загрузить» или «Выгрузить» для " +"автоматической загрузки или выгрузки прутка." msgid "Edit" msgstr "Правка" @@ -2981,7 +2988,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "Печать материалом, установленным на задней части корпуса." msgid "Current Cabin humidity" -msgstr "" +msgstr "Текущая влажность внутри АСПП" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2989,6 +2996,10 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"Пожалуйста, замените влагопоглотитель, если он слишком влажный. Индикатор " +"может показывать неточно в следующих случаях: при открытой крышке или замене " +"влагопоглотителя. Для поглощения влаги требуется несколько часов. Низкая " +"температура окружающей среды также замедляют этот процесс." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -3051,10 +3062,10 @@ msgstr "" "одного производителя, типа и цвета)" msgid "DRY" -msgstr "" +msgstr "СУХОЙ" msgid "WET" -msgstr "" +msgstr "ВЛАЖНЫЙ" msgid "AMS Settings" msgstr "Настройки АСПП" @@ -3073,6 +3084,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"Примечание: если во время печати вставляется новая пластиковая нить, АСПП " +"автоматически считает информацию о ней только по завершению печати." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3210,7 +3223,7 @@ msgid "Running post-processing scripts" msgstr "Запуск скриптов постобработки" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "Скрипт постобработки успешно выполнен." msgid "Unknown error occured during exporting G-code." msgstr "" @@ -3440,6 +3453,17 @@ msgstr "" msgid "Printing Options" msgstr "" +msgid "Bed Leveling" +msgstr "" +"Выравнивание\n" +"стола" + +msgid "Timelapse" +msgstr "Таймлапсы" + +msgid "Flow Dynamic Calibration" +msgstr "" + msgid "Send Options" msgstr "" @@ -3553,14 +3577,18 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" +"Минимально рекомендуемая температура меньше 190 градусов или максимально " +"рекомендуемая температура выше 300 градусов.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" +"Минимально рекомендуемая температура не может быть выше максимально " +"рекомендуемой.\n" msgid "Please check.\n" -msgstr "" +msgstr "Пожалуйста, проверьте.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -4025,6 +4053,8 @@ msgstr "Проверка корректности параметра" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." msgstr "" +"Значение %s выходит за пределы допустимого диапазона. Допустимый диапазон - " +"от %d до %d." msgid "Value is out of range." msgstr "Введённое значение вне диапазона." @@ -4215,10 +4245,10 @@ msgid "Normal mode" msgstr "Нормальный режим" msgid "Total Filament" -msgstr "" +msgstr "Всего использовано прутка" msgid "Model Filament" -msgstr "" +msgstr "Исп. прутка для моделей" msgid "Prepare time" msgstr "Время подготовки" @@ -4314,7 +4344,7 @@ msgid "Spacing" msgstr "Интервал" msgid "0 means auto spacing." -msgstr "" +msgstr "0 - автоматический интервал." msgid "Auto rotate for arrangement" msgstr "Разрешить вращение при расстановке" @@ -4461,7 +4491,7 @@ msgid "Go Live" msgstr "Запустить трансляцию" msgid "Liveview Retry" -msgstr "" +msgstr "Повторить попытку просмотра" msgid "Resolution" msgstr "Разрешение" @@ -4666,6 +4696,12 @@ msgstr "Импортировать 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Загрузка модели" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Импортировать конфигурацию" @@ -4976,44 +5012,59 @@ msgstr "" msgid "Player is malfunctioning. Please reinstall the system player." msgstr "" +"Проигрыватель неисправен. Пожалуйста, переустановите системный проигрыватель." msgid "The player is not loaded, please click \"play\" button to retry." msgstr "" +"Проигрыватель не загружается, пожалуйста, нажмите кнопку «Воспроизвести», " +"чтобы повторить попытку." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "Пожалуйста, проверьте, подключен ли принтер." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" +"Принтер в настоящее время занят загрузкой. Пожалуйста, повторите попытку " +"после завершения.\n" +"\n" +"Сейчас идёт загрузка. Пожалуйста, повторите попытку после завершения." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "Камера принтера неисправна." msgid "Problem occured. Please update the printer firmware and try again." msgstr "" +"Возникла проблема. Пожалуйста, обновите прошивку принтера и повторите " +"попытку." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"Просмотр в реальном времени для локальной сети отключён. Пожалуйста, " +"включите его на экране принтера." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "Введите IP-адрес принтера для подключения." msgid "Initializing..." msgstr "Инициализация..." msgid "Connection Failed. Please check the network and try again" msgstr "" +"Не удалось установить соединение. Пожалуйста, проверьте сеть и повторите " +"попытку" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"Пожалуйста, проверьте сеть и повторите попытку. Если проблема не устранена, " +"попробуйте перезагрузить или обновить принтер." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "Принтер вышел из системы и не может подключиться." msgid "Stopped." msgstr "Остановлено." @@ -5073,9 +5124,6 @@ msgstr "Группировать файлы по месяцам (по убыва msgid "Show all files, recent first." msgstr "Показать все файлы (недавние первые)" -msgid "Timelapse" -msgstr "Таймлапсы" - msgid "Switch to timelapse files." msgstr "Переключиться на файлы таймлапсов." @@ -5107,7 +5155,7 @@ msgid "Refresh" msgstr "Обновить" msgid "Reload file list from printer." -msgstr "" +msgstr "Перезагрузка списка файлов с принтера." msgid "No printers." msgstr "Принтеры отсутствуют." @@ -5120,10 +5168,10 @@ msgid "Loading file list..." msgstr "Загрузка списка файлов..." msgid "No files" -msgstr "" +msgstr "Файлы отсутствуют " msgid "Load failed" -msgstr "" +msgstr "Ошибка загрузки" msgid "Initialize failed (Device connection not ready)!" msgstr "Ошибка инициализации (подключённое устройство не готово)!" @@ -5132,15 +5180,19 @@ msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"На текущей версии прошивки просмотр файлов на SD-карте не поддерживается. " +"Пожалуйста, обновите прошивку принтера." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" msgid "LAN Connection Failed (Failed to view sdcard)" msgstr "" +"LAN Connection Failed (Failed to start liveview)\"\n" +"Сбой подключения к локальной сети (не удалось просмотреть sd-карту)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "Просмотр файлов на SD-карте не поддерживается в режиме «Только LAN»." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -5174,10 +5226,10 @@ msgid "Fetching model infomations ..." msgstr "Извлечение информации о модели..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "Не удалось получить информацию о модели с принтера." msgid "Failed to parse model information." -msgstr "" +msgstr "Не удалось обработать информацию о модели." msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -5195,6 +5247,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"Файл: %s\n" +"Заголовок: %s\n" msgid "Download waiting..." msgstr "Ожидание загрузки..." @@ -5216,9 +5270,11 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"При повторном подключении принтера операция не может быть завершена " +"немедленно, повторите попытку позже." msgid "File does not exist." -msgstr "" +msgstr "Файла не существует." msgid "File checksum error. Please retry." msgstr "Ошибка контрольной суммы файла. Повторите попытку." @@ -5318,7 +5374,7 @@ msgid "Control" msgstr "Управление" msgid "Printer Parts" -msgstr "" +msgstr "Части принтера" msgid "Print Options" msgstr "Настройки печати" @@ -5568,7 +5624,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "" +msgstr "Скачать бета-версию" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5577,13 +5633,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "" +msgstr "Текущая версия: " msgid "Latest Version: " -msgstr "" +msgstr "Последняя версия: " msgid "Not for now" -msgstr "" +msgstr "Не сейчас" msgid "3D Mouse disconnected." msgstr "3D-мышь отключена." @@ -5657,12 +5713,12 @@ msgstr[2] "Загружена %1$d деталей, являющиеся част msgid "ERROR" msgstr "ОШИБКА" -msgid "CANCELED" -msgstr "ОТМЕНЕНО" - msgid "COMPLETED" msgstr "ЗАВЕРШЕНО" +msgid "CANCELED" +msgstr "ОТМЕНЕНО" + msgid "Cancel upload" msgstr "Отменить отправку" @@ -5780,7 +5836,7 @@ msgid "Check if the nozzle is clumping by filament or other foreign objects." msgstr "" msgid "Nozzle Type" -msgstr "" +msgstr "Тип сопла" msgid "Stainless Steel" msgstr "Нержавеющая сталь" @@ -5790,7 +5846,7 @@ msgstr "Закаленная сталь" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "Общие" @@ -6242,13 +6298,13 @@ msgid "prepare 3mf file..." msgstr "подготовка 3mf файла..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "Не удалось загрузить, неизвестный формат файла." msgid "downloading project ..." msgstr "скачивание проекта..." msgid "Download failed, File size exception." -msgstr "" +msgstr "Загрузка не удалась, ошибка размера файла." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6273,6 +6329,20 @@ msgstr "G-кода содержатся недопустимые данные." msgid "Error occurs while loading G-code file" msgstr "Ошибка при загрузке файла G-кода" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Операции с файлами проекта" @@ -6336,22 +6406,24 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"Невозможно выполнить булеву операцию над сетками модели. Будут сохранены " +"только положительные части. Вы можете исправить сетки и попробовать снова." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "Причина: часть \"%1%\" пустая." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "Причина: часть \"%1%\" не ограничивает объём." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "Причина: часть \"%1%\" имеет самопересечение." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "Причина: \"%1%\" и другая часть не пересекаются." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6541,6 +6613,10 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"В OSX по умолчанию всегда работает только один экземпляр приложения. Однако " +"из командной строки можно запускать несколько экземпляров одного и того же " +"приложения. В таком случае эти настройки разрешат работу только одного " +"экземпляра." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6619,10 +6695,12 @@ msgstr "" msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "" +msgstr "Объём очистки: автопересчёт при каждой смене прутка." msgid "If enabled, auto-calculate every time when filament is changed" msgstr "" +"Если включено, выполняется автоматический перерасчёт объёма очистки при " +"каждой смене прутка." msgid "Remember printer configuration" msgstr "" @@ -6685,6 +6763,20 @@ msgstr "" "Если включено, назначает OrcaSlicer в качестве приложения по умолчанию для " "открытия .step файлов." +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Максимальное количество недавних проектов" @@ -6861,16 +6953,16 @@ msgid "The selected preset is null!" msgstr "Выбранный профиль пуст!" msgid "End" -msgstr "" +msgstr "Последний" msgid "Customize" msgstr "Настроить" msgid "Other layer filament sequence" -msgstr "" +msgstr "Последовательность прутков на остальных слоях" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "Пожалуйста, введите значение слоя (>= 2)." msgid "Plate name" msgstr "Имя печатной пластины" @@ -6882,10 +6974,10 @@ msgid "Print sequence" msgstr "Последовательность печати моделей" msgid "Same as Global" -msgstr "" +msgstr "Аналогично глобальной настройке" msgid "Disable" -msgstr "" +msgstr "Отключить" msgid "Spiral vase" msgstr "Спиральная ваза" @@ -7054,11 +7146,6 @@ msgstr "Текстурированная PEI пластина Bambu" msgid "Send print job to" msgstr "Отправка задания на печать" -msgid "Bed Leveling" -msgstr "" -"Выравнивание\n" -"стола" - msgid "Flow Dynamics Calibration" msgstr "" "Калибровка\n" @@ -7165,6 +7252,8 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"Выбранный принтер (%s) несовместим с профилем принтера (%s), выбранным в " +"слайсере." msgid "An SD card needs to be inserted to record timelapse." msgstr "Для записи таймлапсов необходимо вставить SD-карту." @@ -7231,15 +7320,22 @@ msgid "" "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"Диаметр сопла в нарезанном файле не соответствует сохранённому. Если вы " +"недавно меняли сопло, перейдите в раздел Принтер > Части принтера, чтобы " +"изменить настройки." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" msgstr "" +"Печать высокотемпературным материалом (%s) с %s может привести к повреждению " +"сопла" msgid "Please fix the error above, otherwise printing cannot continue." msgstr "" +"Пожалуйста, устраните вышеуказанную ошибку, иначе печать не может " +"продолжиться." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7545,6 +7641,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"Экспериментальная функция. Втягивание и обрезка пластиковой нити на большем " +"расстоянии во время её замены для минимизации очистки. Хотя это значительно " +"сокращает величину очистки, это может повысить риск засорения сопла или " +"вызвать другие проблемы при печати." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7552,6 +7652,11 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"Экспериментальная функция. Втягивание и обрезка пластиковой нити на большем " +"расстоянии во время её замены для минимизации очистки. Хотя это значительно " +"сокращает величину очистки, это может повысить риск засорения сопла или " +"вызвать другие проблемы при печати. Пожалуйста, используйте для принтера " +"последнюю версию прошивки." msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7937,7 +8042,8 @@ msgstr "" msgid "Presets inherited by other presets can not be deleted!" msgstr "Профили на которых основаны другие профили не могут быть удалены!" -# ???The following preset inherits this preset. - Нижеуказанный профиль наследуется от текущего профиля +# ???The following preset inherits this preset. - Нижеуказанный профиль +# наследуется от текущего профиля msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." msgstr[0] "Профиль указанный ниже, наследуется от текущего профиля." @@ -8064,12 +8170,14 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "Вы изменили некоторые параметры профиля \"%1%\". " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"Вы можете сохранить или сбросить изменённые вами значения профиля." msgid "" "\n" @@ -8078,7 +8186,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "" +msgstr "Ранее вы изменили свои настройки." msgid "" "\n" @@ -8599,7 +8707,7 @@ msgid "Done" msgstr "Готово" msgid "resume" -msgstr "" +msgstr "Продолжить" msgid "Resume Printing" msgstr "" @@ -9544,13 +9652,13 @@ msgid "First layer print sequence" msgstr "Последовательность печати первого слоя" msgid "Other layers print sequence" -msgstr "" +msgstr "Последовательность печати других слоёв" msgid "The number of other layers print sequence" -msgstr "" +msgstr "Количество слоёв при последовательности печати остальных слоёв" msgid "Other layers filament sequence" -msgstr "" +msgstr "Последовательность прутков на остальных слоях" msgid "This G-code is inserted at every layer change before lifting z" msgstr "" @@ -10009,7 +10117,8 @@ msgstr "По очереди" msgid "Intra-layer order" msgstr "Порядок печати слоёв" -# ??? Указания порядка печати слоёв внутри каждого слоя, Последовательность печати слоёв внутри каждого слоя +# ??? Указания порядка печати слоёв внутри каждого слоя, Последовательность +# печати слоёв внутри каждого слоя msgid "Print order within a single layer" msgstr "Последовательность печати слоёв в пределах одного слоя." @@ -10473,10 +10582,10 @@ msgstr "" "столкновений при печати отдельно стоящих моделей." msgid "Nozzle height" -msgstr "" +msgstr "Высота сопла" msgid "The height of nozzle tip." -msgstr "" +msgstr "Высота кончика сопла." msgid "Bed mesh min" msgstr "Мин. сетка стола" @@ -11091,7 +11200,9 @@ msgstr "" "Параметр предназначен для ограничения влияния экстремальных переходов от " "ускорения к замедлению, типичных для коротких зигзагообразных перемещений." -# ??? Ускорение к замедлению, Ускорение торможения, Скорость торможения, Скорость торможения перед поворотом, Соотношение ускорения к замедлению, Скорость движения при переходе от ускорения к замедлению и наоборот +# ??? Ускорение к замедлению, Ускорение торможения, Скорость торможения, +# Скорость торможения перед поворотом, Соотношение ускорения к замедлению, +# Скорость движения при переходе от ускорения к замедлению и наоборот msgid "accel_to_decel" msgstr "Ограничение ускорение зигзагов" @@ -11261,13 +11372,16 @@ msgstr "" "линии и должен печататься медленнее." msgid "Precise Z height" -msgstr "" +msgstr "Точная высота по Z" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"Включите этот параметр, чтобы получить точную высоту модели по оси Z после " +"нарезки. Точная высота модели будет получена путем точной настройки высоты " +"последних нескольких слоёв." msgid "Arc fitting" msgstr "Поддержка движения по дуге окружности" @@ -12224,7 +12338,7 @@ msgstr "" "избежать его течи при длительном перемещении. 0 - отключение отката." msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "Длинное втягивания перед отрезанием прутка" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -12232,14 +12346,20 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"Экспериментальная функция. Втягивание и обрезка пластиковой нити на большем " +"расстоянии во время её замены для минимизации очистки. Хотя это значительно " +"уменьшает величину очистки, это может повысить риск засорения сопла или " +"вызвать другие проблемы при печати." msgid "Retraction distance when cut" -msgstr "" +msgstr "Длина втягивания перед отрезанием прутка" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" msgstr "" +"Экспериментальная функция. Длина втягивания перед отрезанием пластиковой " +"нити при её смене." msgid "Z hop when retract" msgstr "Подъём оси Z при откате" @@ -12442,8 +12562,10 @@ msgstr "" msgid "Conditional scarf joint" msgstr "Условие для клиновидного шва" -# ??? Будет использоваться клиновидный шов, когда на стене нет достаточно острого угла для эффективного скрытия шва. -# Использовать клиновидный шов только на гладких периметрах, где традиционные швы не могут быть эффективно скрыты. +# ??? Будет использоваться клиновидный шов, когда на стене нет достаточно +# острого угла для эффективного скрытия шва. +# Использовать клиновидный шов только на гладких периметрах, где традиционные +# швы не могут быть эффективно скрыты. msgid "" "Apply scarf joints only to smooth perimeters where traditional seams do not " "conceal the seams at sharp corners effectively." @@ -13464,17 +13586,29 @@ msgstr "Расстояние между линиями очистки черно msgid "Spacing of purge lines on the wipe tower." msgstr "Расстояние между линиями очистки на черновой башне." -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -14403,6 +14537,8 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"Результат калибровки с таким именем уже с существует: %s. Вы уверены, что " +"хотите перезаписать прошлый результат?" #, c-format, boost-format msgid "" @@ -14777,7 +14913,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "Результаты калибровки динамики потока" msgid "New" -msgstr "" +msgstr "Новая" msgid "No History Result" msgstr "Журнал результатов пуст" @@ -14799,13 +14935,13 @@ msgid "Edit Flow Dynamics Calibration" msgstr "Редактировать калибровку динамики потока" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "Новая калибровка динамика потока" msgid "Ok" -msgstr "" +msgstr "Ok" msgid "The filament must be selected." -msgstr "" +msgstr "Выберите пластиковую нить." msgid "Network lookup" msgstr "Поиск по сети" @@ -15203,6 +15339,9 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"Пластиковая нить с таким именем %s уже существует. \n" +"Если продолжить создание, то созданный профиль будет отображаться с полным " +"именем. Хотите продолжить?" msgid "Some existing presets have failed to be created, as follows:\n" msgstr "" @@ -15425,6 +15564,11 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"При необходимости перейдите в настройку прутка для редактирования настроек " +"профиля.\n" +"Обратите внимание, что температура сопла, температура нагреваемого стола и " +"максимальная объёмная скорость существенно влияют на качество печати. " +"Пожалуйста, тщательнее подбирайте настройки." msgid "" "\n" @@ -15538,6 +15682,8 @@ msgstr "Пожалуйста, выберите то, что вы хотите э msgid "Failed to create temporary folder, please try Export Configs again." msgstr "" +"Не удалось создать временную папку, пожалуйста, попробуйте экспортировать " +"конфигурации ещё раз." msgid "Edit Filament" msgstr "Изменение прутка" @@ -15828,30 +15974,46 @@ msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"Стандартная высота слоя для сопла 0.2 мм. Маленькая высота слоя обеспечивает " +"практически незаметные слои и высокое качество печати. Подходит для " +"большинства обычных сценариев печати." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"По сравнению со стандартным профилем для сопла 0.2 мм, имеет более низкие " +"скорости и ускорения, а также задан гироидный шаблон заполнения. Это " +"обеспечивает гораздо более высокое качество печати, но приводит к " +"увеличивает время печати." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"По сравнению со стандартным профилем для сопла 0.2 мм, имеет немного большую " +"высоту слоя, что обеспечивает практически незаметные слои и немного " +"сокращает время печати." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"По сравнению со стандартным профилем для сопла 0.2 мм, имеет наибольшую " +"высоту слоя, слои становятся немного более заметными, но при этом " +"сокращается время печати." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"По сравнению со стандартным профилем для сопла 0.2 мм, имеет меньшую высоту " +"слоя, что обеспечивает практически незаметные слои и более высокое качество " +"печати, но при этом увеличивается время печати." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15859,12 +16021,19 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"По сравнению со стандартным профилем для сопла 0.2 мм, имеет меньшую высоту " +"слоя, более низкие скорости и ускорения, а также задан гироидный шаблон " +"заполнения. Это обеспечивает практически невидимые слои и более высокое " +"качество печати, но при этом значительно увеличивается время печати." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"По сравнению со стандартным профилем для сопла 0.2 мм, имеет наименьшую " +"высоту слоя, что обеспечивает незаметные слои и гораздо более высокое " +"качество печати, но при этом увеличивается время печати." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15872,35 +16041,54 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"По сравнению со стандартным профилем для сопла 0.2 мм, имеет наименьшую " +"высоту слоя, более низкие скорости и ускорения, а также задан гироидный " +"шаблон заполнения. Это обеспечивает незаметные слои и наилучшее качество " +"печати, но при этом значительно увеличивается время печати." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"Стандартная высота слоя для сопла 0.4 мм, обеспечивающая нормальное качество " +"печати, подходящее для большинства обычных сценариев печати." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"По сравнению со стандартным профилем для сопла 0.4 мм, имеет больше " +"периметров и более высокую плотность заполнения. Это приводит к повышению " +"прочности напечатанного, но при этом увеличивается расход материала и время " +"печати." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"По сравнению со стандартным профилем для сопла 0.4 мм, имеет большую высоту " +"слоя. Как результат - более заметные слои и снижение качества печати, но при " +"этом немного сокращается время печати." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"По сравнению со стандартным профилем для сопла 0.4 мм, имеет большую высоту " +"слоя. Как результат - более заметные слои, снижение качества печати, но при " +"этом сокращается время печати." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"По сравнению с профилем по умолчанию для соплом 0.4 мм, имеет меньшую высоту " +"слоя. Как результат - менее заметные слои, более высокое качество печати, но " +"при этом увеличивается время печати." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15908,12 +16096,19 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"По сравнению с профилем по умолчанию для соплом 0.4 мм, имеет меньшую высоту " +"слоя, более низкие скорости и ускорения, а также задан гироидный шаблон " +"заполнения. Как результат - менее заметные слои и гораздо более высокое " +"качество печати, но при этом заметно увеличивается время печати." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"По сравнению с профилем по умолчанию для соплом 0.4 мм, имеет меньшую высоту " +"слоя. Как результат - почти незначительные слои и более высокое качество " +"печати, но при этом увеличивается время печати." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15921,64 +16116,98 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"По сравнению с профилем по умолчанию для соплом 0.4 мм, имеет наименьшую " +"высоту слоя, более низкие скорость и ускорение, а также задан гироидный " +"шаблон заполнения. Как результат - почти незаметные слои и гораздо более " +"высокое качество печати, но при этом значительно увеличивается время печати." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"По сравнению с профилем по умолчанию для соплом 0.4 мм, имеет наименьшую " +"высоту слоя. Как результат - почти незначительные слои, но при этом " +"увеличивается время печати." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"Стандартная высота слоя для сопла 0.6 мм. Большая высота слоя, как результат " +"- видимые слои при нормальном качестве и времени печати." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"По сравнению с профилем по умолчанию для соплом 0.6 мм, имеет больше " +"периметров и более высокую плотность заполнения. Это приводит к повышению " +"прочности напечатанного, но увеличивает расход материала и время печати." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"По сравнению с профилем по умолчанию для соплом 0.6 мм, имеет большую высоту " +"слоя. Как результат - более заметные слои и снижение качества печати, но при " +"этом в некоторых случаях сокращается время печати." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"По сравнению с профилем по умолчанию для соплом 0.6 мм, имеет большую высоту " +"слоя. Как результат - более заметные слои и значительное снижение качества " +"печати, но при этом в некоторых случаях сокращается время печати." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"По сравнению с профилем по умолчанию для соплом 0.6 мм, имеет меньшую высоту " +"слоя. Как результат - менее заметные слои и незначительное повышению " +"качества печати, но при этом увеличивается время печати." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"По сравнению с профилем по умолчанию для соплом 0.6 мм, имеет меньшую высоту " +"слоя. Как результат - менее заметные слои и более высокое качество печати, " +"но при этом увеличивается время печати." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"Стандартная высота слоя для сопла 0.8 мм. Очень большая высота слоя, как " +"результат - чётко видимые слои, низкое качество печати и обычное время " +"печати." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"По сравнению со стандартным профилем для сопла 0.8 мм, имеет немного большую " +"высоту слоя. Как результат - чётко видимые слои и гораздо более низкое " +"качество печати, но при этом в некоторых случаях сокращается время печати." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"По сравнению со стандартным профилем для сопла 0.8 мм, имеет гораздо большую " +"высоту слоя. Как результат - очень заметные слои и значительно более низкое " +"качество печати, но при этом в некоторых случаях значительно сокращается " +"время печати." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -15986,12 +16215,19 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"По сравнению со стандартным профилем для сопла 0.8 мм, имеет немного меньшую " +"высоту слоя. Как результат - немного менее заметные слоя и немного более " +"высокое качество печати, но при этом в некоторых случаях увеличивается время " +"печати." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"По сравнению с профилем по умолчанию для сопла 0,8 мм, он имеет меньшую " +"высоту слоя, что приводит к меньшим, но все же заметным слоям и более " +"высокому качеству печати, и в некоторых случаях увеличению время печати." msgid "Connected to Obico successfully!" msgstr "Соединение с Obico успешно установлено." @@ -16429,6 +16665,9 @@ msgstr "" "ABS, повышение температуры подогреваемого стола может снизить эту " "вероятность?" +#~ msgid "V" +#~ msgstr "V" + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index 211673d710..be06e1fb9f 100644 --- a/localization/i18n/sv/OrcaSlicer_sv.po +++ b/localization/i18n/sv/OrcaSlicer_sv.po @@ -1,14 +1,15 @@ +# msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Localazy (https://localazy.com)\n" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" +"X-Generator: Localazy (https://localazy.com)\n" msgid "Supports Painting" msgstr "Färgläggning av Support" @@ -150,7 +151,7 @@ msgid "Height range" msgstr "Höjd intervall" msgid "Alt + Shift + Enter" -msgstr "" +msgstr "Alt + Skift + Enter" msgid "Toggle Wireframe" msgstr "Växla Wireframe" @@ -165,10 +166,10 @@ msgid "Height Range" msgstr "Höjd intervall" msgid "Vertical" -msgstr "" +msgstr "Vertikal" msgid "Horizontal" -msgstr "" +msgstr "Horisontell" msgid "Remove painted color" msgstr "Ta bort färgläggning" @@ -269,16 +270,16 @@ msgid "uniform scale" msgstr "enhetlig skala" msgid "Planar" -msgstr "" +msgstr "Platt" msgid "Dovetail" -msgstr "" +msgstr "Laxstjärt" msgid "Auto" msgstr "Auto" msgid "Manual" -msgstr "" +msgstr "Manuell" msgid "Plug" msgstr "Kontakt" @@ -287,7 +288,7 @@ msgid "Dowel" msgstr "Plugg" msgid "Snap" -msgstr "" +msgstr "Fäst" msgid "Prism" msgstr "" @@ -302,7 +303,7 @@ msgid "Hexagon" msgstr "Hexagon" msgid "Keep orientation" -msgstr "" +msgstr "Behåll orienteringen" msgid "Place on cut" msgstr "Placera på snitt" @@ -326,19 +327,19 @@ msgstr "Form" #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "" +msgstr "Djup" msgid "Groove" -msgstr "" +msgstr "Spår" msgid "Width" msgstr "Bredd" msgid "Flap Angle" -msgstr "" +msgstr "Vinkel på klaff" msgid "Groove Angle" -msgstr "" +msgstr "Spårvinkel" msgid "Part" msgstr "Del" @@ -361,7 +362,7 @@ msgid "Move cut plane" msgstr "" msgid "Mode" -msgstr "" +msgstr "Läge" msgid "Change cut mode" msgstr "" @@ -409,7 +410,7 @@ msgid "Remove connectors" msgstr "Ta bort kontakterna" msgid "Bulge" -msgstr "" +msgstr "Utbuktning" msgid "Bulge proportion related to radius" msgstr "" @@ -518,7 +519,7 @@ msgid "Cut by Plane" msgstr "" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" -msgstr "" +msgstr "Icke-mångsidiga kanter orsakade av skärverktyg: vill du fixa det nu?" msgid "Repairing model object" msgstr "Reparerar modell objektet" @@ -616,13 +617,13 @@ msgid "Remove selection" msgstr "Ta bort val" msgid "Entering Seam painting" -msgstr "" +msgstr "Inmatning söm målning" msgid "Leaving Seam painting" -msgstr "" +msgstr "Lämnar söm målning" msgid "Paint-on seam editing" -msgstr "" +msgstr "Redigering av måla på sömmen" #. TRN - Input label. Be short as possible #. Select look of letter shape @@ -761,7 +762,7 @@ msgstr "" msgctxt "EmbossOperation" msgid "Cut" -msgstr "" +msgstr "Beskär" msgid "Click to change part type into negative volume." msgstr "" @@ -903,19 +904,19 @@ msgstr "" msgctxt "Alignment" msgid "Left" -msgstr "" +msgstr "Vänster" msgctxt "Alignment" msgid "Center" -msgstr "" +msgstr "Center" msgctxt "Alignment" msgid "Right" -msgstr "" +msgstr "Höger" msgctxt "Alignment" msgid "Top" -msgstr "" +msgstr "Topplager" msgctxt "Alignment" msgid "Middle" @@ -923,7 +924,7 @@ msgstr "" msgctxt "Alignment" msgid "Bottom" -msgstr "" +msgstr "Bottenlager" msgid "Revert alignment." msgstr "" @@ -1235,43 +1236,43 @@ msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "" msgid "Vertex" -msgstr "" +msgstr "Vertex" msgid "Edge" -msgstr "" +msgstr "Edge" msgid "Plane" -msgstr "" +msgstr "Plane" msgid "Point on edge" -msgstr "" +msgstr "Point on edge" msgid "Point on circle" -msgstr "" +msgstr "Point on circle" msgid "Point on plane" -msgstr "" +msgstr "Point on plane" msgid "Center of edge" -msgstr "" +msgstr "Center of edge" msgid "Center of circle" -msgstr "" +msgstr "Center of circle" msgid "ShiftLeft mouse button" msgstr "" msgid "Select feature" -msgstr "" +msgstr "Select feature" msgid "Select point" -msgstr "" +msgstr "Select point" msgid "Delete" msgstr "Radera" msgid "Restart selection" -msgstr "" +msgstr "Restart selection" msgid "Esc" msgstr "Esc" @@ -1280,14 +1281,14 @@ msgid "Unselect" msgstr "" msgid "Measure" -msgstr "" +msgstr "Measure" msgid "Edit to scale" -msgstr "" +msgstr "Edit to scale" msgctxt "Verb" msgid "Scale" -msgstr "" +msgstr "Skala" msgid "None" msgstr "Ingen" @@ -1299,22 +1300,22 @@ msgid "Length" msgstr "Längd" msgid "Selection" -msgstr "" +msgstr "Selection" msgid "Copy to clipboard" msgstr "Kopiera till urklipp" msgid "Perpendicular distance" -msgstr "" +msgstr "Perpendicular distance" msgid "Distance" -msgstr "" +msgstr "Distance" msgid "Direct distance" -msgstr "" +msgstr "Direct distance" msgid "Distance XYZ" -msgstr "" +msgstr "Distance XYZ" msgid "Ctrl+" msgstr "Ctrl +" @@ -1353,9 +1354,6 @@ msgid "" msgstr "" "Konfigurations fil “%1%” har laddats, men vissa värden känns inte igen." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1448,11 +1446,14 @@ msgid "Choose one file (3mf):" msgstr "Välj en fil (3mf):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" -msgstr "" +msgstr "Välj en eller flera filer (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Välj en eller flera filer (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "" @@ -1490,9 +1491,11 @@ msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " "newly created user presets can only be used locally." msgstr "" +"Antalet användar inställningar som cachats i molnet har överskridit den övre " +"gränsen, nyskapade användar inställningar kan endast användas lokalt." msgid "Sync user presets" -msgstr "" +msgstr "Synkronisera användar inställningar" msgid "Loading user preset" msgstr "Laddar användarens förinställning" @@ -1521,6 +1524,11 @@ msgstr "Pågående uppladdningar" msgid "Select a G-code file:" msgstr "Välj en G-kod fil:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Importera fil" @@ -1655,16 +1663,16 @@ msgid "Cone" msgstr "Kon" msgid "Disc" -msgstr "" +msgstr "Skiva" msgid "Torus" -msgstr "" +msgstr "Torus" msgid "Orca Cube" msgstr "" msgid "3DBenchy" -msgstr "" +msgstr "3DBenchy" msgid "Autodesk FDM Test" msgstr "" @@ -1718,10 +1726,10 @@ msgid "Fix model" msgstr "Fixa modell" msgid "Export as one STL" -msgstr "" +msgstr "Exportera som en STL" msgid "Export as STLs" -msgstr "" +msgstr "Exportera som STL" msgid "Reload from disk" msgstr "Ladda om från disk" @@ -1794,10 +1802,10 @@ msgid "Assemble the selected objects to an object with single part" msgstr "Montera de valda objekten till ett objekt med en enda del" msgid "Mesh boolean" -msgstr "" +msgstr "Mesh boolean" msgid "Mesh boolean operations including union and subtraction" -msgstr "" +msgstr "Mesh boolean operationer inklusive union och subtraktion" msgid "Along X axis" msgstr "Längs med X Axis" @@ -1941,7 +1949,7 @@ msgid "Lock" msgstr "Lås" msgid "Edit Plate Name" -msgstr "" +msgstr "Redigera plattans namn" msgid "Name" msgstr "Namn" @@ -2001,7 +2009,7 @@ msgid "Error!" msgstr "Fel!" msgid "Failed to get the model data in the current file." -msgstr "" +msgstr "Det gick inte att hämta modelldata i den aktuella filen." msgid "Generic" msgstr "Allmän" @@ -2247,7 +2255,7 @@ msgid "Pause" msgstr "Paus" msgid "Template" -msgstr "" +msgstr "Mall" msgid "Custom" msgstr "Custom" @@ -2298,7 +2306,7 @@ msgid "Change filament at the beginning of this layer." msgstr "Byt filament i början av detta lager." msgid "Delete Pause" -msgstr "" +msgstr "Ta bort paus" msgid "Delete Custom Template" msgstr "Radera anpassad mall" @@ -2316,7 +2324,7 @@ msgid "No printer" msgstr "Ingen skrivare" msgid "..." -msgstr "" +msgstr "..." msgid "Failed to connect to the server" msgstr "Uppkoppling till servern misslyckades" @@ -2349,7 +2357,7 @@ msgid "?" msgstr " ?" msgid "/" -msgstr "" +msgstr "/" msgid "Empty" msgstr "Tom" @@ -2358,13 +2366,13 @@ msgid "AMS" msgstr "AMS" msgid "Auto Refill" -msgstr "" +msgstr "Auto Refill" msgid "AMS not connected" msgstr "AMS ej ansluten" msgid "Load" -msgstr "" +msgstr "Load" msgid "Unload" msgstr "Mata ut" @@ -2394,7 +2402,7 @@ msgid "Cancel calibration" msgstr "Avbryt kalibrering" msgid "Idling..." -msgstr "" +msgstr "Tomgång..." msgid "Heat the nozzle" msgstr "Värm upp nozzle" @@ -2412,13 +2420,13 @@ msgid "Purge old filament" msgstr "Rensa gammalt filament" msgid "Feed Filament" -msgstr "" +msgstr "Mata filament" msgid "Confirm extruded" -msgstr "" +msgstr "Bekräfta extruderad" msgid "Check filament location" -msgstr "" +msgstr "Kontrollera filamentets placering" msgid "Grab new filament" msgstr "Ta ett nytt filament" @@ -2427,6 +2435,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Välj ett AMS fack och tryck sedan på knappen \"Ladda\" eller \"Mata ut\" för " +"att automatiskt ladda eller mata ut filament." msgid "Edit" msgstr "Redigera" @@ -2505,7 +2515,7 @@ msgid "Orienting canceled." msgstr "" msgid "Filling" -msgstr "" +msgstr "Fyllnad" msgid "Bed filling canceled." msgstr "Byggplattans fyllning avbruten." @@ -2591,7 +2601,7 @@ msgid "Sending print job through cloud service" msgstr "Skicka utskriftsjobb via molntjänst" msgid "Print task sending times out." -msgstr "" +msgstr "Timeout för sändning av utskriftsuppgift." msgid "Service Unavailable" msgstr "Tjänsten är inte tillgänglig" @@ -2609,7 +2619,7 @@ msgstr "" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" -msgstr "" +msgstr "Skickat. Hoppar automatiskt till nästa sida in%s s" msgid "An SD card needs to be inserted before printing via LAN." msgstr "Ett Micro SD-kort måste sättas i innan utskrift via LAN." @@ -2769,10 +2779,10 @@ msgid "Setting AMS slot information while printing is not supported" msgstr "Inställning av AMS-facks information under utskrift stöds inte" msgid "Factors of Flow Dynamics Calibration" -msgstr "" +msgstr "Faktorer för kalibrering av flödesdynamik" msgid "PA Profile" -msgstr "" +msgstr "PA profil" msgid "Factor K" msgstr "Faktor K" @@ -2790,10 +2800,10 @@ msgid "You need to select the material type and color first." msgstr "Du måste först välja materialtyp och färg." msgid "Please input a valid value (K in 0~0.3)" -msgstr "" +msgstr "Ange ett giltigt värde (K i 0~0.3)" msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" -msgstr "" +msgstr "Ange ett giltigt värde (K i 0~0.3, N i 0.6~2.0)" msgid "Other Color" msgstr "Annan färg" @@ -2900,7 +2910,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "Skriv ut med filament på en extern spole" msgid "Current Cabin humidity" -msgstr "" +msgstr "Current Cabin humidity" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2908,6 +2918,10 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"Please change the desiccant when it is too wet. The indicator may not " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It takes a few hours to absorb the moisture, and " +"low temperatures also slow down the process." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -2940,16 +2954,19 @@ msgid "" "When the current material run out, the printer will continue to print in the " "following order." msgstr "" +"När det aktuella materialet tar slut, fortsätter printern att skriva ut " +"material i följande ordning." msgid "Group" msgstr "Grupp" msgid "The printer does not currently support auto refill." -msgstr "" +msgstr "Printern stöder för närvarande inte automatisk påfyllning." msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "" +"AMS filament backup is not enabled; please enable it in the AMS settings." msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " @@ -2957,12 +2974,16 @@ msgid "" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" +"If there are two identical filaments in an AMS, AMS filament backup will be " +"enabled. \n" +"(This currently supports automatic supply of consumables with the same " +"brand, material type, and color)" msgid "DRY" -msgstr "" +msgstr "DRY" msgid "WET" -msgstr "" +msgstr "WET" msgid "AMS Settings" msgstr "AMS Inställningar" @@ -2981,6 +3002,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"Obs: Om ett nytt filament sätts in under utskriften kommer AMS inte att " +"automatiskt läsa av någon information förrän utskriften är klar." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3032,12 +3055,14 @@ msgstr "" "när det aktuella filamentet tar slut." msgid "Air Printing Detection" -msgstr "" +msgstr "Air Printing Detection" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"Detects clogging and filament grinding, halting printing immediately to " +"conserve time and filament." msgid "File" msgstr "Fil" @@ -3114,7 +3139,7 @@ msgid "Running post-processing scripts" msgstr "Kör efterbearbetnings skript" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." msgstr "" @@ -3181,10 +3206,10 @@ msgid "Device" msgstr "Enhet" msgid "Task Sending" -msgstr "" +msgstr "Task Sending" msgid "Task Sent" -msgstr "" +msgstr "Task Sent" msgid "Edit multiple printers" msgstr "" @@ -3204,7 +3229,7 @@ msgid "Offline" msgstr "Offline" msgid "No task" -msgstr "" +msgstr "No task" msgid "View" msgstr "Vy" @@ -3216,16 +3241,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "" +msgstr "Device Name" msgid "Task Name" -msgstr "" +msgstr "Task Name" msgid "Device Status" -msgstr "" +msgstr "Device Status" msgid "Actions" -msgstr "" +msgstr "Actions" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3268,7 +3293,7 @@ msgid "Pending" msgstr "" msgid "Sending" -msgstr "" +msgstr "Skickar" msgid "Sending Finish" msgstr "" @@ -3295,25 +3320,25 @@ msgid "Stop" msgstr "Stopp" msgid "Task Status" -msgstr "" +msgstr "Task Status" msgid "Sent Time" -msgstr "" +msgstr "Sent Time" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "There are no tasks to be sent!" msgid "No historical tasks!" -msgstr "" +msgstr "No historical tasks!" msgid "Loading..." msgstr "Laddar..." msgid "No AMS" -msgstr "" +msgstr "No AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "Send to Multi-device" msgid "Preparing print job" msgstr "Förbereder utskriftsjobb" @@ -3328,22 +3353,31 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "" +msgstr "Use External Spool" msgid "Use AMS" -msgstr "" +msgstr "Use AMS" msgid "Select Printers" -msgstr "" +msgstr "Select Printers" msgid "Ams Status" -msgstr "" +msgstr "AMS Status" msgid "Printing Options" +msgstr "Printing Options" + +msgid "Bed Leveling" +msgstr "Justering av Byggplattan" + +msgid "Timelapse" +msgstr "Timelapse" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "Send Options" msgid "Send" msgstr "Skicka" @@ -3352,13 +3386,16 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"printers at the same time. (It depends on how many devices can undergo " +"heating at the same time.)" msgid "Wait" -msgstr "" +msgstr "Wait" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Name is invalid;" msgstr "Namnet är ogiltligt;" @@ -3455,14 +3492,18 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" +"Den rekommenderade lägsta temperaturen är lägre än 190 grader eller den " +"rekommenderade max temperaturen är högre än 300 grader.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" +"The recommended minimum temperature cannot be higher than the recommended " +"maximum temperature.\n" msgid "Please check.\n" -msgstr "" +msgstr "Kontrollera.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3494,6 +3535,9 @@ msgid "" "it may result in material softening and clogging.The maximum safe " "temperature for the material is %d" msgstr "" +"Current chamber temperature is higher than the material's safe temperature; " +"this may result in material softening and nozzle clogs.The maximum safe " +"temperature for the material is %d" msgid "" "Too small layer height.\n" @@ -3613,7 +3657,7 @@ msgstr "" "skalets lager är 0, gles ifyllnad är 0 och timelapse typen är traditionell." msgid " But machines with I3 structure will not generate timelapse videos." -msgstr "" +msgstr " Maskiner med I3-struktur kan dock inte generera timelapse videor." msgid "" "Change these settings automatically? \n" @@ -3688,46 +3732,46 @@ msgid "Paused due to heat bed temperature malfunction" msgstr "Pausad på grund av fel i byggplattans temperatur" msgid "Filament unloading" -msgstr "" +msgstr "Utmatar filament" msgid "Skip step pause" -msgstr "" +msgstr "Hoppa över steg paus" msgid "Filament loading" -msgstr "" +msgstr "Laddning av filament" msgid "Motor noise calibration" -msgstr "" +msgstr "Kalibrering av motorljud" msgid "Paused due to AMS lost" -msgstr "" +msgstr "Pausad på grund av att AMS förlorats" msgid "Paused due to low speed of the heat break fan" -msgstr "" +msgstr "Pausad på grund av låg hastighet på heat break fläkten" msgid "Paused due to chamber temperature control error" -msgstr "" +msgstr "Pausad på grund av fel i styrningen av kammar temperaturen" msgid "Cooling chamber" -msgstr "" +msgstr "Kyler kammare" msgid "Paused by the Gcode inserted by user" -msgstr "" +msgstr "Pausad av G-koden som infogats av användaren" msgid "Motor noise showoff" -msgstr "" +msgstr "Uppvisning av motorljud" msgid "Nozzle filament covered detected pause" -msgstr "" +msgstr "Filament på nozzel upptäckt paus" msgid "Cutter error pause" -msgstr "" +msgstr "Fel på skärare paus" msgid "First layer error pause" -msgstr "" +msgstr "Fel på första lagret paus" msgid "Nozzle clog pause" -msgstr "" +msgstr "Stopp i nozzel paus" msgid "Unknown" msgstr "Okänd" @@ -3758,18 +3802,27 @@ msgid "" "45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" +"The current chamber temperature or the target chamber temperature exceeds " +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" +"TPU) is not allowed to be loaded." msgid "" "Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " "avoid extruder clogging,it is not allowed to set the chamber temperature " "above 45℃." msgstr "" +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " +"above 45℃." msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated. And the target chamber temperature will " "automatically be set to 0℃." msgstr "" +"When you set the chamber temperature below 40℃, the chamber temperature " +"control will not be activated, and the target chamber temperature will " +"automatically be set to 0℃." msgid "Failed to start printing job" msgstr "Det gick inte att starta utskriftsjobbet" @@ -3777,34 +3830,39 @@ msgstr "Det gick inte att starta utskriftsjobbet" msgid "" "This calibration does not support the currently selected nozzle diameter" msgstr "" +"Denna kalibrering stöder inte den för tillfället valda nozzle diametern" msgid "Current flowrate cali param is invalid" -msgstr "" +msgstr "Aktuell flödeshastighets kalibrerings parameter är ogiltig" msgid "Selected diameter and machine diameter do not match" -msgstr "" +msgstr "Vald diameter och maskinens diameter stämmer inte överens" msgid "Failed to generate cali gcode" -msgstr "" +msgstr "Misslyckades med att generera cali G kod" msgid "Calibration error" -msgstr "" +msgstr "Fel vid kalibrering" msgid "TPU is not supported by AMS." -msgstr "" +msgstr "TPU stöds inte av AMS." msgid "Bambu PET-CF/PA6-CF is not supported by AMS." -msgstr "" +msgstr "Bambu PET-CF/PA6-CF stöds inte av AMS." msgid "" "Damp PVA will become flexible and get stuck inside AMS,please take care to " "dry it before use." msgstr "" +"Fuktig PVA blir flexibel och fastnar i AMS, var noga med att torka den väl " +"före användning." msgid "" "CF/GF filaments are hard and brittle, It's easy to break or get stuck in " "AMS, please use with caution." msgstr "" +"CF/GF-trådar är hårda och spröda, så de kan lätt gå sönder eller fastna i en " +"AMS; använd dem med försiktighet." msgid "default" msgstr "standard" @@ -3887,7 +3945,7 @@ msgstr "Parameter validering" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "" +msgstr "Value %s is out of range. The valid range is from %d to %d." msgid "Value is out of range." msgstr "Värdet är utanför intervallet." @@ -3970,7 +4028,7 @@ msgid "Flushed" msgstr "Rensad" msgid "Tower" -msgstr "" +msgstr "Tower" msgid "Total" msgstr "Totalt" @@ -3982,7 +4040,7 @@ msgid "Total time" msgstr "Total tid" msgid "Total cost" -msgstr "" +msgstr "Total cost" msgid "up to" msgstr "upp till" @@ -4078,10 +4136,10 @@ msgid "Normal mode" msgstr "Normalt läge" msgid "Total Filament" -msgstr "" +msgstr "Total Filament" msgid "Model Filament" -msgstr "" +msgstr "Model Filament" msgid "Prepare time" msgstr "Förbered tid" @@ -4177,7 +4235,7 @@ msgid "Spacing" msgstr "Mellanrum" msgid "0 means auto spacing." -msgstr "" +msgstr "0 means auto spacing." msgid "Auto rotate for arrangement" msgstr "Auto rotera för arrangemang" @@ -4189,7 +4247,7 @@ msgid "Avoid extrusion calibration region" msgstr "Undvik kalibrerings området" msgid "Align to Y axis" -msgstr "" +msgstr "Justera mot Y-axeln" msgid "Add plate" msgstr "Lägg till byggplata" @@ -4255,7 +4313,7 @@ msgid "An object is layed over the boundary of plate." msgstr "Ett objekt är placerad över byggplattans begränsningar." msgid "A G-code path goes beyond the max print height." -msgstr "" +msgstr "En G-kod bana går utöver den maximala utskriftshöjden." msgid "A G-code path goes beyond the boundary of plate." msgstr "En G-kod väg passerar över byggplattans begränsningar." @@ -4282,10 +4340,10 @@ msgid "Bed leveling" msgstr "Justering av Byggplattan" msgid "Vibration compensation" -msgstr "" +msgstr "Vibrations kompensation" msgid "Motor noise cancellation" -msgstr "" +msgstr "Brusreducering av motorer" msgid "Calibration program" msgstr "Kalibrerings program" @@ -4312,7 +4370,7 @@ msgid "Calibrating" msgstr "Kalibrerar" msgid "No step selected" -msgstr "" +msgstr "Inget steg valt" msgid "Auto-record Monitoring" msgstr "Automatisk inspelning av övervakning" @@ -4321,7 +4379,7 @@ msgid "Go Live" msgstr "Sänd live" msgid "Liveview Retry" -msgstr "" +msgstr "Försök igen med Liveview" msgid "Resolution" msgstr "Upplösning" @@ -4379,7 +4437,7 @@ msgid "Preview" msgstr "Förhandsvisning" msgid "Multi-device" -msgstr "" +msgstr "Multi-device" msgid "Project" msgstr "Projekt" @@ -4525,6 +4583,12 @@ msgstr "Importera 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Ladda modell" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Importera konfiguration" @@ -4535,10 +4599,10 @@ msgid "Import" msgstr "Importera" msgid "Export all objects as one STL" -msgstr "" +msgstr "Exportera alla objekt som en STL" msgid "Export all objects as STLs" -msgstr "" +msgstr "Exportera alla objekt som STL" msgid "Export Generic 3MF" msgstr "Exportera generisk 3mf" @@ -4664,49 +4728,49 @@ msgid "Help" msgstr "Hjälp" msgid "Temperature Calibration" -msgstr "" +msgstr "Kalibrering av temperatur" msgid "Pass 1" -msgstr "" +msgstr "Pass 1" msgid "Flow rate test - Pass 1" -msgstr "" +msgstr "Test av flödeshastighet - Godkänt 1" msgid "Pass 2" -msgstr "" +msgstr "Pass 2" msgid "Flow rate test - Pass 2" -msgstr "" +msgstr "Test av flödeshastighet - Godkänt 2" msgid "Flow rate" -msgstr "" +msgstr "Flödeshastighet" msgid "Pressure advance" -msgstr "" +msgstr "Pressure advance" msgid "Retraction test" -msgstr "" +msgstr "Retraction test" msgid "Orca Tolerance Test" -msgstr "" +msgstr "Orca Tolerance Test" msgid "Max flowrate" -msgstr "" +msgstr "Max flödes hastighet" msgid "VFA" -msgstr "" +msgstr "VFA" msgid "More..." -msgstr "" +msgstr "Mer..." msgid "Tutorial" -msgstr "" +msgstr "Guide" msgid "Calibration help" -msgstr "" +msgstr "Hjälp med kalibrering" msgid "More calibrations" -msgstr "" +msgstr "Fler kalibreringar" msgid "&Open G-code" msgstr "&Öppna G-kod" @@ -4822,48 +4886,55 @@ msgid "Synchronization" msgstr "Synkronisering" msgid "The device cannot handle more conversations. Please retry later." -msgstr "" +msgstr "Enhetenen kan inte hantera fler konversationer. Försök igen senare." msgid "Player is malfunctioning. Please reinstall the system player." msgstr "" +"Spelaren fungerar inte som den ska. Vänligen installera om system spelaren." msgid "The player is not loaded, please click \"play\" button to retry." msgstr "" +"Spelaren är inte laddad; klicka på \"play\" knappen för att försöka igen." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "Kontrollera om printern är ansluten." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" +"Printern är upptagen med att ladda ner. Vänta tills nedladdningen är klar." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "Printerns kamera fungerar inte som den ska." msgid "Problem occured. Please update the printer firmware and try again." msgstr "" +"Ett problem har uppstått. Uppdatera printerns programvara och försök igen." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "Ange printerns IP för att ansluta." msgid "Initializing..." msgstr "Startar..." msgid "Connection Failed. Please check the network and try again" -msgstr "" +msgstr "Anslutningen misslyckades. Kontrollera nätverket och försök igen" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"Kontrollera nätverket och försök igen. Du kan starta om eller uppdatera " +"skrivaren om problemet kvarstår." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "Printern har loggats ut och kan inte anslutas." msgid "Stopped." msgstr "Avbruten." @@ -4921,9 +4992,6 @@ msgstr "Gruppera filer efter månad, senaste först." msgid "Show all files, recent first." msgstr "Visa alla filer, de senaste först." -msgid "Timelapse" -msgstr "Timelapse" - msgid "Switch to timelapse files." msgstr "Växla till timelapse filer." @@ -4955,7 +5023,7 @@ msgid "Refresh" msgstr "Uppdatera" msgid "Reload file list from printer." -msgstr "" +msgstr "Reload file list from printer." msgid "No printers." msgstr "Ingen printer." @@ -4968,10 +5036,10 @@ msgid "Loading file list..." msgstr "Laddar fil lista..." msgid "No files" -msgstr "" +msgstr "Inga filer" msgid "Load failed" -msgstr "" +msgstr "Load failed" msgid "Initialize failed (Device connection not ready)!" msgstr "Initieringen misslyckades (Enhets anslutningen är inte klar)!" @@ -4980,15 +5048,17 @@ msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"Browsing file in SD card is not supported in current firmware. Please update " +"the printer firmware." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "LAN Connection Failed (Failed to view sdcard)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "Browsing file in SD card is not supported in LAN Only Mode." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -5015,10 +5085,10 @@ msgid "Fetching model infomations ..." msgstr "Hämtar information om modellen..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "Det gick inte att hämta modellinformation från printern." msgid "Failed to parse model information." -msgstr "" +msgstr "Det gick inte att analysera modellinformation" msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -5034,6 +5104,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"File: %s\n" +"Title: %s\n" msgid "Download waiting..." msgstr "Nedladdning väntar..." @@ -5055,22 +5127,24 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"Reconnecting the printer, the operation cannot be completed immediately, " +"please try again later." msgid "File does not exist." -msgstr "" +msgstr "Filen finns inte." msgid "File checksum error. Please retry." -msgstr "" +msgstr "Fel på filens kontrollsumma. Vänligen försök igen." msgid "Not supported on the current printer version." -msgstr "" +msgstr "Stöds inte av den aktuella skrivarversionen." msgid "Storage unavailable, insert SD card." -msgstr "" +msgstr "Lagring saknas, sätt i SD-kort." #, c-format, boost-format msgid "Error code: %d" -msgstr "" +msgstr "Felkod: %d" msgid "Speed:" msgstr "Hastighet:" @@ -5127,17 +5201,21 @@ msgid "" "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." msgstr "" +"You have completed printing the mall model, \n" +"but synchronizing rating information has failed." msgid "How do you like this printing file?" -msgstr "" +msgstr "Vad tycker du om den här utskriftsfilen?" msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" msgstr "" +"(Modellen har redan betygsatts. Ditt betyg kommer att skriva över det " +"tidigare betyget.)" msgid "Rate" -msgstr "" +msgstr "Betygsätt" msgid "Camera" msgstr "Kamera" @@ -5155,7 +5233,7 @@ msgid "Control" msgstr "Kontroll" msgid "Printer Parts" -msgstr "" +msgstr "Printer Parts" msgid "Print Options" msgstr "Utskriftsalternativ" @@ -5212,6 +5290,7 @@ msgid "" "Please heat the nozzle to above 170 degree before loading or unloading " "filament." msgstr "" +"Värm nozzeln till över 170 grader innan du laddar eller matar ut filament." msgid "Still unload" msgstr "Matar ut fortfarande" @@ -5248,95 +5327,108 @@ msgid "Can't start this without SD card." msgstr "Kan inte starta utan MicroSD-kort." msgid "Rate the Print Profile" -msgstr "" +msgstr "Betygsätt utskriftsprofil" msgid "Comment" -msgstr "" +msgstr "Kommentera" msgid "Rate this print" -msgstr "" +msgstr "Betygsätt denna utskrift" msgid "Add Photo" -msgstr "" +msgstr "Lägg till en bild" msgid "Delete Photo" -msgstr "" +msgstr "Ta bort foto" msgid "Submit" -msgstr "" +msgstr "Skicka in" msgid "Please click on the star first." -msgstr "" +msgstr "Klicka på stjärnan först." msgid "InFo" -msgstr "" +msgstr "Info" msgid "Get oss config failed." -msgstr "" +msgstr "Hämta konfigurationen för oss misslyckades." msgid "Upload Pictrues" -msgstr "" +msgstr "Upload Pictures" msgid "Number of images successfully uploaded" -msgstr "" +msgstr "Antal bilder som laddats upp framgångsrikt" msgid " upload failed" -msgstr "" +msgstr " uppladdning misslyckades" msgid " upload config prase failed\n" -msgstr "" +msgstr " uppladdning av konfiguration misslyckades\n" msgid " No corresponding storage bucket\n" -msgstr "" +msgstr " Ingen motsvarande lagrings plats\n" msgid " can not be opened\n" -msgstr "" +msgstr " cannot be opened\n" msgid "" "The following issues occurred during the process of uploading images. Do you " "want to ignore them?\n" "\n" msgstr "" +"Följande problem uppstod under uppladdningen av bilder. Vill du ignorera " +"dem?\n" +"\n" msgid "info" msgstr "info" msgid "Synchronizing the printing results. Please retry a few seconds later." -msgstr "" +msgstr "Synkroniserar utskriftsresultaten. Försök igen om några sekunder." msgid "Upload failed\n" -msgstr "" +msgstr "Uppladdningen misslyckades\n" msgid "obtaining instance_id failed\n" -msgstr "" +msgstr "det gick inte att få instance_id\n" msgid "" "Your comment result cannot be uploaded due to some reasons. As follows:\n" "\n" " error code: " msgstr "" +"Your comment result cannot be uploaded due to the following reasons:\n" +"\n" +" error code: " msgid "error message: " -msgstr "" +msgstr "felmeddelande: " msgid "" "\n" "\n" "Would you like to redirect to the webpage for rating?" msgstr "" +"\n" +"\n" +"Would you like to redirect to the webpage to give a rating?" msgid "" "Some of your images failed to upload. Would you like to redirect to the " "webpage for rating?" msgstr "" +"Några av dina bilder kunde inte laddas upp. Vill du bli omdirigerad till " +"webbsidan för betygsättning?" msgid "You can select up to 16 images." -msgstr "" +msgstr "Du kan välja upp till 16 bilder." msgid "" "At least one successful print record of this print profile is required \n" "to give a positive rating(4 or 5stars)." msgstr "" +"At least one successful print record of this print profile is required \n" +"to give a positive rating (4 or 5 stars)." msgid "Status" msgstr "Status" @@ -5386,7 +5478,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "" +msgstr "Ladda ner betaversion" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5395,13 +5487,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "" +msgstr "Aktuell version: " msgid "Latest Version: " -msgstr "" +msgstr "Senaste versionen: " msgid "Not for now" -msgstr "" +msgstr "Not for now" msgid "3D Mouse disconnected." msgstr "3D mus bortkopplad." @@ -5428,10 +5520,10 @@ msgid "Details" msgstr "Detaljer" msgid "New printer config available." -msgstr "" +msgstr "Ny printer konfiguration tillgänglig." msgid "Wiki" -msgstr "" +msgstr "Wiki" msgid "Undo integration failed." msgstr "Återställande av integrationen misslyckades." @@ -5472,12 +5564,12 @@ msgstr[1] "" msgid "ERROR" msgstr "FEL" -msgid "CANCELED" -msgstr "Avbruten" - msgid "COMPLETED" msgstr "Klar" +msgid "CANCELED" +msgstr "Avbruten" + msgid "Cancel upload" msgstr "Avbryt uppladdning" @@ -5494,10 +5586,10 @@ msgid "Export successfully." msgstr "Exportering lyckades" msgid "Model file downloaded." -msgstr "" +msgstr "Modellfil nedladdad." msgid "Serious warning:" -msgstr "" +msgstr "Allvarlig varning:" msgid " (Repair)" msgstr " (Reparera)" @@ -5583,29 +5675,29 @@ msgid "Auto-recovery from step loss" msgstr "Automatisk återhämtning vid stegförlust" msgid "Allow Prompt Sound" -msgstr "" +msgstr "Tillåt Prompt Ljud" msgid "Filament Tangle Detect" -msgstr "" +msgstr "Filament Tangle Detection" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Nozzle Clumping Detection" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "" +msgstr "Check if the nozzle is clumping by filament or other foreign objects." msgid "Nozzle Type" -msgstr "" +msgstr "Nozzle Type" msgid "Stainless Steel" -msgstr "" +msgstr "Rostfritt stål" msgid "Hardened Steel" -msgstr "" +msgstr "Härdat stål" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "Global" @@ -5696,7 +5788,7 @@ msgid "Set filaments to use" msgstr "Ställ in filament som ska användas" msgid "Search plate, object and part." -msgstr "" +msgstr "Sök platta, objekt och del." msgid "" "No AMS filaments. Please select a printer in 'Device' page to load AMS info." @@ -5763,6 +5855,9 @@ msgid "" "clogged when printing this filament in a closed enclosure. Please open the " "front door and/or remove the upper glass." msgstr "" +"The current heatbed temperature is relatively high. The nozzle may clog when " +"printing this filament in a closed environment. Please open the front door " +"and/or remove the upper glass." msgid "" "The nozzle hardness required by the filament is higher than the default " @@ -5777,6 +5872,8 @@ msgid "" "Enabling traditional timelapse photography may cause surface imperfections. " "It is recommended to change to smooth mode." msgstr "" +"Aktivering av traditionell timelapse fotografering kan orsaka ojämnheter i " +"ytan. Det rekommenderas att ändra till jämnt läge." msgid "Expand sidebar" msgstr "" @@ -5820,26 +5917,30 @@ msgid "Please correct them in the param tabs" msgstr "Vänligen korrigera dem i Parameter flikarna" msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "" +msgstr "The 3mf has following modified G-code in filament or printer presets:" msgid "" "Please confirm that these modified G-codes are safe to prevent any damage to " "the machine!" msgstr "" +"Bekräfta att dessa modifierade G-koder är säkra för att förhindra skador på " +"maskinen!" msgid "Modified G-codes" -msgstr "" +msgstr "Modified G-code" msgid "The 3mf has following customized filament or printer presets:" -msgstr "" +msgstr "3mf har följande anpassade filament eller inställningar för printern:" msgid "" "Please confirm that the G-codes within these presets are safe to prevent any " "damage to the machine!" msgstr "" +"Bekräfta att G-koderna i dessa inställningar är säkra för att förhindra " +"skador på maskinen!" msgid "Customized Preset" -msgstr "" +msgstr "Anpassad inställning" msgid "Name of components inside step file is not UTF8 format!" msgstr "Komponent namnet i step filen är inte UTF8 format!" @@ -5907,22 +6008,24 @@ msgid "Export STL file:" msgstr "Exportera STL-fil:" msgid "Export AMF file:" -msgstr "" +msgstr "Exportera AMF-fil:" msgid "Save file as:" msgstr "Spara fil som:" msgid "Export OBJ file:" -msgstr "" +msgstr "Exportera OBJ-fil:" #, c-format, boost-format msgid "" "The file %s already exists\n" "Do you want to replace it?" msgstr "" +"The file %s already exists.\n" +"Do you want to replace it?" msgid "Comfirm Save As" -msgstr "" +msgstr "Bekräfta Spara som" msgid "Delete object which is a part of cut object" msgstr "Radera objekt som är en del av det utskurna objektet" @@ -5943,13 +6046,13 @@ msgid "Another export job is running." msgstr "En annan exportering pågår." msgid "Unable to replace with more than one volume" -msgstr "" +msgstr "Går inte att ersätta med mer än en volym" msgid "Error during replace" msgstr "Fel vid byte" msgid "Replace from:" -msgstr "" +msgstr "Ersätt från:" msgid "Select a new file" msgstr "Välj en ny fil" @@ -5961,19 +6064,19 @@ msgid "Please select a file" msgstr "Välj en fil" msgid "Do you want to replace it" -msgstr "" +msgstr "Do you want to replace it?" msgid "Message" -msgstr "" +msgstr "Meddelande" msgid "Reload from:" -msgstr "" +msgstr "Ladda om från:" msgid "Unable to reload:" -msgstr "" +msgstr "Det gick inte att ladda om:" msgid "Error during reload" -msgstr "" +msgstr "Fel vid omladdning" msgid "There are warnings after slicing models:" msgstr "Varningar efter beredning:" @@ -6037,13 +6140,13 @@ msgid "prepare 3mf file..." msgstr "förbereder 3mf-filen..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "Download failed; unknown file format." msgid "downloading project ..." msgstr "laddar ner projekt ..." msgid "Download failed, File size exception." -msgstr "" +msgstr "Download failed; File size exception." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6066,6 +6169,20 @@ msgstr "Innehåller ingen giltlig G-kod." msgid "Error occurs while loading G-code file" msgstr "Fel uppstod vid laddningen av G-kod" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Släpp projekt filen" @@ -6106,13 +6223,13 @@ msgid "Save G-code file as:" msgstr "Spara G-kod som:" msgid "Save SLA file as:" -msgstr "" +msgstr "Spara SLA fil som:" msgid "The provided file name is not valid." -msgstr "" +msgstr "Det angivna filnamnet är inte giltigt." msgid "The following characters are not allowed by a FAT file system:" -msgstr "" +msgstr "Följande tecken är inte tillåtna i ett FAT-fil system:" msgid "Save Sliced file as:" msgstr "Spara beredningen som:" @@ -6129,22 +6246,24 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try agian." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "Reason: part \"%1%\" is empty." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "Reason: part \"%1%\" does not bound a volume." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "Reason: part \"%1%\" has self intersection." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "Reason: \"%1%\" and another part have no intersection." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6192,7 +6311,7 @@ msgstr "Antal för tillfället valda delar: %1%\n" #, boost-format msgid "Number of currently selected objects: %1%\n" -msgstr "" +msgstr "Antal för närvarande markerade objekt: %1%\n" #, boost-format msgid "Part name: %1%\n" @@ -6322,6 +6441,9 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"På OSX körs alltid bara en instans av appen som standard. Det är dock " +"tillåtet att köra flera instanser av samma app från kommandoraden. I sådana " +"fall tillåter denna inställning endast en instans." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6385,17 +6507,17 @@ msgid "If enabled, useful hints are displayed at startup." msgstr "Om aktiverad visas användbara tips vid start." msgid "Flushing volumes: Auto-calculate everytime the color changed." -msgstr "" +msgstr "Rensnings volymer: Beräkna automatiskt varje gång färgen ändras." msgid "If enabled, auto-calculate everytime the color changed." -msgstr "" +msgstr "Om aktiverat, beräkna automatiskt varje gång färgen ändras." msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "" +msgstr "Flushing volumes: Auto-calculate every time the filament is changed." msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "" +msgstr "If enabled, auto-calculate every time filament is changed" msgid "Remember printer configuration" msgstr "" @@ -6412,6 +6534,8 @@ msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." msgid "Network" msgstr "" @@ -6454,6 +6578,20 @@ msgstr "Associera .step/.stp-filer till OrcaSlicer" msgid "If enabled, sets OrcaSlicer as default application to open .step files" msgstr "Om aktiverad, väljs Orca Slicer som standard att öppna .step filer" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Maximalt antal nyligen genomförda projekt" @@ -6464,7 +6602,7 @@ msgid "Clear my choice on the unsaved projects." msgstr "Rensa mitt val för de osparade projekten." msgid "No warnings when loading 3MF with modified G-codes" -msgstr "" +msgstr "No warnings when loading 3MF with modified G-code" msgid "Auto-Backup" msgstr "Auto Säkerhetskopiera" @@ -6620,25 +6758,25 @@ msgid "Add/Remove materials" msgstr "Lägg till/Ta bort material" msgid "Select/Remove printers(system presets)" -msgstr "" +msgstr "Välj/ta bort printer(systemet inställningar)" msgid "Create printer" -msgstr "" +msgstr "Skapa printer" msgid "The selected preset is null!" -msgstr "" +msgstr "Den valda förinställningen är noll!" msgid "End" -msgstr "" +msgstr "End" msgid "Customize" -msgstr "" +msgstr "Anpassa" msgid "Other layer filament sequence" -msgstr "" +msgstr "Other layer filament sequence" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "Please input layer value (>= 2)." msgid "Plate name" msgstr "Plattans namn" @@ -6650,16 +6788,16 @@ msgid "Print sequence" msgstr "Utskrifts sekvens" msgid "Same as Global" -msgstr "" +msgstr "Same as Global" msgid "Disable" -msgstr "" +msgstr "Disable" msgid "Spiral vase" msgstr "Spiral vas" msgid "First layer filament sequence" -msgstr "" +msgstr "Första lagrets filament sekvens" msgid "Same as Global Plate Type" msgstr "Samma som Global Bed Type" @@ -6776,7 +6914,7 @@ msgid "(LAN)" msgstr "(LAN)" msgid "Search" -msgstr "" +msgstr "Sök" msgid "My Device" msgstr "Min Enhet" @@ -6812,7 +6950,7 @@ msgid "Bambu Smooth PEI Plate" msgstr "" msgid "High temperature Plate" -msgstr "" +msgstr "Högtemperatur platta" msgid "Bambu Textured PEI Plate" msgstr "" @@ -6820,14 +6958,11 @@ msgstr "" msgid "Send print job to" msgstr "Skicka utskriftsjobb till" -msgid "Bed Leveling" -msgstr "Justering av Byggplattan" - msgid "Flow Dynamics Calibration" -msgstr "" +msgstr "Kalibrering av flödesdynamik" msgid "Click here if you can't connect to the printer" -msgstr "" +msgstr "Klicka här om du inte kan ansluta till printern" msgid "send completed" msgstr "Skicka komplett" @@ -6922,6 +7057,8 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"The selected printer (%s) is incompatible with the chosen printer profile in " +"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "Ett Micro SD-kort måste sättas i för att spela in en timelapse." @@ -6943,10 +7080,14 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" +"When spiral vase mode is enabled, machines with I3 structure will not " +"generate timelapse videos." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" +"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per objekt" +"\"." msgid "Errors" msgstr "Fel" @@ -6974,26 +7115,31 @@ msgstr "" #, c-format, boost-format msgid "nozzle in preset: %s %s" -msgstr "" +msgstr "nozzel i inställning: %s %s" #, c-format, boost-format msgid "nozzle memorized: %.1f %s" -msgstr "" +msgstr "nozzel memorerat: %.1f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"Your nozzle diameter in sliced file is not consistent with the saved nozzle. " +"If you changed your nozzle lately, please go to Device > Printer Parts to " +"change settings." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" msgstr "" +"Printing high temperature material(%s material) with %s may cause nozzle " +"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" +msgstr "Please fix the error above, otherwise printing cannot continue." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7003,20 +7149,24 @@ msgstr "" msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" +"Ansluter till skrivaren. Det går inte att avbryta under anslutnings " +"processen." msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." msgstr "" +"Varning! Flödes kalibrering på texturerade PEI plattor kan misslyckas på " +"grund av ytan." msgid "Automatic flow calibration using Micro Lidar" -msgstr "" +msgstr "Automatic flow calibration using the Micro Lidar" msgid "Modifying the device name" msgstr "Ändra enhetens namn" msgid "Bind with Pin Code" -msgstr "" +msgstr "Bind with Pin Code" msgid "Send to Printer SD card" msgstr "Skicka till skrivarens MicroSD-kort" @@ -7026,6 +7176,7 @@ msgstr "Det går inte att skicka utskriftsuppgiften när uppgraderingen pågår" msgid "The selected printer is incompatible with the chosen printer presets." msgstr "" +"Den valda skrivaren är inte kompatibel med de valda skrivar inställningarna." msgid "An SD card needs to be inserted before send to printer SD card." msgstr "Ett MicroSD-kort måste sättas i innan du skickar till skrivaren." @@ -7040,7 +7191,7 @@ msgid "Slice ok." msgstr "Beredning klar." msgid "View all Daily tips" -msgstr "" +msgstr "Visa alla dagliga tips" msgid "Failed to create socket" msgstr "Det gick inte att skapa uttaget" @@ -7073,21 +7224,23 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"Please Find the Pin Code in Account page on printer screen,\n" +" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "" +msgstr "Can't find Pin Code?" msgid "Pin Code" -msgstr "" +msgstr "Pin Code" msgid "Binding..." -msgstr "" +msgstr "Binding..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Please confirm on the printer screen" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "Log in failed. Please check the Pin Code." msgid "Log in printer" msgstr "Logga in skrivare" @@ -7210,7 +7363,7 @@ msgstr "" "utan prime tower. Vill du aktivera prime tower?" msgid "Still print by object?" -msgstr "" +msgstr "Fortfarande utskrift per objekt?" msgid "" "We have added an experimental style \"Tree Slim\" that features smaller " @@ -7269,15 +7422,17 @@ msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " "height limits ,this may cause printing quality issues." msgstr "" +"Lagerhöjden överskrider gränsen i Skrivarinställningar -> Extruder -> " +"Lagerhöjds gränser, detta kan orsaka problem med utskriftskvaliteten." msgid "Adjust to the set range automatically? \n" -msgstr "" +msgstr "Justera automatiskt till det inställda området? \n" msgid "Adjust" -msgstr "" +msgstr "Justera" msgid "Ignore" -msgstr "" +msgstr "Ignorera" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7285,6 +7440,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " +"printing complications." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7292,6 +7451,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications. Please use with the latest printer firmware." msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7362,7 +7525,7 @@ msgid "Acceleration" msgstr "Acceleration" msgid "Jerk(XY)" -msgstr "" +msgstr "Jerk(XY)" msgid "Raft" msgstr "Raft" @@ -7389,7 +7552,7 @@ msgid "Post-processing Scripts" msgstr "Skript för efterbehandling" msgid "Notes" -msgstr "" +msgstr "Notes" msgid "Frequent" msgstr "Återkommande" @@ -7465,13 +7628,16 @@ msgstr "" "värde på 0 betyder att filamentet inte stöder utskrift på Engineering Plate." msgid "Smooth PEI Plate / High Temp Plate" -msgstr "" +msgstr "Slät PEI platta / Högtemperaturs platta" msgid "" "Bed temperature when Smooth PEI Plate/High temperature plate is installed. " "Value 0 means the filament does not support to print on the Smooth PEI Plate/" "High Temp Plate" msgstr "" +"Bäddtemperatur när slät PEI-platta/Högtemperatur platta är installerad. " +"Värde 0 betyder att filamentet inte stöder utskrift på den släta PEI-plattan/" +"högtemperaturplattan" msgid "Textured PEI Plate" msgstr "Texturerad PEI-platta" @@ -7523,13 +7689,13 @@ msgid "Auxiliary part cooling fan" msgstr "Extra del kylnings fläkt" msgid "Exhaust fan" -msgstr "" +msgstr "Utsugs fläkt" msgid "During print" -msgstr "" +msgstr "Under utskrift" msgid "Complete print" -msgstr "" +msgstr "Komplett utskrift" msgid "Filament start G-code" msgstr "Filament start G-kod" @@ -7580,7 +7746,7 @@ msgid "Machine end G-code" msgstr "Maskin stop G-kod" msgid "Printing by object G-code" -msgstr "" +msgstr "Utskrift efter objekt G kod" msgid "Before layer change G-code" msgstr "Före lagerskifte G-kod" @@ -7589,7 +7755,7 @@ msgid "Layer change G-code" msgstr "Lagerskifte G-kod" msgid "Time lapse G-code" -msgstr "" +msgstr "Time lapse G-kod" msgid "Change filament G-code" msgstr "Byta filament G-kod" @@ -7641,9 +7807,12 @@ msgid "" "\n" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Disable it in order to enable Firmware Retraction?" msgid "Firmware Retraction" -msgstr "" +msgstr "Firmware Retraktion" msgid "Detached" msgstr "Fristående" @@ -7653,9 +7822,11 @@ msgid "" "%d Filament Preset and %d Process Preset is attached to this printer. Those " "presets would be deleted if the printer is deleted." msgstr "" +"%d Filament inställning och %d Process inställning är kopplade till denna " +"printer. Dessa inställningar raderas om printern raderas." msgid "Presets inherited by other presets can not be deleted!" -msgstr "" +msgstr "Inställningar som ärvts av andra inställningar kan inte raderas!" msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." @@ -7681,6 +7852,9 @@ msgid "" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" +"Är du säker på att du vill radera den valda inställningen? \n" +"Om inställningen motsvarar ett filament som för närvarande används på din " +"skrivare, vänligen återställ filament informationen för den platsen." #, boost-format msgid "Are you sure to %1% the selected preset?" @@ -7784,12 +7958,14 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "You have changed some settings of preset \"%1%\". " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"You can save or discard the preset values you have modified." msgid "" "\n" @@ -7798,7 +7974,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "" +msgstr "You have previously modified your settings." msgid "" "\n" @@ -7952,7 +8128,7 @@ msgid "Auto-Calc" msgstr "Autoberäkna" msgid "Re-calculate" -msgstr "" +msgstr "Utför beräkningen igen" msgid "Flushing volumes for filament change" msgstr "Rensnings volym för filament byte" @@ -7992,10 +8168,10 @@ msgid "To" msgstr "Till" msgid "Bambu Network plug-in not detected." -msgstr "" +msgstr "Bambu Network plug-in hittades inte." msgid "Click here to download it." -msgstr "" +msgstr "Klicka här för att ladda ner den." msgid "Login" msgstr "Logga in" @@ -8028,7 +8204,7 @@ msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Visa/Dölj 3Dconnexion enheternas inställnings dialogruta" msgid "Switch table page" -msgstr "" +msgstr "Byt tabellsida" msgid "Show keyboard shortcuts list" msgstr "Visa tangentbordets genvägs lista" @@ -8290,49 +8466,49 @@ msgid "New version of Orca Slicer" msgstr "Ny version av Orca Slicer" msgid "Skip this Version" -msgstr "" +msgstr "Hoppa över denna version" msgid "Done" msgstr "Klar" msgid "resume" -msgstr "" +msgstr "resume" msgid "Resume Printing" -msgstr "" +msgstr "Resume Printing" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Resume Printing (defects acceptable)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Resume Printing (problem solved)" msgid "Stop Printing" -msgstr "" +msgstr "Stop Printing" msgid "Check Assistant" -msgstr "" +msgstr "Check Assistant" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Filament Extruded, Continue" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Not Extruded Yet, Retry" msgid "Finished, Continue" -msgstr "" +msgstr "Finished, Continue" msgid "Load Filament" msgstr "Ladda Filament" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Filament Loaded, Resume" msgid "View Liveview" -msgstr "" +msgstr "View Liveview" msgid "Confirm and Update Nozzle" -msgstr "" +msgstr "Bekräfta och uppdatera nozzeln" msgid "LAN Connection Failed (Sending print file)" msgstr "LAN-anslutning misslyckades (skickar utskriftsfil)" @@ -8358,21 +8534,23 @@ msgid "Where to find your printer's IP and Access Code?" msgstr "Var hittar du skrivarens IP- och åtkomstkod?" msgid "Step 3: Ping the IP address to check for packet loss and latency." -msgstr "" +msgstr "Steg 3: Pinga IP-adressen för att kontrollera paketförlust och latens." msgid "Test" -msgstr "" +msgstr "Test" msgid "IP and Access Code Verified! You may close the window" -msgstr "" +msgstr "IP- och åtkomstkoder verifierade! Du kan stänga fönstret" msgid "Connection failed, please double check IP and Access Code" -msgstr "" +msgstr "Anslutningen misslyckades, kontrollera IP och åtkomstkod" msgid "" "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" msgstr "" +"Anslutningen misslyckades! Om din IP-adress och åtkomstkod är korrekta, \n" +"gå vidare till steg 3 för felsökning av nätverksproblem" msgid "Model:" msgstr "Modell:" @@ -8387,7 +8565,7 @@ msgid "Update firmware" msgstr "Uppdatera programvara" msgid "Beta version" -msgstr "" +msgstr "Betaversion" msgid "Latest version" msgstr "Senaste version" @@ -8748,26 +8926,33 @@ msgid "" msgstr "" msgid "Variable layer height is not supported with Organic supports." -msgstr "" +msgstr "Variabel lagerhöjd stöds inte med organiska support." msgid "" "Different nozzle diameters and different filament diameters is not allowed " "when prime tower is enabled." msgstr "" +"Olika nozzel diametrar och olika filament diametrar är inte tillåtna när " +"prime tower är aktiverat." msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" +"Wipe Tower stöds för närvarande endast med relativ extruder adressering " +"(use_relative_e_distances=1)." msgid "" "Ooze prevention is currently not supported with the prime tower enabled." msgstr "" +"Förebyggande av läckage stöds för närvarande inte med prime tower aktiverat." msgid "" "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" +"Prime Tower stöds för närvarande endast för G-kods varianterna Marlin, " +"RepRap/Sprinter, RepRapFirmware och Repetier." msgid "The prime tower is not supported in \"By object\" print." msgstr "Ett Prime Torn stöds inte i \"Per objekt\" utskrift." @@ -8988,11 +9173,13 @@ msgstr "" "format: https://username:password@your-octopi-address/" msgid "Device UI" -msgstr "" +msgstr "Enhetens gränssnitt" msgid "" "Specify the URL of your device user interface if it's not same as print_host" msgstr "" +"Ange webbadressen till enhetens användar gränssnitt om den inte är densamma " +"som printer värd" msgid "API Key / Password" msgstr "API Nyckel/Lösenord" @@ -9150,16 +9337,16 @@ msgid "Engineering Plate" msgstr "Engineering Plate" msgid "First layer print sequence" -msgstr "" +msgstr "Första lagrets utskrifts ordning" msgid "Other layers print sequence" -msgstr "" +msgstr "Other layers print sequence" msgid "The number of other layers print sequence" -msgstr "" +msgstr "The number of other layers print sequence" msgid "Other layers filament sequence" -msgstr "" +msgstr "Other layers filament sequence" msgid "This G-code is inserted at every layer change before lifting z" msgstr "Denna G-kod används för varje lager innan Z axis lyfts" @@ -9290,12 +9477,14 @@ msgid "" msgstr "" msgid "Top surface flow ratio" -msgstr "" +msgstr "Flödesförhållande för övre ytan" msgid "" "This factor affects the amount of material for top solid infill. You can " "decrease it slightly to have smooth surface finish" msgstr "" +"Denna faktor påverkar mängden material för den övre solida fyllningen. Du " +"kan minska den något för att få en jämn ytfinish." msgid "Bottom surface flow ratio" msgstr "" @@ -9439,7 +9628,7 @@ msgid "" msgstr "" msgid "mm/s or %" -msgstr "" +msgstr "mm/s eller %." msgid "External" msgstr "" @@ -9581,7 +9770,7 @@ msgid "Default process profile when switch to this machine profile" msgstr "Standard process profil vid byte till denna maskinens profil" msgid "Activate air filtration" -msgstr "" +msgstr "Activate air filtration" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" @@ -9593,6 +9782,8 @@ msgid "" "Speed of exhaust fan during printing.This speed will overwrite the speed in " "filament custom gcode" msgstr "" +"Hastighet för frånlufts fläkt under utskrift. Denna hastighet kommer att " +"åsidosätta hastigheten i filament anpassad g-kod" msgid "Speed of exhaust fan after printing completes" msgstr "" @@ -9699,12 +9890,14 @@ msgid "End G-code when finish the whole printing" msgstr "Lägg till slut G-kod när utskriften har avslutas" msgid "Between Object Gcode" -msgstr "" +msgstr "Mellan objekt G kod" msgid "" "Insert Gcode between objects. This parameter will only come into effect when " "you print your models object by object" msgstr "" +"Infoga G-kod mellan objekt. Denna parameter träder i kraft först när du " +"skriver ut dina modeller objekt för objekt." msgid "End G-code when finish the printing of this filament" msgstr "Lägg till slut G-kod när utskriften har avslutas med detta filament" @@ -9766,7 +9959,7 @@ msgid "Line pattern of bottom surface infill, not bridge infill" msgstr "Botten ytans ifyllnads linjemönster, inte bridge/brygg ifyllnad" msgid "Internal solid infill pattern" -msgstr "" +msgstr "Invändigt mönster för fyllning av solida ytor" msgid "" "Line pattern of internal solid infill. if the detect narrow internal solid " @@ -9786,7 +9979,7 @@ msgstr "" "hastigheten på inner vägg för att uppnå bättre kvalitet." msgid "Small perimeters" -msgstr "" +msgstr "Små perimetrar" msgid "" "This separate setting will affect the speed of perimeters having radius <= " @@ -9801,6 +9994,8 @@ msgstr "" msgid "" "This sets the threshold for small perimeter length. Default threshold is 0mm" msgstr "" +"Detta ställer in tröskelvärdet för liten perimeterlängd. Standardgränsen är " +"0mm" msgid "Walls printing order" msgstr "" @@ -9840,7 +10035,7 @@ msgid "Inner/Outer/Inner" msgstr "" msgid "Print infill first" -msgstr "" +msgstr "Printa fyllningen först" msgid "" "Order of wall/infill. When the tickbox is unchecked the walls are printed " @@ -9901,10 +10096,10 @@ msgstr "" "utskrift av flera objekt." msgid "Nozzle height" -msgstr "" +msgstr "Nozzel höjd" msgid "The height of nozzle tip." -msgstr "" +msgstr "Höjden på nozzel spetsen." msgid "Bed mesh min" msgstr "" @@ -9976,7 +10171,7 @@ msgstr "" "fin flat yta när visst överflöde eller underflöde finns" msgid "Enable pressure advance" -msgstr "" +msgstr "Aktivera pressure advance" msgid "" "Enable pressure advance, auto calibration result will be overwriten once " @@ -10021,10 +10216,10 @@ msgid "Default filament color" msgstr "Standard filament färg" msgid "Filament notes" -msgstr "" +msgstr "Filament notes" msgid "You can put your notes regarding the filament here." -msgstr "" +msgstr "You can put your notes regarding the filament here." msgid "Required nozzle HRC" msgstr "HRC nozzle krävs" @@ -10222,13 +10417,16 @@ msgstr "" "gränssnittet" msgid "Softening temperature" -msgstr "" +msgstr "Mjuknings temperatur" msgid "" "The material softens at this temperature, so when the bed temperature is " "equal to or greater than it, it's highly recommended to open the front door " "and/or remove the upper glass to avoid cloggings." msgstr "" +"The material softens at this temperature, so when the bed temperature is " +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogs." msgid "Price" msgstr "Pris" @@ -10240,10 +10438,10 @@ msgid "money/kg" msgstr "pris/kg" msgid "Vendor" -msgstr "" +msgstr "Leverantör" msgid "Vendor of filament. For show only" -msgstr "" +msgstr "Försäljare av filament. Endast för visning" msgid "(Undefined)" msgstr "(Oidentifierad)" @@ -10318,7 +10516,7 @@ msgid "Lightning" msgstr "Blixt" msgid "Cross Hatch" -msgstr "" +msgstr "Cross Hatch" msgid "Sparse infill anchor length" msgstr "" @@ -10386,12 +10584,14 @@ msgid "" msgstr "" msgid "mm/s² or %" -msgstr "" +msgstr "mm/s² or %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage (e." "g. 100%), it will be calculated based on the default acceleration." msgstr "" +"Acceleration av gles utfyllnad. Om värdet uttrycks som en procentsats (t.ex. " +"100%) kommer det att beräknas baserat på standard accelerationen." msgid "" "Acceleration of internal solid infill. If the value is expressed as a " @@ -10407,13 +10607,13 @@ msgstr "" "objektets fäste på byggplattan" msgid "Enable accel_to_decel" -msgstr "" +msgstr "Aktivera accel_to_decel" msgid "Klipper's max_accel_to_decel will be adjusted automatically" -msgstr "" +msgstr "Klippers max_accel_to_decel kommer att justeras automatiskt" msgid "accel_to_decel" -msgstr "" +msgstr "accel_to_decel" #, c-format, boost-format msgid "" @@ -10421,10 +10621,10 @@ msgid "" msgstr "" msgid "Jerk of outer walls" -msgstr "" +msgstr "Jerk ytterväggar" msgid "Jerk of inner walls" -msgstr "" +msgstr "Jerk innerväggar" msgid "Jerk for top surface" msgstr "" @@ -10548,7 +10748,7 @@ msgid "Whether to apply fuzzy skin on the first layer" msgstr "" msgid "Filter out tiny gaps" -msgstr "" +msgstr "Filtrera bort små luckor" msgid "Layers and Perimeters" msgstr "Lager och perimetrar" @@ -10564,13 +10764,16 @@ msgstr "" "linjebredd och bör skrivas ut långsammare" msgid "Precise Z height" -msgstr "" +msgstr "Precise Z height" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"Enable this to get precise z height of object after slicing. It will get the " +"precise object height by fine-tuning the layer heights of the last few " +"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "Arc passning" @@ -10639,10 +10842,10 @@ msgid "HRC" msgstr "HRC" msgid "Printer structure" -msgstr "" +msgstr "Printerns struktur" msgid "The physical arrangement and components of a printing device" -msgstr "" +msgstr "Den fysiska utformningen och komponenterna i en utskriftsenhet" msgid "CoreXY" msgstr "" @@ -10657,10 +10860,12 @@ msgid "Delta" msgstr "" msgid "Best object position" -msgstr "" +msgstr "Bästa position för objektet" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." msgstr "" +"Bästa automatiska arrangemangs position i intervallet [0,1] w.r.t. bäddens " +"form." msgid "" "Enable this option if machine has auxiliary part cooling fan. G-code " @@ -10706,7 +10911,7 @@ msgid "money/h" msgstr "" msgid "Support control chamber temperature" -msgstr "" +msgstr "Stöd för kontroll av kammarens temperatur" msgid "" "This option is enabled if machine support controlling chamber temperature\n" @@ -10714,7 +10919,7 @@ msgid "" msgstr "" msgid "Support air filtration" -msgstr "" +msgstr "Stödjer luftfiltrering" msgid "" "Enable this if printer support air filtration\n" @@ -10747,7 +10952,7 @@ msgid "" msgstr "" msgid "Exclude objects" -msgstr "" +msgstr "Exkludera objekt" msgid "Enable this option to add EXCLUDE OBJECT command in g-code" msgstr "" @@ -10807,25 +11012,31 @@ msgid "Speed of internal sparse infill" msgstr "Hastighet för sparsam ifyllnad" msgid "Interface shells" -msgstr "" +msgstr "Interface shells" 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 the generation of solid shells between adjacent materials/volumes. " +"Useful for multi-extruder prints with translucent materials or manual " +"soluble support material" msgid "Maximum width of a segmented region" -msgstr "" +msgstr "Maximal bredd för en segmenterad region" msgid "Maximum width of a segmented region. Zero disables this feature." msgstr "" +"Maximum width of a segmented region. A value of 0 disables this feature." msgid "Interlocking depth of a segmented region" -msgstr "" +msgstr "Sammanhängande djup i en segmenterad region" msgid "Interlocking depth of a segmented region. Zero disables this feature." msgstr "" +"Sammankopplingsdjup för en segmenterad region. Noll inaktiverar denna " +"funktion." msgid "Ironing Type" msgstr "Stryknings typ" @@ -11301,10 +11512,10 @@ msgid "" msgstr "" msgid "Printer notes" -msgstr "" +msgstr "Printer notes" msgid "You can put your notes regarding the printer here." -msgstr "" +msgstr "You can put your notes regarding the printer here." msgid "Raft contact Z distance" msgstr "Raft kontakt Z avstånd" @@ -11388,7 +11599,7 @@ msgstr "" "långa förflyttningar. Sätt på 0 för att inaktivera retraktion" msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "Long retraction when cut (experimental)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -11396,14 +11607,20 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge.While this reduces flush " +"significantly, it may also raise the risk of nozzle clogs or other printing " +"problems." msgid "Retraction distance when cut" -msgstr "" +msgstr "Retraction distance when cut" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" msgstr "" +"Experimental feature. Retraction length before cutting off during filament " +"change" msgid "Z hop when retract" msgstr "Z hopp vid retraktion" @@ -11419,20 +11636,24 @@ msgstr "" "strängning" msgid "Z hop lower boundary" -msgstr "" +msgstr "Z hopp nedre gräns" msgid "" "Z hop will only come into effect when Z is above this value and is below the " "parameter: \"Z hop upper boundary\"" msgstr "" +"Z hop kommer endast att träda i kraft när Z är över detta värde och är under " +"parametern: \"Övre gräns för Z-hopp\"" msgid "Z hop upper boundary" -msgstr "" +msgstr "Z hopp övre gräns" msgid "" "If this value is positive, Z hop will only come into effect when Z is above " "the parameter: \"Z hop lower boundary\" and is below this value" msgstr "" +"Om detta värde är positivt kommer Z hop endast att träda i kraft när Z är " +"över parametern: \"Z hop nedre gräns\" och är under detta värde" msgid "Z hop type" msgstr "" @@ -11480,7 +11701,7 @@ msgid "Top and Bottom" msgstr "" msgid "Extra length on restart" -msgstr "" +msgstr "Extra längd vid omstart" msgid "" "When the retraction is compensated after the travel move, the extruder will " @@ -11510,7 +11731,7 @@ msgstr "" "retraktionen" msgid "Use firmware retraction" -msgstr "" +msgstr "Använd firmware retraktion" msgid "" "This experimental setting uses G10 and G11 commands to have the firmware " @@ -11554,7 +11775,7 @@ msgid "" msgstr "" msgid "Seam gap" -msgstr "" +msgstr "Sömmens mellanrum" msgid "" "In order to reduce the visibility of the seam in a closed loop extrusion, " @@ -11568,17 +11789,20 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" +"Use scarf joint to minimize seam visibility and increase seam strength." msgid "Conditional scarf joint" -msgstr "" +msgstr "Conditional scarf joint" msgid "" "Apply scarf joints only to smooth perimeters where traditional seams do not " "conceal the seams at sharp corners effectively." msgstr "" +"Apply scarf joints only to smooth perimeters where traditional seams do not " +"conceal the seams at sharp corners effectively." msgid "Conditional angle threshold" -msgstr "" +msgstr "Conditional angle threshold" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -11621,39 +11845,44 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "" +msgstr "Scarf start height" msgid "" "Start height of the scarf.\n" "This amount can be specified in millimeters or as a percentage of the " "current layer height. The default value for this parameter is 0." msgstr "" +"Start height of the scarf.\n" +"This amount can be specified in millimeters or as a percentage of the " +"current layer height. The default value for this parameter is 0." msgid "Scarf around entire wall" -msgstr "" +msgstr "Scarf around entire wall" msgid "The scarf extends to the entire length of the wall." -msgstr "" +msgstr "The scarf extends to the entire length of the wall." msgid "Scarf length" -msgstr "" +msgstr "Scarf length" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" +"Length of the scarf. Setting this parameter to zero effectively disables the " +"scarf." msgid "Scarf steps" -msgstr "" +msgstr "Scarf steps" msgid "Minimum number of segments of each scarf." -msgstr "" +msgstr "Minimum number of segments of each scarf." msgid "Scarf joint for inner walls" -msgstr "" +msgstr "Scarf joint for inner walls" msgid "Use scarf joint for inner walls as well." -msgstr "" +msgstr "Use scarf joint for inner walls as well." msgid "Role base wipe speed" msgstr "" @@ -11688,7 +11917,7 @@ msgid "" msgstr "" msgid "Wipe speed" -msgstr "" +msgstr "Hastighet för avtorkning" msgid "" "The wipe speed is determined by the speed setting specified in this " @@ -11696,6 +11925,10 @@ msgid "" "be calculated based on the travel speed setting above.The default value for " "this parameter is 80%" msgstr "" +"Torkhastigheten bestäms av den hastighetsinställning som anges i denna " +"konfiguration. Om värdet uttrycks i procent (t.ex. 80%), kommer det att " +"beräknas baserat på inställningen för förflyttnings hastigheten ovan. " +"Standardvärdet för denna parameter är 80%" msgid "Skirt distance" msgstr "Skirt avstånd" @@ -11791,20 +12024,24 @@ msgstr "" "solida bottenlager. Den slutgiltligt genererade modellen har ingen söm" msgid "Smooth Spiral" -msgstr "" +msgstr "Smooth Spiral" msgid "" "Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " "at all, even in the XY directions on walls that are not vertical" msgstr "" +"Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " +"at all, even in the XY directions on walls that are not vertical" msgid "Max XY Smoothing" -msgstr "" +msgstr "Max XY Smoothing" msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiralIf " "expressed as a %, it will be computed over nozzle diameter" msgstr "" +"Maximum distance to move points in XY to try to achieve a smooth spiral. If " +"expressed as a %, it will be computed over nozzle diameter" msgid "" "If smooth or traditional mode is selected, a timelapse video will be " @@ -11983,10 +12220,10 @@ msgstr "" "utskjutande detaljer etc." msgid "Remove small overhangs" -msgstr "" +msgstr "Ta bort små överhäng" msgid "Remove small overhangs that possibly need no supports." -msgstr "" +msgstr "Ta bort små överhäng som eventuellt inte behöver stöd." msgid "Top Z distance" msgstr "Topp Z-distans" @@ -12012,11 +12249,13 @@ msgstr "" "specifik filament för support, och nuvarande filament används" msgid "Avoid interface filament for base" -msgstr "" +msgstr "Undvik gränssnitts filament för basen" msgid "" "Avoid using support interface filament to print support base if possible." msgstr "" +"Undvik om möjligt att använda filament för stöd gränssnitt för att skriva ut " +"stödbasen." msgid "" "Line width of support. If expressed as a %, it will be computed over the " @@ -12053,10 +12292,10 @@ msgid "Bottom interface layers" msgstr "Botten gränssnitts lager" msgid "Number of bottom interface layers" -msgstr "" +msgstr "Antal nedre gränsyte skikt" msgid "Same as top" -msgstr "" +msgstr "Samma som toppen" msgid "Top interface spacing" msgstr "Topp gränssnitts avstånd" @@ -12262,10 +12501,10 @@ msgid "" msgstr "" msgid "Support wall loops" -msgstr "" +msgstr "Vägg support" msgid "This setting specify the count of walls around support" -msgstr "" +msgstr "Denna inställning anger antalet väggar runt supporten" msgid "Tree support with infill" msgstr "Tree support med ifyllnad" @@ -12287,7 +12526,7 @@ msgid "" msgstr "" msgid "Chamber temperature" -msgstr "" +msgstr "Kammarens temperatur" msgid "" "Higher chamber temperature can help suppress or reduce warping and " @@ -12298,6 +12537,12 @@ msgid "" "high to avoid cloggings, so 0 which stands for turning off is highly " "recommended" msgstr "" +"Higher chamber temperature can help suppress or reduce warping and " +"potentially lead to higher interlayer bonding strength for high temperature " +"materials like ABS, ASA, PC, PA and so on. At the same time, the air " +"filtration of ABS and ASA will get worse.While for PLA, PETG, TPU, PVA and " +"other low temperature materials, the actual chamber temperature should not " +"be high to avoid clogs, so 0 (turned off) is highly recommended." msgid "Nozzle temperature for layers after the initial one" msgstr "Nozzel temperatur efter första lager" @@ -12441,17 +12686,29 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -12579,7 +12836,7 @@ msgid "" msgstr "" msgid "Use relative E distances" -msgstr "" +msgstr "Använd relativa E avstånd" msgid "" "Relative extrusion is recommended when using \"label_objects\" option.Some " @@ -13138,7 +13395,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj: misslyckades med att analysera" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "load mtl in obj: failed to parse" msgid "The file contains polygons with more than 4 vertices." msgstr "Filen innehåller polygoner med fler än 4 hörn." @@ -13153,67 +13410,71 @@ msgid "This OBJ file couldn't be read because it's empty." msgstr "Denna OBJ fil kunde inte läsas eftersom den är tom." msgid "Flow Rate Calibration" -msgstr "" +msgstr "Kalibrering av flödeshastighet" msgid "Max Volumetric Speed Calibration" -msgstr "" +msgstr "Max volymetrisk hastighets kalibrering" msgid "Manage Result" -msgstr "" +msgstr "Hantera resultat" msgid "Manual Calibration" -msgstr "" +msgstr "Manuell kalibrering" msgid "Result can be read by human eyes." -msgstr "" +msgstr "Resultatet kan läsas av mänskliga ögon." msgid "Auto-Calibration" -msgstr "" +msgstr "Auto-Calibration" msgid "We would use Lidar to read the calibration result" -msgstr "" +msgstr "Vi vill använda Lidar för att läsa av kalibrerings resultatet" msgid "Prev" -msgstr "" +msgstr "Föregående" msgid "Recalibration" -msgstr "" +msgstr "Omkalibrering" msgid "Calibrate" -msgstr "" +msgstr "Kalibrera" msgid "Finish" msgstr "Slutför" msgid "How to use calibration result?" -msgstr "" +msgstr "Hur kan jag använda kalibreringsresultaten?" msgid "" "You could change the Flow Dynamics Calibration Factor in material editing" msgstr "" +"Du kan ändra kalibreringsfaktorn för flödesdynamik i material redigeringen" msgid "" "The current firmware version of the printer does not support calibration.\n" "Please upgrade the printer firmware." msgstr "" +"Den aktuella versionen av printerns inbyggda programvara stöder inte " +"kalibrering.\n" +"Vänligen uppdatera printerns programvara." msgid "Calibration not supported" -msgstr "" +msgstr "Kalibrering stöds inte" msgid "Error desc" -msgstr "" +msgstr "Fel desc" msgid "Extra info" -msgstr "" +msgstr "Extra info" msgid "Flow Dynamics" -msgstr "" +msgstr "Flödesdynamik" msgid "Flow Rate" -msgstr "" +msgstr "Flödeshastighet" msgid "Max Volumetric Speed" -msgstr "" +msgstr "Max volymetrisk hastighet" #, c-format, boost-format msgid "" @@ -13223,38 +13484,45 @@ msgid "" "End value: > Start value\n" "Value step: >= %.3f)" msgstr "" +"Vänligen ange giltiga värden:\n" +"Startvärde: >= %.1f\n" +"Slutvärde: <= %.1f\n" +"Slutvärde: > Startvärde\n" +"Värde steg: >= %.3f)" msgid "The name cannot be empty." -msgstr "" +msgstr "Namnet får inte vara tomt." #, c-format, boost-format msgid "The selected preset: %s is not found." -msgstr "" +msgstr "Den valda inställningen: %s hittades inte." msgid "The name cannot be the same as the system preset name." -msgstr "" +msgstr "Namnet får inte vara detsamma som systemets förinställda namn." msgid "The name is the same as another existing preset name" -msgstr "" +msgstr "Namnet är detsamma som ett annat befintligt förinställt namn" msgid "create new preset failed." -msgstr "" +msgstr "skapande av ny inställning misslyckades." msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" +"Are you sure you want to cancel the current calibration and return to the " +"home page?" msgid "No Printer Connected!" -msgstr "" +msgstr "Ingen skrivare ansluten!" msgid "Printer is not connected yet." -msgstr "" +msgstr "Printern är inte ansluten ännu." msgid "Please select filament to calibrate." -msgstr "" +msgstr "Välj filament för kalibrering." msgid "The input value size must be 3." -msgstr "" +msgstr "Storleken på ingångsvärdet måste vara 3." msgid "" "This machine type can only hold 16 history results per nozzle. You can " @@ -13263,15 +13531,20 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"This machine type can only hold 16 historical results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results. \n" +"Do you still want to continue the calibration?" msgid "Connecting to printer..." -msgstr "" +msgstr "Ansluter till skrivaren..." msgid "The failed test result has been dropped." -msgstr "" +msgstr "Det misslyckade testresultatet har tagits bort." msgid "Flow Dynamics Calibration result has been saved to the printer" -msgstr "" +msgstr "Flödesdynamik kalibrerings resultaten har sparats på printern." #, c-format, boost-format msgid "" @@ -13279,27 +13552,35 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"Det finns redan ett tidigare kalibreringsresultat med samma namn: %s. Endast " +"ett resultat med ett namn sparas. Är du säker på att du vill skriva över det " +"tidigare resultatet?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"This machine type can only hold %d historical results per nozzle. This " +"result will not be saved." msgid "Internal Error" -msgstr "" +msgstr "Internt fel" msgid "Please select at least one filament for calibration" -msgstr "" +msgstr "Välj minst ett filament för kalibrering" msgid "Flow rate calibration result has been saved to preset" msgstr "" +"Resultat för kalibrering av flödeshastigheten har sparats till inställningen." msgid "Max volumetric speed calibration result has been saved to preset" msgstr "" +"Max volymetrisk hastighets kalibrerings resultat har sparats till " +"förinställningen" msgid "When do you need Flow Dynamics Calibration" -msgstr "" +msgstr "När behöver du kalibrering av flödes dynamik" msgid "" "We now have added the auto-calibration for different filaments, which is " @@ -13311,9 +13592,17 @@ msgid "" "3. If the max volumetric speed or print temperature is changed in the " "filament setting." msgstr "" +"Vi har nu lagt till automatisk kalibrering för olika filament, vilket är " +"helt automatiserat och resultatet sparas i printern för framtida användning. " +"Du behöver bara göra kalibreringen i följande begränsade fall:\n" +"1. Om du introducerar ett nytt filament av olika märken/modeller eller om " +"filamentet är fuktigt;\n" +"2. Om nozzeln är utsliten eller ersatt med ett nytt;\n" +"3. Om max volymhastighet eller utskriftstemperatur ändras i filament " +"inställningen." msgid "About this calibration" -msgstr "" +msgstr "Om denna kalibrering" msgid "" "Please find the details of Flow Dynamics Calibration from our wiki.\n" @@ -13334,9 +13623,28 @@ msgid "" "cause the result not exactly the same in each calibration. We are still " "investigating the root cause to do improvements with new updates." msgstr "" +"Information om Flow Dynamics Calibration finns i vår wiki.\n" +"\n" +"Vanligtvis är kalibreringen onödig. När du startar en utskrift i en färg/" +"material, med alternativet \"flödesdynamisk kalibrering\" markerat i " +"startmenyn, kommer skrivaren att följa det gamla sättet, kalibrera " +"filamentet före utskriften; När du startar en utskrift i flera färger/" +"material kommer skrivaren att använda standard kompensations parametern för " +"filamentet vid varje filamentbyte, vilket ger ett bra resultat i de flesta " +"fall.\n" +"\n" +"Observera att det finns några fall som gör att kalibreringsresultatet inte " +"blir tillförlitligt: använd en strukturplatta för att göra kalibreringen; " +"byggplattan har inte bra vidhäftning (tvätta byggplattan eller applicera " +"lim!) ...Du kan hitta mer från vår wiki.\n" +"\n" +"Kalibreringsresultaten har cirka 10 procent fel i vårt test, vilket kan " +"orsaka att resultatet inte är exakt detsamma i varje kalibrering. Vi " +"undersöker fortfarande grundorsaken för att kunna göra förbättringar med nya " +"uppdateringar." msgid "When to use Flow Rate Calibration" -msgstr "" +msgstr "När ska man använda kalibrering av flödes hastighet?" msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " @@ -13349,12 +13657,24 @@ msgid "" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " "they should be." msgstr "" +"After using Flow Dynamics Calibration, there might still be some extrusion " +"issues, such as:\n" +"1. Over-Extrusion: Excess material on your printed object, forming blobs or " +"zits, or the layers seem thicker than expected and not uniform.\n" +"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " +"top layer of the model, even when printing slowly.\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " +"they should be." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" "PLA used in RC planes. These materials expand greatly when heated, and " "calibration provides a useful reference flow rate." msgstr "" +"Dessutom är flödeshastighets kalibrering avgörande för skummande material " +"som LW-PLA som används i RC-plan. Dessa material expanderar kraftigt vid " +"uppvärmning, och kalibrering ger en användbar referens flödeshastighet." msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " @@ -13364,6 +13684,13 @@ msgid "" "you still see the listed defects after you have done other calibrations. For " "more details, please check out the wiki article." msgstr "" +"Flödeskalibrering mäter förhållandet mellan förväntade och faktiska " +"extruderings volymer. Standardinställningen fungerar bra med Bambu Lab " +"printers och officiella filament eftersom de är förkalibrerade och " +"finjusterade. För ett vanligt filament behöver du vanligtvis inte utföra en " +"flödeshastighets kalibrering om du inte fortfarande ser de listade " +"defekterna efter att du har gjort andra kalibreringar. För mer information, " +"se vår wiki-artikel." msgid "" "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " @@ -13383,48 +13710,71 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" +"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " +"directly measuring the calibration patterns. However, please be advised that " +"the efficacy and accuracy of this method may be compromised with specific " +"types of materials. Particularly, filaments that are transparent or semi-" +"transparent, sparkling-particled, or have a high-reflective finish may not " +"be suitable for this calibration and can produce less-than-desirable " +"results.\n" +"\n" +"The calibration results may vary between each calibration or filament. We " +"are still improving the accuracy and compatibility of this calibration " +"through firmware updates over time.\n" +"\n" +"Caution: Flow Rate Calibration is an advanced process, to be attempted only " +"by those who fully understand its purpose and implications. Incorrect usage " +"can lead to sub-par prints or printer damage. Please make sure to carefully " +"read and understand the process before performing it." msgid "When you need Max Volumetric Speed Calibration" -msgstr "" +msgstr "När du behöver kalibrering av maximal volymhastighet" msgid "Over-extrusion or under extrusion" -msgstr "" +msgstr "Över extrudering eller under extrudering" msgid "Max Volumetric Speed calibration is recommended when you print with:" msgstr "" +"Max volymetrisk hastighets kalibrering rekommenderas när du skriver ut med:" msgid "material with significant thermal shrinkage/expansion, such as..." -msgstr "" +msgstr "material med betydande termisk krympning/expansion, t.ex...." msgid "materials with inaccurate filament diameter" -msgstr "" +msgstr "material med felaktig filament diameter" msgid "We found the best Flow Dynamics Calibration Factor" -msgstr "" +msgstr "Vi hittade den bästa Flödes dynamiska kalibrerings faktorn" msgid "" "Part of the calibration failed! You may clean the plate and retry. The " "failed test result would be dropped." msgstr "" +"En del av kalibreringen misslyckades! Det kan hjälpa att rengöra plattan och " +"försöka igen. Det misslyckade testresultatet kommer att raderas." msgid "" "*We recommend you to add brand, materia, type, and even humidity level in " "the Name" msgstr "" +"*Vi rekommenderar att du lägger till varumärke, material, typ och till och " +"med fuktighetsnivå i namnet" msgid "Failed" msgstr "Misslyckades" msgid "Please enter the name you want to save to printer." -msgstr "" +msgstr "Ange det namn som du vill spara på skrivaren." msgid "The name cannot exceed 40 characters." -msgstr "" +msgstr "Namnet får inte innehålla mer än 40 tecken." msgid "" "Only one of the results with the same name will be saved. Are you sure you " "want to overrides the other results?" msgstr "" +"Endast ett av resultaten med samma namn kommer att sparas. Är du säker på " +"att du vill ersätta de andra resultaten?" #, c-format, boost-format msgid "" @@ -13432,188 +13782,197 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to overrides the historical result?" msgstr "" +"Det finns redan ett tidigare kalibreringsresultat med samma namn: %s. Endast " +"ett av resultaten med samma namn sparas. Är du säker på att du vill ersätta " +"det tidigare resultatet?" msgid "Please find the best line on your plate" -msgstr "" +msgstr "Hitta den bästa linjen på din platta." msgid "Please find the cornor with perfect degree of extrusion" -msgstr "" +msgstr "Hitta hörnet med den perfekta graden av extrudering" msgid "Input Value" -msgstr "" +msgstr "Ingångsvärde" msgid "Save to Filament Preset" -msgstr "" +msgstr "Spara till inställningar för filament" msgid "Preset" -msgstr "" +msgstr "Förinställd" msgid "Record Factor" -msgstr "" +msgstr "Inspelnings faktor" msgid "We found the best flow ratio for you" -msgstr "" +msgstr "Vi hittade det bästa flödesförhållandet för dig" msgid "Flow Ratio" -msgstr "" +msgstr "Flödes förhållande" msgid "Please input a valid value (0.0 < flow ratio < 2.0)" -msgstr "" +msgstr "Ange ett giltigt värde (0.0 < flödesförhållande < 2.0) " msgid "Please enter the name of the preset you want to save." -msgstr "" +msgstr "Ange namnet på den förinställning som du vill spara." msgid "Calibration1" -msgstr "" +msgstr "Kalibrering1" msgid "Calibration2" -msgstr "" +msgstr "Kalibrering2" msgid "Please find the best object on your plate" -msgstr "" +msgstr "Hitta det bästa objektet på din platta." msgid "Fill in the value above the block with smoothest top surface" -msgstr "" +msgstr "Fyll i värdet från blocket med jämnast toppyta" msgid "Skip Calibration2" -msgstr "" +msgstr "Hoppa över kalibrering2" #, c-format, boost-format msgid "flow ratio : %s " -msgstr "" +msgstr "flödes förhållande: %s " msgid "Please choose a block with smoothest top surface" -msgstr "" +msgstr "Välj det block som har den jämnaste toppytan." msgid "Please choose a block with smoothest top surface." -msgstr "" +msgstr "Välj det block som har den jämnaste toppytan." msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" -msgstr "" +msgstr "Ange ett giltigt värde (0 <= Max volym hastighet <= 60)" msgid "Calibration Type" -msgstr "" +msgstr "Typ av kalibrering" msgid "Complete Calibration" -msgstr "" +msgstr "Fullständig kalibrering" msgid "Fine Calibration based on flow ratio" -msgstr "" +msgstr "Fin kalibrering baserad på flödesförhållande" msgid "Title" -msgstr "" +msgstr "Titel" msgid "" "A test model will be printed. Please clear the build plate and place it back " "to the hot bed before calibration." msgstr "" +"En testmodell kommer att skrivas ut. Ta bort byggplattan och placera " +"tillbaka den på bädden före kalibrering." msgid "Printing Parameters" -msgstr "" +msgstr "Parametrar för utskrift" msgid "Plate Type" msgstr "Typ av byggplatta" msgid "filament position" -msgstr "" +msgstr "Filament position" msgid "External Spool" -msgstr "" +msgstr "Extern spole" msgid "Filament For Calibration" -msgstr "" +msgstr "Filament för kalibrering" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" "- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" msgstr "" +"Tips för kalibreringsmaterial:\n" +"- Material som kan ha samma temperatur på den varma bädden\n" +"- Olika filament märken och -familjer (märke = Bambu, familj = Basic, Matte, " +"etc.)" msgid "Pattern" -msgstr "" +msgstr "Mönster" msgid "Method" -msgstr "" +msgstr "Metod" #, c-format, boost-format msgid "%s is not compatible with %s" -msgstr "" +msgstr "%s är inte kompatibel med %s" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." -msgstr "" +msgstr "TPU stöds inte för automatisk kalibrering av flödesdynamik." msgid "Connecting to printer" -msgstr "" +msgstr "Ansluter till skrivaren" msgid "From k Value" -msgstr "" +msgstr "Från k Värde" msgid "To k Value" -msgstr "" +msgstr "Till k Värde" msgid "Step value" msgstr "" msgid "The nozzle diameter has been synchronized from the printer Settings" -msgstr "" +msgstr "Nozzle diametern har synkroniserats från printer inställningarna." msgid "From Volumetric Speed" -msgstr "" +msgstr "Från volymetrisk hastighet" msgid "To Volumetric Speed" -msgstr "" +msgstr "Till volymetrisk hastighet" msgid "Flow Dynamics Calibration Result" -msgstr "" +msgstr "Resultat för kalibrering av flödesdynamik" msgid "New" -msgstr "" +msgstr "New" msgid "No History Result" -msgstr "" +msgstr "Inget historikresultat" msgid "Success to get history result" -msgstr "" +msgstr "Lyckades med att få historiskt resultat" msgid "Refreshing the historical Flow Dynamics Calibration records" -msgstr "" +msgstr "Uppdatering av tidigare kalibreringsposter för flödesdynamik" msgid "Action" -msgstr "" +msgstr "Åtgärd" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "This machine type can only hold %d historical results per nozzle." msgid "Edit Flow Dynamics Calibration" -msgstr "" +msgstr "Redigera kalibrering av flödesdynamik" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "New Flow Dynamic Calibration" msgid "Ok" -msgstr "" +msgstr "Ok" msgid "The filament must be selected." -msgstr "" +msgstr "The filament must be selected." msgid "Network lookup" -msgstr "" +msgstr "Nätverks sökning" msgid "Address" -msgstr "" +msgstr "Address" msgid "Hostname" -msgstr "" +msgstr "Värdnamn" msgid "Service name" -msgstr "" +msgstr "Tjänstens namn" msgid "OctoPrint version" -msgstr "" +msgstr "OctoPrint version" msgid "Searching for devices" -msgstr "" +msgstr "Söker efter enheter" msgid "Finished" msgstr "Färdig" @@ -13628,37 +13987,37 @@ msgid "" msgstr "" msgid "PA Calibration" -msgstr "" +msgstr "PA kalibrering" msgid "DDE" msgstr "" msgid "Bowden" -msgstr "" +msgstr "Bowden" msgid "Extruder type" msgstr "" msgid "PA Tower" -msgstr "" +msgstr "PA torn" msgid "PA Line" -msgstr "" +msgstr "PA linje" msgid "PA Pattern" -msgstr "" +msgstr "PA mönster" msgid "Start PA: " -msgstr "" +msgstr "Starta PA: " msgid "End PA: " -msgstr "" +msgstr "Slut PA: " msgid "PA step: " -msgstr "" +msgstr "PA steg: " msgid "Print numbers" -msgstr "" +msgstr "Skriv ut nummer" msgid "" "Please input valid values:\n" @@ -13666,39 +14025,43 @@ msgid "" "End PA: > Start PA\n" "PA step: >= 0.001)" msgstr "" +"Vänligen ange giltiga värden:\n" +"Start PA: >= 0.0\n" +"Slut PA: > Start PA\n" +"PA steg: >= 0.001)" msgid "Temperature calibration" -msgstr "" +msgstr "Kalibrering av temperatur" msgid "PLA" -msgstr "" +msgstr "PLA" msgid "ABS/ASA" -msgstr "" +msgstr "ABS/ASA" msgid "PETG" -msgstr "" +msgstr "PETG" msgid "TPU" -msgstr "" +msgstr "TPU" msgid "PA-CF" -msgstr "" +msgstr "PA-CF" msgid "PET-CF" -msgstr "" +msgstr "PET-CF" msgid "Filament type" -msgstr "" +msgstr "Filament typ" msgid "Start temp: " -msgstr "" +msgstr "Start temp: " msgid "End temp: " -msgstr "" +msgstr "Slut temp: " msgid "Temp step: " -msgstr "" +msgstr "Temp steg: " msgid "" "Please input valid values:\n" @@ -13708,16 +14071,16 @@ msgid "" msgstr "" msgid "Max volumetric speed test" -msgstr "" +msgstr "Max volymetrisk hastighets test" msgid "Start volumetric speed: " -msgstr "" +msgstr "Start volymetrisk hastighet: " msgid "End volumetric speed: " -msgstr "" +msgstr "Slut volymetrisk hastighet: " msgid "step: " -msgstr "" +msgstr "steg: " msgid "" "Please input valid values:\n" @@ -13727,13 +14090,13 @@ msgid "" msgstr "" msgid "VFA test" -msgstr "" +msgstr "VFA test" msgid "Start speed: " -msgstr "" +msgstr "Start hastighet: " msgid "End speed: " -msgstr "" +msgstr "Sluthastighet: " msgid "" "Please input valid values:\n" @@ -13743,129 +14106,129 @@ msgid "" msgstr "" msgid "Start retraction length: " -msgstr "" +msgstr "Starta retraktion längd: " msgid "End retraction length: " -msgstr "" +msgstr "Slutets indragnings längd: " msgid "mm/mm" -msgstr "" +msgstr "mm/mm" msgid "Send G-Code to printer host" msgstr "" msgid "Upload to Printer Host with the following filename:" -msgstr "" +msgstr "Ladda upp till Printer Host med följande filnamn:" msgid "Use forward slashes ( / ) as a directory separator if needed." -msgstr "" +msgstr "Använd snedstreck ( / ) som katalog avgränsare om det behövs." msgid "Upload to storage" msgstr "" #, c-format, boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" -msgstr "" +msgstr "Filnamnet slutar inte med \"%s\". Vill du fortsätta?" msgid "Upload" -msgstr "" +msgstr "Ladda upp" msgid "Print host upload queue" -msgstr "" +msgstr "Utskriftsvärdens uppladdnings kö" msgid "ID" -msgstr "" +msgstr "ID" msgid "Progress" -msgstr "" +msgstr "Förlopp" msgid "Host" -msgstr "" +msgstr "Värd" msgctxt "OfFile" msgid "Size" -msgstr "" +msgstr "Storlek" msgid "Filename" -msgstr "" +msgstr "Filnamn" msgid "Cancel selected" -msgstr "" +msgstr "Avbryt vald" msgid "Show error message" -msgstr "" +msgstr "Visa felmeddelande" msgid "Enqueued" -msgstr "" +msgstr "I kö" msgid "Uploading" msgstr "Laddar upp" msgid "Cancelling" -msgstr "" +msgstr "Avbryter" msgid "Error uploading to print host" msgstr "" msgid "Unable to perform boolean operation on selected parts" -msgstr "" +msgstr "Kan inte utföra boolean operationer på valda delar" msgid "Mesh Boolean" -msgstr "" +msgstr "Mesh Boolean" msgid "Union" -msgstr "" +msgstr "Union" msgid "Difference" -msgstr "" +msgstr "Skillnad" msgid "Intersection" -msgstr "" +msgstr "Korsning" msgid "Source Volume" -msgstr "" +msgstr "Source Volym" msgid "Tool Volume" -msgstr "" +msgstr "Verktygets volym" msgid "Subtract from" -msgstr "" +msgstr "Subtrahera från" msgid "Subtract with" -msgstr "" +msgstr "Subtrahera med" msgid "selected" -msgstr "" +msgstr "vald" msgid "Part 1" -msgstr "" +msgstr "Del 1" msgid "Part 2" -msgstr "" +msgstr "Del 2" msgid "Delete input" -msgstr "" +msgstr "Ta bort inmatning" msgid "Network Test" -msgstr "" +msgstr "Nätverkstest" msgid "Start Test Multi-Thread" -msgstr "" +msgstr "Börja testa flera trådar" msgid "Start Test Single-Thread" -msgstr "" +msgstr "Starta testet med en tråd" msgid "Export Log" -msgstr "" +msgstr "Exportera logg" msgid "OrcaSlicer Version:" msgstr "" msgid "System Version:" -msgstr "" +msgstr "Systemversion:" msgid "DNS Server:" -msgstr "" +msgstr "DNS server:" msgid "Test OrcaSlicer(GitHub)" msgstr "" @@ -13874,92 +14237,98 @@ msgid "Test OrcaSlicer(GitHub):" msgstr "" msgid "Test Bing.com" -msgstr "" +msgstr "Test Bing.com" msgid "Test bing.com:" -msgstr "" +msgstr "Test bing.com:" msgid "Log Info" -msgstr "" +msgstr "Info om logg" msgid "Select filament preset" -msgstr "" +msgstr "Välj filament inställning" msgid "Create Filament" -msgstr "" +msgstr "Skapa filament" msgid "Create Based on Current Filament" -msgstr "" +msgstr "Skapa baserat på aktuellt filament" msgid "Copy Current Filament Preset " -msgstr "" +msgstr "Kopiera aktuell filament inställning " msgid "Basic Information" -msgstr "" +msgstr "Grundläggande information" msgid "Add Filament Preset under this filament" -msgstr "" +msgstr "Lägg till filament inställningar för detta filament" msgid "We could create the filament presets for your following printer:" -msgstr "" +msgstr "Vi kan skapa filament inställningar för följande printer:" msgid "Select Vendor" -msgstr "" +msgstr "Välj leverantör" msgid "Input Custom Vendor" -msgstr "" +msgstr "Ange anpassad leverantör" msgid "Can't find vendor I want" -msgstr "" +msgstr "Kan inte hitta den leverantör jag vill ha" msgid "Select Type" -msgstr "" +msgstr "Välj typ" msgid "Select Filament Preset" -msgstr "" +msgstr "Välj filament inställning" msgid "Serial" -msgstr "" +msgstr "Serienummer" msgid "e.g. Basic, Matte, Silk, Marble" -msgstr "" +msgstr "t.ex. Basic, Matt, Silke, Marmor" msgid "Filament Preset" -msgstr "" +msgstr "Filament inställning" msgid "Create" -msgstr "" +msgstr "Skapa" msgid "Vendor is not selected, please reselect vendor." -msgstr "" +msgstr "Vendor is not selected; please reselect vendor." msgid "Custom vendor is not input, please input custom vendor." -msgstr "" +msgstr "Custom vendor missing; please input custom vendor." msgid "" "\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." msgstr "" +"\"Bambu\" eller \"Generic\" kan inte användas som leverantör för anpassade " +"filament." msgid "Filament type is not selected, please reselect type." -msgstr "" +msgstr "Filament typ är inte vald, vänligen välj typ igen." msgid "Filament serial is not inputed, please input serial." -msgstr "" +msgstr "Filament serial missing; please input serial." msgid "" "There may be escape characters in the vendor or serial input of filament. " "Please delete and re-enter." msgstr "" +"There may be disallowed characters in the vendor or serial input of the " +"filament. Please delete and re-enter." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "" +"Alla inmatningar i den anpassade leverantören eller serien är mellanslag. " +"Vänligen ange på nytt." msgid "The vendor can not be a number. Please re-enter." -msgstr "" +msgstr "The vendor can not be a number; please re-enter." msgid "" "You have not selected a printer or preset yet. Please select at least one." -msgstr "" +msgstr "Du har ännu inte valt någon printer eller inställning. Välj minst en." #, c-format, boost-format msgid "" @@ -13967,14 +14336,19 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"Filamentnamnet %s som du skapade finns redan. \n" +"Om du fortsätter kommer den skapade inställningen att visas med sitt " +"fullständiga namn. Vill du fortsätta?" msgid "Some existing presets have failed to be created, as follows:\n" -msgstr "" +msgstr "Vissa befintliga inställningar har inte skapats, enligt följande:\n" msgid "" "\n" "Do you want to rewrite it?" msgstr "" +"\n" +"Vill du skriva om det?" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you selected" @@ -13983,46 +14357,46 @@ msgid "" msgstr "" msgid "Create Printer/Nozzle" -msgstr "" +msgstr "Skapa Printer/Nozzel" msgid "Create Printer" -msgstr "" +msgstr "Skapa printer" msgid "Create Nozzle for Existing Printer" -msgstr "" +msgstr "Skapa nozzel för befintlig skrivare" msgid "Create from Template" -msgstr "" +msgstr "Skapa från mall" msgid "Create Based on Current Printer" -msgstr "" +msgstr "Skapa baserat på aktuell printer" msgid "Import Preset" -msgstr "" +msgstr "Importera inställning" msgid "Create Type" -msgstr "" +msgstr "Skapa typ" msgid "The model is not fond, place reselect vendor." -msgstr "" +msgstr "The model was not found; please reselect vendor." msgid "Select Model" -msgstr "" +msgstr "Välj modell" msgid "Select Printer" -msgstr "" +msgstr "Välj Printer" msgid "Input Custom Model" -msgstr "" +msgstr "Mata in anpassad modell" msgid "Can't find my printer model" -msgstr "" +msgstr "Kan inte hitta min printer modell" msgid "Rectangle" -msgstr "" +msgstr "Rektangel" msgid "Printable Space" -msgstr "" +msgstr "Utskriftsbar yta" msgid "X" msgstr "" @@ -14031,66 +14405,70 @@ msgid "Y" msgstr "" msgid "Hot Bed STL" -msgstr "" +msgstr "Värmeplatta STL" msgid "Load stl" -msgstr "" +msgstr "Ladda stl" msgid "Hot Bed SVG" -msgstr "" +msgstr "Värmeplatta SVG" msgid "Load svg" -msgstr "" +msgstr "Ladda svg" msgid "Max Print Height" -msgstr "" +msgstr "Max utskriftshöjd" #, c-format, boost-format msgid "The file exceeds %d MB, please import again." -msgstr "" +msgstr "Filen överstiger %d MB, vänligen importera igen." msgid "Exception in obtaining file size, please import again." -msgstr "" +msgstr "Undantag vid erhållande av filstorlek, vänligen importera igen." msgid "Preset path is not find, please reselect vendor." -msgstr "" +msgstr "Inställd sökväg hittades inte; vänligen välj leverantör igen." msgid "The printer model was not found, please reselect." -msgstr "" +msgstr "Printer modellen hittades inte, välj igen." msgid "The nozzle diameter is not fond, place reselect." -msgstr "" +msgstr "The nozzle diameter was not found; please reselect." msgid "The printer preset is not fond, place reselect." -msgstr "" +msgstr "The printer preset was not found; please reselect." msgid "Printer Preset" -msgstr "" +msgstr "Printer inställningar" msgid "Filament Preset Template" -msgstr "" +msgstr "Filament inställnings mall" msgid "Deselect All" -msgstr "" +msgstr "Avmarkera alla" msgid "Process Preset Template" -msgstr "" +msgstr "Mall för process inställning" msgid "Back Page 1" -msgstr "" +msgstr "Tillbaka Sida 1" msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" msgstr "" +"Du har ännu inte valt vilken printer inställning du vill skapa baserat på. " +"Välj leverantör och modell för printern" msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." msgstr "" +"Du har angett ett otillåtet tecken i det utskrivbara området på första " +"sidan. Använd endast siffror." msgid "The custom printer or model is not inputed, place input." -msgstr "" +msgstr "The custom printer or model missing; please input." msgid "" "The printer preset you created already has a preset with the same name. Do " @@ -14101,60 +14479,75 @@ msgid "" "reserve.\n" "\tCancel: Do not create a preset, return to the creation interface." msgstr "" +"The printer preset you created already has a preset with the same name. Do " +"you want to overwrite it?\n" +"\tYes: Overwrite the printer preset with the same name, and filament and " +"process presets with the same preset name will be recreated \n" +"and filament and process presets without the same preset name will be " +"reserved.\n" +"\tCancel: Do not create a preset; return to the creation interface." msgid "You need to select at least one filament preset." -msgstr "" +msgstr "Du måste välja minst en inställning för filament." msgid "You need to select at least one process preset." -msgstr "" +msgstr "Du måste välja minst en process inställning." msgid "Create filament presets failed. As follows:\n" -msgstr "" +msgstr "Skapa inställningar för filament misslyckades. Enligt följande:\n" msgid "Create process presets failed. As follows:\n" -msgstr "" +msgstr "Skapa process inställningar misslyckades. Enligt följande:\n" msgid "Vendor is not find, please reselect." -msgstr "" +msgstr "Leverantören hittades inte; välj igen." msgid "Current vendor has no models, please reselect." -msgstr "" +msgstr "Nuvarande leverantör har inga modeller, vänligen välj om." msgid "" "You have not selected the vendor and model or inputed the custom vendor and " "model." msgstr "" +"Du har inte valt leverantör och modell eller angett anpassad leverantör och " +"modell." msgid "" "There may be escape characters in the custom printer vendor or model. Please " "delete and re-enter." msgstr "" +"Det kan finnas escape tecken i den anpassade printerns leverantör eller " +"modell. Vänligen radera och ange igen." msgid "" "All inputs in the custom printer vendor or model are spaces. Please re-enter." msgstr "" +"Alla inmatningar i den anpassade printer leverantören eller modellen är " +"mellanslag. Vänligen ange på nytt." msgid "Please check bed printable shape and origin input." -msgstr "" +msgstr "Kontrollera byggplattans utskrivbara form och ursprungs inmatning." msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "" +"Du har ännu inte valt vilken printer som nozzeln ska bytas ut på; välj en " +"printer." msgid "Create Printer Successful" -msgstr "" +msgstr "Skapa Printer lyckades" msgid "Create Filament Successful" -msgstr "" +msgstr "Filament Created Successfully" msgid "Printer Created" -msgstr "" +msgstr "Printer skapad" msgid "Please go to printer settings to edit your presets" -msgstr "" +msgstr "Gå till printer inställningar för att redigera dina inställningar" msgid "Filament Created" -msgstr "" +msgstr "Filament skapad" msgid "" "Please go to filament setting to edit your presets if you need.\n" @@ -14162,6 +14555,11 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"Gå till filament inställningar för att redigera dina inställningar om du " +"behöver.\n" +"Observera att nozzel temperatur, värmebädds temperatur och maximal " +"volymhastighet alla har en betydande inverkan på utskriftskvaliteten. Ställ " +"in dem noggrant." msgid "" "\n" @@ -14173,7 +14571,7 @@ msgid "" msgstr "" msgid "Printer Setting" -msgstr "" +msgstr "Printer inställningar" msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -14182,31 +14580,31 @@ msgid "Filament bundle(.orca_filament)" msgstr "" msgid "Printer presets(.zip)" -msgstr "" +msgstr "Printer inställningar(.zip)" msgid "Filament presets(.zip)" -msgstr "" +msgstr "Filament inställningar (.zip)" msgid "Process presets(.zip)" -msgstr "" +msgstr "Process inställningar(.zip)" msgid "initialize fail" -msgstr "" +msgstr "initialisering misslyckad" msgid "add file fail" -msgstr "" +msgstr "lägg till fil misslyckas" msgid "add bundle structure file fail" -msgstr "" +msgstr "lägg till filstrukturs paket misslyckades" msgid "finalize fail" -msgstr "" +msgstr "slutför misslyckande" msgid "open zip written fail" -msgstr "" +msgstr "öppna zip skripten misslyckades" msgid "Export successful" -msgstr "" +msgstr "Export lyckades" #, c-format, boost-format msgid "" @@ -14215,6 +14613,10 @@ msgid "" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" +"The '%s' folder already exists in the current directory. Do you want to " +"clear it and rebuild it?\n" +"If not, a time suffix will be added, and you can modify the name after " +"creation." msgid "" "Printer and all the filament&&process presets that belongs to the printer. \n" @@ -14225,54 +14627,68 @@ msgid "" "User's fillment preset set. \n" "Can be shared with others." msgstr "" +"Användarens inställning för filament. \n" +"Kan delas med andra." msgid "" "Only display printer names with changes to printer, filament, and process " "presets." msgstr "" +"Endast printer med ändringar av inställningar för printer, filament och " +"process visas." msgid "Only display the filament names with changes to filament presets." -msgstr "" +msgstr "Visa endast filament namnen vid ändringar av filament inställningar." msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" +"Endast printer namn med inställningar för printer visas, och varje " +"inställning du väljer exporteras som zip-fil." msgid "" "Only the filament names with user filament presets will be displayed, \n" "and all user filament presets in each filament name you select will be " "exported as a zip." msgstr "" +"Endast filament namn med inställningar för användar filament visas, \n" +"och alla inställningar för användar filament i varje filament namn du väljer " +"exporteras som en zip-fil." msgid "" "Only printer names with changed process presets will be displayed, \n" "and all user process presets in each printer name you select will be " "exported as a zip." msgstr "" +"Endast printer namn med ändrade process inställningar visas, \n" +"och alla användarprocess inställningar i varje printer namn som du väljer " +"exporteras som zip-fil." msgid "Please select at least one printer or filament." -msgstr "" +msgstr "Välj minst en printer eller ett filament." msgid "Please select a type you want to export" -msgstr "" +msgstr "Välj en inställningstyp som du vill exportera" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "" +msgstr "Failed to create temporary folder, please try Export Configs again." msgid "Edit Filament" -msgstr "" +msgstr "Redigera filament" msgid "Filament presets under this filament" -msgstr "" +msgstr "Filament inställningar för detta filament" msgid "" "Note: If the only preset under this filament is deleted, the filament will " "be deleted after exiting the dialog." msgstr "" +"Observera: Om den enda inställningen under detta filament raderas, kommer " +"filamentet att raderas efter att dialogen har avslutats." msgid "Presets inherited by other presets can not be deleted" -msgstr "" +msgstr "Inställningar som ärvts av andra inställningar kan inte raderas" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." @@ -14280,190 +14696,207 @@ msgstr[0] "" msgstr[1] "" msgid "Delete Preset" -msgstr "" +msgstr "Ta bort inställning" msgid "Are you sure to delete the selected preset?" -msgstr "" +msgstr "Är du säker på att du vill radera den valda inställningen?" msgid "Delete preset" -msgstr "" +msgstr "Ta bort inställning" msgid "+ Add Preset" -msgstr "" +msgstr "+ Lägg till inställning" msgid "Delete Filament" -msgstr "" +msgstr "Ta bort filament" msgid "" "All the filament presets belong to this filament would be deleted. \n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" +"Alla filament inställningar som hör till detta filament kommer att " +"raderas. \n" +"Om du använder detta filament i din printer, vänligen återställ filament " +"informationen för den platsen." msgid "Delete filament" -msgstr "" +msgstr "Ta bort filament" msgid "Add Preset" -msgstr "" +msgstr "Lägg till inställning" msgid "Add preset for new printer" -msgstr "" +msgstr "Lägg till inställningar för ny skrivare" msgid "Copy preset from filament" -msgstr "" +msgstr "Kopiera inställning från filament" msgid "The filament choice not find filament preset, please reselect it" -msgstr "" +msgstr "Filament valet hittar inte filament inställningen, välj det igen" msgid "[Delete Required]" -msgstr "" +msgstr "[Radera krävs]" msgid "Edit Preset" -msgstr "" +msgstr "Redigera inställningar" msgid "For more information, please check out Wiki" -msgstr "" +msgstr "For more information, please check out our Wiki" msgid "Collapse" -msgstr "" +msgstr "Komprimera" msgid "Daily Tips" -msgstr "" +msgstr "Dagliga tips" msgid "" "Your nozzle diameter in preset is not consistent with memorized nozzle " "diameter. Did you change your nozzle lately?" msgstr "" +"Your nozzle diameter in preset is not consistent with the saved nozzle " +"diameter. Have you changed your nozzle?" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" -msgstr "" +msgstr "*Utskrift av %s material med %s kan orsaka skador på nozzeln" msgid "Need select printer" -msgstr "" +msgstr "Välj printer" msgid "The start, end or step is not valid value." -msgstr "" +msgstr "Start, slut eller steg är inte giltigt värde." msgid "" "Unable to calibrate: maybe because the set calibration value range is too " "large, or the step is too small" msgstr "" +"Går inte att kalibrera: kan bero på att det inställda kalibreringsvärdet är " +"för stort, eller att steget är för litet" msgid "Physical Printer" -msgstr "" +msgstr "Fysisk printer" msgid "Print Host upload" -msgstr "" +msgstr "Uppladdning utskriftsvärd" msgid "Could not get a valid Printer Host reference" -msgstr "" +msgstr "Det gick inte att hämta en giltig printer värdreferens" msgid "Success!" -msgstr "" +msgstr "Lyckades!" msgid "Are you sure to log out?" msgstr "" msgid "Refresh Printers" -msgstr "" +msgstr "Uppdatera skrivare" msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" +"HTTPS CA-filen är valfri. Den behövs bara om du använder HTTPS med ett " +"självsignerat certifikat." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -msgstr "" +msgstr "Certifikatfiler (*.crt, *.pem)|*.crt;*.pem|Alla filer|*.*" msgid "Open CA certificate file" -msgstr "" +msgstr "Öppna CA-certifikatfilen" #, c-format, boost-format msgid "" "On this system, %s uses HTTPS certificates from the system Certificate Store " "or Keychain." msgstr "" +"På det här systemet använder %s HTTPS-certifikat från systemets " +"Certifikatarkiv eller Keyring." msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " "Keychain." msgstr "" +"Om du vill använda en anpassad CA-fil importerar du CA-filen till " +"Certificate Store/Keychain." msgid "Login/Test" msgstr "" msgid "Connection to printers connected via the print host failed." msgstr "" +"Anslutningen till printrar som är anslutna via printer värden misslyckades." #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "" +msgstr "Felaktig typ av utskriftsvärd: %s" msgid "Connection to AstroBox works correctly." -msgstr "" +msgstr "Connection to AstroBox is working correctly." msgid "Could not connect to AstroBox" -msgstr "" +msgstr "Kunde inte ansluta till AstroBox" msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "" +msgstr "Note: AstroBox version 1.1.0 or higher is required." msgid "Connection to Duet works correctly." -msgstr "" +msgstr "Connection to Duet is working correctly." msgid "Could not connect to Duet" -msgstr "" +msgstr "Kunde inte ansluta till Duet" msgid "Unknown error occured" -msgstr "" +msgstr "Okänt fel uppstod" msgid "Wrong password" -msgstr "" +msgstr "Fel lösenord" msgid "Could not get resources to create a new connection" -msgstr "" +msgstr "Det gick inte att hämta resurser för att skapa en ny anslutning" msgid "Upload not enabled on FlashAir card." -msgstr "" +msgstr "Uppladdning inte aktiverad på FlashAir kort." msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "" +msgstr "Connection to FlashAir is working correctly and upload is enabled." msgid "Could not connect to FlashAir" -msgstr "" +msgstr "Kunde inte ansluta till FlashAir" msgid "" "Note: FlashAir with firmware 2.00.02 or newer and activated upload function " "is required." msgstr "" +"Obs: FlashAir med firmware 2.00.02 eller nyare och aktiverad " +"uppladdningsfunktion krävs." msgid "Connection to MKS works correctly." -msgstr "" +msgstr "Connection to MKS is working correctly." msgid "Could not connect to MKS" -msgstr "" +msgstr "Kunde inte ansluta till MKS" msgid "Connection to OctoPrint works correctly." -msgstr "" +msgstr "Connection to OctoPrint is working correctly." msgid "Could not connect to OctoPrint" -msgstr "" +msgstr "Kunde inte ansluta till OctoPrint" msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "" +msgstr "Note: OctoPrint version 1.1.0 or higher is required." msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "" +msgstr "Connection to Prusa SL1 / SL1S is working correctly." msgid "Could not connect to Prusa SLA" -msgstr "" +msgstr "Kunde inte ansluta till Prusa SLA" msgid "Connection to PrusaLink works correctly." -msgstr "" +msgstr "Connection to PrusaLink is working correctly." msgid "Could not connect to PrusaLink" -msgstr "" +msgstr "Kunde inte ansluta till PrusaLink" msgid "Storages found" msgstr "" @@ -14490,19 +14923,21 @@ msgid "Could not connect to Prusa Connect" msgstr "" msgid "Connection to Repetier works correctly." -msgstr "" +msgstr "Connection to Repetier is working correctly." msgid "Could not connect to Repetier" -msgstr "" +msgstr "Kunde inte ansluta till Repetier" msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "" +msgstr "Note: Repetier version 0.90.0 or higher is required." #, boost-format msgid "" "HTTP status: %1%\n" "Message body: \"%2%\"" msgstr "" +"HTTP-status: %1%\n" +"Meddelandets kropp: \"%2%\"" #, boost-format msgid "" @@ -14510,6 +14945,9 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Parsning av värdsvaret misslyckades.\n" +"Meddelandetext: \"%1%\"\n" +"Fel: \"%2%\"" #, boost-format msgid "" @@ -14517,35 +14955,51 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Uppräkning av värdprintern misslyckades.\n" +"Meddelandets huvuddel: \"%1%\"\n" +"Felmeddelande: \"%2%\"" msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"It has a small layer height, and results in almost negligible layer lines " +"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " +"bigger layer height. This results in almost negligible layer lines and " +"slightly longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " +"height. This results in slightly visible layer lines but shorter print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in almost invisible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14553,12 +15007,19 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality but " +"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14566,35 +15027,53 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"It has a normal layer height, and results in average layer lines and print " +"quality. It is suitable for most printing cases." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but slightly shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14602,12 +15081,19 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14615,64 +15101,95 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and longer print time." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"It has a big layer height, and results in apparent layer lines and ordinary " +"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality " +"but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and slightly higher print " +"quality but longer print time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"It has a very big layer height, and results in very apparent layer lines, " +"low print quality and shorter printing time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -14680,12 +15197,18 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality, but longer print time in some cases." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgid "Connected to Obico successfully!" msgstr "" @@ -14811,6 +15334,9 @@ msgid "" "Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " "problems on the Windows system?" msgstr "" +"Fixa modell\n" +"Visste du att du kan fixa en skadad 3D-modell för att undvika en hel del " +"berednings problem i Windows-systemet?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" @@ -15050,6 +15576,10 @@ msgid "" "extruder/hotend clogging when printing lower temperature filament with a " "higher enclosure temperature. More info about this in the Wiki." msgstr "" +"När behöver du skriva ut med printer dörren öppen?\n" +"Visste du att en öppen printer dörr kan minska risken för igensättning av " +"extruder/hotend vid utskrift av filament med lägre temperatur och högre " +"kapslingstemperatur? Det finns mer information om detta i Wiki." #: resources/data/hints.ini: [hint:Avoid warping] msgid "" @@ -15058,6 +15588,13 @@ msgid "" "ABS, appropriately increasing the heatbed temperature can reduce the " "probability of warping." msgstr "" +"Undvik vridning\n" +"Visste du att när du skriver ut material som är benägna att vrida, såsom " +"ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten " +"för vridning." + +#~ msgid "V" +#~ msgstr "V" #~ msgid "Export &Configs" #~ msgstr "Exportera konfiguration" diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index 516c58f5bd..18376547c8 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: 2024-05-02 19:55+0300\n" "Last-Translator: Olcay ÖREN\n" "Language-Team: \n" @@ -1384,9 +1385,6 @@ msgid "" "Configuration file \"%1%\" was loaded, but some values were not recognized." msgstr "\"%1%\" yapılandırma dosyası yüklendi ancak bazı değerler tanınamadı." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1496,6 +1494,9 @@ msgstr "" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Bir veya daha fazla dosya seçin (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Bir dosya seçin (gcode/3mf):" @@ -1566,6 +1567,11 @@ msgstr "Devam eden yüklemeler" msgid "Select a G-code file:" msgstr "G kodu dosyası seçin:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Dosya İçe Aktar" @@ -3256,30 +3262,30 @@ msgid "Device" msgstr "Cihaz" msgid "Task Sending" -msgstr "" +msgstr "Görev Gönderme" msgid "Task Sent" -msgstr "" +msgstr "Görev Gönderildi" msgid "Edit multiple printers" -msgstr "" +msgstr "Birden fazla yazıcıyı düzenleme" msgid "Select connected printetrs (0/6)" -msgstr "" +msgstr "Bağlı yazıcıları seçin (0/6)" #, c-format, boost-format msgid "Select Connected Printetrs (%d/6)" -msgstr "" +msgstr "Bağlı Yazıcıları Seçin (%d/6)" #, c-format, boost-format msgid "The maximum number of printers that can be selected is %d" -msgstr "" +msgstr "Seçilebilecek maksimum yazıcı sayısı %d'dır" msgid "Offline" msgstr "Çevrimdışı" msgid "No task" -msgstr "" +msgstr "Görev yok" msgid "View" msgstr "Görünüm" @@ -3288,23 +3294,23 @@ msgid "N/A" msgstr "N/A" msgid "Edit Printers" -msgstr "" +msgstr "Yazıcıları Düzenle" msgid "Device Name" -msgstr "" +msgstr "Cihaz Adı" msgid "Task Name" -msgstr "" +msgstr "Görev Adı" msgid "Device Status" -msgstr "" +msgstr "Cihaz Durumu" msgid "Actions" -msgstr "" +msgstr "İşlemler" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" -msgstr "" +msgstr "Lütfen buradan yönetmek istediğiniz cihazları seçin (en fazla 6 cihaz)" msgid "Add" msgstr "Ekle" @@ -3370,22 +3376,22 @@ msgid "Stop" msgstr "Durdur" msgid "Task Status" -msgstr "" +msgstr "Görev durumu" msgid "Sent Time" -msgstr "" +msgstr "Gönderilen Zaman" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "Gönderilecek görev yok!" msgid "No historical tasks!" -msgstr "" +msgstr "Tarihi görevler yok!" msgid "Loading..." msgstr "Yükleniyor..." msgid "No AMS" -msgstr "" +msgstr "AMS Yok" msgid "Send to Multi-device" msgstr "Çoklu cihaza gönder" @@ -3397,28 +3403,37 @@ msgid "Abnormal print file data. Please slice again" msgstr "Anormal yazdırma dosyası verileri. Lütfen tekrar dilimleyin" msgid "There is no device available to send printing." -msgstr "" +msgstr "Baskı göndermek için kullanılabilir bir cihaz yok." msgid "The number of printers in use simultaneously cannot be equal to 0." -msgstr "" +msgstr "Aynı anda kullanımda olan yazıcı sayısı 0'a eşit olamaz." msgid "Use External Spool" -msgstr "" +msgstr "Harici Makara Kullanın" msgid "Use AMS" -msgstr "" +msgstr "AMS kullanın" msgid "Select Printers" -msgstr "" +msgstr "Yazıcıları Seçin" msgid "Ams Status" -msgstr "" +msgstr "Ams Durumu" msgid "Printing Options" +msgstr "Yazdırma Seçenekleri" + +msgid "Bed Leveling" +msgstr "Yatak Tesviyesi" + +msgid "Timelapse" +msgstr "Timelapse" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "Gönderme Seçenekleri" msgid "Send" msgstr "Gönder" @@ -3427,13 +3442,17 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"aynı anda kaç yazıcının ısıtma işleminden geçebileceği, aynı anda " +"ısıtılabilecek cihaz sayısına bağlıdır." msgid "Wait" -msgstr "" +msgstr "Bekleyin" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"her parti başına dakika. (Isıtmanın tamamlanması ne kadar sürerse buna " +"bağlıdır.)" msgid "Name is invalid;" msgstr "Geçersiz isim;" @@ -4630,6 +4649,12 @@ msgstr "3MF/STL/STEP/SVG/OBJ/AMF'yi içe aktar" msgid "Load a model" msgstr "Model yükle" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Yapılandırmaları İçe Aktar" @@ -4664,7 +4689,7 @@ msgid "Export current plate as G-code" msgstr "Geçerli plakayı G kodu olarak dışa aktar" msgid "Export Preset Bundle" -msgstr "" +msgstr "Ön Ayar Paketini Dışa Aktar" msgid "Export current configuration to files" msgstr "Geçerli yapılandırmayı dosyalara aktar" @@ -5043,9 +5068,6 @@ msgstr "Dosyaları aya göre gruplandırın, en yenisi önce olsun." msgid "Show all files, recent first." msgstr "Tüm dosyaları göster, en yenisi önce." -msgid "Timelapse" -msgstr "Timelapse" - msgid "Switch to timelapse files." msgstr "Timelapse dosyalarına geç." @@ -5629,12 +5651,12 @@ msgstr[1] "%1$d nesne, kesme nesnesinin parçaları olarak yüklendi" msgid "ERROR" msgstr "HATA" -msgid "CANCELED" -msgstr "İPTAL EDİLDİ" - msgid "COMPLETED" msgstr "TAMAMLANDI" +msgid "CANCELED" +msgstr "İPTAL EDİLDİ" + msgid "Cancel upload" msgstr "Yüklemeyi iptal et" @@ -6244,6 +6266,20 @@ msgstr "geçerli gcode içermiyor." msgid "Error occurs while loading G-code file" msgstr "G kodu dosyası yüklenirken hata oluşuyor" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Proje dosyasını sürükle" @@ -6665,6 +6701,20 @@ msgstr "" "Etkinleştirilirse, OrcaSlicer'ı .step dosyalarını açmak için varsayılan " "uygulama olarak ayarlar" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Maksimum yeni proje" @@ -7028,9 +7078,6 @@ msgstr "Bambu Dokulu PEI Plaka" msgid "Send print job to" msgstr "Yazdırma işini şuraya gönder" -msgid "Bed Leveling" -msgstr "Yatak Tesviyesi" - msgid "Flow Dynamics Calibration" msgstr "Akış Dinamiği Kalibrasyonu" @@ -10882,7 +10929,7 @@ msgid "Lightning" msgstr "Yıldırım" msgid "Cross Hatch" -msgstr "" +msgstr "Çapraz Çizgi" msgid "Sparse infill anchor length" msgstr "Dolgu uzunluğu" @@ -13322,17 +13369,29 @@ msgstr "Silme kulesi temizleme hatları aralığı" msgid "Spacing of purge lines on the wipe tower." msgstr "Silme kulesindeki boşaltma hatlarının aralığı." -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -16391,6 +16450,9 @@ msgstr "" "sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını " "azaltabileceğini biliyor muydunuz?" +#~ msgid "V" +#~ msgstr "V" + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index 3e5d5346ce..c62c2a26f2 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: 2023-08-10 20:25-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -278,16 +278,16 @@ msgid "uniform scale" msgstr "єдина шкала" msgid "Planar" -msgstr "" +msgstr "Плоский" msgid "Dovetail" -msgstr "" +msgstr "Ластівчин хвіст" msgid "Auto" msgstr "Авто" msgid "Manual" -msgstr "" +msgstr "Manual" msgid "Plug" msgstr "Підключи" @@ -296,7 +296,7 @@ msgid "Dowel" msgstr "Дюбель" msgid "Snap" -msgstr "" +msgstr "Захоплення" msgid "Prism" msgstr "" @@ -311,7 +311,7 @@ msgid "Hexagon" msgstr "Шестикутник" msgid "Keep orientation" -msgstr "" +msgstr "Зберегти орієнтацію" msgid "Place on cut" msgstr "Помістити на зріз" @@ -335,19 +335,19 @@ msgstr "Форма" #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "" +msgstr "Глибина" msgid "Groove" -msgstr "" +msgstr "Жолобок" msgid "Width" msgstr "Ширина" msgid "Flap Angle" -msgstr "" +msgstr "Кут клапана" msgid "Groove Angle" -msgstr "" +msgstr "Кут жолоба" msgid "Part" msgstr "Частина" @@ -370,7 +370,7 @@ msgid "Move cut plane" msgstr "" msgid "Mode" -msgstr "" +msgstr "Режим" msgid "Change cut mode" msgstr "" @@ -418,7 +418,7 @@ msgid "Remove connectors" msgstr "Видалити з’єднання" msgid "Bulge" -msgstr "" +msgstr "Виступ" msgid "Bulge proportion related to radius" msgstr "" @@ -530,6 +530,8 @@ msgstr "" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" msgstr "" +"неманіфольдні ребра можуть бути викликані інструментом різання, ви хочете " +"виправити це зараз?" msgid "Repairing model object" msgstr "Відновлення об'єкта моделі" @@ -626,13 +628,13 @@ msgid "Remove selection" msgstr "Видалити виділення" msgid "Entering Seam painting" -msgstr "" +msgstr "Entering seam painting" msgid "Leaving Seam painting" -msgstr "" +msgstr "Leaving Seam Painting" msgid "Paint-on seam editing" -msgstr "" +msgstr "Paint-on seam editing" #. TRN - Input label. Be short as possible #. Select look of letter shape @@ -771,7 +773,7 @@ msgstr "" msgctxt "EmbossOperation" msgid "Cut" -msgstr "" +msgstr "Вирізати" msgid "Click to change part type into negative volume." msgstr "" @@ -913,19 +915,19 @@ msgstr "" msgctxt "Alignment" msgid "Left" -msgstr "" +msgstr "Ліво" msgctxt "Alignment" msgid "Center" -msgstr "" +msgstr "Центр" msgctxt "Alignment" msgid "Right" -msgstr "" +msgstr "Право" msgctxt "Alignment" msgid "Top" -msgstr "" +msgstr "Верх" msgctxt "Alignment" msgid "Middle" @@ -933,7 +935,7 @@ msgstr "" msgctxt "Alignment" msgid "Bottom" -msgstr "" +msgstr "Ніз" msgid "Revert alignment." msgstr "" @@ -1245,43 +1247,43 @@ msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "" msgid "Vertex" -msgstr "" +msgstr "Вершина" msgid "Edge" -msgstr "" +msgstr "Ребро" msgid "Plane" msgstr "Площина" msgid "Point on edge" -msgstr "" +msgstr "Точка на краї" msgid "Point on circle" -msgstr "" +msgstr "Точка на колі" msgid "Point on plane" -msgstr "" +msgstr "Точка на площині" msgid "Center of edge" -msgstr "" +msgstr "Центр ребра" msgid "Center of circle" -msgstr "" +msgstr "Центр кола" msgid "ShiftLeft mouse button" msgstr "" msgid "Select feature" -msgstr "" +msgstr "Виберіть функцію" msgid "Select point" -msgstr "" +msgstr "Виберіть точку" msgid "Delete" msgstr "Видалити" msgid "Restart selection" -msgstr "" +msgstr "Перезапустити вибір" msgid "Esc" msgstr "Esc" @@ -1290,14 +1292,14 @@ msgid "Unselect" msgstr "" msgid "Measure" -msgstr "" +msgstr "Виміряти" msgid "Edit to scale" -msgstr "" +msgstr "Редагувати масштаб" msgctxt "Verb" msgid "Scale" -msgstr "" +msgstr "Масштаб" msgid "None" msgstr "Ні" @@ -1309,22 +1311,22 @@ msgid "Length" msgstr "Довжина" msgid "Selection" -msgstr "" +msgstr "Вибір" msgid "Copy to clipboard" msgstr "Копіювати в буфер обміну" msgid "Perpendicular distance" -msgstr "" +msgstr "Перпендикулярна відстань" msgid "Distance" -msgstr "" +msgstr "Відстань" msgid "Direct distance" -msgstr "" +msgstr "Пряма відстань" msgid "Distance XYZ" -msgstr "" +msgstr "Відстань XYZ" msgid "Ctrl+" msgstr "Ctrl+" @@ -1365,9 +1367,6 @@ msgstr "" "Файл конфігурації “%1%” був завантажений, але деякі значення не були " "розпізнані." -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1463,10 +1462,14 @@ msgstr "Виберіть один файл (3mf):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgstr "" +"Виберіть один або кілька файлів (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Виберіть один або кілька файлів (3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "Виберіть один файл (gcode/3mf):" @@ -1503,9 +1506,12 @@ msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " "newly created user presets can only be used locally." msgstr "" +"Кількість налаштувань користувача, збережених у хмарі, перевищила " +"максимально допустиму межу, тому новостворені налаштування користувача можна " +"використовувати лише локально." msgid "Sync user presets" -msgstr "" +msgstr "Синхронізувати налаштування користувача" msgid "Loading user preset" msgstr "Завантаження користувацького пресета" @@ -1534,6 +1540,11 @@ msgstr "Поточні завантаження" msgid "Select a G-code file:" msgstr "Виберіть файл G-коду:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "Імпортувати файл" @@ -1668,10 +1679,10 @@ msgid "Cone" msgstr "Конус" msgid "Disc" -msgstr "" +msgstr "Диск" msgid "Torus" -msgstr "" +msgstr "Торус" msgid "Orca Cube" msgstr "Orca Куб" @@ -1718,10 +1729,10 @@ msgid "Set as individual objects" msgstr "Встановити як окремі об'єкти" msgid "Fill bed with copies" -msgstr "" +msgstr "Заповнити ліжко копіями" msgid "Fill the remaining area of bed with copies of the selected object" -msgstr "" +msgstr "Заповнити залишену частину ліжка копіями вибраного об’єкта" msgid "Printable" msgstr "Доступно для друку" @@ -1730,10 +1741,10 @@ msgid "Fix model" msgstr "Виправити модель" msgid "Export as one STL" -msgstr "" +msgstr "Експортувати як один файл STL" msgid "Export as STLs" -msgstr "" +msgstr "Експортувати як файли STL" msgid "Reload from disk" msgstr "Перезавантажити з диска" @@ -1806,10 +1817,10 @@ msgid "Assemble the selected objects to an object with single part" msgstr "Зберіть вибрані об'єкти в об'єкт з однією частиною" msgid "Mesh boolean" -msgstr "" +msgstr "Меш-булева операція" msgid "Mesh boolean operations including union and subtraction" -msgstr "" +msgstr "Меш-булеві операції, включаючи об’єднання та віднімання" msgid "Along X axis" msgstr "Вздовж осі X" @@ -1953,7 +1964,7 @@ msgid "Lock" msgstr "Заблокувати" msgid "Edit Plate Name" -msgstr "" +msgstr "Редагувати назву пластини" msgid "Name" msgstr "Ім'я" @@ -2018,7 +2029,7 @@ msgid "Error!" msgstr "Помилка!" msgid "Failed to get the model data in the current file." -msgstr "" +msgstr "Не вдалося отримати дані моделі в поточному файлі." msgid "Generic" msgstr "Загальний" @@ -2264,7 +2275,7 @@ msgid "Pause" msgstr "Пауза" msgid "Template" -msgstr "" +msgstr "Шаблон" msgid "Custom" msgstr "Стандартний" @@ -2339,22 +2350,22 @@ msgid "Failed to connect to the server" msgstr "Не вдалося підключитися до сервера" msgid "Check the status of current system services" -msgstr "" +msgstr "Перевірте стан поточних системних служб" msgid "code" -msgstr "" +msgstr "код" msgid "Failed to connect to cloud service" -msgstr "" +msgstr "Не вдалося підключитися до хмарної служби" msgid "Please click on the hyperlink above to view the cloud service status" -msgstr "" +msgstr "Клацніть гіперпосилання вище, щоб переглянути статус хмарної служби" msgid "Failed to connect to the printer" msgstr "Не вдалося підключитися до принтера" msgid "Connection to printer failed" -msgstr "" +msgstr "Помилка підключення до принтера" msgid "Please check the network connection of the printer and Orca." msgstr "" @@ -2366,7 +2377,7 @@ msgid "?" msgstr "?" msgid "/" -msgstr "" +msgstr "/" msgid "Empty" msgstr "Порожній" @@ -2375,13 +2386,13 @@ msgid "AMS" msgstr "AMS" msgid "Auto Refill" -msgstr "" +msgstr "Автоматична заміна" msgid "AMS not connected" msgstr "АМС не підключено" msgid "Load" -msgstr "" +msgstr "Завантажити" msgid "Unload" msgstr "Вивантаження" @@ -2412,7 +2423,7 @@ msgid "Cancel calibration" msgstr "Скасувати калібрування" msgid "Idling..." -msgstr "" +msgstr "Очікування…" msgid "Heat the nozzle" msgstr "Нагрійте сопло" @@ -2430,21 +2441,23 @@ msgid "Purge old filament" msgstr "Очистіть старий філамент" msgid "Feed Filament" -msgstr "" +msgstr "Подача нитки філаменту" msgid "Confirm extruded" -msgstr "" +msgstr "Підтвердити витіснення" msgid "Check filament location" -msgstr "" +msgstr "Перевірити розташування філаменту" msgid "Grab new filament" -msgstr "" +msgstr "Візьміть новий філамент" msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Виберіть слот AMS, а потім натисніть кнопку “Завантажити” або “Вивантажити”, " +"щоб автоматично завантажити або вивантажити філаменти." msgid "Edit" msgstr "Редагувати" @@ -2525,13 +2538,13 @@ msgid "Orienting canceled." msgstr "" msgid "Filling" -msgstr "" +msgstr "Заповнення" msgid "Bed filling canceled." -msgstr "" +msgstr "Заповнення ліжка скасоване." msgid "Bed filling done." -msgstr "" +msgstr "Заповнення ліжка виконане." msgid "Searching for optimal orientation" msgstr "" @@ -2552,48 +2565,58 @@ msgid "Please check the printer network connection." msgstr "Будь ласка, перевірте підключення принтера до мережі." msgid "Abnormal print file data. Please slice again." -msgstr "" +msgstr "Аномальні дані для друку: будь ласка, переслайсьте знову." msgid "Task canceled." -msgstr "" +msgstr "Завдання скасовано." msgid "Upload task timed out. Please check the network status and try again." msgstr "" +"Тайм-аут завантаження завдання. Будь ласка, перевірте статус мережі і " +"спробуйте ще раз." msgid "Cloud service connection failed. Please try again." msgstr "" "Не вдалося підключитися до хмарного сервісу. Будь ласка, спробуйте ще раз." msgid "Print file not found. please slice again." -msgstr "" +msgstr "Файл для друку не знайдено. Будь ласка, переслідкуйте його знову." msgid "" "The print file exceeds the maximum allowable size (1GB). Please simplify the " "model and slice again." msgstr "" +"Розмір друкованого файлу перевищує максимально допустимий розмір (1 ГБ). " +"Будь ласка, спростіть модель і знову виконайте нарізку." msgid "Failed to send the print job. Please try again." msgstr "Не вдалося надіслати завдання на друк. Будь ласка, спробуйте ще раз." msgid "Failed to upload file to ftp. Please try again." -msgstr "" +msgstr "Не вдалося завантажити файл на FTP. Спробуйте ще раз." msgid "" "Check the current status of the bambu server by clicking on the link above." msgstr "" +"Перевірте поточний стан сервера Bambu Lab, натиснувши на посилання вище." msgid "" "The size of the print file is too large. Please adjust the file size and try " "again." msgstr "" +"Розмір файлу друку занадто великий. Будь ласка, зменште розмір файлу і " +"спробуйте ще раз." msgid "Print file not found, Please slice it again and send it for printing." msgstr "" +"Файл друку не знайдено; будь ласка, знову наріжте його і відправте для друку." msgid "" "Failed to upload print file to FTP. Please check the network status and try " "again." msgstr "" +"Не вдалося завантажити файл друку на FTP. Будь ласка, перевірте стан мережі " +"і спробуйте ще раз." msgid "Sending print job over LAN" msgstr "Надсилання завдання на друк локальною мережею" @@ -2602,7 +2625,7 @@ msgid "Sending print job through cloud service" msgstr "Надсилання завдання на друк через хмарний сервіс" msgid "Print task sending times out." -msgstr "" +msgstr "Час відправлення завдання на друк закінчився." msgid "Service Unavailable" msgstr "Сервіс недоступний" @@ -2620,6 +2643,7 @@ msgstr "Успішно надіслано. Автоматично перейде #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" msgstr "" +"Успішно відправлено. Автоматично перейдеться на наступну сторінку через %s с" msgid "An SD card needs to be inserted before printing via LAN." msgstr "Перед друком через локальну мережу необхідно вставити картку SD." @@ -2782,10 +2806,10 @@ msgid "Setting AMS slot information while printing is not supported" msgstr "Встановлення інформації про слот AMS під час друку не підтримується" msgid "Factors of Flow Dynamics Calibration" -msgstr "" +msgstr "Фактори калібрування динаміки потоку" msgid "PA Profile" -msgstr "" +msgstr "Профіль PA" msgid "Factor K" msgstr "Фактор До" @@ -2804,10 +2828,10 @@ msgid "You need to select the material type and color first." msgstr "Спочатку потрібно вибрати тип матеріалу та колір." msgid "Please input a valid value (K in 0~0.3)" -msgstr "" +msgstr "Будь ласка, введіть дійсне значення (K від 0~0.3)" msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" -msgstr "" +msgstr "Будь ласка, введіть дійсне значення (K від 0~0.3, N від 0.6~2.0)" msgid "Other Color" msgstr "Інший колір" @@ -2915,7 +2939,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "Друк із ниткою, встановленою на задній частині корпусу" msgid "Current Cabin humidity" -msgstr "" +msgstr "Поточна вологість у кабіні" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2923,6 +2947,10 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"Будь ласка, змініть осушувач, коли він стає занадто вологим. Індикатор може " +"не відображати точно в наступних випадках: коли кришка відкрита або пакет з " +"осушувачем змінено. На поглинання вологи може знадобитися кілька годин, " +"низькі температури також сповільнюють процес." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -2956,16 +2984,20 @@ msgid "" "When the current material run out, the printer will continue to print in the " "following order." msgstr "" +"Коли поточний матеріал закінчується, принтер буде продовжувати друк у " +"наступному порядку." msgid "Group" msgstr "Група" msgid "The printer does not currently support auto refill." -msgstr "" +msgstr "Принтер в даний момент не підтримує автоматичне поновлення." msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "" +"Функція резервного копіювання філаменту в AMS вимкнена, будь ласка, " +"активуйте її у налаштуваннях Автоматичного поповнення." msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " @@ -2973,12 +3005,16 @@ msgid "" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" +"Якщо в AMS є два ідентичні філаменти, резервне копіювання філаменту буде " +"увімкнено.\n" +"(Зараз підтримується автоматичне забезпечення споживних матеріалів " +"однакового бренду, типу матеріалу і кольору)" msgid "DRY" -msgstr "" +msgstr "СУХО" msgid "WET" -msgstr "" +msgstr "ВОЛОГО" msgid "AMS Settings" msgstr "Налаштування AMS" @@ -2997,6 +3033,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"Примітка: якщо під час друку вставлений новий філамент, AMS автоматично не " +"прочитає жодної інформації, поки друк не буде завершено." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3047,12 +3085,14 @@ msgstr "" "поточний філамент закінчується" msgid "Air Printing Detection" -msgstr "" +msgstr "Виявлення друку в повітрі" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"Виявляє засмічення та стирання нитки, негайно зупиняючи друк для економії " +"часу та матеріалу." msgid "File" msgstr "Файл" @@ -3135,7 +3175,7 @@ msgid "Running post-processing scripts" msgstr "Запуск скриптів постобробки" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "Скрипт післяобробки успішно виконаний" msgid "Unknown error occured during exporting G-code." msgstr "" @@ -3201,10 +3241,10 @@ msgid "Device" msgstr "Пристрій" msgid "Task Sending" -msgstr "" +msgstr "Відправлення завдання" msgid "Task Sent" -msgstr "" +msgstr "Завдання надіслане" msgid "Edit multiple printers" msgstr "" @@ -3224,7 +3264,7 @@ msgid "Offline" msgstr "Не в мережі" msgid "No task" -msgstr "" +msgstr "Немає завдань" msgid "View" msgstr "Вигляд" @@ -3236,16 +3276,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "" +msgstr "Назва пристрою" msgid "Task Name" -msgstr "" +msgstr "Назва завдання" msgid "Device Status" -msgstr "" +msgstr "Статус пристрою" msgid "Actions" -msgstr "" +msgstr "Дії" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3264,7 +3304,7 @@ msgid "Upgrading" msgstr "" msgid "Incompatible" -msgstr "" +msgstr "Несумісний" msgid "syncing" msgstr "" @@ -3288,7 +3328,7 @@ msgid "Pending" msgstr "" msgid "Sending" -msgstr "" +msgstr "Sending" msgid "Sending Finish" msgstr "" @@ -3315,25 +3355,25 @@ msgid "Stop" msgstr "Стоп" msgid "Task Status" -msgstr "" +msgstr "Статус завдання" msgid "Sent Time" -msgstr "" +msgstr "Час відправлення" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "Немає завдань для відправлення!" msgid "No historical tasks!" -msgstr "" +msgstr "Історичних завдань немає!" msgid "Loading..." msgstr "Завантаження..." msgid "No AMS" -msgstr "" +msgstr "Немає AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "Відправити на багато пристроїв" msgid "Preparing print job" msgstr "Підготовка завдання друку" @@ -3348,22 +3388,31 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "" +msgstr "Використовуйте зовнішню катушку" msgid "Use AMS" -msgstr "" +msgstr "Використовуйте AMS" msgid "Select Printers" -msgstr "" +msgstr "Вибрати принтери" msgid "Ams Status" -msgstr "" +msgstr "Статус AMS" msgid "Printing Options" +msgstr "Параметри друку" + +msgid "Bed Leveling" +msgstr "Вирівнювання столу" + +msgid "Timelapse" +msgstr "Таймлапс" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "Параметри відправки" msgid "Send" msgstr "Надіслати" @@ -3372,13 +3421,17 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"друкувати одночасно (це залежить від того, скільки пристроїв можуть " +"нагріватися одночасно)." msgid "Wait" -msgstr "" +msgstr "Чекайте" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"хвилин на кожну партію. (Це залежить від того, скільки часу потрібно на " +"нагрівання)." msgid "Name is invalid;" msgstr "Ім'я недійсне;" @@ -3399,7 +3452,7 @@ msgid "The name is not allowed to end with space character." msgstr "Ім'я не може закінчуватися пробілом." msgid "The name length exceeds the limit." -msgstr "" +msgstr "Довжина імені перевищує обмеження." msgid "Origin" msgstr "Джерело" @@ -3474,14 +3527,18 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" +"Мінімально рекомендована температура менше 190 градусів або максимально " +"рекомендована температура більше 300 градусів.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" +"Мінімальна рекомендована температура не може бути вищою за максимальну " +"рекомендовану температуру.\n" msgid "Please check.\n" -msgstr "" +msgstr "Будь ласка, перевірте.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3514,6 +3571,9 @@ msgid "" "it may result in material softening and clogging.The maximum safe " "temperature for the material is %d" msgstr "" +"Поточна температура камери вища, ніж безпечна температура матеріалу, це може " +"призвести до розм’якшення матеріалу та його забивання. Максимально безпечна " +"температура для цього матеріалу становить %d" msgid "" "Too small layer height.\n" @@ -3635,7 +3695,7 @@ msgstr "" "типуповільненої зйомки - традиційний." msgid " But machines with I3 structure will not generate timelapse videos." -msgstr "" +msgstr " Але машини зі структурою I3 не будуть створювати відео з таймлапсами." msgid "" "Change these settings automatically? \n" @@ -3710,46 +3770,46 @@ msgid "Paused due to heat bed temperature malfunction" msgstr "Припинено через несправність температури нагрівального шару" msgid "Filament unloading" -msgstr "" +msgstr "Розвантаження філаменту" msgid "Skip step pause" -msgstr "" +msgstr "Пропустити паузу кроку" msgid "Filament loading" -msgstr "" +msgstr "Завантаження філаменту" msgid "Motor noise calibration" -msgstr "" +msgstr "Калібрування шуму мотора" msgid "Paused due to AMS lost" -msgstr "" +msgstr "Пауза через втрату сигналу AMS" msgid "Paused due to low speed of the heat break fan" -msgstr "" +msgstr "Пауза через низьку швидкість вентилятора теплового радіатора" msgid "Paused due to chamber temperature control error" -msgstr "" +msgstr "Пауза через помилку контролю температури камери" msgid "Cooling chamber" -msgstr "" +msgstr "Охолодження камери" msgid "Paused by the Gcode inserted by user" -msgstr "" +msgstr "Пауза вставлена користувачем через Gcode" msgid "Motor noise showoff" -msgstr "" +msgstr "Демонстрація шуму мотора" msgid "Nozzle filament covered detected pause" -msgstr "" +msgstr "Пауза через виявлене покриття філаментом сопла" msgid "Cutter error pause" -msgstr "" +msgstr "Пауза через помилку різака" msgid "First layer error pause" -msgstr "" +msgstr "Пауза через помилку першого шару" msgid "Nozzle clog pause" -msgstr "" +msgstr "Пауза через засмічення сопла" msgid "Unknown" msgstr "Невідомий" @@ -3780,53 +3840,66 @@ msgid "" "45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" +"Поточна температура камери або цільова температура камери перевищує 45℃. Щоб " +"уникнути забивання екструдера, не дозволяється завантажувати філаменти " +"низької температури (PLA/PETG/TPU)." msgid "" "Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " "avoid extruder clogging,it is not allowed to set the chamber temperature " "above 45℃." msgstr "" +"Філамент низької температури (PLA/PETG/TPU) завантажено в екструдер. Щоб " +"уникнути забивання екструдера, не дозволяється встановлювати температуру " +"камери вище 45℃." msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated. And the target chamber temperature will " "automatically be set to 0℃." msgstr "" +"Якщо ви встановите температуру камери нижче 40℃, контроль температури камери " +"не буде активований, і цільова температура камери автоматично буде " +"встановлена на 0℃." msgid "Failed to start printing job" msgstr "Не вдалося запустити завдання друку" msgid "" "This calibration does not support the currently selected nozzle diameter" -msgstr "" +msgstr "Калібрування не підтримує обраний діаметр сопла" msgid "Current flowrate cali param is invalid" -msgstr "" +msgstr "Поточний параметр калібрування витрати недійсний" msgid "Selected diameter and machine diameter do not match" -msgstr "" +msgstr "Обраний діаметр і діаметр пристрою не відповідають один одному" msgid "Failed to generate cali gcode" -msgstr "" +msgstr "Не вдалося створити Gcode для калібрування" msgid "Calibration error" -msgstr "" +msgstr "Помилка калібрування" msgid "TPU is not supported by AMS." -msgstr "" +msgstr "TPU не підтримується AMS." msgid "Bambu PET-CF/PA6-CF is not supported by AMS." -msgstr "" +msgstr "Bambu PET-CF/PA6-CF не підтримується AMS." msgid "" "Damp PVA will become flexible and get stuck inside AMS,please take care to " "dry it before use." msgstr "" +"Вологий PVA стає гнучким і може застрягти всередині AMS, будь ласка, " +"обережно висушіть його перед використанням." msgid "" "CF/GF filaments are hard and brittle, It's easy to break or get stuck in " "AMS, please use with caution." msgstr "" +"Філаменти CF/GF є жорсткими і крихкими, їх легко можна зламати або вони " +"можуть застряти в AMS, будьте обережні під час використання." msgid "default" msgstr "за замовчуванням" @@ -3910,6 +3983,7 @@ msgstr "Перевірка параметрів" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." msgstr "" +"Значення %s знаходиться за межами діапазону. Дійсний діапазон від %d до %d." msgid "Value is out of range." msgstr "Значення поза допустимим діапазоном." @@ -4100,10 +4174,10 @@ msgid "Normal mode" msgstr "Нормальний режим" msgid "Total Filament" -msgstr "" +msgstr "Загальний філамент" msgid "Model Filament" -msgstr "" +msgstr "Філамент моделі" msgid "Prepare time" msgstr "Час підготовки" @@ -4199,7 +4273,7 @@ msgid "Spacing" msgstr "Відстань" msgid "0 means auto spacing." -msgstr "" +msgstr "0 означає автоматичний інтервал." msgid "Auto rotate for arrangement" msgstr "Автоповорот для розташування" @@ -4211,7 +4285,7 @@ msgid "Avoid extrusion calibration region" msgstr "Уникайте області калібрування екструзії" msgid "Align to Y axis" -msgstr "" +msgstr "Вирівняти за осі Y" msgid "Add plate" msgstr "Додати плату" @@ -4279,7 +4353,7 @@ msgid "An object is layed over the boundary of plate." msgstr "Об'єкт накладений на межу столу." msgid "A G-code path goes beyond the max print height." -msgstr "" +msgstr "Шлях G-коду виходить за максимально допустиму висоту друку." msgid "A G-code path goes beyond the boundary of plate." msgstr "Шлях G-коду виходить за межі зони друку." @@ -4306,10 +4380,10 @@ msgid "Bed leveling" msgstr "Вирівнювання столу" msgid "Vibration compensation" -msgstr "" +msgstr "Компенсація вібрації" msgid "Motor noise cancellation" -msgstr "" +msgstr "Скасування шуму мотора" msgid "Calibration program" msgstr "Програма калібрування" @@ -4336,7 +4410,7 @@ msgid "Calibrating" msgstr "Калібрування" msgid "No step selected" -msgstr "" +msgstr "Не вибрано крок" msgid "Auto-record Monitoring" msgstr "Автозапис Моніторингу" @@ -4345,7 +4419,7 @@ msgid "Go Live" msgstr "У прямому ефірі" msgid "Liveview Retry" -msgstr "" +msgstr "Повторити перегляд у реальному часі" msgid "Resolution" msgstr "Дозвіл нарізки" @@ -4403,7 +4477,7 @@ msgid "Preview" msgstr "Попередній перегляд" msgid "Multi-device" -msgstr "" +msgstr "Багато пристроїв" msgid "Project" msgstr "Проєкт" @@ -4549,6 +4623,12 @@ msgstr "Імпорт 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "Завантажте модель" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "Імпорт конфігурацій" @@ -4559,10 +4639,10 @@ msgid "Import" msgstr "Імпорт" msgid "Export all objects as one STL" -msgstr "" +msgstr "Експортувати всі об’єкти як один файл STL" msgid "Export all objects as STLs" -msgstr "" +msgstr "Експортувати всі об’єкти як файли STL" msgid "Export Generic 3MF" msgstr "Експорт спільного 3MF" @@ -4676,10 +4756,10 @@ msgid "Show object labels in 3D scene" msgstr "Показати мітки об'єктів у 3D-сцені" msgid "Show &Overhang" -msgstr "" +msgstr "Показати &Виступ" msgid "Show object overhang highlight in 3D scene" -msgstr "" +msgstr "Показати підсвічування виступу об'єкта у 3D сцені" msgid "Preferences" msgstr "Налаштування" @@ -4861,47 +4941,58 @@ msgstr "Синхронізація" msgid "The device cannot handle more conversations. Please retry later." msgstr "" +"Пристрій не може обробляти більше розмов. Будь ласка, спробуйте пізніше." msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "" +msgstr "Програвач несправний. Будь ласка, перевстановіть систему програвача." msgid "The player is not loaded, please click \"play\" button to retry." msgstr "" +"Програвач не завантажений, будь ласка, натисніть кнопку “Відтворити”, щоб " +"спробувати ще раз." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "Будь ласка, підтвердіть, чи принтер підключений." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" +"Принтер зараз зайнятий завантаженням. Будь ласка, спробуйте ще раз після " +"завершення завантаження." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "Камера принтера несправна." msgid "Problem occured. Please update the printer firmware and try again." msgstr "" +"Виникла проблема. Будь ласка, оновіть прошивку принтера і спробуйте знову." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"Режим прямого підключення до мережі вимкнений. Будь ласка, увімкніть режим " +"прямого перегляду на екрані принтера." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "Будь ласка, введіть IP-адресу принтера для підключення." msgid "Initializing..." msgstr "Ініціалізація..." msgid "Connection Failed. Please check the network and try again" msgstr "" +"Підключення не вдалося. Будь ласка, перевірте мережу та спробуйте ще раз" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"Будь ласка, перевірте мережу та спробуйте ще раз. Якщо проблема " +"продовжується, ви можете перезавантажити або оновити принтер." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "Принтер був вийшов із системи та не може підключитися." msgid "Stopped." msgstr "Зупинено." @@ -4959,9 +5050,6 @@ msgstr "Згрупуйте файли по місяцях, спочатку не msgid "Show all files, recent first." msgstr "Показати всі файли спочатку останні." -msgid "Timelapse" -msgstr "Таймлапс" - msgid "Switch to timelapse files." msgstr "Перехід до файлів уповільненої зйомки." @@ -4972,7 +5060,7 @@ msgid "Switch to video files." msgstr "Перехід до відеофайлів." msgid "Switch to 3mf model files." -msgstr "" +msgstr "Переключитися на файли моделей 3mf." msgid "Delete selected files from printer." msgstr "Видалити вибрані файли з принтера." @@ -4993,7 +5081,7 @@ msgid "Refresh" msgstr "Оновити" msgid "Reload file list from printer." -msgstr "" +msgstr "Перезавантажте список файлів з принтера." msgid "No printers." msgstr "Ніяких принтерів." @@ -5006,27 +5094,29 @@ msgid "Loading file list..." msgstr "Завантаження списку файлів..." msgid "No files" -msgstr "" +msgstr "No files" msgid "Load failed" -msgstr "" +msgstr "Не вдалося завантажити" msgid "Initialize failed (Device connection not ready)!" -msgstr "" +msgstr "Ініціалізація не вдалася (З'єднання пристрою не готове)!" msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"Перегляд файлів на SD-картці не підтримується в поточній версії прошивки. " +"Будь ласка, оновіть прошивку принтера." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "Помилка підключення LAN (Не вдалося переглянути sd-карту)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "Перегляд файлів на SD-картці не підтримується в режимі лише LAN." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -5045,19 +5135,19 @@ msgstr "Видалити файли" #, c-format, boost-format msgid "Do you want to delete the file '%s' from printer?" -msgstr "" +msgstr "Ви хочете видалити файл '%s' з принтера?" msgid "Delete file" -msgstr "" +msgstr "Видалити файл" msgid "Fetching model infomations ..." -msgstr "" +msgstr "Отримання інформації про модель ..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "Не вдалося отримати інформацію про модель з принтера." msgid "Failed to parse model information." -msgstr "" +msgstr "Не вдалося розібрати інформацію про модель." msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -5073,6 +5163,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"Файл: %s\n" +"Заголовок: %s\n" msgid "Download waiting..." msgstr "Чекання завантаження..." @@ -5094,22 +5186,24 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"Перепідключення принтера. Операцію не можна завершити негайно, спробуйте ще " +"раз пізніше." msgid "File does not exist." -msgstr "" +msgstr "Файл не існує." msgid "File checksum error. Please retry." -msgstr "" +msgstr "Помилка контрольної суми файлу. Будь ласка, спробуйте ще раз." msgid "Not supported on the current printer version." -msgstr "" +msgstr "Не підтримується на поточній версії принтера." msgid "Storage unavailable, insert SD card." -msgstr "" +msgstr "Зберігання недоступне, вставте SD-карту." #, c-format, boost-format msgid "Error code: %d" -msgstr "" +msgstr "Код помилки: %d" msgid "Speed:" msgstr "Швидкість:" @@ -5166,17 +5260,19 @@ msgid "" "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." msgstr "" +"Ви завершили друк моделі торгового центру, \n" +"але синхронізація інформації про рейтинг не вдалася." msgid "How do you like this printing file?" -msgstr "" +msgstr "Як вам подобається цей файл для друку?" msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" -msgstr "" +msgstr "(Модель вже була оцінена. Ваша оцінка перезапише попередню оцінку.)" msgid "Rate" -msgstr "" +msgstr "Оцінити" msgid "Camera" msgstr "Камера" @@ -5194,7 +5290,7 @@ msgid "Control" msgstr "Контроль" msgid "Printer Parts" -msgstr "" +msgstr "Частини принтера" msgid "Print Options" msgstr "Параметри друку" @@ -5251,6 +5347,8 @@ msgid "" "Please heat the nozzle to above 170 degree before loading or unloading " "filament." msgstr "" +"Будь ласка, нагрійте насадку до понад 170 градусів перед завантаженням або " +"вивантаженням філаменту." msgid "Still unload" msgstr "Ще розвантажити" @@ -5287,95 +5385,111 @@ msgid "Can't start this without SD card." msgstr "Не можу запустити це без SD-карти." msgid "Rate the Print Profile" -msgstr "" +msgstr "Оцінити профіль друку" msgid "Comment" msgstr "Коментувати" msgid "Rate this print" -msgstr "" +msgstr "Оцініть цей друк" msgid "Add Photo" -msgstr "" +msgstr "Додати фото" msgid "Delete Photo" -msgstr "" +msgstr "Видалити фото" msgid "Submit" -msgstr "" +msgstr "Підтвердити" msgid "Please click on the star first." -msgstr "" +msgstr "Будь ласка, спочатку клацніть на зірку." msgid "InFo" -msgstr "" +msgstr "Інформація" msgid "Get oss config failed." -msgstr "" +msgstr "Не вдалося отримати конфігурацію OSS." msgid "Upload Pictrues" -msgstr "" +msgstr "Завантажити фотографії" msgid "Number of images successfully uploaded" -msgstr "" +msgstr "Кількість успішно завантажених зображень" msgid " upload failed" -msgstr "" +msgstr " Помилка завантаження" msgid " upload config prase failed\n" -msgstr "" +msgstr " Помилка при спробі завантажити конфігураційний файл\n" msgid " No corresponding storage bucket\n" -msgstr "" +msgstr " Відсутній відповідний сховищний контейнер\n" msgid " can not be opened\n" -msgstr "" +msgstr " Не може бути відкрито\n" msgid "" "The following issues occurred during the process of uploading images. Do you " "want to ignore them?\n" "\n" msgstr "" +"Під час процесу завантаження зображень виникли наступні проблеми. Бажаєте їх " +"проігнорувати?\n" +"\n" msgid "info" msgstr "інфо" msgid "Synchronizing the printing results. Please retry a few seconds later." msgstr "" +"Синхронізація результатів друку. Будь ласка, повторіть спробу через кілька " +"секунд." msgid "Upload failed\n" -msgstr "" +msgstr "Помилка завантаження\n" msgid "obtaining instance_id failed\n" -msgstr "" +msgstr "помилка отримання instance_id\n" msgid "" "Your comment result cannot be uploaded due to some reasons. As follows:\n" "\n" " error code: " msgstr "" +"Ваш коментар не може бути завантажений з якихось причин. Ось деталі " +"помилки:\n" +"\n" +" код помилки: " msgid "error message: " -msgstr "" +msgstr "текст помилки: " msgid "" "\n" "\n" "Would you like to redirect to the webpage for rating?" msgstr "" +"\n" +"\n" +"Чи бажаєте ви перейти на веб-сторінку для оцінки?" msgid "" "Some of your images failed to upload. Would you like to redirect to the " "webpage for rating?" msgstr "" +"Деякі з ваших зображень не вдалося завантажити. Бажаєте перейти на веб-" +"сторінку для оцінки?" msgid "You can select up to 16 images." -msgstr "" +msgstr "Ви можете вибрати до 16 зображень." msgid "" "At least one successful print record of this print profile is required \n" "to give a positive rating(4 or 5stars)." msgstr "" +"Для того щоб поставити позитивний рейтинг (4 або 5 зірок), потрібно \n" +"мати принаймні один успішний запис про друк з цим профілем друку." msgid "Status" msgstr "Статус" @@ -5425,7 +5539,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "" +msgstr "Завантажити бета-версію" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5434,13 +5548,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "" +msgstr "Поточна версія: " msgid "Latest Version: " -msgstr "" +msgstr "Остання версія: " msgid "Not for now" -msgstr "" +msgstr "Наразі не потрібно" msgid "3D Mouse disconnected." msgstr "3D-миша відключена." @@ -5467,10 +5581,10 @@ msgid "Details" msgstr "Подробиці" msgid "New printer config available." -msgstr "" +msgstr "Доступна нова конфігурація принтера." msgid "Wiki" -msgstr "" +msgstr "Енциклопедія" msgid "Undo integration failed." msgstr "Скасувати інтеграцію не вдалося." @@ -5514,12 +5628,12 @@ msgstr[2] "%1$d завантажено як частини обрізаних о msgid "ERROR" msgstr "ПОМИЛКА" -msgid "CANCELED" -msgstr "Скасовано" - msgid "COMPLETED" msgstr "ВИКОНАНО" +msgid "CANCELED" +msgstr "Скасовано" + msgid "Cancel upload" msgstr "Скасувати завантаження" @@ -5536,10 +5650,10 @@ msgid "Export successfully." msgstr "Експорт успішно." msgid "Model file downloaded." -msgstr "" +msgstr "Завантажений файл моделі." msgid "Serious warning:" -msgstr "" +msgstr "Серйозне попередження:" msgid " (Repair)" msgstr " (Ремонт)" @@ -5625,29 +5739,31 @@ msgid "Auto-recovery from step loss" msgstr "Автоматичне відновлення після втрати кроку" msgid "Allow Prompt Sound" -msgstr "" +msgstr "Дозволити звук підказки" msgid "Filament Tangle Detect" -msgstr "" +msgstr "Виявлення заплутування філаменту" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Виявлення згортання сопла" msgid "Check if the nozzle is clumping by filament or other foreign objects." msgstr "" +"Перевірте, чи сопло не затверділо від філаменту або інших чужорідних " +"предметів." msgid "Nozzle Type" -msgstr "" +msgstr "Тип насадки" msgid "Stainless Steel" -msgstr "" +msgstr "Нержавіюча сталь" msgid "Hardened Steel" -msgstr "" +msgstr "Закалена сталь" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "Глобальний" @@ -5738,7 +5854,7 @@ msgid "Set filaments to use" msgstr "Встановіть нитки для використання" msgid "Search plate, object and part." -msgstr "" +msgstr "Пошук плити, об’єкта і деталі." msgid "" "No AMS filaments. Please select a printer in 'Device' page to load AMS info." @@ -5808,6 +5924,9 @@ msgid "" "clogged when printing this filament in a closed enclosure. Please open the " "front door and/or remove the upper glass." msgstr "" +"Поточна температура гарячого ложа висока. При друку цим філаментом в " +"закритому приміщенні може статися забивання сопла. Будь ласка, відкрийте " +"передню дверцю та/або видаліть верхнє скло." msgid "" "The nozzle hardness required by the filament is higher than the default " @@ -5823,6 +5942,8 @@ msgid "" "Enabling traditional timelapse photography may cause surface imperfections. " "It is recommended to change to smooth mode." msgstr "" +"Включення традиційної фотографії таймлапсу може призвести до дефектів на " +"поверхні. Рекомендується перейти в режим згладжування." msgid "Expand sidebar" msgstr "" @@ -5865,25 +5986,32 @@ msgstr "Будь ласка, виправте їх у вкладках пара msgid "The 3mf has following modified G-codes in filament or printer presets:" msgstr "" +"У файлі 3mf знаходяться наступні змінені G-коди в налаштуваннях філаменту " +"або принтера:" msgid "" "Please confirm that these modified G-codes are safe to prevent any damage to " "the machine!" msgstr "" +"Будь ласка, підтвердьте, що ці змінені G-коди безпечні і не призведуть до " +"пошкодження пристрою!" msgid "Modified G-codes" -msgstr "" +msgstr "Змінені G-коди" msgid "The 3mf has following customized filament or printer presets:" msgstr "" +"У файлі 3mf містяться наступні налаштовані параметри філаменту або принтера:" msgid "" "Please confirm that the G-codes within these presets are safe to prevent any " "damage to the machine!" msgstr "" +"Будь ласка, підтвердьте, що G-коди в цих налаштованих параметрах безпечні і " +"не призведуть до пошкодження пристрою!" msgid "Customized Preset" -msgstr "" +msgstr "Налаштований параметр" msgid "Name of components inside step file is not UTF8 format!" msgstr "Ім'я компонентів всередині крокового файлу не у форматі UTF8!" @@ -5952,22 +6080,24 @@ msgid "Export STL file:" msgstr "Експорт файлу STL:" msgid "Export AMF file:" -msgstr "" +msgstr "Експор файлу AMF:" msgid "Save file as:" msgstr "Зберегти файл як:" msgid "Export OBJ file:" -msgstr "" +msgstr "Експор файлу OBJ:" #, c-format, boost-format msgid "" "The file %s already exists\n" "Do you want to replace it?" msgstr "" +"Файл %s вже існує.\n" +"Бажаєте замінити його?" msgid "Comfirm Save As" -msgstr "" +msgstr "Підтвердити збереження як" msgid "Delete object which is a part of cut object" msgstr "Видалити об'єкт, який є частиною обрізаного об'єкта" @@ -5988,13 +6118,13 @@ msgid "Another export job is running." msgstr "Виконується інше завдання експорту." msgid "Unable to replace with more than one volume" -msgstr "" +msgstr "Неможливо замінити більше, ніж один об’єм" msgid "Error during replace" msgstr "Помилка заміни" msgid "Replace from:" -msgstr "" +msgstr "Замінити з:" msgid "Select a new file" msgstr "Виберіть новий файл" @@ -6006,19 +6136,19 @@ msgid "Please select a file" msgstr "Будь ласка, виберіть файл" msgid "Do you want to replace it" -msgstr "" +msgstr "Ви хочете замінити його" msgid "Message" -msgstr "" +msgstr "Повідомлення" msgid "Reload from:" -msgstr "" +msgstr "Перезавантажити з:" msgid "Unable to reload:" -msgstr "" +msgstr "Не вдається перезавантажити:" msgid "Error during reload" -msgstr "" +msgstr "Помилка під час перезавантаження" msgid "There are warnings after slicing models:" msgstr "Є попередження після нарізки моделей:" @@ -6081,13 +6211,13 @@ msgid "prepare 3mf file..." msgstr "підготувати файл 3mf..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "Не вдалося завантажити, невідомий формат файлу." msgid "downloading project ..." msgstr "завантажую проект..." msgid "Download failed, File size exception." -msgstr "" +msgstr "Завантаження не вдалося через виняток розміру файлу." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6110,6 +6240,20 @@ msgstr "не містить дійсний gcode." msgid "Error occurs while loading G-code file" msgstr "Помилка під час завантаження файлу G-коду" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "Видалити файл проекту" @@ -6151,13 +6295,13 @@ msgid "Save G-code file as:" msgstr "Збережіть файл G-коду як:" msgid "Save SLA file as:" -msgstr "" +msgstr "Зберегти файл SLA як:" msgid "The provided file name is not valid." -msgstr "" +msgstr "Подана назва файлу недійсна." msgid "The following characters are not allowed by a FAT file system:" -msgstr "" +msgstr "Слідуючі символи не допускаються файловою системою FAT:" msgid "Save Sliced file as:" msgstr "Зберегти нарізаний файл як:" @@ -6173,22 +6317,24 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"Неможливо виконати булеву операцію на сітках моделі. Будуть залишені лише " +"позитивні частини. Ви можете виправити сітки і спробувати ще раз." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "Причина: частина “%1%” порожня." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "Причина: частина “%1%” не обмежує об’єм." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "Причина: частина “%1%” має самоперетин." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "Причина: “%1%” та інша частина не мають перетину." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6234,11 +6380,11 @@ msgstr "Параметри планшета" #, boost-format msgid "Number of currently selected parts: %1%\n" -msgstr "" +msgstr "Кількість вибраних зараз деталей: %1%\n" #, boost-format msgid "Number of currently selected objects: %1%\n" -msgstr "" +msgstr "Кількість об'єктів, що вибрані зараз: %1%\n" #, boost-format msgid "Part name: %1%\n" @@ -6371,6 +6517,10 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"На MacOS за замовчуванням завжди працює лише один екземпляр програми. Однак " +"з командного рядка дозволяється запускати кілька екземплярів однієї й тієї ж " +"програми. У цьому випадку цей параметр дозволить запускати лише один " +"екземпляр." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6434,16 +6584,21 @@ msgstr "Якщо увімкнено, під час запуску відобра msgid "Flushing volumes: Auto-calculate everytime the color changed." msgstr "" +"Змивання обсягів: авто-перераховується кожного разу, коли змінюється колір." msgid "If enabled, auto-calculate everytime the color changed." msgstr "" +"Якщо увімкнено, авто-розраховувння кожного разу, коли змінюється колір." msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." msgstr "" +"Об’єми промивання: автоматично обчислювати кожного разу при зміні філаменту." msgid "If enabled, auto-calculate every time when filament is changed" msgstr "" +"Якщо ввімкнено, автоматично обчислювати кожного разу, коли змінюється " +"філамент" msgid "Remember printer configuration" msgstr "" @@ -6460,6 +6615,8 @@ msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"З цією опцією ввімкненою, ви можете відправляти завдання на кілька пристроїв " +"одночасно та керувати декількома пристроями." msgid "Network" msgstr "" @@ -6507,6 +6664,20 @@ msgstr "" "Якщо включено, встановлює OrcaSlicer як програму за замовчуваннямдля " "відкриття файлів .step" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "Максимум останніх проектів" @@ -6517,7 +6688,7 @@ msgid "Clear my choice on the unsaved projects." msgstr "Очистити мій вибір для незбережених проектів." msgid "No warnings when loading 3MF with modified G-codes" -msgstr "" +msgstr "Немає попереджень при завантаженні файлу 3MF із зміненими G-кодами" msgid "Auto-Backup" msgstr "Автобекап" @@ -6547,7 +6718,7 @@ msgid "Develop mode" msgstr "Режим розробки" msgid "Skip AMS blacklist check" -msgstr "" +msgstr "Пропустити перевірку чорного списку AMS" msgid "Home page and daily tips" msgstr "Головна сторінка та щоденні поради" @@ -6586,13 +6757,13 @@ msgid "Mouse wheel reverses when zooming" msgstr "Колісок миші реверсує при масштабуванні" msgid "Enable SSL(MQTT)" -msgstr "" +msgstr "Увімкнути SSL (MQTT)" msgid "Enable SSL(FTP)" -msgstr "" +msgstr "Увімкнути SSL(FTP)" msgid "Internal developer mode" -msgstr "" +msgstr "Внутрішній режим розробника" msgid "Log Level" msgstr "Журнал рівня" @@ -6673,25 +6844,25 @@ msgid "Add/Remove materials" msgstr "Додати/видалити матеріали" msgid "Select/Remove printers(system presets)" -msgstr "" +msgstr "Вибрати/Вилучити принтери (системні налаштування)" msgid "Create printer" -msgstr "" +msgstr "Створити" msgid "The selected preset is null!" -msgstr "" +msgstr "Обраний пресет є порожнім!" msgid "End" -msgstr "" +msgstr "Кінець" msgid "Customize" -msgstr "" +msgstr "Налаштувати" msgid "Other layer filament sequence" -msgstr "" +msgstr "Послідовність філатури на інших шарах" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "Будь ласка, введіть значення шару (≥ 2)." msgid "Plate name" msgstr "Назва пластини" @@ -6703,19 +6874,19 @@ msgid "Print sequence" msgstr "Послідовність друку" msgid "Same as Global" -msgstr "" +msgstr "Те саме, що й глобально" msgid "Disable" -msgstr "" +msgstr "Вимкнути" msgid "Spiral vase" msgstr "Спіральна ваза" msgid "First layer filament sequence" -msgstr "" +msgstr "Послідовність філаменту першого шару" msgid "Same as Global Plate Type" -msgstr "" +msgstr "Так само, як Глобальний Тип Пластини" msgid "Same as Global Bed Type" msgstr "Те ж, що й глобальний тип столу" @@ -6827,7 +6998,7 @@ msgid "(LAN)" msgstr "(LAN)" msgid "Search" -msgstr "" +msgstr "Пошук" msgid "My Device" msgstr "Мій пристрій" @@ -6854,7 +7025,7 @@ msgid "Bambu Cool Plate" msgstr "Холодний стіл" msgid "PLA Plate" -msgstr "" +msgstr "PLA Plate" msgid "Bambu Engineering Plate" msgstr "Інженерний стіл" @@ -6863,7 +7034,7 @@ msgid "Bambu Smooth PEI Plate" msgstr "" msgid "High temperature Plate" -msgstr "" +msgstr "High temperature Plate" msgid "Bambu Textured PEI Plate" msgstr "" @@ -6871,23 +7042,21 @@ msgstr "" msgid "Send print job to" msgstr "Надіслати завдання на друк на" -msgid "Bed Leveling" -msgstr "Вирівнювання столу" - msgid "Flow Dynamics Calibration" -msgstr "" +msgstr "Калібрування динаміки потоку" msgid "Click here if you can't connect to the printer" -msgstr "" +msgstr "Клацніть тут, якщо ви не можете підключитися до принтера" msgid "send completed" msgstr "відправлення завершено" msgid "Error code" -msgstr "" +msgstr "Код помилки" msgid "Printer local connection failed, please try again." msgstr "" +"Не вдалося встановити локальне підключення до принтера; спробуйте ще раз." msgid "No login account, only printers in LAN mode are displayed" msgstr "" @@ -6973,6 +7142,7 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"Вибраний принтер (%s) несумісний з обраним профілем принтера в різальні (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "SD-карта повинна бути вставлена для запису таймлапсу." @@ -6994,10 +7164,14 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" +"При увімкненні режиму спіралі для вази машини з I3 структурою не будуть " +"створювати відео в режимі таймлапсу." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" +"Таймлапс не підтримується через те, що послідовність друку встановлена в “За " +"об’єктом”." msgid "Errors" msgstr "Помилки" @@ -7025,26 +7199,31 @@ msgstr "" #, c-format, boost-format msgid "nozzle in preset: %s %s" -msgstr "" +msgstr "сопло в налаштуваннях: %s %s" #, c-format, boost-format msgid "nozzle memorized: %.1f %s" -msgstr "" +msgstr "запам’ятоване сопло: %.1f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"Ваш діаметр сопла в розрізаному файлі не відповідає запам’ятаному діаметру " +"сопла. Якщо ви недавно змінили сопло, будь ласка, перейдіть до “Пристрій > " +"Частини принтера”, щоб змінити налаштування." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" msgstr "" +"Друк високотемпературного матеріалу (%s матеріал) з %s може призвести до " +"пошкодження сопла" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" +msgstr "Будь ласка, виправте помилку вище, інакше друк не може продовжитися." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7053,20 +7232,23 @@ msgstr "Натисніть кнопку підтвердження, якщо в msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" +"З’єднання з принтером. Під час процесу підключення скасувати неможливо." msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." msgstr "" +"Увага! Калібрування потоку на Textured PEI Plate може не вдалося через " +"розсіяну поверхню." msgid "Automatic flow calibration using Micro Lidar" -msgstr "" +msgstr "Автоматична калібрування потоку за допомогою мікро лідару" msgid "Modifying the device name" msgstr "Зміна імені пристрою" msgid "Bind with Pin Code" -msgstr "" +msgstr "Прив’язати за допомогою Пін-коду" msgid "Send to Printer SD card" msgstr "Надіслати на SD-карту принтера" @@ -7090,31 +7272,31 @@ msgid "Slice ok." msgstr "Нарізка прибл." msgid "View all Daily tips" -msgstr "" +msgstr "Переглянути всі щоденні поради" msgid "Failed to create socket" -msgstr "" +msgstr "Не вдалося створити сокет" msgid "Failed to connect socket" -msgstr "" +msgstr "Не вдалося підключити сокет" msgid "Failed to publish login request" -msgstr "" +msgstr "Не вдалося опублікувати запит на вхід" msgid "Get ticket from device timeout" -msgstr "" +msgstr "Перевищено час очікування при отриманні квитка від пристрою" msgid "Get ticket from server timeout" -msgstr "" +msgstr "Перевищено час очікування при отриманні квитка від сервера" msgid "Failed to post ticket to server" -msgstr "" +msgstr "Не вдалося відправити квиток на сервер" msgid "Failed to parse login report reason" -msgstr "" +msgstr "Не вдалося розібрати причину звіту про вхід" msgid "Receive login report timeout" -msgstr "" +msgstr "Отримано звіт про вхід з перевищеним часом очікування" msgid "Unknown Failure" msgstr "Невідомий збій" @@ -7123,21 +7305,24 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"Будь ласка, знайдіть Пін-код на сторінці облікового запису на екрані " +"принтера, \n" +" і введіть Пін-код нижче." msgid "Can't find Pin Code?" -msgstr "" +msgstr "Не можу знайти Пін-код?" msgid "Pin Code" -msgstr "" +msgstr "Пін-код" msgid "Binding..." -msgstr "" +msgstr "Прив’язка…" msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Будь ласка, підтвердьте на екрані принтера" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "Вхід не вдається. Будь ласка, перевірте Пін-код." msgid "Log in printer" msgstr "Вхід до принтера" @@ -7149,10 +7334,10 @@ msgid "Check the reason" msgstr "Перевірте причину" msgid "Read and accept" -msgstr "" +msgstr "Прочитайте і згодьтеся" msgid "Terms and Conditions" -msgstr "" +msgstr "Умови використання" msgid "" "Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " @@ -7161,18 +7346,24 @@ msgid "" "Use(collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" +"Дякуємо за покупку пристрою Bambu Lab. Перед використанням вашого пристрою " +"Bambu Lab, ознайомтеся з умовами та положеннями. Клацнувши, щоб погодитися " +"використовувати ваш пристрій Bambu Lab, ви погоджуєтесь дотримуватися " +"Політики конфіденційності та Умов використання (разом \"Умови\"). Якщо ви не " +"виконуєте або не погоджуєтесь із Політикою конфіденційності Bambu Lab, будь " +"ласка, не використовуйте обладнання та послуги Bambu Lab." msgid "and" -msgstr "" +msgstr "і" msgid "Privacy Policy" -msgstr "" +msgstr "Політика конфіденційності" msgid "We ask for your help to improve everyone's printer" -msgstr "" +msgstr "Ми просимо вашої допомоги для покращення роботи всіх принтерів" msgid "Statement about User Experience Improvement Program" -msgstr "" +msgstr "Заява про Програму покращення користувацького досвіду" #, c-format, boost-format msgid "" @@ -7188,9 +7379,21 @@ msgid "" "payment information, or phone numbers. By enabling this service, you agree " "to these terms and the statement about Privacy Policy." msgstr "" +"У спільноті 3D-друку ми навчаємося на прикладі успіхів і невдач інших, щоб " +"налаштувати параметри і налаштування свого власного зрізування. %s " +"дотримується того ж принципу і використовує машинне навчання для покращення " +"своєї ефективності на основі успіхів і невдач великої кількості друків наших " +"користувачів. Ми навчаємо %s бути розумнішими, подаючи їм дані з реального " +"світу. Якщо ви готові, ця послуга буде мати доступ до інформації з вашого " +"журналу помилок і журналу використання, включаючи інформацію, описану в " +"Політиці конфіденційності. Ми не будемо збирати жодних Особистих даних, за " +"якими можна ідентифікувати особу безпосередньо чи опосередковано, включаючи, " +"але не обмежуючись, імена, адреси, інформацію про платежі або номери " +"телефонів. Увімкнувши цю службу, ви погоджуєтеся з цими умовами та заявою " +"про Політику конфіденційності." msgid "Statement on User Experience Improvement Plan" -msgstr "" +msgstr "Заява щодо Плану покращення користувацького досвіду" msgid "Log in successful." msgstr "Авторизація успішна." @@ -7242,7 +7445,7 @@ msgstr "" "моделіБез головної вежі. Ви хочете включити головну вежу?" msgid "Still print by object?" -msgstr "" +msgstr "Ви все ще друкуєте за об’єктом?" msgid "" "We have added an experimental style \"Tree Slim\" that features smaller " @@ -7301,15 +7504,17 @@ msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " "height limits ,this may cause printing quality issues." msgstr "" +"Висота шару перевищує ліміт у Налаштуваннях принтера -> Екструдер -> Ліміти " +"висоти шару, це може призвести до проблем з якістю друку." msgid "Adjust to the set range automatically? \n" -msgstr "" +msgstr "Автоматично налаштувати на встановлений діапазон? \n" msgid "Adjust" -msgstr "" +msgstr "Налаштувати" msgid "Ignore" -msgstr "" +msgstr "Ігнорувати" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7317,6 +7522,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"Експериментальна функція: Відведення та відрізання філаменту на більшій " +"відстані під час зміни філаменту для мінімізації промивання. Хоча це може " +"помітно зменшити промивання, це також може підвищити ризик засмічення сопла " +"або інших ускладнень друку." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7324,6 +7533,11 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"Експериментальна функція: Відведення та відрізання філаменту на більшій " +"відстані під час зміни філаменту для мінімізації промивання. Хоча це може " +"помітно зменшити промивання, це також може підвищити ризик засмічення сопла " +"або інших ускладнень друку. Будь ласка, використовуйте з останнім " +"прошивковим забезпеченням принтера." msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7499,13 +7713,16 @@ msgstr "" "Філамент не підтримує друк на інженерній пластині" msgid "Smooth PEI Plate / High Temp Plate" -msgstr "" +msgstr "Smooth PEI Plate / High Temp Plate" msgid "" "Bed temperature when Smooth PEI Plate/High temperature plate is installed. " "Value 0 means the filament does not support to print on the Smooth PEI Plate/" "High Temp Plate" msgstr "" +"Температура столу, коли встановлена Smooth PEI Plate/High Temp Plate. " +"Значення 0 означає, що філамент не підтримує друк на Smooth PEI Plate/High " +"Temp Plate" msgid "Textured PEI Plate" msgstr "Текстурована пластина PEI" @@ -7558,13 +7775,13 @@ msgid "Auxiliary part cooling fan" msgstr "Вентилятор охолодження допоміжних деталей" msgid "Exhaust fan" -msgstr "" +msgstr "Витяжний вентилятор" msgid "During print" -msgstr "" +msgstr "Під час друку" msgid "Complete print" -msgstr "" +msgstr "Завершити друк" msgid "Filament start G-code" msgstr "G-код початку філаменту" @@ -7615,7 +7832,7 @@ msgid "Machine end G-code" msgstr "Кінцевий G-code" msgid "Printing by object G-code" -msgstr "" +msgstr "Друк за об’єктом за допомогою G-коду" msgid "Before layer change G-code" msgstr "G-code перед зміною шару" @@ -7624,7 +7841,7 @@ msgid "Layer change G-code" msgstr "G-code Зміни шару" msgid "Time lapse G-code" -msgstr "" +msgstr "G-код для часової зйомки" msgid "Change filament G-code" msgstr "G-code Зміни філаменту" @@ -7691,9 +7908,13 @@ msgid "" "%d Filament Preset and %d Process Preset is attached to this printer. Those " "presets would be deleted if the printer is deleted." msgstr "" +"За цим принтером прикріплено %d налаштувань філаменту та %d налаштувань " +"процесу. Ці налаштування будуть видалені, якщо принтер буде видалено." msgid "Presets inherited by other presets can not be deleted!" msgstr "" +"Налаштування, які успадковуються іншими налаштуваннями, не можуть бути " +"видалені!" msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." @@ -7717,6 +7938,9 @@ msgid "" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" +"Ви впевнені, що хочете видалити вибраний пресет?\n" +"Якщо пресет відповідає філаменту, який в даний момент використовується на " +"вашому принтері, будь ласка, скиньте інформацію про філамент для цього слоту." #, boost-format msgid "Are you sure to %1% the selected preset?" @@ -7820,12 +8044,14 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "Ви змінили деякі налаштування пресету “%1%”. " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"Ви можете зберегти або відхилити змінені значення пресету." msgid "" "\n" @@ -7834,7 +8060,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "" +msgstr "Ви раніше змінювали свої налаштування." msgid "" "\n" @@ -7986,7 +8212,7 @@ msgid "Auto-Calc" msgstr "Автокалькулятор" msgid "Re-calculate" -msgstr "" +msgstr "Перерахувати" msgid "Flushing volumes for filament change" msgstr "Обсяги промивання для зміни Філаменту" @@ -8026,10 +8252,10 @@ msgid "To" msgstr "В" msgid "Bambu Network plug-in not detected." -msgstr "" +msgstr "Плагін мережі Bambu не виявлено." msgid "Click here to download it." -msgstr "" +msgstr "Натисніть тут, щоб завантажити його." msgid "Login" msgstr "Логін" @@ -8062,7 +8288,7 @@ msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "Показати/приховати діалог налаштувань пристроїв 3Dconnexion" msgid "Switch table page" -msgstr "" +msgstr "Перемкнути сторінку таблиці" msgid "Show keyboard shortcuts list" msgstr "Показати список клавіш" @@ -8323,49 +8549,49 @@ msgid "New version of Orca Slicer" msgstr "" msgid "Skip this Version" -msgstr "" +msgstr "Пропустити цю версію" msgid "Done" msgstr "Виконано" msgid "resume" -msgstr "" +msgstr "продовжити" msgid "Resume Printing" -msgstr "" +msgstr "Відновити друк" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Відновлення друку (прийнятно дефекти)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Відновлення друку (проблема вирішена)" msgid "Stop Printing" -msgstr "" +msgstr "Зупинити друк" msgid "Check Assistant" -msgstr "" +msgstr "Перевірка помічника" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Філамент витиснутий, Продовжити" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Ще не витиснуто філамент, Повторити" msgid "Finished, Continue" -msgstr "" +msgstr "Завершено, Продовжити" msgid "Load Filament" msgstr "Завантажте філамент" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Філамент завантажений, Відновити" msgid "View Liveview" -msgstr "" +msgstr "Перегляд в реальному часі" msgid "Confirm and Update Nozzle" -msgstr "" +msgstr "Підтвердити і оновити сопло" msgid "LAN Connection Failed (Sending print file)" msgstr "Помилка з’єднання LAN (Надсилання файлу друку)" @@ -8393,20 +8619,23 @@ msgstr "Де знайти IP-адресу та код доступу вашог msgid "Step 3: Ping the IP address to check for packet loss and latency." msgstr "" +"Крок 3: Виконайте пінг до IP-адреси для перевірки втрат пакетів та затримки." msgid "Test" msgstr "Тест" msgid "IP and Access Code Verified! You may close the window" -msgstr "" +msgstr "IP-адреса та доступний код перевірено! Ви можете закрити вікно" msgid "Connection failed, please double check IP and Access Code" -msgstr "" +msgstr "З’єднання не вдалося, будь ласка, перевірте IP-адресу та доступний код" msgid "" "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" msgstr "" +"З’єднання не вдалося! Якщо ваша IP-адреса та доступний код вірні, \n" +"перейдіть до кроку 3 для вирішення проблем з мережею" msgid "Model:" msgstr "Модель:" @@ -8421,7 +8650,7 @@ msgid "Update firmware" msgstr "Оновити прошивку" msgid "Beta version" -msgstr "" +msgstr "Бета-версія" msgid "Latest version" msgstr "Остання версія" @@ -8788,26 +9017,34 @@ msgid "" msgstr "" msgid "Variable layer height is not supported with Organic supports." -msgstr "" +msgstr "Змінна висота шару не підтримується з органічними підтримками." msgid "" "Different nozzle diameters and different filament diameters is not allowed " "when prime tower is enabled." msgstr "" +"Використання різних діаметрів насадок та різних діаметрів філаментів не " +"допускається, коли увімкнено вежу підготовки." msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" +"Вежа протирання в даний момент підтримується лише з використанням відносної " +"адресації екструдера (use_relative_e_distances=1)." msgid "" "Ooze prevention is currently not supported with the prime tower enabled." msgstr "" +"Запобігання витокам в даний момент не підтримується з увімкненою вежею " +"підготовки." msgid "" "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" +"Вежа підготовки в даний момент підтримується лише для кодів Marlin, RepRap/" +"Sprinter, RepRapFirmware і Repetier G-code." msgid "The prime tower is not supported in \"By object\" print." msgstr "Під час друку \"По об'єкту\" праймер не підтримується." @@ -9199,16 +9436,16 @@ msgid "Engineering Plate" msgstr "Інженерна пластина" msgid "First layer print sequence" -msgstr "" +msgstr "Послідовність друку першого шару" msgid "Other layers print sequence" -msgstr "" +msgstr "Послідовність друку інших шарів" msgid "The number of other layers print sequence" -msgstr "" +msgstr "Кількість шарів для друку в іншій послідовності" msgid "Other layers filament sequence" -msgstr "" +msgstr "Послідовність філаменту для інших шарів" msgid "This G-code is inserted at every layer change before lifting z" msgstr "Типи ліжок, які підтримує принтер" @@ -9640,7 +9877,7 @@ msgid "Default process profile when switch to this machine profile" msgstr "Профіль за промовчанням при перемиканні на цей профіль машини" msgid "Activate air filtration" -msgstr "" +msgstr "Активувати повітряну фільтрацію" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" @@ -9652,6 +9889,8 @@ msgid "" "Speed of exhaust fan during printing.This speed will overwrite the speed in " "filament custom gcode" msgstr "" +"Швидкість вентилятора відсмоктування під час друку. Ця швидкість перезапише " +"швидкість у користувацькому G-коді філаменту" msgid "Speed of exhaust fan after printing completes" msgstr "" @@ -9758,12 +9997,14 @@ msgid "End G-code when finish the whole printing" msgstr "Завершальний G-code, коли закінчити весь друк" msgid "Between Object Gcode" -msgstr "" +msgstr "Між G-кодами об’єктів" msgid "" "Insert Gcode between objects. This parameter will only come into effect when " "you print your models object by object" msgstr "" +"Вставити G-код між об’єктами. Цей параметр буде врахований лише тоді, коли " +"ви друкуєте свої моделі по об’єктах" msgid "End G-code when finish the printing of this filament" msgstr "Завершальний G-code, коли закінчите друк цієї нитки" @@ -9825,7 +10066,7 @@ msgid "Line pattern of bottom surface infill, not bridge infill" msgstr "Малюнок заповнення нижньої поверхні, а не заповнення мосту" msgid "Internal solid infill pattern" -msgstr "" +msgstr "Внутрішній малюнок заповнення суцільними шарами" msgid "" "Line pattern of internal solid infill. if the detect narrow internal solid " @@ -9907,7 +10148,7 @@ msgid "Inner/Outer/Inner" msgstr "" msgid "Print infill first" -msgstr "" +msgstr "Друкувати заповнення спочатку" msgid "" "Order of wall/infill. When the tickbox is unchecked the walls are printed " @@ -9968,10 +10209,10 @@ msgstr "" "зіткнення під час друку за об’єктами." msgid "Nozzle height" -msgstr "" +msgstr "Висота насадки" msgid "The height of nozzle tip." -msgstr "" +msgstr "Висота кінчика насадки." msgid "Bed mesh min" msgstr "" @@ -10092,10 +10333,10 @@ msgid "Default filament color" msgstr "Колір філаменту за замовчуванням" msgid "Filament notes" -msgstr "" +msgstr "Примітки щодо філаменту" msgid "You can put your notes regarding the filament here." -msgstr "" +msgstr "Ви можете залишити свої примітки щодо філаменту тут." msgid "Required nozzle HRC" msgstr "Потрібний HRC сопла" @@ -10297,13 +10538,16 @@ msgid "" msgstr "Допоміжний матеріал зазвичай використовується для друку підтримки" msgid "Softening temperature" -msgstr "" +msgstr "Температура м’якості" msgid "" "The material softens at this temperature, so when the bed temperature is " "equal to or greater than it, it's highly recommended to open the front door " "and/or remove the upper glass to avoid cloggings." msgstr "" +"Матеріал м’якшує при цій температурі, тому, коли температура столу рівна або " +"вища за цей показник, настійно рекомендується відкрити передні двері та/або " +"видалити верхнє скло, щоб уникнути засмічення (clogging)." msgid "Price" msgstr "Ціна" @@ -10315,10 +10559,10 @@ msgid "money/kg" msgstr "р/кг" msgid "Vendor" -msgstr "" +msgstr "Виробник" msgid "Vendor of filament. For show only" -msgstr "" +msgstr "Виробник філаменту. Для показу, тільки для відображення" msgid "(Undefined)" msgstr "(Невизначений)" @@ -10393,7 +10637,7 @@ msgid "Lightning" msgstr "Блискавка" msgid "Cross Hatch" -msgstr "" +msgstr "Перехресний штрих" msgid "Sparse infill anchor length" msgstr "Довжина прив'язки заповнення" @@ -10681,13 +10925,16 @@ msgstr "" "має друкуватися повільніше" msgid "Precise Z height" -msgstr "" +msgstr "Точна висота Z" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"Увімкніть це, щоб отримати точну висоту об’єкта Z після нарізки. Він отримає " +"точну висоту об’єкта, уточнивши висоти шарів останніх кількох шарів. " +"Зауважте, що це експериментальний параметр." msgid "Arc fitting" msgstr "Дуговий фітинг" @@ -10757,28 +11004,30 @@ msgid "HRC" msgstr "HRC" msgid "Printer structure" -msgstr "" +msgstr "Структура принтера" msgid "The physical arrangement and components of a printing device" -msgstr "" +msgstr "Фізична структура та компоненти пристрою для друку" msgid "CoreXY" -msgstr "" +msgstr "CoreXY" msgid "I3" -msgstr "" +msgstr "I3" msgid "Hbot" -msgstr "" +msgstr "Hbot" msgid "Delta" -msgstr "" +msgstr "Delta" msgid "Best object position" -msgstr "" +msgstr "Найкраще положення об’єкта" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." msgstr "" +"Найкраще автоматичне розташування об’єкта в діапазоні [0,1] відносно форми " +"ліжка." msgid "" "Enable this option if machine has auxiliary part cooling fan. G-code " @@ -10840,7 +11089,7 @@ msgid "money/h" msgstr "" msgid "Support control chamber temperature" -msgstr "" +msgstr "Керування температурою камери для підтримки" msgid "" "This option is enabled if machine support controlling chamber temperature\n" @@ -10848,7 +11097,7 @@ msgid "" msgstr "" msgid "Support air filtration" -msgstr "" +msgstr "Підтримка повітряної фільтрації" msgid "" "Enable this if printer support air filtration\n" @@ -10910,6 +11159,9 @@ msgid "" "Automatically Combine sparse infill of several layers to print together to " "reduce time. Wall is still printed with original layer height." msgstr "" +"Автоматично комбінуйте розріджене заповнення кількох шарів, щоб друкувати їх " +"разом і зменшити час друку. Стіни все ще друкуються з оригінальною висотою " +"шару." msgid "Filament to print internal sparse infill." msgstr "Філамент для друку внутрішнього заповнення." @@ -10958,16 +11210,17 @@ msgstr "" "або розчинним у ручному режимі матеріалом підкладки" msgid "Maximum width of a segmented region" -msgstr "" +msgstr "Максимальна ширина сегментованої області" msgid "Maximum width of a segmented region. Zero disables this feature." -msgstr "" +msgstr "Максимальна ширина сегментованої області. Нуль вимикає цю функцію." msgid "Interlocking depth of a segmented region" -msgstr "" +msgstr "Глибина взаємного взаємодії сегментованої області" msgid "Interlocking depth of a segmented region. Zero disables this feature." msgstr "" +"Глибина взаємного взаємодії сегментованої області. Нуль вимикає цю функцію." msgid "Ironing Type" msgstr "Тип Розглажування" @@ -10993,7 +11246,7 @@ msgid "All solid layer" msgstr "Весь суцільний шар" msgid "Ironing Pattern" -msgstr "" +msgstr "Зразок гладіння" msgid "The pattern that will be used when ironing" msgstr "" @@ -11451,7 +11704,7 @@ msgid "Printer notes" msgstr "Нотатки для принтера" msgid "You can put your notes regarding the printer here." -msgstr "" +msgstr "Ви можете залишити свої примітки щодо принтера тут." msgid "Raft contact Z distance" msgstr "Відстань контакту плоту Z" @@ -11494,6 +11747,9 @@ msgid "" "much points and gcode lines in gcode file. Smaller value means higher " "resolution and more time to slice" msgstr "" +"Контур G-коду генерується після спрощення контуру моделей, щоб уникнути " +"надмірної кількості точок і ліній G-коду. Менші значення означають вищу " +"роздільну здатність і більше часу, необхідного для нарізки" msgid "Travel distance threshold" msgstr "Поріг відстані в дорозі" @@ -11511,6 +11767,8 @@ msgstr "Ретракт при розгладжуванні" msgid "" "The length of fast retraction before wipe, relative to retraction length" msgstr "" +"This is the length of fast retraction before a wipe, relative to retraction " +"length." msgid "Retract when change layer" msgstr "Ретракт при зміні шару" @@ -11530,7 +11788,7 @@ msgstr "" "ретракт" msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "Довге відведення при вирізанні (експериментально)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -11538,14 +11796,20 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"Експериментальна функція. Відведення та відрізання філаменту на більшій " +"відстані під час змін для мінімізації вимивання. Хоча це значно зменшує " +"кількість витоку, це також може збільшити ризик засмічення насадки або інших " +"проблем з друку." msgid "Retraction distance when cut" -msgstr "" +msgstr "Відстань відведення при вирізанні" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" msgstr "" +"Експериментальна функція. Відстань відведення перед відрізанням під час " +"зміни філаменту" msgid "Z hop when retract" msgstr "Z-стрибок при відкаті" @@ -11561,20 +11825,24 @@ msgstr "" "перешкоджати появі висячих ниток" msgid "Z hop lower boundary" -msgstr "" +msgstr "Межа зниження Z-hop" msgid "" "Z hop will only come into effect when Z is above this value and is below the " "parameter: \"Z hop upper boundary\"" msgstr "" +"Z-hop буде активуватися лише тоді, коли Z перевищує це значення і " +"знаходиться нижче параметра “Верхня межа зниження Z”." msgid "Z hop upper boundary" -msgstr "" +msgstr "Верхня межа зниження Z" msgid "" "If this value is positive, Z hop will only come into effect when Z is above " "the parameter: \"Z hop lower boundary\" and is below this value" msgstr "" +"Якщо це значення позитивне, то Z-hop буде діяти лише тоді, коли Z перевищує " +"параметр “Межа зниження Z” і знаходиться нижче цього значення" msgid "Z hop type" msgstr "Тип Z-стрибка" @@ -11725,17 +11993,21 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" +"Використовуйте з’єднання з шарфом, щоб мінімізувати видимість шва та " +"збільшити міцність шва." msgid "Conditional scarf joint" -msgstr "" +msgstr "Умовне з’єднання з шарфом" msgid "" "Apply scarf joints only to smooth perimeters where traditional seams do not " "conceal the seams at sharp corners effectively." msgstr "" +"Застосовувати з’єднання з шарфом лише до гладких периметрів, де традиційні " +"шви не ефективно приховують шви в гострих кутах." msgid "Conditional angle threshold" -msgstr "" +msgstr "Умовний поріг кута" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -11744,6 +12016,11 @@ msgid "" "(indicating the absence of sharp corners), a scarf joint seam will be used. " "The default value is 155°." msgstr "" +"Ця опція встановлює поріговий кут для застосування умовного з’єднання з " +"шарфом.\n" +"Якщо максимальний кут в межах периметрового контуру перевищує це значення " +"(що свідчить про відсутність гострих кутів), використовується з’єднання з " +"шарфом. Значення за замовчуванням - 155°." msgid "Conditional overhang threshold" msgstr "" @@ -11778,39 +12055,43 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "" +msgstr "Висота початку шарфу" msgid "" "Start height of the scarf.\n" "This amount can be specified in millimeters or as a percentage of the " "current layer height. The default value for this parameter is 0." msgstr "" +"Висота початку шарфу.\n" +"Ця величина може бути вказана в міліметрах або як відсоток від поточної " +"товщини шару. Значення за замовчуванням для цього параметра - 0." msgid "Scarf around entire wall" -msgstr "" +msgstr "Шарф навколо всієї стіни" msgid "The scarf extends to the entire length of the wall." -msgstr "" +msgstr "Шарф простягається на всю довжину стіни." msgid "Scarf length" -msgstr "" +msgstr "Довжина шарфа" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" +"Довжина шарфа. Встановлення цього параметра на нуль ефективно вимикає шарф." msgid "Scarf steps" -msgstr "" +msgstr "Кроки шарфа" msgid "Minimum number of segments of each scarf." -msgstr "" +msgstr "Мінімальна кількість сегментів кожного шарфу." msgid "Scarf joint for inner walls" -msgstr "" +msgstr "З’єднання з шарфом для внутрішніх стін" msgid "Use scarf joint for inner walls as well." -msgstr "" +msgstr "Використовувати з’єднання з шарфом також для внутрішніх стін." msgid "Role base wipe speed" msgstr "Базова швидкість очищення ролей" @@ -11961,20 +12242,25 @@ msgstr "" "згенерована модель не має шва" msgid "Smooth Spiral" -msgstr "" +msgstr "Плавна спіраль" msgid "" "Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " "at all, even in the XY directions on walls that are not vertical" msgstr "" +"Плавна спіраль згладжує переміщення по X та Y, що призводить до відсутності " +"видимого шва, навіть у напрямках XY на стінах, які не є вертикальними" msgid "Max XY Smoothing" -msgstr "" +msgstr "Максимальне згладжування XY" msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiralIf " "expressed as a %, it will be computed over nozzle diameter" msgstr "" +"Максимальна відстань переміщення точок по XY для спроби досягнення плавної " +"спіралі. Якщо виражено у відсотках, вона буде обчислена відносно діаметра " +"сопла" msgid "" "If smooth or traditional mode is selected, a timelapse video will be " @@ -12074,6 +12360,8 @@ msgid "" "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " "close all holes in the model." msgstr "" +"Використовуйте «парний-непарний» для моделей літаків 3DLabPrint. " +"Використовуйте «Закрити отвори», щоб закрити всі отвори в моделі." msgid "Regular" msgstr "Звичайний" @@ -12125,7 +12413,7 @@ msgid "Support/object xy distance" msgstr "Підтримка/об'єкт XY відстань" msgid "XY separation between an object and its support" -msgstr "" +msgstr "Контролює відстань по XY між об’єктом та його опорою" msgid "Pattern angle" msgstr "Кут шаблону" @@ -12152,10 +12440,10 @@ msgstr "" "консоль і т.д." msgid "Remove small overhangs" -msgstr "" +msgstr "Видалити невеликі виступи" msgid "Remove small overhangs that possibly need no supports." -msgstr "" +msgstr "Видалити невеликі виступи, які, можливо, не потребують підтримки." msgid "Top Z distance" msgstr "Верхня відстань Z" @@ -12181,11 +12469,13 @@ msgstr "" "філаменту" msgid "Avoid interface filament for base" -msgstr "" +msgstr "Уникати філаменту інтерфейсу для бази" msgid "" "Avoid using support interface filament to print support base if possible." msgstr "" +"Уникайте використання філаменту інтерфейсу опори для друку опорної бази, " +"якщо це можливо." msgid "" "Line width of support. If expressed as a %, it will be computed over the " @@ -12221,10 +12511,10 @@ msgid "Bottom interface layers" msgstr "Нижні шари підтримки" msgid "Number of bottom interface layers" -msgstr "" +msgstr "Кількість шарів інтерфейсу на дні" msgid "Same as top" -msgstr "" +msgstr "Так само, як вище" msgid "Top interface spacing" msgstr "Відстань між верхніми інтерфейсами" @@ -12432,10 +12722,10 @@ msgid "" msgstr "" msgid "Support wall loops" -msgstr "" +msgstr "Опорні стінові петлі" msgid "This setting specify the count of walls around support" -msgstr "" +msgstr "Цей параметр визначає кількість стінок навколо підтримки" msgid "Tree support with infill" msgstr "Підтримка дерева із заповненням" @@ -12468,6 +12758,13 @@ msgid "" "high to avoid cloggings, so 0 which stands for turning off is highly " "recommended" msgstr "" +"Вища температура камери може допомогти стримувати або зменшувати деформацію " +"та, можливо, підвищити міцність зв’язку між шарами для матеріалів високої " +"температури, таких як ABS, ASA, PC, PA тощо. У той же час, повітряна " +"фільтрація для ABS та ASA може стати гіршею. Однак для PLA, PETG, TPU, PVA " +"та інших матеріалів низької температури фактична температура камери не " +"повинна бути високою, щоб уникнути засмічення, тому рекомендується вимкнути " +"температуру камери (0)" msgid "Nozzle temperature for layers after the initial one" msgstr "Температура сопла для шарів після початкового" @@ -12612,17 +12909,29 @@ msgstr "" msgid "Spacing of purge lines on the wipe tower." msgstr "" -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -12648,12 +12957,20 @@ msgid "" "printed with transparent filament, the mixed color infill will be seen " "outside. It will not take effect, unless the prime tower is enabled." msgstr "" +"Очищення після зміни філаменту буде виконуватися всередині заповнень " +"об’єктів. Це може зменшити кількість відходів і скоротити час друку. Якщо " +"стінки друкуються прозорим філаментом, заповнення зі змішаним кольором буде " +"видимим. Це не буде мати впливу, якщо не ввімкнено вежу для підготовки " +"філаменту." msgid "" "Purging after filament change will be done inside objects' support. This may " "lower the amount of waste and decrease the print time. It will not take " "effect, unless the prime tower is enabled." msgstr "" +"Очищення після зміни філаменту буде виконуватися всередині підтримки " +"об’єктів. Це може зменшити кількість відходів і скоротити час друку. Це не " +"буде мати впливу, якщо не ввімкнено вежу для підготовки філаменту." msgid "" "This object will be used to purge the nozzle after a filament change to save " @@ -12759,6 +13076,9 @@ msgid "" "very thin areas is used gap-fill. Arachne engine produces walls with " "variable extrusion width" msgstr "" +"Класичний генератор стін виробляє стіни з постійною шириною екструзії, а для " +"дуже тонких ділянок використовується заповнення прогалин. Двигун Arachne " +"виробляє стіни зі змінною шириною екструзії." msgid "Classic" msgstr "Класичний" @@ -12834,6 +13154,10 @@ msgid "" "feature size will be widened to the Minimum wall width. It's expressed as a " "percentage over nozzle diameter" msgstr "" +"Minimum thickness of thin features. Model features that are thinner than " +"this value will not be printed, while features thicker than the minimum " +"feature size will be widened to the minimum wall width. It's expressed as a " +"percentage over nozzle diameter" msgid "Minimum wall length" msgstr "" @@ -13279,99 +13603,108 @@ msgstr "Підтримка: розповсюдження гілок на шар msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" +"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj або ." +"amf (.xml)." msgid "Loading of a model file failed." -msgstr "" +msgstr "Не вдалося завантажити файл моделі." msgid "The supplied file couldn't be read because it's empty" -msgstr "" +msgstr "Наданий файл не вдалося прочитати, оскільки він порожній" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" +"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf або .zip." +"amf." msgid "Canceled" -msgstr "" +msgstr "Скасовано" msgid "load_obj: failed to parse" -msgstr "" +msgstr "помилка завантаження файлу OBJ: не вдалося розпізнати формат" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "не вдалося розпізнати mtl у файлі obj: помилка парсингу" msgid "The file contains polygons with more than 4 vertices." -msgstr "" +msgstr "Цей файл містить полігони з більше ніж 4 вершинами." msgid "The file contains polygons with less than 2 vertices." -msgstr "" +msgstr "У файлі містяться полігони з менш ніж 2 вершинами." msgid "The file contains invalid vertex index." -msgstr "" +msgstr "У файлі містяться недійсний індекс вершини." msgid "This OBJ file couldn't be read because it's empty." msgstr "" +"Цей файл формату OBJ не може бути прочитаний через те, що він порожній." msgid "Flow Rate Calibration" -msgstr "" +msgstr "Калібрування витрати матеріалу" msgid "Max Volumetric Speed Calibration" -msgstr "" +msgstr "Максимальна калібрування об’ємної швидкості" msgid "Manage Result" -msgstr "" +msgstr "Керування результатом" msgid "Manual Calibration" -msgstr "" +msgstr "Ручне калібрування" msgid "Result can be read by human eyes." -msgstr "" +msgstr "Результат може бути прочитаний людським оком." msgid "Auto-Calibration" -msgstr "" +msgstr "Автокалібрування" msgid "We would use Lidar to read the calibration result" -msgstr "" +msgstr "Ми використовуватимемо Лідар для зчитування результату калібрування" msgid "Prev" -msgstr "" +msgstr "Попередній" msgid "Recalibration" -msgstr "" +msgstr "Перекалібрування" msgid "Calibrate" -msgstr "" +msgstr "Калібрувати" msgid "Finish" -msgstr "" +msgstr "Завершити" msgid "How to use calibration result?" -msgstr "" +msgstr "Як використовувати результат калібрування?" msgid "" "You could change the Flow Dynamics Calibration Factor in material editing" msgstr "" +"Ви можете змінити Фактор калібрування динаміки потоку в редагуванні матеріалу" msgid "" "The current firmware version of the printer does not support calibration.\n" "Please upgrade the printer firmware." msgstr "" +"Поточна версія вбудованого програмного забезпечення принтера не \n" +"підтримує калібрування. Будь ласка, оновіть вбудоване програмне \n" +"забезпечення принтера." msgid "Calibration not supported" -msgstr "" +msgstr "Калібрування не підтримується" msgid "Error desc" -msgstr "" +msgstr "Опис помилки" msgid "Extra info" -msgstr "" +msgstr "Додаткова інформація" msgid "Flow Dynamics" -msgstr "" +msgstr "Динаміка потоку" msgid "Flow Rate" -msgstr "" +msgstr "Швидкість потоку" msgid "Max Volumetric Speed" -msgstr "" +msgstr "Максимальна об’ємна швидкість" #, c-format, boost-format msgid "" @@ -13381,38 +13714,45 @@ msgid "" "End value: > Start value\n" "Value step: >= %.3f)" msgstr "" +"Будь ласка, введіть дійсні значення:\n" +"Початкове значення: >= %.1f\n" +"Кінцеве значення: <= %.1f\n" +"Кінцеве значення: > Початкового значення\n" +"Крок значення: >= %.3f)" msgid "The name cannot be empty." -msgstr "" +msgstr "Ім’я не може бути порожнім." #, c-format, boost-format msgid "The selected preset: %s is not found." -msgstr "" +msgstr "Обраний пресет: %s не знайдено." msgid "The name cannot be the same as the system preset name." -msgstr "" +msgstr "Назва не може бути такою самою, як системна назва." msgid "The name is the same as another existing preset name" -msgstr "" +msgstr "Назва така сама, як інша існуюча назва налаштування" msgid "create new preset failed." -msgstr "" +msgstr "не вдалося створити новий передвстановлений параметр." msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" +"Ви впевнені, що хочете скасувати поточну калібрування і повернутися на " +"домашню сторінку?" msgid "No Printer Connected!" -msgstr "" +msgstr "Принтер не підключений!" msgid "Printer is not connected yet." -msgstr "" +msgstr "Принтер ще не підключено." msgid "Please select filament to calibrate." -msgstr "" +msgstr "Будь ласка, виберіть філамент для калібрування." msgid "The input value size must be 3." -msgstr "" +msgstr "Розмір введеного значення повинен бути 3." msgid "" "This machine type can only hold 16 history results per nozzle. You can " @@ -13421,15 +13761,20 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"Цей тип машини може зберігати лише 16 результатів історії на сопло. Ви " +"можете видалити існуючі історичні результати та потім розпочати " +"калібрування. Або ви можете продовжити калібрування, але ви не зможете " +"створювати нові історичні результати калібрування. \n" +"Ви все ще хочете продовжити калібрування?" msgid "Connecting to printer..." -msgstr "" +msgstr "Підключення до принтера…" msgid "The failed test result has been dropped." -msgstr "" +msgstr "Неуспішний результат тесту було відхилено." msgid "Flow Dynamics Calibration result has been saved to the printer" -msgstr "" +msgstr "Результат калібрування динаміки потоку було збережено в принтері" #, c-format, boost-format msgid "" @@ -13437,27 +13782,36 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"Вже існує історичний результат калібрування з такою самою назвою: %s. " +"Зберігається лише один з результатів з такою самою назвою. Ви впевнені, що " +"хочете перезаписати історичний результат?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"Цей тип машини може зберігати лише %d результатів історії на сопло. Цей " +"результат не буде збережений." msgid "Internal Error" -msgstr "" +msgstr "Внутрішня помилка" msgid "Please select at least one filament for calibration" -msgstr "" +msgstr "Будь ласка, виберіть принаймні один матеріал для калібрування" msgid "Flow rate calibration result has been saved to preset" msgstr "" +"Результат калібрування витрати матеріалу було збережено в налаштування за " +"замовчуванням" msgid "Max volumetric speed calibration result has been saved to preset" msgstr "" +"Результат калібрування максимальної об’ємної швидкості було збережено в " +"налаштування попередньо заданого значення" msgid "When do you need Flow Dynamics Calibration" -msgstr "" +msgstr "Коли потрібна калібрування динаміки потоку" msgid "" "We now have added the auto-calibration for different filaments, which is " @@ -13469,9 +13823,19 @@ msgid "" "3. If the max volumetric speed or print temperature is changed in the " "filament setting." msgstr "" +"Зараз у нас є можливість автоматичної калібрації для різних філаментів, яка " +"є повністю автоматизованою, і результат буде збережено в принтері для " +"подальшого використання. Вам потрібно робити калібрування лише в таких " +"обмежених випадках:\n" +"\n" +"1. Якщо ви вводите новий філамент різних брендів/моделей або філамент " +"зволожений;\n" +"2. Якщо сопло зношене або замінене новим;\n" +"3. Якщо максимальна об’ємна швидкість або температура друку змінена в " +"налаштуваннях філаменту." msgid "About this calibration" -msgstr "" +msgstr "Про це калібрування" msgid "" "Please find the details of Flow Dynamics Calibration from our wiki.\n" @@ -13492,9 +13856,28 @@ msgid "" "cause the result not exactly the same in each calibration. We are still " "investigating the root cause to do improvements with new updates." msgstr "" +"Будь ласка, знайдіть докладну інформацію щодо калібрування “Flow Dynamics " +"Calibration” у нашому вікі.\n" +"\n" +"Зазвичай калібрування не є необхідним. Коли ви розпочинаєте друк з одним " +"кольором/матеріалом, з опцією “калібрування динаміки потоку” включеною у " +"меню початку друку, принтер буде використовувати старий спосіб калібрування " +"філаменту перед початком друку; Коли ви розпочинаєте друк з декількома " +"кольорами/матеріалами, принтер використовуватиме стандартні параметри " +"компенсації для філаменту під час кожного перемикання філаменту, що в " +"більшості випадків дає гарний результат.\n" +"\n" +"Зверніть увагу, що є деякі випадки, коли результат калібрування може бути " +"ненадійним: використання текстурної підкладки для калібрування; слабка " +"адгезія підкладки (будь ласка, вимийте підкладку або нанесіть клей!) … " +"Більше інформації можна знайти у нашому вікі.\n" +"\n" +"Результати калібрування мають приблизно 10-відсотковий шум у наших тестах, " +"що може призвести до незначних відмінностей у кожному калібруванні. Ми все " +"ще вивчаємо кореневу причину, щоб внести поліпшення в майбутніх оновленнях." msgid "When to use Flow Rate Calibration" -msgstr "" +msgstr "Коли використовувати калібрування рівня потоку" msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " @@ -13507,12 +13890,28 @@ msgid "" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " "they should be." msgstr "" +"Після використання калібрування Flow Dynamics можуть все ще виникати деякі " +"проблеми з екструзією, такі як:\n" +"\n" +"Перекістювання: Зайвий матеріал на надрукованому об’єкті, утворення комочків " +"або прищепок, або шари виглядають товщими, ніж очікувалося, і " +"неоднорідними.\n" +"Недостача матеріалу: Дуже тонкі шари, слабка міцність заповнення або " +"прогалини в верхньому шарі моделі, навіть при повільному друку.\n" +"Погана якість поверхні: Поверхня ваших друків виглядає шершавою або " +"нерівною.\n" +"Слабка міцність конструкції: Друки ламаються легко або не виглядають " +"настільки міцними, як повинні бути." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" "PLA used in RC planes. These materials expand greatly when heated, and " "calibration provides a useful reference flow rate." msgstr "" +"Крім того, калібрування рівня потоку є надзвичайно важливим для матеріалів, " +"як наприклад LW-PLA, які утворюють піну і використовуються в моделях літаків " +"для радіокерованої авіації. Ці матеріали значно розширюються при нагріванні, " +"і калібрування надає корисну посилання на рівень потоку." msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " @@ -13522,6 +13921,13 @@ msgid "" "you still see the listed defects after you have done other calibrations. For " "more details, please check out the wiki article." msgstr "" +"Калібрування швидкості потоку вимірює співвідношення очікуваного до " +"фактичного обсягу викиду. За замовчуванням цей налаштування добре працює на " +"принтерах Bambu Lab і з офіційними філаментами, оскільки вони були " +"попередньо калібровані та налаштовані. Для звичайного філаменту вам, як " +"правило, не потрібно виконувати калібрування швидкості потоку, якщо ви все " +"ще бачите вказані дефекти після проведення інших калібрувань. Для отримання " +"більш докладної інформації ознайомтеся з статтею у вікі." msgid "" "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " @@ -13541,48 +13947,73 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" +"Автоматичне калібрування швидкості потоку використовує технологію Micro-" +"Lidar від Bambu Lab і безпосередньо вимірює калібровочні зразки. Однак " +"будьте попереджені, що ефективність і точність цього методу можуть бути " +"порушені для певних типів матеріалів. Зокрема, філаменти, які є прозорими чи " +"напівпрозорими, мають блискучі частинки або мають високий ступінь відбиття, " +"можуть бути не підходящими для цього калібрування і давати результати, які " +"не відповідають вимогам.\n" +"\n" +"Результати калібрування можуть варіюватися між кожним калібруванням або " +"філаментом. Ми постійно вдосконалюємо точність і сумісність цього " +"калібрування завдяки оновленням в програмному забезпеченні.\n" +"\n" +"Увага: Калібрування швидкості потоку - це складний процес, який слід " +"спробувати лише тим, хто повністю розуміє його призначення і наслідки. " +"Неправильне використання може призвести до неякісних друків або пошкодження " +"принтера. Будь ласка, перед тим як виконувати калібрування, докладно " +"ознайомтеся та розберіться у процесі." msgid "When you need Max Volumetric Speed Calibration" -msgstr "" +msgstr "Коли вам потрібна калібрування максимальної об'ємної швидкості" msgid "Over-extrusion or under extrusion" -msgstr "" +msgstr "Перевитрати або недостатній видавання" msgid "Max Volumetric Speed calibration is recommended when you print with:" msgstr "" +"Калібрування максимальної об'ємної швидкості рекомендується при друку з " +"такими матеріалами:" msgid "material with significant thermal shrinkage/expansion, such as..." -msgstr "" +msgstr "матеріалами зі значним термічним звуженням/розширенням, такими як..." msgid "materials with inaccurate filament diameter" -msgstr "" +msgstr "матеріалами з неточним діаметром нитки" msgid "We found the best Flow Dynamics Calibration Factor" -msgstr "" +msgstr "Ми знайшли найкращий коефіцієнт калібрування динаміки потоку" msgid "" "Part of the calibration failed! You may clean the plate and retry. The " "failed test result would be dropped." msgstr "" +"Частина калібрування не вдалася! Ви можете очистити плиту і повторити " +"спробу. Невдалі результати тесту будуть видалені." msgid "" "*We recommend you to add brand, materia, type, and even humidity level in " "the Name" msgstr "" +"*Ми рекомендуємо вам додати бренд, матеріал, тип і навіть рівень вологості у " +"назву" msgid "Failed" -msgstr "" +msgstr "Помилка" msgid "Please enter the name you want to save to printer." -msgstr "" +msgstr "Будь ласка, введіть ім’я, яке ви хочете зберегти на принтері." msgid "The name cannot exceed 40 characters." -msgstr "" +msgstr "Ім’я не може перевищувати 40 символів." msgid "" "Only one of the results with the same name will be saved. Are you sure you " "want to overrides the other results?" msgstr "" +"Збережено буде лише один із результатів з однаковою назвою. Ви впевнені,що " +"хочете перезаписати інші результати?" #, c-format, boost-format msgid "" @@ -13590,191 +14021,202 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to overrides the historical result?" msgstr "" +"Вже існує історичний результат калібрування з такою самою назвою: %s. " +"Зберігається лише один результат з такою самою назвою. Ви впевнені, що " +"хочете замінити історичний результат?" msgid "Please find the best line on your plate" -msgstr "" +msgstr "Будь ласка, знайдіть найкращу лінію на вашій пластині" msgid "Please find the cornor with perfect degree of extrusion" -msgstr "" +msgstr "Будь ласка, знайдіть кут із ідеальним ступенем екструзії" msgid "Input Value" -msgstr "" +msgstr "Введіть значення" msgid "Save to Filament Preset" -msgstr "" +msgstr "Зберегти в попередньому матеріалі" msgid "Preset" -msgstr "" +msgstr "Попередній" msgid "Record Factor" -msgstr "" +msgstr "Фактор запису" msgid "We found the best flow ratio for you" -msgstr "" +msgstr "Ми знайшли найкраще співвідношення потоку для вас" msgid "Flow Ratio" -msgstr "" +msgstr "Співвідношення потоку" msgid "Please input a valid value (0.0 < flow ratio < 2.0)" msgstr "" +"Будь ласка, введіть дійсне значення (0.0 < співвідношення потоку < 2.0)" msgid "Please enter the name of the preset you want to save." -msgstr "" +msgstr "Будь ласка, введіть назву попереднього, який ви хочете зберегти." msgid "Calibration1" -msgstr "" +msgstr "Калібрування1" msgid "Calibration2" -msgstr "" +msgstr "Калібрування2" msgid "Please find the best object on your plate" -msgstr "" +msgstr "Будь ласка, знайдіть найкращий об'єкт на вашій пластині" msgid "Fill in the value above the block with smoothest top surface" -msgstr "" +msgstr "Заповніть значення над блоком з найгладшою верхньою поверхнею" msgid "Skip Calibration2" -msgstr "" +msgstr "Пропустити калібрування2" #, c-format, boost-format msgid "flow ratio : %s " -msgstr "" +msgstr "співвідношення потоку : %s " msgid "Please choose a block with smoothest top surface" -msgstr "" +msgstr "Будь ласка, виберіть блок з найгладшою верхньою поверхнею" msgid "Please choose a block with smoothest top surface." -msgstr "" +msgstr "Будь ласка, виберіть блок з найгладшою верхньою поверхнею." msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" msgstr "" +"Будь ласка, введіть дійсне значення (0 <= Максимальна об'ємна швидкість <= " +"60)" msgid "Calibration Type" -msgstr "" +msgstr "Тип калібрування" msgid "Complete Calibration" -msgstr "" +msgstr "Повне калібрування" msgid "Fine Calibration based on flow ratio" -msgstr "" +msgstr "Точне калібрування на основі співвідношення потоку" msgid "Title" -msgstr "" +msgstr "Назва" msgid "" "A test model will be printed. Please clear the build plate and place it back " "to the hot bed before calibration." msgstr "" +"Буде надруковано тестову модель. Будь ласка, очистіть стільцевий стіл та " +"поверніть його на гарячу ліжко перед калібруванням." msgid "Printing Parameters" -msgstr "" +msgstr "Параметри друку" msgid "Plate Type" -msgstr "" +msgstr "Тип стільця" msgid "filament position" -msgstr "" +msgstr "положення нитки" msgid "External Spool" -msgstr "" +msgstr "Зовнішній барабан" msgid "Filament For Calibration" -msgstr "" +msgstr "Нитка для калібрування" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" "- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" msgstr "" +"Поради щодо матеріалу для калібрування: \n" +"- Матеріали, які можуть використовувати однакову температуру гарячого ліжка\n" +"- Різні бренди та сімейства ниток (Бренд = Bambu, Сімейство = Basic, Matte)" msgid "Pattern" -msgstr "" +msgstr "Зразок" msgid "Method" msgstr "Метод" #, c-format, boost-format msgid "%s is not compatible with %s" -msgstr "" +msgstr "%s несумісний з %s" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." -msgstr "" +msgstr "TPU не підтримується для автокалібрування Flow Dynamics." msgid "Connecting to printer" -msgstr "" +msgstr "Підключення до принтера" msgid "From k Value" -msgstr "" +msgstr "Зі значення k" msgid "To k Value" -msgstr "" +msgstr "Для значення k" msgid "Step value" msgstr "" msgid "The nozzle diameter has been synchronized from the printer Settings" -msgstr "" +msgstr "Діаметр сопла було синхронізовано з налаштувань принтера" msgid "From Volumetric Speed" -msgstr "" +msgstr "З об'ємною швидкістю" msgid "To Volumetric Speed" -msgstr "" +msgstr "До об'ємної швидкості" msgid "Flow Dynamics Calibration Result" -msgstr "" +msgstr "Результат калібрування динаміки потоку" msgid "New" -msgstr "" +msgstr "Новий" msgid "No History Result" -msgstr "" +msgstr "Немає історії результатів" msgid "Success to get history result" -msgstr "" +msgstr "Успішно отримано історичний результат" msgid "Refreshing the historical Flow Dynamics Calibration records" -msgstr "" +msgstr "Оновлення історичних записів калібрування динаміки потоку" msgid "Action" -msgstr "" +msgstr "Дія" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "Цей тип машини може зберігати лише %d результатів історії на сопло." msgid "Edit Flow Dynamics Calibration" -msgstr "" +msgstr "Редагувати калібрування динаміки потоку" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "Нове калібрування динамічного потоку" msgid "Ok" -msgstr "" +msgstr "Добре" msgid "The filament must be selected." -msgstr "" +msgstr "Філамент повинен бути обраний." msgid "Network lookup" -msgstr "" +msgstr "Мережевий пошук" msgid "Address" -msgstr "" +msgstr "Адреса" msgid "Hostname" -msgstr "" +msgstr "Ім'я хоста" msgid "Service name" -msgstr "" +msgstr "Назва служби" msgid "OctoPrint version" -msgstr "" +msgstr "Версія OctoPrint" msgid "Searching for devices" -msgstr "" +msgstr "Пошук пристроїв" msgid "Finished" -msgstr "" +msgstr "Завершено" msgid "Multiple resolved IP addresses" msgstr "" @@ -13804,7 +14246,7 @@ msgid "PA Line" msgstr "РА лінія" msgid "PA Pattern" -msgstr "" +msgstr "PA Патерн" msgid "Start PA: " msgstr "Стартовий PA: " @@ -13917,10 +14359,11 @@ msgid "Send G-Code to printer host" msgstr "" msgid "Upload to Printer Host with the following filename:" -msgstr "" +msgstr "Завантажити на хост принтера з наступним іменем файлу:" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "" +"Використовуйте косі нахилу ( / ) як роздільник каталогів, якщо потрібно." msgid "Upload to storage" msgstr "" @@ -13928,106 +14371,107 @@ msgstr "" #, c-format, boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "" +"Назва файлу для завантаження не закінчується на \"%s\". Бажаєте продовжити?" msgid "Upload" -msgstr "" +msgstr "Завантаження" msgid "Print host upload queue" -msgstr "" +msgstr "Черга завантаження на хост друку" msgid "ID" -msgstr "" +msgstr "Ідентифікатор" msgid "Progress" -msgstr "" +msgstr "Прогрес" msgid "Host" -msgstr "" +msgstr "Хост" msgctxt "OfFile" msgid "Size" -msgstr "" +msgstr "Розмір" msgid "Filename" -msgstr "" +msgstr "Ім'я файлу" msgid "Cancel selected" -msgstr "" +msgstr "Скасувати вибране" msgid "Show error message" -msgstr "" +msgstr "Показати повідомлення про помилку" msgid "Enqueued" -msgstr "" +msgstr "У черзі" msgid "Uploading" -msgstr "" +msgstr "Завантаження" msgid "Cancelling" -msgstr "" +msgstr "Скасування" msgid "Error uploading to print host" msgstr "" msgid "Unable to perform boolean operation on selected parts" -msgstr "" +msgstr "Не вдається виконати булеву операцію на вибраних частинах" msgid "Mesh Boolean" -msgstr "" +msgstr "Булева операція меша" msgid "Union" -msgstr "" +msgstr "Об'єднання" msgid "Difference" -msgstr "" +msgstr "Різниця" msgid "Intersection" -msgstr "" +msgstr "Перетин" msgid "Source Volume" -msgstr "" +msgstr "Об'єм джерела" msgid "Tool Volume" -msgstr "" +msgstr "Об'єм інструмента" msgid "Subtract from" -msgstr "" +msgstr "Відняти від" msgid "Subtract with" -msgstr "" +msgstr "Відняти з" msgid "selected" -msgstr "" +msgstr "вибрані" msgid "Part 1" -msgstr "" +msgstr "Частина 1" msgid "Part 2" -msgstr "" +msgstr "Частина 2" msgid "Delete input" -msgstr "" +msgstr "Видалити вхід" msgid "Network Test" -msgstr "" +msgstr "Тест мережі" msgid "Start Test Multi-Thread" -msgstr "" +msgstr "Розпочати тестування багатопотоково" msgid "Start Test Single-Thread" -msgstr "" +msgstr "Розпочати тестування однопотоково" msgid "Export Log" -msgstr "" +msgstr "Експортувати журнал (лог)" msgid "OrcaSlicer Version:" msgstr "" msgid "System Version:" -msgstr "" +msgstr "Версія системи:" msgid "DNS Server:" -msgstr "" +msgstr "DNS-сервер:" msgid "Test OrcaSlicer(GitHub)" msgstr "" @@ -14036,92 +14480,104 @@ msgid "Test OrcaSlicer(GitHub):" msgstr "" msgid "Test Bing.com" -msgstr "" +msgstr "Tест Bing.com" msgid "Test bing.com:" -msgstr "" +msgstr "Tест bing.com:" msgid "Log Info" -msgstr "" +msgstr "Інформація журналу" msgid "Select filament preset" -msgstr "" +msgstr "Вибрати налаштування філаменту" msgid "Create Filament" -msgstr "" +msgstr "Створити Філамент" msgid "Create Based on Current Filament" -msgstr "" +msgstr "Створити на основі поточного філаменту" msgid "Copy Current Filament Preset " -msgstr "" +msgstr "Копіювати поточний набір параметрів філаменту " msgid "Basic Information" -msgstr "" +msgstr "Основна інформація" msgid "Add Filament Preset under this filament" -msgstr "" +msgstr "Додати налаштування філаменту під цим філаментом" msgid "We could create the filament presets for your following printer:" msgstr "" +"Ми можемо створити налаштування філаменту для вашого наступного принтера:" msgid "Select Vendor" -msgstr "" +msgstr "Вибрати виробника" msgid "Input Custom Vendor" -msgstr "" +msgstr "Введіть власного виробника" msgid "Can't find vendor I want" -msgstr "" +msgstr "Не можу знайти виробника, якого я хочу" msgid "Select Type" -msgstr "" +msgstr "Виберіть Тип" msgid "Select Filament Preset" -msgstr "" +msgstr "Виберіть налаштування філаменту" msgid "Serial" -msgstr "" +msgstr "Серійний номер" msgid "e.g. Basic, Matte, Silk, Marble" -msgstr "" +msgstr "наприклад, Basic, Matte, Silk, Marble" msgid "Filament Preset" -msgstr "" +msgstr "Набір параметрів філаменту" msgid "Create" -msgstr "" +msgstr "Створити" msgid "Vendor is not selected, please reselect vendor." -msgstr "" +msgstr "Виробник не вибраний. Будь ласка, перевиберіть виробника." msgid "Custom vendor is not input, please input custom vendor." msgstr "" +"Власного виробника не введено. Будь ласка, введіть інформацію про власного " +"виробника." msgid "" "\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." msgstr "" +"“Bambu” або “Generic” не може бути використано як виробник для власних " +"налаштувань філаменту." msgid "Filament type is not selected, please reselect type." -msgstr "" +msgstr "Тип філаменту не вибраний. Будь ласка, перевиберіть тип." msgid "Filament serial is not inputed, please input serial." msgstr "" +"Серійний номер філаменту не введено. Будь ласка, введіть серійний номер." msgid "" "There may be escape characters in the vendor or serial input of filament. " "Please delete and re-enter." msgstr "" +"Можливо, введено спеціальні символи у виробника або серійний номер " +"філаменту. Будь ласка, видаліть їх і введіть ще раз." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "" +"Усі введені значення в полі власного виробника або серійного номера є " +"пробіли. Будь ласка, введіть щось інше." msgid "The vendor can not be a number. Please re-enter." -msgstr "" +msgstr "Виробник не може бути числом. Будь ласка, введіть ще раз." msgid "" "You have not selected a printer or preset yet. Please select at least one." msgstr "" +"Ви ще не вибрали принтер або налаштування. Будь ласка, виберіть принаймні " +"одне з них." #, c-format, boost-format msgid "" @@ -14129,14 +14585,19 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"Назва філаменту %s, яку ви створили, вже існує. \n" +"Якщо ви продовжите створення, новий набір параметрів буде відображений з " +"повною назвою. Хочете продовжити?" msgid "Some existing presets have failed to be created, as follows:\n" -msgstr "" +msgstr "Деякі існуючі налаштування не вдалося створити, як показано нижче:\n" msgid "" "\n" "Do you want to rewrite it?" msgstr "" +"\n" +"Чи бажаєте ви їх перезаписати?" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you selected" @@ -14145,114 +14606,120 @@ msgid "" msgstr "" msgid "Create Printer/Nozzle" -msgstr "" +msgstr "Створити Принтер/Сопло" msgid "Create Printer" -msgstr "" +msgstr "Принтер" msgid "Create Nozzle for Existing Printer" -msgstr "" +msgstr "Створити сопло для існуючого принтера" msgid "Create from Template" -msgstr "" +msgstr "Створити з шаблону" msgid "Create Based on Current Printer" -msgstr "" +msgstr "Створити на основі поточного принтера" msgid "Import Preset" -msgstr "" +msgstr "Імпорт набору параметрів" msgid "Create Type" -msgstr "" +msgstr "Тип" msgid "The model is not fond, place reselect vendor." -msgstr "" +msgstr "Модель не знайдено. Будь ласка, перевиберіть виробника." msgid "Select Model" -msgstr "" +msgstr "Виберіть модель" msgid "Select Printer" -msgstr "" +msgstr "Виберіть принтер" msgid "Input Custom Model" -msgstr "" +msgstr "Введіть власну модель" msgid "Can't find my printer model" -msgstr "" +msgstr "Не можу знайти свою модель принтера" msgid "Rectangle" -msgstr "" +msgstr "Прямокутник" msgid "Printable Space" -msgstr "" +msgstr "Простір для друку" msgid "X" -msgstr "" +msgstr "X" msgid "Y" -msgstr "" +msgstr "Y" msgid "Hot Bed STL" -msgstr "" +msgstr "STL файл для гарячого столу" msgid "Load stl" -msgstr "" +msgstr "Завантажити STL" msgid "Hot Bed SVG" -msgstr "" +msgstr "SVG для гарячого ліжка" msgid "Load svg" -msgstr "" +msgstr "Завантажити SVG" msgid "Max Print Height" -msgstr "" +msgstr "Максимальна висота друку" #, c-format, boost-format msgid "The file exceeds %d MB, please import again." -msgstr "" +msgstr "Файл перевищує %d МБ, будь ласка, імпортуйте знову." msgid "Exception in obtaining file size, please import again." msgstr "" +"Виникла помилка під час визначення розміру файлу, будь ласка, імпортуйте " +"знову." msgid "Preset path is not find, please reselect vendor." -msgstr "" +msgstr "Шлях до налаштувань не знайдено. Будь ласка, перевиберіть виробника." msgid "The printer model was not found, please reselect." -msgstr "" +msgstr "Модель принтера не було знайдено. Будь ласка, перевиберіть її." msgid "The nozzle diameter is not fond, place reselect." -msgstr "" +msgstr "Діаметр сопла не знайдено. Будь ласка, перевиберіть його." msgid "The printer preset is not fond, place reselect." -msgstr "" +msgstr "Налаштування принтера не знайдено. Будь ласка, перевиберіть його." msgid "Printer Preset" -msgstr "" +msgstr "Набір параметрів принтера" msgid "Filament Preset Template" -msgstr "" +msgstr "Шаблон набору параметрів філаменту" msgid "Deselect All" -msgstr "" +msgstr "Скасувати вибір всіх" msgid "Process Preset Template" -msgstr "" +msgstr "Шаблон набору параметрів процесу" msgid "Back Page 1" -msgstr "" +msgstr "Повернутися на 1 сторінку" msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" msgstr "" +"Ви ще не вибрали налаштування принтера, на основі якого створювати. Будь " +"ласка, виберіть виробника та модель принтера" msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." msgstr "" +"Ви ввели недопустимий ввід у розділі “Друкована область” на першій сторінці. " +"Будь ласка, перевірте перед створенням." msgid "The custom printer or model is not inputed, place input." -msgstr "" +msgstr "Власна модель або принтер не введені. Будь ласка, введіть дані." msgid "" "The printer preset you created already has a preset with the same name. Do " @@ -14263,60 +14730,77 @@ msgid "" "reserve.\n" "\tCancel: Do not create a preset, return to the creation interface." msgstr "" +"Налаштування принтера, яке ви створили, вже має налаштування з такою ж " +"назвою. Бажаєте перезаписати його?\n" +"\tТак: Перезаписати налаштування принтера з такою ж назвою, і налаштування " +"філаменту та процесу з \n" +"такою ж назвою буде створено знову, а налаштування філаменту та процесу без " +"такої ж назви буде збережено.\n" +"\tСкасувати: Не створювати налаштування, повернутися до інтерфейсу створення." msgid "You need to select at least one filament preset." -msgstr "" +msgstr "Вам потрібно вибрати принаймні одне налаштування філаменту." msgid "You need to select at least one process preset." -msgstr "" +msgstr "Вам потрібно вибрати принаймні одне налаштування процесу." msgid "Create filament presets failed. As follows:\n" -msgstr "" +msgstr "Створення налаштувань філаменту не вдалося. Ось докладніше:\n" msgid "Create process presets failed. As follows:\n" -msgstr "" +msgstr "Створення налаштувань процесу не вдалося. Ось докладніше:\n" msgid "Vendor is not find, please reselect." -msgstr "" +msgstr "Виробника не знайдено, будь ласка, перевиберіть." msgid "Current vendor has no models, please reselect." -msgstr "" +msgstr "Поточний виробник не має моделей, будь ласка, перевиберіть." msgid "" "You have not selected the vendor and model or inputed the custom vendor and " "model." msgstr "" +"Ви не вибрали виробника та модель або не ввели власного виробника та модель." msgid "" "There may be escape characters in the custom printer vendor or model. Please " "delete and re-enter." msgstr "" +"Можливо, в власному виробнику або моделі принтера є керуючі послідовності. " +"Будь ласка, видаліть їх і введіть ще раз." msgid "" "All inputs in the custom printer vendor or model are spaces. Please re-enter." msgstr "" +"Усі введені дані в власному виробнику або моделі принтера є пропусками. Будь " +"ласка, введіть ще раз." msgid "Please check bed printable shape and origin input." msgstr "" +"Будь ласка, перевірте введення форми друку на ліжку та початкову точку." msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "" +"Ви ще не вибрали принтер, для якого потрібно замінити сопло. Будь ласка, " +"оберіть." msgid "Create Printer Successful" -msgstr "" +msgstr "Створення принтера успішно завершено" msgid "Create Filament Successful" -msgstr "" +msgstr "Створення філаменту успішно завершено" msgid "Printer Created" -msgstr "" +msgstr "Принтер створено" msgid "Please go to printer settings to edit your presets" msgstr "" +"Будь ласка, перейдіть до налаштувань принтера, щоб редагувати свої " +"налаштування" msgid "Filament Created" -msgstr "" +msgstr "Філамент створено" msgid "" "Please go to filament setting to edit your presets if you need.\n" @@ -14324,6 +14808,11 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"Будь ласка, перейдіть до налаштувань філаменту, щоб відредагувати свої " +"налаштування, якщо потрібно. \n" +"Зверніть увагу, що температура насадки, температура гарячого ліжка і " +"максимальна об’ємна швидкість мають значний вплив на якість друку. Будь " +"ласка, встановіть їх обережно." msgid "" "\n" @@ -14335,7 +14824,7 @@ msgid "" msgstr "" msgid "Printer Setting" -msgstr "" +msgstr "Налаштування принтера" msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -14344,31 +14833,31 @@ msgid "Filament bundle(.orca_filament)" msgstr "" msgid "Printer presets(.zip)" -msgstr "" +msgstr "Налаштування принтера (.zip)" msgid "Filament presets(.zip)" -msgstr "" +msgstr "Налаштування філаменту (.zip)" msgid "Process presets(.zip)" -msgstr "" +msgstr "Налаштування процесу (.zip)" msgid "initialize fail" -msgstr "" +msgstr "помилка ініціалізації" msgid "add file fail" -msgstr "" +msgstr "помилка додавання файлу" msgid "add bundle structure file fail" -msgstr "" +msgstr "помилка додавання файлу структури пакунка" msgid "finalize fail" -msgstr "" +msgstr "помилка завершення" msgid "open zip written fail" -msgstr "" +msgstr "помилка відкриття записаного файлу ZIP" msgid "Export successful" -msgstr "" +msgstr "Експорт успішний" #, c-format, boost-format msgid "" @@ -14377,6 +14866,10 @@ msgid "" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" +"Папка ‘%s’ вже існує в поточному каталозі. Бажаєте очистити її і побудувати " +"заново?\n" +"Якщо ні, буде додано суфікс з часом, і ви зможете змінити ім’я після " +"створення." msgid "" "Printer and all the filament&&process presets that belongs to the printer. \n" @@ -14387,54 +14880,76 @@ msgid "" "User's fillment preset set. \n" "Can be shared with others." msgstr "" +"Налаштування філаменту користувача \n" +"можна поділитися з іншими користувачами." msgid "" "Only display printer names with changes to printer, filament, and process " "presets." msgstr "" +"Показувати лише назви принтерів зі змінами у налаштуваннях принтера, " +"філаменту та процесу." msgid "Only display the filament names with changes to filament presets." -msgstr "" +msgstr "Показувати лише назви філаментів зі змінами у налаштуваннях філаменту." msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" +"Будуть відображатися лише назви принтерів з налаштуваннями принтера " +"користувача, і кожне обране налаштування буде експортовано у форматі ZIP." msgid "" "Only the filament names with user filament presets will be displayed, \n" "and all user filament presets in each filament name you select will be " "exported as a zip." msgstr "" +"Будуть відображатися лише назви філаментів з налаштуваннями філаменту " +"користувача, \n" +"і всі налаштування філаменту користувача для кожної вибраної назви " +"філаменту \n" +"будуть експортовані у форматі ZIP." msgid "" "Only printer names with changed process presets will be displayed, \n" "and all user process presets in each printer name you select will be " "exported as a zip." msgstr "" +"Будуть відображатися лише назви принтерів зі зміненими налаштуваннями " +"процесу, \n" +"і всі налаштування процесу користувача для кожної вибраної назви принтера " +"будуть \n" +"експортовані у форматі ZIP." msgid "Please select at least one printer or filament." -msgstr "" +msgstr "Будь ласка, виберіть принаймні один принтер або філамент." msgid "Please select a type you want to export" -msgstr "" +msgstr "Будь ласка, виберіть тип, який ви хочете експортувати" msgid "Failed to create temporary folder, please try Export Configs again." msgstr "" +"Не вдалося створити тимчасову теку. Будь ласка, спробуйте експортувати " +"налаштування знову." msgid "Edit Filament" -msgstr "" +msgstr "Редагувати філамент" msgid "Filament presets under this filament" -msgstr "" +msgstr "Налаштування філаменту під цим філаментом" msgid "" "Note: If the only preset under this filament is deleted, the filament will " "be deleted after exiting the dialog." msgstr "" +"Примітка: Якщо єдиний пресет під цим філаментом буде видалений, то філамент " +"також буде видалений після виходу з діалогового вікна." msgid "Presets inherited by other presets can not be deleted" msgstr "" +"Налаштування, що успадковуються іншими налаштуваннями, не можуть бути " +"видалені" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." @@ -14443,75 +14958,87 @@ msgstr[1] "" msgstr[2] "" msgid "Delete Preset" -msgstr "" +msgstr "Видалити пресет" msgid "Are you sure to delete the selected preset?" -msgstr "" +msgstr "Ви впевнені, що хочете видалити вибраний пресет?" msgid "Delete preset" -msgstr "" +msgstr "Видалити пресет" msgid "+ Add Preset" -msgstr "" +msgstr "+ Додати пресет" msgid "Delete Filament" -msgstr "" +msgstr "Видалити Філамент" msgid "" "All the filament presets belong to this filament would be deleted. \n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" +"Всі набори параметрів філаменту, що належать до цього філаменту, будуть " +"видалені. \n" +"Якщо ви використовуєте цей філамент на своєму принтері, будь ласка, скиньте " +"інформацію про філамент для цього слоту." msgid "Delete filament" -msgstr "" +msgstr "Видалити філамент" msgid "Add Preset" -msgstr "" +msgstr "Додати пресет" msgid "Add preset for new printer" -msgstr "" +msgstr "Додати налаштування для нового принтера" msgid "Copy preset from filament" -msgstr "" +msgstr "Скопіювати налаштування з філаменту" msgid "The filament choice not find filament preset, please reselect it" msgstr "" +"Вибір філаменту не знайдено в налаштуваннях філаменту. Будь ласка, " +"перевиберіть його" msgid "[Delete Required]" -msgstr "" +msgstr "[Потрібно видалення]" msgid "Edit Preset" -msgstr "" +msgstr "Редагувати налаштування" msgid "For more information, please check out Wiki" -msgstr "" +msgstr "Для отримання додаткової інформації, будь ласка, перевірте Вікі" msgid "Collapse" -msgstr "" +msgstr "Згорнути" msgid "Daily Tips" -msgstr "" +msgstr "Щоденні поради" msgid "" "Your nozzle diameter in preset is not consistent with memorized nozzle " "diameter. Did you change your nozzle lately?" msgstr "" +"Діаметр вашого сопла в налаштуваннях не відповідає запам’ятованому діаметру " +"сопла. Чи змінювали ви своє сопло останнім часом?" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" msgstr "" +"*Друк матеріалу %s з використанням сопла %s може призвести до пошкодження " +"сопла" msgid "Need select printer" -msgstr "" +msgstr "Потрібно вибрати принтер" msgid "The start, end or step is not valid value." -msgstr "" +msgstr "Початок, кінець або крок не є дійсним значенням." msgid "" "Unable to calibrate: maybe because the set calibration value range is too " "large, or the step is too small" msgstr "" +"Неможливо калібрувати: можливо, через те, що діапазон встановлених значень " +"калібрування занадто великий, або крок занадто малий" msgid "Physical Printer" msgstr "Фізичний принтер" @@ -14567,72 +15094,74 @@ msgstr "Не вдалося підключитися до принтерів, п #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "" +msgstr "Невідповідність типу принт-сервера: %s" msgid "Connection to AstroBox works correctly." -msgstr "" +msgstr "З’єднання з AstroBox працює коректно." msgid "Could not connect to AstroBox" -msgstr "" +msgstr "Не вдалося з’єднатися з AstroBox" msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "" +msgstr "Примітка: Для AstroBox потрібна версія щонайменше 1.1.0." msgid "Connection to Duet works correctly." -msgstr "" +msgstr "З’єднання з Duet працює коректно." msgid "Could not connect to Duet" -msgstr "" +msgstr "Не вдалося з’єднатися з Duet" msgid "Unknown error occured" -msgstr "" +msgstr "Сталася невідома помилка" msgid "Wrong password" -msgstr "" +msgstr "Неправильний пароль" msgid "Could not get resources to create a new connection" -msgstr "" +msgstr "Не вдалося отримати ресурси для створення нового з’єднання" msgid "Upload not enabled on FlashAir card." -msgstr "" +msgstr "Завантаження не активовано на картці FlashAir." msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "" +msgstr "З’єднання з FlashAir працює коректно, і завантаження активовано." msgid "Could not connect to FlashAir" -msgstr "" +msgstr "Не вдалося з’єднатися з FlashAir" msgid "" "Note: FlashAir with firmware 2.00.02 or newer and activated upload function " "is required." msgstr "" +"Примітка: Для FlashAir потрібна прошивка версії 2.00.02 або новіша з " +"активованою функцією завантаження." msgid "Connection to MKS works correctly." -msgstr "" +msgstr "З’єднання з MKS працює коректно." msgid "Could not connect to MKS" -msgstr "" +msgstr "Не вдалося підключитися до MKS" msgid "Connection to OctoPrint works correctly." -msgstr "" +msgstr "Підключення до OctoPrint працює правильно." msgid "Could not connect to OctoPrint" -msgstr "" +msgstr "Не вдалося підключитися до OctoPrint" msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "" +msgstr "Примітка. Потрібна версія OctoPrint не нижче 1.1.0." msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "" +msgstr "Підключення до Prusa SL1 / SL1S працює правильно." msgid "Could not connect to Prusa SLA" -msgstr "" +msgstr "Не вдалося підключитися до Prusa SLA" msgid "Connection to PrusaLink works correctly." -msgstr "" +msgstr "Підключення до PrusaLink працює коректно." msgid "Could not connect to PrusaLink" -msgstr "" +msgstr "Не вдалося підключитися до PrusaLink" msgid "Storages found" msgstr "" @@ -14659,19 +15188,21 @@ msgid "Could not connect to Prusa Connect" msgstr "" msgid "Connection to Repetier works correctly." -msgstr "" +msgstr "Підключення до Repetier працює правильно." msgid "Could not connect to Repetier" -msgstr "" +msgstr "Не вдалося підключитися до Repetier" msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "" +msgstr "Примітка: потрібна версія Repetier принаймні 0.90.0." #, boost-format msgid "" "HTTP status: %1%\n" "Message body: \"%2%\"" msgstr "" +"Статус HTTP: %1%\n" +"Тіло повідомлення: “%2%" #, boost-format msgid "" @@ -14679,6 +15210,9 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Помилка аналізу відповіді хоста.\n" +"Тіло повідомлення: “%1%”\n" +"Помилка: “%2%”" #, boost-format msgid "" @@ -14686,35 +15220,54 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Помилка переліку хост-принтерів.\n" +"Тіло повідомлення: “%1%”\n" +"Помилка: “%2%”" msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"Він має малу висоту шару, що призводить до майже непомітних ліній " +"шаруватості та високої якості друку. Він підходить для більшості загальних " +"випадків друку." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"Порівняно з типовим профілем для насадки 0,2 мм, він має менші швидкості і " +"прискорення, а також розріджену структуру наповнення у вигляді гіроїда. " +"Таким чином, він забезпечує значно вищу якість друку, але при цьому " +"друкується значно довше." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"Порівняно з типовим профілем для насадки 0,2 мм, він має трохи більшу висоту " +"шару, що призводить до майже непомітних ліній шаруватості та трохи коротший " +"час друку." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"Порівняно з типовим профілем для насадки 0,2 мм, він має більшу висоту шару, " +"що призводить до слабко видимих ліній шаруватості, але при цьому друкується " +"трохи швидше." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"Порівняно з типовим профілем для насадки 0,2 мм, це має меншу висоту шару, і " +"результатом є майже невидимі лінії шару та вища якість друку, але коротший " +"час друку." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14722,12 +15275,20 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Порівняно з типовим профілем для насадки 0,2 мм, цей профіль має меншу " +"кількість ліній шарування, менші швидкості і прискорення, і розріджене " +"наповнення виконане у вигляді геометрії “Gyroid”. Таким чином, він " +"забезпечує майже невидимі лінії шарування та значно вищу якість друку, але " +"довший час друку." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"Порівняно з типовим профілем для насадки діаметром 0,2 мм, цей профіль має " +"меншу висоту шару, що призводить до мінімальних ліній шарування та вищої " +"якості друку, але скорочує час друку." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14735,35 +15296,55 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Порівняно з типовим профілем для насадки 0,2 мм, цей профіль має меншу " +"кількість ліній шарування, менші швидкості та прискорення, а також " +"розріджене наповнення виконане у вигляді геометрії “Gyroid”. Таким чином, " +"він забезпечує мінімальні лінії шарування та значно вищу якість друку, але " +"збільшує час друку." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"Він має загальну висоту шару та призводить до загальних ліній шарування і " +"якості друку. Він підходить для більшості загальних випадків друку." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " +"більше кількість обводок стін та вищу щільність розрідженого наповнювача. " +"Таким чином, він забезпечує більшу міцність друків, але вимагає більше " +"витрати філаменту та більшого часу друку." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " +"більшу висоту шару, що призводить до більш помітних ліній шарування та " +"меншої якості друку, але трохи скорочує час друку." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " +"більшу висоту шару, що призводить до більш помітних ліній шарування та " +"меншої якості друку, але скорочує час друку." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " +"меншу висоту шару, що призводить до менш помітних ліній шарування та вищої " +"якості друку, але збільшує час друку." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14771,12 +15352,20 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " +"меншу висоту шару, менші швидкості і прискорення, а також розріджений " +"внутрішній наповнювач у вигляді геоіда. Таким чином, це призводить до менш " +"помітних ліній шарування та значно вищої якості друку, але збільшує час " +"друку." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " +"меншу висоту шару, що призводить до майже непомітних ліній шарування та " +"вищої якості друку, але збільшує час друку." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14784,64 +15373,97 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " +"меншу висоту шару, менші швидкості та прискорення, а також розріджений " +"малюнок наповнення у вигляді геоїда. Тому він має майже непомітні лінії " +"шарування і набагато вищу якість друку, але значно довший час друку." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " +"меншу висоту шару, що призводить до майже непомітних ліній шарування, але " +"також збільшує час друку." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"Він має велику висоту шару, що призводить до видимих ліній шарування і " +"звичайної якості друку та часу друку." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"Порівняно з типовим профілем з 0,6 мм сопла, він має більше стінних петель і " +"вищу щільність розрідженого наповнювача. Таким чином, він забезпечує більшу " +"міцність друків, але споживає більше філаменту і має довший час друку." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"Порівняно з типовим профілем з 0,6 мм сопла, він має більшу висоту шару, що " +"призводить до більш помітних ліній шару та нижчої якості друку, але " +"коротшого часу друку у деяких випадках друку." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"Порівняно з типовим профілем з 0,6 мм сопла, він має більшу висоту шару, що " +"призводить до набагато більш помітних ліній шару та значно нижчої якості " +"друку, але коротшого часу друку у деяких випадках друку." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"Порівняно з типовим профілем з 0,6 мм сопла, він має меншу висоту шару, що " +"призводить до менш помітних ліній шару і трохи вищої якості друку, але " +"довшого часу друку." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"Порівняно з типовим профілем з 0,6 мм сопла, він має меншу висоту шару, що " +"призводить до менш помітних ліній шару та вищої якості друку, але більш " +"тривалого часу друку." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"Він має дуже велику висоту шару, що призводить до дуже помітних ліній шару, " +"низької якості друку і загального часу друку." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"Порівняно з типовим профілем для сопла 0,8 мм, цей профіль має більшу висоту " +"шару, що призводить до дуже помітних ліній шару і значно нижчої якості " +"друку, але коротшого часу друку у деяких випадках друку." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"Порівняно з типовим профілем для сопла 0,8 мм, цей профіль має набагато " +"більшу висоту шару, що призводить до надзвичайно помітних ліній шару і " +"значно нижчої якості друку, але набагато коротшого часу друку у деяких " +"випадках друку." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -14849,12 +15471,18 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"Порівняно з типовим профілем для сопла 0,8 мм, цей профіль має трохи меншу " +"висоту шару, що призводить до трохи менше, але все ще помітних ліній шару і " +"трохи вищої якості друку, але довшого часу друку у деяких випадках друку." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"Порівняно з типовим профілем для сопла 0,8 мм, цей профіль має меншу висоту " +"шару, що призводить до менше, але все ще помітних ліній шару і трохи вищої " +"якості друку, але довшого часу друку у деяких випадках друку." msgid "Connected to Obico successfully!" msgstr "" @@ -14980,6 +15608,9 @@ msgid "" "Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " "problems on the Windows system?" msgstr "" +"Виправлення моделі\n" +"Чи знаєте ви, що ви можете виправити пошкоджену 3D-модель, щоб уникнути " +"багатьох проблем з нарізанням (slicing) на операційній системі Windows?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" @@ -15092,6 +15723,10 @@ msgid "" "paint it on your print, to have it in a less visible location? This improves " "the overall look of your model. Check it out!" msgstr "" +"Місце з'єднання Z-шва\n" +"Чи знали ви, що ви можете налаштовувати розташування Z-шва, і навіть " +"розфарбовувати його на друці, щоб зробити його менш видимим? Це покращує " +"загальний вигляд вашої моделі. Перевірте це!" #: resources/data/hints.ini: [hint:Fine-tuning for flow rate] msgid "" @@ -15219,6 +15854,11 @@ msgid "" "extruder/hotend clogging when printing lower temperature filament with a " "higher enclosure temperature. More info about this in the Wiki." msgstr "" +"Коли потрібно друкувати з відкритими дверцятами принтера\n" +"Чи знаєте ви, що відкриття дверцят принтера може знизити ймовірність " +"засмічення екструдера/гарячого блока при друку низькотемпературного " +"філаменту при вищій температурі усередині корпусу? Більше інформації " +"знаходиться в Вікі." #: resources/data/hints.ini: [hint:Avoid warping] msgid "" @@ -15227,6 +15867,13 @@ msgid "" "ABS, appropriately increasing the heatbed temperature can reduce the " "probability of warping." msgstr "" +"Уникнення деформації\n" +"Чи знаєте ви, що при друку матеріалами, схильними до деформації, такими як " +"ABS, відповідне підвищення температури гарячого ліжка може зменшити " +"ймовірність деформації." + +#~ msgid "V" +#~ msgstr "V" #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index 998cfc8a0c..f125af2b38 100644 --- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po +++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Slic3rPE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: 2023-04-01 13:21+0800\n" "Last-Translator: SoftFever \n" "Language-Team: \n" @@ -106,7 +106,7 @@ msgid "Support Generated" msgstr "已生成支撑" msgid "Gizmo-Place on Face" -msgstr "" +msgstr "选择底面" msgid "Lay on face" msgstr "选择底面" @@ -186,13 +186,13 @@ msgid "Move" msgstr "移动" msgid "Gizmo-Move" -msgstr "" +msgstr "Gizmo-移动" msgid "Rotate" msgstr "旋转" msgid "Gizmo-Rotate" -msgstr "" +msgstr "Gizmo-旋转" msgid "Optimize orientation" msgstr "优化朝向" @@ -204,7 +204,7 @@ msgid "Scale" msgstr "缩放" msgid "Gizmo-Scale" -msgstr "" +msgstr "缩放工具" msgid "Error: Please close all toolbar menus first" msgstr "错误:请先关闭所有工具栏菜单" @@ -283,7 +283,7 @@ msgid "Auto" msgstr "自动" msgid "Manual" -msgstr "" +msgstr "手动" msgid "Plug" msgstr "插销" @@ -616,13 +616,13 @@ msgid "Remove selection" msgstr "移除绘制" msgid "Entering Seam painting" -msgstr "" +msgstr "进入Z缝绘制" msgid "Leaving Seam painting" -msgstr "" +msgstr "退出Z缝绘制" msgid "Paint-on seam editing" -msgstr "" +msgstr "编辑手绘填缝" #. TRN - Input label. Be short as possible #. Select look of letter shape @@ -670,7 +670,7 @@ msgid "Text move" msgstr "" msgid "Set Mirror" -msgstr "" +msgstr "设置镜像" msgid "Embossed text" msgstr "" @@ -757,7 +757,7 @@ msgid "Click to change text into object part." msgstr "" msgid "You can't change a type of the last solid part of the object." -msgstr "" +msgstr "不能更改对象的最后一个实体部分的类型。" msgctxt "EmbossOperation" msgid "Cut" @@ -903,19 +903,19 @@ msgstr "" msgctxt "Alignment" msgid "Left" -msgstr "" +msgstr "左面" msgctxt "Alignment" msgid "Center" -msgstr "" +msgstr "居中" msgctxt "Alignment" msgid "Right" -msgstr "" +msgstr "右面" msgctxt "Alignment" msgid "Top" -msgstr "" +msgstr "顶部" msgctxt "Alignment" msgid "Middle" @@ -923,7 +923,7 @@ msgstr "" msgctxt "Alignment" msgid "Bottom" -msgstr "" +msgstr "底部" msgid "Revert alignment." msgstr "" @@ -1187,7 +1187,7 @@ msgid "Lock/unlock the aspect ratio of the SVG." msgstr "" msgid "Reset scale" -msgstr "" +msgstr "重置缩放" msgid "Distance of the center of the SVG to the model surface." msgstr "" @@ -1196,7 +1196,7 @@ msgid "Reset distance" msgstr "" msgid "Reset rotation" -msgstr "" +msgstr "重置旋转" msgid "Lock/unlock rotation angle when dragging above the surface." msgstr "" @@ -1274,7 +1274,7 @@ msgid "Restart selection" msgstr "重新选择" msgid "Esc" -msgstr "" +msgstr "Esc" msgid "Unselect" msgstr "取消选择" @@ -1352,9 +1352,6 @@ msgid "" "Configuration file \"%1%\" was loaded, but some values were not recognized." msgstr "配置文件“%1%”已被加载,但部分数值未被识别。" -msgid "V" -msgstr "V" - msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " "It will be appreciated if you report the issue to our team." @@ -1454,6 +1451,9 @@ msgstr "选择一个或多个文件(3mf/step/stl/svg/obj/amf/usd*/abc/ply):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "选择一个或多个文件(3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + msgid "Choose one file (gcode/3mf):" msgstr "选择一个文件(gcode/3mf):" @@ -1517,6 +1517,11 @@ msgstr "正在进行的上传" msgid "Select a G-code file:" msgstr "选择一个G-code文件:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "导入文件" @@ -2337,7 +2342,7 @@ msgid "AMS not connected" msgstr "AMS 未连接" msgid "Load" -msgstr "" +msgstr "进料" msgid "Unload" msgstr "退料" @@ -2399,7 +2404,7 @@ msgstr "咬入耗材丝" msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." -msgstr "" +msgstr "选择1个AMS槽位,然后点击进料/退料按钮以自动进料/退料。" msgid "Edit" msgstr "编辑" @@ -2481,13 +2486,13 @@ msgid "Bed filling done." msgstr "填充热床已完成。" msgid "Searching for optimal orientation" -msgstr "" +msgstr "搜索最佳方向" msgid "Orientation search canceled." -msgstr "" +msgstr "方向搜索已取消。" msgid "Orientation found." -msgstr "" +msgstr "找到方向。" msgid "Logging in" msgstr "登录中" @@ -2849,6 +2854,8 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"当干燥剂过于潮湿时,请及时更换。以下几种情况下,指示器可能无法准确反映情况:盖子" +"打开或干燥剂包被替换时。干燥剂需要数小时吸收潮气,低温也会延缓该过程。" msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -2922,6 +2929,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"注意:如果是在打印过程中插入新的耗材丝,AMS会在打印结束后自动读取此耗材丝信" +"息。" msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -2967,12 +2976,12 @@ msgid "" msgstr "AMS料材丝耗尽后将自动切换到属性完全相同的耗材丝" msgid "Air Printing Detection" -msgstr "" +msgstr "空打检测" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." -msgstr "" +msgstr "检测到堵塞和耗材丝碾磨,立即停止打印以节约时间和耗材丝" msgid "File" msgstr "文件" @@ -3043,7 +3052,7 @@ msgid "Running post-processing scripts" msgstr "运行后处理脚本" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "成功执行后处理脚本" msgid "Unknown error occured during exporting G-code." msgstr "" @@ -3082,7 +3091,7 @@ msgstr "" #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "G 代码文件导出到 %1%" msgid "Unknown error when export G-code." msgstr "导出G-code文件发生未知错误。" @@ -3108,30 +3117,30 @@ msgid "Device" msgstr "设备" msgid "Task Sending" -msgstr "" +msgstr "正在发送的任务" msgid "Task Sent" -msgstr "" +msgstr "已发送的任务" msgid "Edit multiple printers" -msgstr "" +msgstr "编辑多个打印机" msgid "Select connected printetrs (0/6)" -msgstr "" +msgstr "选择已连接的打印机 (0/6)" #, c-format, boost-format msgid "Select Connected Printetrs (%d/6)" -msgstr "" +msgstr "选择已连接的打印机 (%d/6)" #, c-format, boost-format msgid "The maximum number of printers that can be selected is %d" -msgstr "" +msgstr "可以选择的打印机数量最多为 %d。" msgid "Offline" msgstr "离线" msgid "No task" -msgstr "" +msgstr "没有任务" msgid "View" msgstr "视图" @@ -3140,23 +3149,23 @@ msgid "N/A" msgstr "N/A" msgid "Edit Printers" -msgstr "" +msgstr "编辑打印机" msgid "Device Name" -msgstr "" +msgstr "设备名" msgid "Task Name" -msgstr "" +msgstr "任务名" msgid "Device Status" -msgstr "" +msgstr "设备状态" msgid "Actions" -msgstr "" +msgstr "动作" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" -msgstr "" +msgstr "请在此处选择您想管理的设备(最多6个设备)。" msgid "Add" msgstr "添加" @@ -3168,7 +3177,7 @@ msgid "Printing" msgstr "打印中" msgid "Upgrading" -msgstr "" +msgstr "升级中" msgid "Incompatible" msgstr "不兼容的预设" @@ -3195,7 +3204,7 @@ msgid "Pending" msgstr "" msgid "Sending" -msgstr "" +msgstr "发送中" msgid "Sending Finish" msgstr "" @@ -3222,25 +3231,25 @@ msgid "Stop" msgstr "停止" msgid "Task Status" -msgstr "" +msgstr "任务状态" msgid "Sent Time" -msgstr "" +msgstr "发送时间" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "没有任务正在发送!" msgid "No historical tasks!" -msgstr "" +msgstr "没有历史任务!" msgid "Loading..." msgstr "正在加载视频……" msgid "No AMS" -msgstr "" +msgstr "没有AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "发送到多设备" msgid "Preparing print job" msgstr "正在准备打印任务" @@ -3249,28 +3258,37 @@ msgid "Abnormal print file data. Please slice again" msgstr "打印文件数据异常,请重新切片" msgid "There is no device available to send printing." -msgstr "" +msgstr "没有可用于发送打印的设备。" msgid "The number of printers in use simultaneously cannot be equal to 0." -msgstr "" +msgstr "同时使用的打印机数量不能等于0。" msgid "Use External Spool" -msgstr "" +msgstr "使用外挂料卷" msgid "Use AMS" -msgstr "" +msgstr "使用AMS" msgid "Select Printers" -msgstr "" +msgstr "选择打印机" msgid "Ams Status" -msgstr "" +msgstr "AMS状态" msgid "Printing Options" +msgstr "打印选项" + +msgid "Bed Leveling" +msgstr "热床调平" + +msgid "Timelapse" +msgstr "延时摄影" + +msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "" +msgstr "发送选项" msgid "Send" msgstr "发送" @@ -3278,14 +3296,14 @@ msgstr "发送" msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" -msgstr "" +msgstr "打印机在同一时间。(这取决于有多少设备可以接受同时加热。)" msgid "Wait" -msgstr "" +msgstr "等待" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" -msgstr "" +msgstr "分钟发送一次。(这取决于完成加热需要多长时间。)" msgid "Name is invalid;" msgstr "无效名称;" @@ -3376,15 +3394,15 @@ msgstr "热床形状" msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" -msgstr "" +msgstr "建议最低温度低于 190 度或建议最高温度高于 300 度。\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" -msgstr "" +msgstr "推荐最低温度不能大于推荐最高温度。\n" msgid "Please check.\n" -msgstr "" +msgstr "请检查。\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3770,7 +3788,7 @@ msgid "Dimensions" msgstr "" msgid "Temperatures" -msgstr "" +msgstr "温度" msgid "Timestamps" msgstr "" @@ -3810,7 +3828,7 @@ msgstr "参数验证" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "" +msgstr "值 %s 超出了范围,有效的范围是从 %d 到 %d 。" msgid "Value is out of range." msgstr "值越界。" @@ -4001,10 +4019,10 @@ msgid "Normal mode" msgstr "普通模式" msgid "Total Filament" -msgstr "" +msgstr "总耗材丝" msgid "Model Filament" -msgstr "" +msgstr "模型耗材丝" msgid "Prepare time" msgstr "准备时间" @@ -4101,7 +4119,7 @@ msgid "Spacing" msgstr "间距" msgid "0 means auto spacing." -msgstr "" +msgstr "0 表示自动间距。" msgid "Auto rotate for arrangement" msgstr "自动旋转以优化自动摆放效果" @@ -4245,7 +4263,7 @@ msgid "Go Live" msgstr "开启直播" msgid "Liveview Retry" -msgstr "" +msgstr "实时预览重试" msgid "Resolution" msgstr "分辨率" @@ -4303,7 +4321,7 @@ msgid "Preview" msgstr "预览" msgid "Multi-device" -msgstr "" +msgstr "多设备" msgid "Project" msgstr "项目" @@ -4449,6 +4467,12 @@ msgstr "导入 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "加载模型" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + msgid "Import Configs" msgstr "导入预设" @@ -4483,7 +4507,7 @@ msgid "Export current plate as G-code" msgstr "导出当前盘的G-code" msgid "Export Preset Bundle" -msgstr "" +msgstr "导出预设包" msgid "Export current configuration to files" msgstr "导出当前选择的预设" @@ -4748,45 +4772,45 @@ msgid "The device cannot handle more conversations. Please retry later." msgstr "设备无法处理更多的对话。请稍后重试。" msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "" +msgstr "播放器异常,请重新安装系统播放器。" msgid "The player is not loaded, please click \"play\" button to retry." -msgstr "" +msgstr "未能加载播放器,请重新点击“播放”按钮。" msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "请确认打印机是否连接成功。" msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." -msgstr "" +msgstr "打印机正在忙于下载,请等下载完成后再尝试。" msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "打印机摄像头异常。" msgid "Problem occured. Please update the printer firmware and try again." -msgstr "" +msgstr "出现了一些问题。请更新打印机固件后重试。" msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." -msgstr "" +msgstr "局域网模式直播未开启,请前往打印机屏幕开启。" msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "请输入打印机IP后尝试连接。" msgid "Initializing..." msgstr "正在初始化……" msgid "Connection Failed. Please check the network and try again" -msgstr "" +msgstr "链接失败。请检查网络后重试" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." -msgstr "" +msgstr "检查网络后重试。如仍未恢复,可重启或更新打印机。" msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "打印机已注销,无法连接。" msgid "Stopped." msgstr "已经停止。" @@ -4842,9 +4866,6 @@ msgstr "按月份分组,从最近的开始展示" msgid "Show all files, recent first." msgstr "显示所有文件,从最近的开始展示" -msgid "Timelapse" -msgstr "延时摄影" - msgid "Switch to timelapse files." msgstr "切换到延时摄影文件列表" @@ -4876,7 +4897,7 @@ msgid "Refresh" msgstr "刷新" msgid "Reload file list from printer." -msgstr "" +msgstr "从打印机重新加载文件列表。" msgid "No printers." msgstr "未选择打印机" @@ -4889,10 +4910,10 @@ msgid "Loading file list..." msgstr "加载文件列表..." msgid "No files" -msgstr "" +msgstr "文件列表为空" msgid "Load failed" -msgstr "" +msgstr "加载失败" msgid "Initialize failed (Device connection not ready)!" msgstr "初始化失败(设备未连接)" @@ -4900,16 +4921,16 @@ msgstr "初始化失败(设备未连接)" msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." -msgstr "" +msgstr "当前固件暂不支持查看SD卡中文件。请更新打印机固件后重试。" msgid "Initialize failed (Storage unavailable, insert SD card.)!" -msgstr "" +msgstr "初始化失败(存储不可用,请插入 SD 卡)!" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "局域网连接失败(无法查看SD卡)" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "" +msgstr "局域网模式下暂不支持查看SD卡内文件。" #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -4935,10 +4956,10 @@ msgid "Fetching model infomations ..." msgstr "正在获取模型信息..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "无法从打印机获取模型信息。" msgid "Failed to parse model information." -msgstr "" +msgstr "解析模型信息失败。" msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -4976,10 +4997,10 @@ msgstr "下载中 %d%%..." msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." -msgstr "" +msgstr "重新连接打印机,该操作无法立即完成,请稍后再试。" msgid "File does not exist." -msgstr "" +msgstr "文件不存在。" msgid "File checksum error. Please retry." msgstr "文件校验和错误。请重试。" @@ -5077,7 +5098,7 @@ msgid "Control" msgstr "控制" msgid "Printer Parts" -msgstr "" +msgstr "打印机零件" msgid "Print Options" msgstr "打印选项" @@ -5314,7 +5335,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "" +msgstr "下载Beta版本" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5323,10 +5344,10 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "" +msgstr "当前版本:" msgid "Latest Version: " -msgstr "" +msgstr "最新版本:" msgid "Not for now" msgstr "" @@ -5397,12 +5418,12 @@ msgstr[0] "%1$d对象加载为一个切割对象的子部件" msgid "ERROR" msgstr "错误" -msgid "CANCELED" -msgstr "已取消" - msgid "COMPLETED" msgstr "已完成" +msgid "CANCELED" +msgstr "已取消" + msgid "Cancel upload" msgstr "取消上传" @@ -5509,13 +5530,13 @@ msgid "Filament Tangle Detect" msgstr "缠料检测" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "裹头检测" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "" +msgstr "检查喷嘴是否被耗材丝或其他异物裹住" msgid "Nozzle Type" -msgstr "" +msgstr "喷嘴类型" msgid "Stainless Steel" msgstr "不锈钢" @@ -5938,13 +5959,13 @@ msgid "prepare 3mf file..." msgstr "正在准备3mf文件..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "下载失败,未知文件格式。" msgid "downloading project ..." msgstr "项目下载中..." msgid "Download failed, File size exception." -msgstr "" +msgstr "下载失败,文件大小异常。" #, c-format, boost-format msgid "Project downloaded %d%%" @@ -5967,6 +5988,20 @@ msgstr "不包含有效的G-code文件。" msgid "Error occurs while loading G-code file" msgstr "加载G-code文件时遇到错误" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + msgid "Drop project file" msgstr "项目文件操作" @@ -6028,22 +6063,23 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"无法对模型网格执行布尔运算。只保留正体积部分。您可以修复网格后再试一次。" #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "原因:零件\"%1%\"为空。" #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "原因:零件\"%1%\"没有封闭一个体积。" #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "原因:零件\"%1%\"有自相交。" #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "原因:零件\"%1%\"与另一个零件没有交集。" msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6221,6 +6257,8 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"在OSX上,默认情况下总是只有一个应用程序实例在运行。但是,允许从命令行运行同一" +"应用程序的多个实例。在这种情况下,此设置将只允许一个实例。" msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6229,7 +6267,7 @@ msgid "" msgstr "" msgid "Home" -msgstr "" +msgstr "首页" msgid "Default Page" msgstr "" @@ -6289,10 +6327,10 @@ msgstr "如果启用,会在每一次更换颜色时自动计算。" msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "" +msgstr "冲刷体积:每一次更换材料时自动计算。" msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "" +msgstr "如果启用,会在每一次更换材料时自动计算。" msgid "Remember printer configuration" msgstr "" @@ -6308,7 +6346,7 @@ msgstr "" msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." -msgstr "" +msgstr "启用此选项后,您可以同时向多个设备发送任务并管理多个设备。" msgid "Network" msgstr "网络" @@ -6349,6 +6387,20 @@ msgstr "使用逆戟鲸打开.step/.stp文件" msgid "If enabled, sets OrcaSlicer as default application to open .step files" msgstr "开启后,将缺省使用逆戟鲸打开.step文件" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "近期项目的最大数量" @@ -6528,10 +6580,10 @@ msgid "Customize" msgstr "自定义" msgid "Other layer filament sequence" -msgstr "" +msgstr "其它层耗材打印顺序" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "请输入层号(>=2)。" msgid "Plate name" msgstr "盘名称" @@ -6543,10 +6595,10 @@ msgid "Print sequence" msgstr "打印顺序" msgid "Same as Global" -msgstr "" +msgstr "跟随全局" msgid "Disable" -msgstr "" +msgstr "禁用" msgid "Spiral vase" msgstr "旋转花瓶" @@ -6710,9 +6762,6 @@ msgstr "" msgid "Send print job to" msgstr "发送打印任务至" -msgid "Bed Leveling" -msgstr "热床调平" - msgid "Flow Dynamics Calibration" msgstr "动态流量校准" @@ -6801,7 +6850,7 @@ msgstr "请在发起打印前插入SD卡" msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." -msgstr "" +msgstr "所选打印机(%s)与切片软件中选择的打印机配置文件(%s)不兼容。" msgid "An SD card needs to be inserted to record timelapse." msgstr "开启延迟摄影功能需要插入SD卡" @@ -6861,15 +6910,17 @@ msgid "" "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"切片文件中的喷嘴直径与记忆的喷嘴不一致。如果您最近更换了喷嘴,请前往设备 > 打" +"印机零件进行更改设置。" #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" -msgstr "" +msgstr "用%s打印高温材料(%s材料)可能会导致喷嘴损坏" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" +msgstr "请修复上述错误,否则打印无法继续。" msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -6891,7 +6942,7 @@ msgid "Modifying the device name" msgstr "修改打印机名称" msgid "Bind with Pin Code" -msgstr "" +msgstr "通过Pin码绑定" msgid "Send to Printer SD card" msgstr "发送到打印机的SD卡" @@ -6947,22 +6998,22 @@ msgstr "发生错误" msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." -msgstr "" +msgstr "请在打印机屏幕上的“帐户”页面中找到Pin码,然后在下面输入Pin码。" msgid "Can't find Pin Code?" -msgstr "" +msgstr "无法找到Pin码?" msgid "Pin Code" -msgstr "" +msgstr "Pin码" msgid "Binding..." -msgstr "" +msgstr "绑定..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "请在打印机屏幕上确认。" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "登录失败,请检查Pin码。" msgid "Log in printer" msgstr "登录打印机" @@ -7143,6 +7194,8 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"实验性选项。在更换耗材丝时,将耗材丝回抽一段距离后再切断以最小化冲刷。虽然这" +"可以显著减少冲刷,但也可能增加喷嘴堵塞或其他打印问题的风险。" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7150,6 +7203,9 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"实验性选项。在更换耗材丝时,将耗材丝回抽一段距离后再切断以最小化冲刷。虽然这" +"可以显著减少冲刷,但也可能增加喷嘴堵塞或其他打印问题的风险。请配合打印机最新" +"固件使用。" msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7617,12 +7673,14 @@ msgstr "预设“%1%”和新的工艺预设不兼容,并且它包含以下未 #, boost-format msgid "You have changed some settings of preset \"%1%\". " -msgstr "" +msgstr "您已更改了预设 “%1%” 的一些设置。" msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"您可以保存或丢弃已经修改的预设值。" msgid "" "\n" @@ -7631,7 +7689,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "" +msgstr "您已经修改了预设参数。" msgid "" "\n" @@ -8133,40 +8191,40 @@ msgid "Done" msgstr "完成" msgid "resume" -msgstr "" +msgstr "继续" msgid "Resume Printing" -msgstr "" +msgstr "继续打印" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "继续打印(缺陷可接受)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "继续打印(问题已解决)" msgid "Stop Printing" -msgstr "" +msgstr "停止打印" msgid "Check Assistant" -msgstr "" +msgstr "前往机器助手" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "耗材已挤出,继续" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "耗材未挤出,重试" msgid "Finished, Continue" -msgstr "" +msgstr "已完成,继续" msgid "Load Filament" msgstr "进料" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "耗材已加载,继续" msgid "View Liveview" -msgstr "" +msgstr "查看LiveView" msgid "Confirm and Update Nozzle" msgstr "确认并更新喷嘴" @@ -8224,7 +8282,7 @@ msgid "Update firmware" msgstr "更新固件" msgid "Beta version" -msgstr "" +msgstr "Beta版本" msgid "Latest version" msgstr "最新版本" @@ -8956,13 +9014,13 @@ msgid "First layer print sequence" msgstr "第一层打印顺序" msgid "Other layers print sequence" -msgstr "" +msgstr "其他层打印顺序" msgid "The number of other layers print sequence" -msgstr "" +msgstr "其他层的打印顺序数量" msgid "Other layers filament sequence" -msgstr "" +msgstr "其他层的耗材打印顺序" msgid "This G-code is inserted at every layer change before lifting z" msgstr "在每次换层抬升z高度之前插入这段G-code" @@ -9758,10 +9816,10 @@ msgid "" msgstr "挤出机四周的避让半径。用于在逐件打印中避免碰撞。" msgid "Nozzle height" -msgstr "" +msgstr "喷嘴高度" msgid "The height of nozzle tip." -msgstr "" +msgstr "喷嘴尖端的高度。" msgid "Bed mesh min" msgstr "网床最小点" @@ -10186,7 +10244,7 @@ msgid "Lightning" msgstr "闪电" msgid "Cross Hatch" -msgstr "" +msgstr "交叉层叠" msgid "Sparse infill anchor length" msgstr "稀疏填充锚线长度" @@ -10433,13 +10491,15 @@ msgid "" msgstr "填缝的速度。缝隙通常有不一致的线宽,应改用较慢速度打印。" msgid "Precise Z height" -msgstr "" +msgstr "精准Z高度" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"开启这个设置,对象在切片后将得到精准的Z高度。它将通过微调对象最后几层的层高来" +"确保对象Z高度精准。注意这是一个实验性参数。" msgid "Arc fitting" msgstr "圆弧拟合" @@ -11274,7 +11334,7 @@ msgstr "" "抽。" msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "切料时回抽(实验)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -11282,14 +11342,16 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"实验性选项。在更换耗材丝时,将耗材丝回抽一段距离后再切断以最小化冲刷。虽然这" +"大大减少了冲刷,但也可能增加喷嘴堵塞或其他打印问题的风险。" msgid "Retraction distance when cut" -msgstr "" +msgstr "切料回抽距离" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" -msgstr "" +msgstr "实验性选项。在更换耗材丝时,切断前的回抽长度" msgid "Z hop when retract" msgstr "回抽时抬升Z" @@ -11633,10 +11695,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "限制" msgid "Enabled" -msgstr "" +msgstr "打开" msgid "Skirt loops" msgstr "Skirt圈数" @@ -12325,17 +12387,29 @@ msgstr "擦拭塔冲刷线间距" msgid "Spacing of purge lines on the wipe tower." msgstr "擦拭塔上冲刷线的间距" -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -12620,7 +12694,7 @@ msgid " not in range " msgstr " 不在合理的区间" msgid "Minimum save" -msgstr "" +msgstr "最小保存" msgid "export 3mf with minimum size." msgstr "以最小尺寸导出3mf。" @@ -12639,10 +12713,10 @@ msgid "" msgstr "当物体部分位于热床的下方时,将其提升到热床的上方。默认情况下禁用" msgid "Orient Options" -msgstr "" +msgstr "方向选项" msgid "Orient options: 0-disable, 1-enable, others-auto" -msgstr "" +msgstr "方向选项:0-禁用,1-启用,其他-自动" msgid "Rotation angle around the Z axis in degrees." msgstr "绕Z轴的旋转角度(以度为单位)。" @@ -13143,6 +13217,8 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"该机型每个喷嘴最多只能保存16个历史结果。您可以删除先已有历史结果再开始校准。" +"或者您可以直接开始校准,但是无法创建新的校准历史结果。您仍继续校准吗?" msgid "Connecting to printer..." msgstr "正在连接打印机..." @@ -13159,12 +13235,14 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"已经存在一个具有相同名称的历史校准结果:%s。相同名称的结果只会保存一个。您确" +"定要覆盖历史结果吗?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." -msgstr "" +msgstr "该机型每个喷嘴最多只能保存%d个历史结果, 该结果将不会被保存" msgid "Internal Error" msgstr "内部错误" @@ -13492,7 +13570,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "动态流量校准结果" msgid "New" -msgstr "" +msgstr "新建" msgid "No History Result" msgstr "无历史结果" @@ -13508,19 +13586,19 @@ msgstr "操作" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "该机型每个喷嘴最多只能保存%d个历史结果" msgid "Edit Flow Dynamics Calibration" msgstr "编辑动态流量校准" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "新建动态流量校准" msgid "Ok" -msgstr "" +msgstr "确认" msgid "The filament must be selected." -msgstr "" +msgstr "请选择材料" msgid "Network lookup" msgstr "搜索网络" @@ -13908,6 +13986,8 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"您创建的耗材丝名字%s已经存在。\n" +"如果您继续创建,您创建的预设将以全名显示。您想继续吗?" msgid "Some existing presets have failed to be created, as follows:\n" msgstr "以下一些现有预设未能成功创建:\n" @@ -14109,6 +14189,8 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"如果需要,请转到灯丝设置以编辑您的预设。\n" +"请注意喷嘴温度、热床温度和最大体积流量对打印质量有重大影响。请小心设置它们。" msgid "" "\n" @@ -14277,7 +14359,7 @@ msgid "The filament choice not find filament preset, please reselect it" msgstr "您选择的材料未找到材料预设,请重新选择。" msgid "[Delete Required]" -msgstr "" +msgstr "[删除请求]" msgid "Edit Preset" msgstr "编辑预设" @@ -14487,30 +14569,36 @@ msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"0.2 mm 喷嘴的默认参数,层高小,层纹不明显,打印质量高,适合大部分常规打印场" +"景。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"此为高质量参数,相比于此喷嘴的默认参数,打印速度、加速度较低,稀疏填充图案为" +"螺旋体,打印质量更高,但耗时更长。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." -msgstr "" +msgstr "相比于此喷嘴的默认参数,层高较大,层纹不明显,打印耗时稍短。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." -msgstr "" +msgstr "相比于此喷嘴的默认参数,层高较大,层纹稍显现,打印耗时较短。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"相比于此喷嘴的默认参数,层高较小,几乎不显层纹,打印质量较高,但打印耗时较" +"长。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14518,12 +14606,16 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"此为高质量参数,相比于此喷嘴的默认参数,层高较小,打印速度、加速度较低,稀疏" +"填充图案为螺旋体,几乎不显层纹,打印质量非常高,但打印耗时很长。" msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"相比于此喷嘴的默认参数,层高较小,几乎不显层纹,打印质量较高,但打印耗时较" +"长。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -14531,35 +14623,47 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"此为高质量参数,相比于此喷嘴的默认参数,层高较小,打印速度、加速度较低,稀疏" +"填充图案为螺旋体,几乎不显层纹,打印质量非常高,但打印耗时很长。" msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"0.4 mm 喷嘴的默认参数,层高常规,层纹一般,打印质量常规,适合大部分常规打印场" +"景。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"此为强度参数,相比于此喷嘴的默认参数,墙层数较大,稀疏填充密度较高,打印件的" +"强度更高,但耗材用量更大,耗时更长。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"相比于此喷嘴的默认参数,层高较大,层纹较明显,打印质量较低,部分模型的打印耗" +"时稍短。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"相比于此喷嘴的默认参数,层高较大,层纹较明显,打印质量较低,部分模型的打印耗" +"时较短。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"相比于此喷嘴的默认参数,层高较小,层纹较不明显,打印质量较高,但打印耗时较" +"长。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14567,12 +14671,16 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"此为高质量参数,相比于此喷嘴的默认参数,层高较小,打印速度、加速度较低,稀疏" +"填充图案为螺旋体,层纹较不明显,打印质量较高,但打印耗时很长。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"相比于此喷嘴的默认参数,层高较小,层纹更不明显,打印质量较高,但打印耗时较" +"长。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -14580,64 +14688,84 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"此为高质量参数,相比于此喷嘴的默认参数,层高较小,打印速度、加速度较低,稀疏" +"填充图案为螺旋体,层纹更不明显,打印质量很高,但打印耗时很长。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"相比于此喷嘴的默认参数,层高较小,层纹更不明显,打印质量较高,但打印耗时较" +"长。" msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"0.6 mm 喷嘴的默认参数,层高较大,层纹明显,打印质量一般,打印耗时一般。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"此为强度参数,相比于此喷嘴的默认参数,墙层数较大,稀疏填充密度较高,打印件的" +"强度更高,但耗材用量更大,耗时更长。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"相比于此喷嘴的默认参数,层高较大,层纹较明显,打印质量较低,部分模型的打印耗" +"时较短。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"相比于此喷嘴的默认参数,层高较大,层纹很明显,打印质量较低,部分模型的打印耗" +"时较短。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"相比于此喷嘴的默认参数,层高较小,层纹较不明显,打印质量稍微较高,部分模型的" +"打印耗时较长。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"相比于此喷嘴的默认参数,层高较小,层纹较不明显,打印质量较高,部分模型的打印" +"耗时较长。" msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"0.8 mm 喷嘴的默认参数,层高较大,层纹很明显,打印质量低,打印耗时一般。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"相比于此喷嘴的默认参数,层高更大,层纹非常明显,打印质量较低,部分模型的打印" +"耗时较短。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"相比于此喷嘴的默认参数,层高较大,层纹非常明显,打印质量较低,部分模型的打印" +"耗时较短。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -14645,12 +14773,16 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"相比于此喷嘴的默认参数,层高较小,层纹较不明显,打印质量稍微较高,部分模型的" +"打印耗时较长。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"相比于此喷嘴的默认参数,层高较小,层纹较不明显,打印质量较高,部分模型的打印" +"耗时较长。" msgid "Connected to Obico successfully!" msgstr "" @@ -15046,6 +15178,9 @@ msgstr "" "避免翘曲\n" "您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。" +#~ msgid "V" +#~ msgstr "V" + #~ msgid "Export &Configs" #~ msgstr "导出预设" diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index a9260d9630..cadffd7e03 100644 --- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po +++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-20 22:45+0200\n" +"POT-Creation-Date: 2024-05-23 23:36+0800\n" "PO-Revision-Date: 2023-11-06 14:37+0800\n" "Last-Translator: ablegods \n" "Language-Team: \n" @@ -1382,9 +1382,6 @@ msgid "" "Configuration file \"%1%\" was loaded, but some values were not recognized." msgstr "設定檔 “%1%” 已被載入,但部分數值未被識別。" -msgid "V" -msgstr "版本:" - #, fuzzy msgid "" "OrcaSlicer will terminate because of running out of memory.It may be a bug. " @@ -1495,6 +1492,9 @@ msgstr "選擇一個或多個檔案(3mf/step/stl/svg/obj/amf/usd*/abc/ply) msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "選擇一個或多個檔案(3mf/step/stl/svg/obj/amf):" +msgid "Choose ZIP file" +msgstr "" + #, fuzzy msgid "Choose one file (gcode/3mf):" msgstr "選擇一個檔案(gcode/3mf):" @@ -1560,6 +1560,11 @@ msgstr "正在進行的上傳" msgid "Select a G-code file:" msgstr "選擇一個 G-code 檔案:" +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" + msgid "Import File" msgstr "匯入檔案" @@ -3389,6 +3394,15 @@ msgstr "" msgid "Printing Options" msgstr "" +msgid "Bed Leveling" +msgstr "熱床調平" + +msgid "Timelapse" +msgstr "縮時攝影" + +msgid "Flow Dynamic Calibration" +msgstr "" + msgid "Send Options" msgstr "" @@ -4622,6 +4636,12 @@ msgstr "匯入 3MF/STL/STEP/SVG/OBJ/AMF" msgid "Load a model" msgstr "載入模型" +msgid "Import Zip Archive" +msgstr "" + +msgid "Load models contained within a zip archive" +msgstr "" + #, fuzzy msgid "Import Configs" msgstr "匯入設定檔" @@ -5028,9 +5048,6 @@ msgstr "按月份分組,從最近的開始展示" msgid "Show all files, recent first." msgstr "顯示所有檔案,從最近的開始展示" -msgid "Timelapse" -msgstr "縮時攝影" - msgid "Switch to timelapse files." msgstr "切換到縮時攝影檔案清單" @@ -5601,12 +5618,12 @@ msgstr[0] "%1$d 物件載入為一個切割物件的子零件" msgid "ERROR" msgstr "錯誤" -msgid "CANCELED" -msgstr "已取消" - msgid "COMPLETED" msgstr "已完成" +msgid "CANCELED" +msgstr "已取消" + msgid "Cancel upload" msgstr "取消上傳" @@ -6198,6 +6215,20 @@ msgstr "不包含有效的 G-code 檔案。" msgid "Error occurs while loading G-code file" msgstr "載入 G-code 檔案時遇到錯誤" +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "" + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "" + #, fuzzy msgid "Drop project file" msgstr "刪除專案項目" @@ -6600,6 +6631,20 @@ msgstr "使用 Orca Slicer 打開 .step/.stp 檔案" msgid "If enabled, sets OrcaSlicer as default application to open .step files" msgstr "開啟後,將預設使用 Orca Slicer 打開 .step 檔案" +msgid "Current association: " +msgstr "" + +msgid "Associate prusaslicer://" +msgstr "" + +msgid "Not associated to any application" +msgstr "" + +msgid "" +"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " +"PrusaSlicer links from Printable.com" +msgstr "" + msgid "Maximum recent projects" msgstr "最近專案項目的最大數量" @@ -6980,9 +7025,6 @@ msgstr "" msgid "Send print job to" msgstr "傳送列印作業至" -msgid "Bed Leveling" -msgstr "熱床調平" - msgid "Flow Dynamics Calibration" msgstr "動態流量校準" @@ -12761,17 +12803,29 @@ msgstr "擦拭塔線距" msgid "Spacing of purge lines on the wipe tower." msgstr "擦拭塔上的線距。" -msgid "Maximum print speed when purging" +msgid "Maximum wipe tower print speed" msgstr "" msgid "" -"The maximum print speed when purging in the wipe tower. If the sparse infill " -"speed or calculated speed from the filament max volumetric speed is lower, " -"the lowest speed will be used instead.\n" -"Increasing this speed may affect the tower's stability, as purging can be " -"performed over sparse layers. Before increasing this parameter beyond the " -"default of 90mm/sec, make sure your printer can reliably bridge at the " -"increased speeds." +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." msgstr "" msgid "Wipe tower extruder" @@ -15489,6 +15543,9 @@ msgid "" "probability of warping." msgstr "" +#~ msgid "V" +#~ msgstr "版本:" + #, fuzzy #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " From f7b605088b740b1e9da0530d3ad36422501f28af Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 24 May 2024 19:42:32 +0800 Subject: [PATCH 29/66] fix an issue that orcaslicer:// didn't work on Mac --- cmake/modules/MacOSXBundleInfo.plist.in | 21 ++++++++++----------- src/slic3r/GUI/GUI_App.cpp | 2 +- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/cmake/modules/MacOSXBundleInfo.plist.in b/cmake/modules/MacOSXBundleInfo.plist.in index 66c30a6ffe..2f010c8a82 100644 --- a/cmake/modules/MacOSXBundleInfo.plist.in +++ b/cmake/modules/MacOSXBundleInfo.plist.in @@ -29,17 +29,16 @@ ATSApplicationFontsPath fonts/ CFBundleURLTypes - - - CFBundleURLName - orcasliceropen url - CFBundleURLSchemes - - orcasliceropen - orcaslicer - - - + + + CFBundleURLName + OrcaSlicer Downloads + CFBundleURLSchemes + + orcaslicer + + + CFBundleDocumentTypes diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index e06433883f..03a85e9f34 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -5903,7 +5903,7 @@ void GUI_App::MacOpenURL(const wxString& url) m_download_file_url = download_file_url; } } - } else if (boost::starts_with(url, "prusasliceropen://")) + } else if (boost::starts_with(url, "orcaslicer://")) start_download(boost::nowide::narrow(url)); } From 03cf10f55f67fe8cf80799f50ebfe0b002b99731 Mon Sep 17 00:00:00 2001 From: davidjuanesb Date: Fri, 24 May 2024 13:43:46 +0200 Subject: [PATCH 30/66] Catalan language updated (#5440) Catalan language updated --- localization/i18n/ca/OrcaSlicer_ca.po | 927 +++++++++++++++++--------- 1 file changed, 629 insertions(+), 298 deletions(-) diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index 90664fe1a1..7f6cc3f5f3 100644 --- a/localization/i18n/ca/OrcaSlicer_ca.po +++ b/localization/i18n/ca/OrcaSlicer_ca.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-23 23:36+0800\n" -"PO-Revision-Date: 2024-03-17 22:08+0100\n" +"PO-Revision-Date: 2024-05-23 23:00+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: ca\n" @@ -17,7 +17,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 3.4.2\n" +"X-Generator: Poedit 3.4.4\n" msgid "Supports Painting" msgstr "Pintar suports" @@ -261,7 +261,7 @@ msgid "World coordinates" msgstr "Coordenades cartesianes" msgid "Object coordinates" -msgstr "" +msgstr "Coordenades de l'objecte" msgid "°" msgstr "°" @@ -1511,7 +1511,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Trieu un o més fitxers ( 3mf/step/stl/svg/obj/amf ):" msgid "Choose ZIP file" -msgstr "" +msgstr "Trieu el fitxer ZIP" msgid "Choose one file (gcode/3mf):" msgstr "Trieu un fitxer ( gcode/3mf ):" @@ -1589,6 +1589,8 @@ msgid "" "Could not start URL download. Destination folder is not set. Please choose " "destination folder in Configuration Wizard." msgstr "" +"No s'ha pogut iniciar la descàrrega d'URL. La carpeta de destinació no està " +"definida. Trieu la carpeta de destinació a l'Auxiliar de configuració." msgid "Import File" msgstr "Importar arxiu" @@ -1973,10 +1975,10 @@ msgid "arrange current plate" msgstr "organitza la placa actual" msgid "Reload All" -msgstr "" +msgstr "Torna-ho a carregar Tot" msgid "reload all from disk" -msgstr "" +msgstr "torna a carregar-ho tot des del disc" msgid "Auto Rotate" msgstr "Rota automàticament" @@ -2417,7 +2419,7 @@ msgid "Connection to printer failed" msgstr "S'ha produït un error de connexió amb la impressora" msgid "Please check the network connection of the printer and Orca." -msgstr "Comproveu la connexió de xarxa de la impressora i l'Studio." +msgstr "Comproveu la connexió de xarxa de la impressora i l'Orca." msgid "Connecting..." msgstr "Connectant..." @@ -2441,7 +2443,7 @@ msgid "AMS not connected" msgstr "AMS no connectat" msgid "Load" -msgstr "" +msgstr "Carregar" msgid "Unload" msgstr "Descarregar" @@ -2505,6 +2507,8 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" +"Trieu una ranura AMS i premeu el botó \"Carregar\" o \"Descarregar\" per " +"carregar o descarregar els filaments automàticament." msgid "Edit" msgstr "Editar" @@ -2773,7 +2777,7 @@ msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero General Public License, versió 3" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" -msgstr "" +msgstr "Orca Slicer està basat en PrusaSlicer i BambuStudio" msgid "Libraries" msgstr "Llibreries" @@ -2981,7 +2985,7 @@ msgid "Print with the filament mounted on the back of chassis" msgstr "Imprimeix amb el filament muntat a la part posterior del xassís" msgid "Current Cabin humidity" -msgstr "" +msgstr "Humitat de la cabina" msgid "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2989,6 +2993,10 @@ msgid "" "desiccant pack is changed. it take hours to absorb the moisture, low " "temperatures also slow down the process." msgstr "" +"Si us plau, canvieu el dessecant quan estigui massa humit. És possible que " +"l'indicador no representi amb precisió en els casos següents: quan la tapa " +"està oberta o es canvia el paquet dessecant. Es necessiten hores per " +"absorbir la humitat, les baixes temperatures també alenteixen el procés." msgid "" "Config which AMS slot should be used for a filament used in the print job" @@ -3048,10 +3056,10 @@ msgstr "" "mateixa marca, tipus de material i color )" msgid "DRY" -msgstr "" +msgstr "SEC" msgid "WET" -msgstr "" +msgstr "HUMIT" msgid "AMS Settings" msgstr "Configuració AMS" @@ -3070,6 +3078,8 @@ msgid "" "Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" +"Nota: si s'insereix un filament nou durant la impressió, l'AMS no llegirà " +"automàticament cap informació fins que es completi la impressió." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3122,12 +3132,14 @@ msgstr "" "automàticament quan s'esgoti el filament actual" msgid "Air Printing Detection" -msgstr "" +msgstr "Detecció d'Impressió Aèria" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" +"Detecta obstrucció i abrasió de filaments, aturant la impressió " +"immediatament per estalviar temps i filament." msgid "File" msgstr "Fitxer" @@ -3206,10 +3218,10 @@ msgid "Running post-processing scripts" msgstr "Executant scripts de postprocessament" msgid "Successfully executed post-processing script" -msgstr "" +msgstr "Executats scripts de post-processament satisfactòriament" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "S'ha produït un error desconegut durant l'exportació del codi-G." #, boost-format msgid "" @@ -3217,6 +3229,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"Error en copiar el codi-G temporal al codi-G de sortida. Potser la targeta " +"SD està bloquejada contra escriptura?\n" +"Missatge d'error: %1%" #, boost-format msgid "" @@ -3224,28 +3239,39 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"Error en copiar el codi-G temporal al codi-G de sortida. Hi pot haver un " +"problema amb el dispositiu de destinació, intenteu exportar novament o " +"utilitzeu un dispositiu diferent. El codi-G de sortida malmès és a %1%.tmp." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"El canvi de nom del codi-G després de copiar a la carpeta de destinació " +"seleccionada ha fallat. La ruta actual és %1%.tmp. Intenta exportar de nou." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"La còpia del codi-G temporal ha finalitzat, però el codi original en %1% no " +"s'ha pogut obrir durant la verificació de còpia. El codi-G de sortida és a " +"%2%.tmp." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"La còpia del codi-G temporal ha finalitzat, però el codi exportat no s'ha " +"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a %1%." +"tmp." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "Fitxer de codi-G exportat a %1%" msgid "Unknown error when export G-code." msgstr "Error desconegut en exportar el Codi-G." @@ -3273,30 +3299,30 @@ msgid "Device" msgstr "Dispositiu" msgid "Task Sending" -msgstr "" +msgstr "Enviant Tasca" msgid "Task Sent" -msgstr "" +msgstr "Tasca enviada" msgid "Edit multiple printers" -msgstr "" +msgstr "Editar diverses impressores" msgid "Select connected printetrs (0/6)" -msgstr "" +msgstr "Seleccionar impressores connectades (0/6)" #, c-format, boost-format msgid "Select Connected Printetrs (%d/6)" -msgstr "" +msgstr "Seleccionar Impressores Connectades (%d/6)" #, c-format, boost-format msgid "The maximum number of printers that can be selected is %d" -msgstr "" +msgstr "El nombre màxim d'impressores que es poden seleccionar és de %d" msgid "Offline" msgstr "Offline" msgid "No task" -msgstr "" +msgstr "Sense tasca" msgid "View" msgstr "Vista" @@ -3305,23 +3331,24 @@ msgid "N/A" msgstr "N/D" msgid "Edit Printers" -msgstr "" +msgstr "Editar Impressores" msgid "Device Name" -msgstr "" +msgstr "Nom del dispositiu" msgid "Task Name" -msgstr "" +msgstr "Nom de la tasca" msgid "Device Status" -msgstr "" +msgstr "Estat del dispositiu" msgid "Actions" -msgstr "" +msgstr "Accions" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" msgstr "" +"Seleccioneu aquí els dispositius que voleu gestionar (fins a 6 dispositius)" msgid "Add" msgstr "Afegir" @@ -3333,22 +3360,22 @@ msgid "Printing" msgstr "Imprimint" msgid "Upgrading" -msgstr "" +msgstr "Actualitzant" msgid "Incompatible" msgstr "Incompatible" msgid "syncing" -msgstr "" +msgstr "sincronitzant" msgid "Printing Finish" -msgstr "" +msgstr "Finalitzar Impressió" msgid "Printing Failed" -msgstr "" +msgstr "Impressió Fallida" msgid "PrintingPause" -msgstr "" +msgstr "Pausar Impressió" msgid "Prepare" msgstr "Preparació" @@ -3357,28 +3384,28 @@ msgid "Slicing" msgstr "Laminant" msgid "Pending" -msgstr "" +msgstr "Pendent" msgid "Sending" -msgstr "" +msgstr "Enviant" msgid "Sending Finish" -msgstr "" +msgstr "Finalitzar Enviament" msgid "Sending Cancel" -msgstr "" +msgstr "Cancel·lar Enviament" msgid "Sending Failed" -msgstr "" +msgstr "Enviament Fallit" msgid "Print Success" -msgstr "" +msgstr "Impressió Exitosa" msgid "Print Failed" -msgstr "" +msgstr "Impressió Fallida" msgid "Removed" -msgstr "" +msgstr "Eliminat" msgid "Resume" msgstr "Reprendre" @@ -3387,25 +3414,25 @@ msgid "Stop" msgstr "Aturar" msgid "Task Status" -msgstr "" +msgstr "Estat de la tasca" msgid "Sent Time" -msgstr "" +msgstr "Temps d'Enviament" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "No hi ha tasques per enviar!" msgid "No historical tasks!" -msgstr "" +msgstr "Sense tasques històriques!" msgid "Loading..." msgstr "Carregant…" msgid "No AMS" -msgstr "" +msgstr "Sense AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "Enviar a multidispositiu" msgid "Preparing print job" msgstr "Preparant el treball d'impressió" @@ -3414,25 +3441,25 @@ msgid "Abnormal print file data. Please slice again" msgstr "Dades anormals del fitxer d'impressió. Si us plau, torneu a laminar" msgid "There is no device available to send printing." -msgstr "" +msgstr "No hi ha cap dispositiu disponible per enviar la impressió." msgid "The number of printers in use simultaneously cannot be equal to 0." -msgstr "" +msgstr "El nombre d'impressores en ús simultàniament no pot ser igual a 0." msgid "Use External Spool" -msgstr "" +msgstr "Utilitzar la Bobina Externa" msgid "Use AMS" -msgstr "" +msgstr "Utilitzar AMS" msgid "Select Printers" -msgstr "" +msgstr "Seleccionar Impressores" msgid "Ams Status" -msgstr "" +msgstr "Estat AMS" msgid "Printing Options" -msgstr "" +msgstr "Opcions d'Impressió" msgid "Bed Leveling" msgstr "Anivellament del llit" @@ -3441,10 +3468,10 @@ msgid "Timelapse" msgstr "Timelapse" msgid "Flow Dynamic Calibration" -msgstr "" +msgstr "Calibratge de Dinàmiques de Flux" msgid "Send Options" -msgstr "" +msgstr "Opcions d'Enviament" msgid "Send" msgstr "Enviar" @@ -3453,13 +3480,16 @@ msgid "" "printers at the same time.(It depends on how many devices can undergo " "heating at the same time.)" msgstr "" +"impressores al mateix temps. (Depèn de quants dispositius es puguin escalfar " +"alhora.)" msgid "Wait" -msgstr "" +msgstr "Espereu" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" msgstr "" +"minut cada lot. (Depèn del temps que es trigui a completar la calefacció.)" msgid "Name is invalid;" msgstr "El nom no és vàlid;" @@ -3558,14 +3588,18 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" +"La temperatura mínima recomanada és inferior a 190 graus o la màxima " +"recomanada és superior a 300 graus.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" +"La temperatura mínima recomanada no pot ser superior a la temperatura màxima " +"recomanada.\n" msgid "Please check.\n" -msgstr "" +msgstr "Comproveu-ho.\n" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3659,6 +3693,8 @@ msgid "" "Alternate extra wall does't work well when ensure vertical shell thickness " "is set to All. " msgstr "" +"El perímetre addicional alternat no funciona correctament amb 'Assegurar el " +"gruix de la carcassa vertical' establert a Tots. " msgid "" "Change these settings automatically? \n" @@ -3666,6 +3702,10 @@ msgid "" "alternate extra wall\n" "No - Dont use alternate extra wall" msgstr "" +"Canviar aquesta configuració automàticament? \n" +"Sí - Cambiar 'Assegurar el gruix de la carcassa vertical' a 'Moderat' " +"activar 'perímetre addicional alternat'\n" +"No - No utilitzar perímetre addicional alternat" msgid "" "Prime tower does not work when Adaptive Layer Height or Independent Support " @@ -3716,6 +3756,8 @@ msgid "" "seam_slope_start_height need to be smaller than layer_height.\n" "Reset to 0." msgstr "" +"seam_slope_start_height ha de ser més petit que layer_height.\n" +"Restablert a 0." msgid "" "Spiral mode only works when wall loops is 1, support is disabled, top shell " @@ -4018,7 +4060,7 @@ msgstr "Validació de paràmetres" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "" +msgstr "El valor %s està fora de rang. El rang vàlid és de %d a %d." msgid "Value is out of range." msgstr "El valor introduït és fora de rang." @@ -4209,10 +4251,10 @@ msgid "Normal mode" msgstr "Mode Normal" msgid "Total Filament" -msgstr "" +msgstr "Filament Total" msgid "Model Filament" -msgstr "" +msgstr "Filament del Model" msgid "Prepare time" msgstr "Planificar el temps" @@ -4308,7 +4350,7 @@ msgid "Spacing" msgstr "Espaiat" msgid "0 means auto spacing." -msgstr "" +msgstr "0 significa espaiat automàtic." msgid "Auto rotate for arrangement" msgstr "Gir automàtic per a l'arranjament" @@ -4455,7 +4497,7 @@ msgid "Go Live" msgstr "Entra en directe" msgid "Liveview Retry" -msgstr "" +msgstr "Reintentar Lifeview" msgid "Resolution" msgstr "Resolució" @@ -4513,7 +4555,7 @@ msgid "Preview" msgstr "Previsualització" msgid "Multi-device" -msgstr "" +msgstr "Multidispositiu" msgid "Project" msgstr "Projecte" @@ -4660,10 +4702,10 @@ msgid "Load a model" msgstr "Carregar un model" msgid "Import Zip Archive" -msgstr "" +msgstr "Importar fitxer ZIP" msgid "Load models contained within a zip archive" -msgstr "" +msgstr "Carregar models continguts dins d'un arxiu zip" msgid "Import Configs" msgstr "Importar Configuracions" @@ -4699,7 +4741,7 @@ msgid "Export current plate as G-code" msgstr "Exportar placa actual com a Codi-G" msgid "Export Preset Bundle" -msgstr "" +msgstr "Exportar el Paquet de Perfil" msgid "Export current configuration to files" msgstr "Exportar la configuració actual a fitxers" @@ -4867,10 +4909,10 @@ msgid "Export toolpaths as OBJ" msgstr "Exportar trajectòries d'eines com a OBJ" msgid "Open &Slicer" -msgstr "Obrir &Studio" +msgstr "Obrir &Slicer" msgid "Open Slicer" -msgstr "Obrir Studio" +msgstr "Obrir Slicer" msgid "&Quit" msgstr "&Sortir" @@ -4977,44 +5019,56 @@ msgstr "El dispositiu no pot gestionar més dades. Torneu-ho a provar més tard. msgid "Player is malfunctioning. Please reinstall the system player." msgstr "" +"El reproductor funciona malament. Torneu a instal·lar el reproductor del " +"sistema." msgid "The player is not loaded, please click \"play\" button to retry." msgstr "" +"El reproductor no està carregat, feu clic al botó \"reproduir\" per tornar-" +"ho a provar." msgid "Please confirm if the printer is connected." -msgstr "" +msgstr "Confirmeu si la impressora està connectada." msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" +"La impressora està ocupada descarregant, espereu que finalitzi la descàrrega." msgid "Printer camera is malfunctioning." -msgstr "" +msgstr "La càmera de la impressora funciona malament." msgid "Problem occured. Please update the printer firmware and try again." msgstr "" +"Ha ocorregut un problema. Actualitzeu el firmware de la impressora i torneu-" +"ho a provar." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" +"Liveview Només per LAN està desactivat. Activeu la pantalla de Lifeview a la " +"impressora." msgid "Please enter the IP of printer to connect." -msgstr "" +msgstr "Introduïu la IP de la impressora amb la que connectar." msgid "Initializing..." msgstr "Inicialitzant..." msgid "Connection Failed. Please check the network and try again" msgstr "" +"S'ha produït un error de connexió. Comproveu la xarxa i torneu-ho a provar" msgid "" "Please check the network and try again, You can restart or update the " "printer if the issue persists." msgstr "" +"Comproveu la xarxa i torneu-ho a provar. Podeu reiniciar o actualitzar la " +"impressora si el problema persisteix." msgid "The printer has been logged out and cannot connect." -msgstr "" +msgstr "La impressora ha tancat la sessió i no es pot connectar." msgid "Stopped." msgstr "Aturat." @@ -5105,7 +5159,7 @@ msgid "Refresh" msgstr "Actualitzar" msgid "Reload file list from printer." -msgstr "" +msgstr "Tornar a carregar la llista de fitxers des de la impressora." msgid "No printers." msgstr "No hi ha cap Impressora." @@ -5118,10 +5172,10 @@ msgid "Loading file list..." msgstr "Carregant llista de fitxers..." msgid "No files" -msgstr "" +msgstr "No hi ha fitxers" msgid "Load failed" -msgstr "" +msgstr "Càrrega fallida" msgid "Initialize failed (Device connection not ready)!" msgstr "" @@ -5131,15 +5185,21 @@ msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" +"L'exploració de fitxers a la targeta SD no és compatible amb el firmware " +"actual. Actualitzeu el firmware de la impressora." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "" +"Inicialització fallida (emmagatzematge no disponible, inseriu la targeta " +"SD.)!" msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "" +msgstr "Ha fallat la connexió LAN (no s'ha pogut visualitzar sdcard)" msgid "Browsing file in SD card is not supported in LAN Only Mode." msgstr "" +"L'exploració de fitxers a la targeta SD no és compatible amb el mode només " +"LAN." #, c-format, boost-format msgid "Initialize failed (%s)!" @@ -5170,10 +5230,10 @@ msgid "Fetching model infomations ..." msgstr "Obtenint infomacions del model ..." msgid "Failed to fetch model information from printer." -msgstr "" +msgstr "No s'ha pogut obtenir la informació del model de la impressora." msgid "Failed to parse model information." -msgstr "" +msgstr "No s'ha pogut analitzar la informació del model." msgid "" "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " @@ -5191,6 +5251,8 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" +"Arxiu: %s\n" +"Títol: %s\n" msgid "Download waiting..." msgstr "Descàrrega en espera..." @@ -5212,9 +5274,11 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" +"Tornant a connectar la impressora. L'operació no es pot completar " +"immediatament. Torneu-ho a provar més tard." msgid "File does not exist." -msgstr "" +msgstr "El fitxer no existeix." msgid "File checksum error. Please retry." msgstr "Error de checksum de fitxer. Si us plau, torna-ho a intentar." @@ -5316,7 +5380,7 @@ msgid "Control" msgstr "Control" msgid "Printer Parts" -msgstr "" +msgstr "Peces d'Impressora" msgid "Print Options" msgstr "Opcions d'impressió" @@ -5559,27 +5623,32 @@ msgid "" "The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" +"La versió d'arxiu 3mf està en Beta i és més recent que la versió actual " +"d'OrcaSlicer." msgid "If you would like to try Orca Slicer Beta, you may click to" -msgstr "" +msgstr "Si voleu provar Orca Slicer Beta, podeu fer clic a" msgid "Download Beta Version" -msgstr "" +msgstr "Descarregar Versió Beta" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" +"La versió del fitxer 3mf és més nova que la versió actual de l'Orca Slicer." msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" +"Actualitzar el vostre Orca Slicer podria habilitar totes les funcionalitats " +"al fitxer 3mf." msgid "Current Version: " -msgstr "" +msgstr "Versió actual: " msgid "Latest Version: " -msgstr "" +msgstr "Última Versió: " msgid "Not for now" -msgstr "" +msgstr "No per ara" msgid "3D Mouse disconnected." msgstr "S'ha desconnectat el ratolí 3D." @@ -5769,13 +5838,15 @@ msgid "Filament Tangle Detect" msgstr "Detecció de filament enredat" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Detecció d'Obstrucció de Broquet" msgid "Check if the nozzle is clumping by filament or other foreign objects." msgstr "" +"Comproveu si el broquet està obstruit per filament o altres objectes " +"estranys." msgid "Nozzle Type" -msgstr "" +msgstr "Tipus de broquet" msgid "Stainless Steel" msgstr "Acer Inoxidable" @@ -5785,7 +5856,7 @@ msgstr "Acer Endurit" #, c-format, boost-format msgid "%.1f" -msgstr "" +msgstr "%.1f" msgid "Global" msgstr "Global" @@ -6235,13 +6306,13 @@ msgid "prepare 3mf file..." msgstr "preparar el fitxer 3MF..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "S'ha produït un error en la baixada, format de fitxer desconegut." msgid "downloading project ..." msgstr "descarregant projecte ..." msgid "Download failed, File size exception." -msgstr "" +msgstr "S'ha produït un error en la baixada, excepció mida del Fitxer." #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6269,16 +6340,18 @@ msgstr "Es produeix un error en carregar el fitxer de Codi-G" #. TRN %1% is archive path #, boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "La càrrega d'un arxiu ZIP a la ruta %1% ha fallat." #. TRN: First argument = path to file, second argument = error description #, boost-format msgid "Failed to unzip file to %1%: %2%" -msgstr "" +msgstr "No s'ha pogut descomprimir el fitxer al %1%: %2%" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." msgstr "" +"No s'ha pogut trobar el fitxer descomprimit a %1%. La descompressió de " +"l'arxiu ha fallat." msgid "Drop project file" msgstr "Deixar anar el fitxer del projecte" @@ -6344,22 +6417,25 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try agian." msgstr "" +"No s'ha pogut realitzar l'operació booleana a les malles del model. Només " +"s'exportaran les parts positives. Proveu d'arreglar les malles i tornar-ho a " +"provar." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "" +msgstr "Motiu: la part \"%1%\" està buida." #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "" +msgstr "Motiu: la part \"%1%\" no conté cap volum." #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "" +msgstr "Motiu: la part \"%1%\" té autointersecció." #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "" +msgstr "Motiu: \"%1%\" i una altra peça no tenen intersecció." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6522,9 +6598,12 @@ msgid "" "This stops the transmission of data to Bambu's cloud services. Users who " "don't use BBL machines or use LAN mode only can safely turn on this function." msgstr "" +"Això atura la transmissió de dades als serveis en el núvol de Bambu. Els " +"usuaris que no utilitzen màquines BBL o només utilitzen el mode LAN poden " +"activar aquesta funció de manera segura." msgid "Enable network plugin" -msgstr "" +msgstr "Habilita el plugin de xarxa" msgid "Check for stable updates only" msgstr "Comprovar només si hi ha actualitzacions estables" @@ -6539,19 +6618,26 @@ msgid "Units" msgstr "Unitats" msgid "Allow only one OrcaSlicer instance" -msgstr "" +msgstr "Permet només una instància OrcaSlicer" msgid "" "On OSX there is always only one instance of app running by default. However " "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"A OSX, sempre hi ha una sola instància d'aplicació que s'executa per " +"defecte. Tanmateix, es permet executar diverses instàncies de la mateixa " +"aplicació des de la línia de comandes. En aquest cas, aquesta configuració " +"permetrà només una instància." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " "same OrcaSlicer is already running, that instance will be reactivated " "instead." msgstr "" +"Si això està habilitat, i en iniciar OrcaSlicer i una altra instància del " +"mateix OrcaSlicer que ja s'està executant, aquesta instància es tornarà a " +"activar." msgid "Home" msgstr "Inici" @@ -6563,16 +6649,20 @@ msgid "Set the page opened on startup." msgstr "Definiu la pàgina a obrir a l'inici." msgid "Touchpad" -msgstr "" +msgstr "Ratolí tàctil" msgid "Camera style" -msgstr "" +msgstr "Estil de càmera" msgid "" "Select camera navigation style.\n" "Default: LMB+move for rotation, RMB/MMB+move for panning.\n" "Touchpad: Alt+move for rotation, Shift+move for panning." msgstr "" +"Seleccioneu l'estil de navegació de la càmera.\n" +"Per defecte: Botó Esquerre del Ratolí + moure per rotar, Botó Dret del " +"Ratolí/Botó Mig del Ratolí + moure per a panoràmica.\n" +"Ratolí tàctil: Alt+moure per rotar, Majúscules+moure per a panoràmica." msgid "Zoom to mouse position" msgstr "Fer zoom a la posició del ratolí" @@ -6593,10 +6683,11 @@ msgstr "" "la càmera restringida." msgid "Reverse mouse zoom" -msgstr "" +msgstr "Zoom invers del ratolí" msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" +"Si està habilitat, inverteix la direcció del zoom amb la roda del ratolí." msgid "Show splash screen" msgstr "Mostrar pantalla de presentació" @@ -6622,28 +6713,35 @@ msgstr "" msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." msgstr "" +"Volums de purga: calcular automàticament cada vegada que canvia el filament." msgid "If enabled, auto-calculate every time when filament is changed" msgstr "" +"Si està activat, fa els càlculs automàticament cada vegada que canvia el " +"filament" msgid "Remember printer configuration" -msgstr "" +msgstr "Recordar la configuració de la impressora" msgid "" "If enabled, Orca will remember and switch filament/process configuration for " "each printer automatically." msgstr "" +"Si està habilitada, l'Orca recordarà i canviarà automàticament la " +"configuració del filament/procés per a cada impressora." msgid "Multi-device Management(Take effect after restarting Orca)." -msgstr "" +msgstr "Gestió multidispositiu(Entra en vigor després de reiniciar Studio)." msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" +"Amb aquesta opció habilitada, podeu enviar una tasca a diversos dispositius " +"alhora i gestionar múltiples dispositius." msgid "Network" -msgstr "" +msgstr "Xarxa" msgid "Auto sync user presets(Printer/Filament/Process)" msgstr "" @@ -6690,18 +6788,20 @@ msgstr "" "obrir fitxers .step" msgid "Current association: " -msgstr "" +msgstr "Associació actual: " msgid "Associate prusaslicer://" -msgstr "" +msgstr "Associar prusaslicer://" msgid "Not associated to any application" -msgstr "" +msgstr "No associar a cap aplicació" msgid "" "Associate OrcaSlicer with prusaslicer:// links so that Orca can open " "PrusaSlicer links from Printable.com" msgstr "" +"Associar OrcaSlicer amb els enllaços prusaslicer:// perquè Orca pugui obrir " +"enllaços PrusaSlicer des de Printable.com" msgid "Maximum recent projects" msgstr "Màxim projectes recents" @@ -6878,16 +6978,16 @@ msgid "The selected preset is null!" msgstr "El perfil seleccionat és nul!" msgid "End" -msgstr "" +msgstr "Final" msgid "Customize" msgstr "Personalitzar" msgid "Other layer filament sequence" -msgstr "" +msgstr "Seqüència d'impressió de l'altra capa" msgid "Please input layer value (>= 2)." -msgstr "" +msgstr "Introduïu el valor de capa (>= 2)." msgid "Plate name" msgstr "Nom de la placa" @@ -6899,10 +6999,10 @@ msgid "Print sequence" msgstr "Seqüència d'impressió" msgid "Same as Global" -msgstr "" +msgstr "El mateix que Global" msgid "Disable" -msgstr "" +msgstr "Deshabilitar" msgid "Spiral vase" msgstr "Gerro en Espiral" @@ -7171,6 +7271,8 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" +"La impressora seleccionada (%s) és incompatible amb el perfil d'impressora " +"escollit al laminador (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "Cal inserir una targeta SD per gravar el timelapse." @@ -7238,15 +7340,21 @@ msgid "" "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" +"El diàmetre del broquet del perfil no és coherent amb el diàmetre del " +"broquet memoritzat. Si heu canviat el broquet darrerament, aneu a Dispositiu " +"> Parts de la impressora per canviar la configuració." #, c-format, boost-format msgid "" "Printing high temperature material(%s material) with %s may cause nozzle " "damage" msgstr "" +"La impressió de material a alta temperatura (material %s) amb %s pot causar " +"danys al broquet" msgid "Please fix the error above, otherwise printing cannot continue." msgstr "" +"Corregiu l'error de dalt, en cas contrari, la impressió no pot continuar." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7273,7 +7381,7 @@ msgid "Modifying the device name" msgstr "Modificant el nom del dispositiu" msgid "Bind with Pin Code" -msgstr "" +msgstr "Enllaçar amb codi PIN" msgid "Send to Printer SD card" msgstr "Enviar a la targeta SD de la impressora" @@ -7334,21 +7442,23 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" +"Trobeu el codi PIN a la pàgina del compte a la pantalla de la impressora,\n" +" i escriviu el codi PIN de sota." msgid "Can't find Pin Code?" -msgstr "" +msgstr "No trobes el codi PIN?" msgid "Pin Code" -msgstr "" +msgstr "Codi PIN" msgid "Binding..." -msgstr "" +msgstr "Enllaçant..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Si us plau, confirmeu-ho a la pantalla de la impressora" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "S'ha produït un error en l'inici de sessió. Comproveu el codi PIN." msgid "Log in printer" msgstr "Iniciar sessió a la impressora" @@ -7555,6 +7665,10 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" +"Característica experimental: Retreure i tallar el filament a major distància " +"durant els canvis de filaments per minimitzar el flux. Tot i que pot reduir " +"notablement el flux, també pot elevar el risc d'esclops de broquets o altres " +"complicacions d'impressió." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7562,12 +7676,17 @@ msgid "" "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications.Please use with the latest printer firmware." msgstr "" +"Característica experimental: Retreure i tallar el filament a major distància " +"durant els canvis de filaments per minimitzar el rentat. Tot i que pot " +"reduir notablement el rentat, també pot elevar el risc d'obstruccions del " +"broquet o altres complicacions d'impressió. Utilitzeu amb el firmware de la " +"impressora més recent." msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add Primitive" -"\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add " +"Primitive\"->\"Timelapse Wipe Tower\"." msgstr "" "Quan graveu timelapse sense capçal d'impressió, es recomana afegir una " "\"Torre de Purga Timelapse\" \n" @@ -8060,26 +8179,36 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\". " msgstr "" +"Heu canviat alguns paràmetres de la configuració predeterminada \"%1%\". " msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" +"\n" +"Podeu desar o descartar els valors predefinits que heu modificat." msgid "" "\n" "You can save or discard the preset values you have modified, or choose to " "transfer the values you have modified to the new preset." msgstr "" +"\n" +"Podeu desar o descartar els valors predefinits que heu modificat o bé " +"transferir els valors que heu modificat a la nova configuració " +"predeterminada." msgid "You have previously modified your settings." -msgstr "" +msgstr "Has modificat prèviament la configuració." msgid "" "\n" "You can discard the preset values you have modified, or choose to transfer " "the modified values to the new project" msgstr "" +"\n" +"Podeu descartar els valors predefinits que heu modificat o transferir els " +"valors modificats al nou projecte" msgid "Extruders count" msgstr "Nombre d'extrusors" @@ -8117,6 +8246,8 @@ msgid "" "If enabled, this dialog can be used for transfer selected values from left " "to right preset." msgstr "" +"Si està habilitat, aquest diàleg es pot utilitzar per transferir els valors " +"seleccionats del perfil esquerra cap a la dreta." msgid "Add File" msgstr "Afegir arxiu" @@ -8563,10 +8694,10 @@ msgid "Shift+Mouse wheel" msgstr "Maj+Roda del ratolí" msgid "Horizontal slider - Move to start position" -msgstr "" +msgstr "Control lliscant horitzontal - Mou fins a la posició inicial" msgid "Horizontal slider - Move to last position" -msgstr "" +msgstr "Control lliscant horitzontal - Mou a l'última posició" msgid "Release Note" msgstr "Notes de la versió" @@ -8598,40 +8729,40 @@ msgid "Done" msgstr "Fet" msgid "resume" -msgstr "" +msgstr "reprendre" msgid "Resume Printing" -msgstr "" +msgstr "Reprendre Impressió" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Reprendre la impressió (defectes acceptables)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Reprendre la impressió (problema resolt)" msgid "Stop Printing" -msgstr "" +msgstr "Deixar d'imprimir" msgid "Check Assistant" -msgstr "" +msgstr "Assistent de comprovació" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Filament Extruït, Continuar" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Encara no s'ha Extruït, Tornar a Intentar-ho" msgid "Finished, Continue" -msgstr "" +msgstr "Finalitzat, Continuar" msgid "Load Filament" msgstr "Carregar Filament" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Filament carregat, reprendre" msgid "View Liveview" -msgstr "" +msgstr "Veure Liveview" msgid "Confirm and Update Nozzle" msgstr "Confirmar i Actualitzar el broquet" @@ -8731,9 +8862,9 @@ msgid "" "printing. Do you want to update now? You can also update later on printer or " "update next time starting Orca." msgstr "" -"La versió del firmware és anormal. Cal reparar i actualitzar abans " -"d'imprimir. Vols actualitzar ara? També pots actualitzar més endavant a la " -"impressora o actualitzar la propera vegada que iniciïs." +"La versió del firmware és anormal. Cal reparar i actualitzar-lo abans " +"d'imprimir. Vols actualitzar-lo ara? També podeu actualitzar-lo més endavant " +"a la impressora o actualitzar-lo la propera vegada que s'iniciï l'Orca." msgid "Extension Board" msgstr "Targeta d'Ampliació" @@ -8845,7 +8976,7 @@ msgstr "" #, boost-format msgid "Generating G-code: layer %1%" -msgstr "Generan Codi-G: capa %1%" +msgstr "Generant Codi-G: capa %1%" msgid "Inner wall" msgstr "Perímetre interior" @@ -9257,6 +9388,12 @@ msgid "" "You can adjust the machine_max_acceleration_travel value in your printer's " "configuration to get higher speeds." msgstr "" +"La configuració de l'acceleració de deplaçament supera l'acceleració màxima " +"de desplaçament (machine_max_acceleration_travel) de la impressora.\n" +"L'Orca limitarà automàticament la velocitat d'acceleració de viatge per " +"assegurar-se que no superi les capacitats de la impressora.\n" +"Podeu ajustar el valor machine_max_acceleration_travel a la configuració de " +"la impressora per obtenir velocitats més altes." msgid "Generating skirt & brim" msgstr "Generant Faldilla i Vora d'Adherència" @@ -9343,10 +9480,12 @@ msgid "Printer preset names" msgstr "Noms de perfils de la impressora" msgid "Use 3rd-party print host" -msgstr "" +msgstr "Utilitzeu l'amfitrió d'impressió de 3a part" msgid "Allow controlling BambuLab's printer through 3rd party print hosts" msgstr "" +"Permetre controlar la impressora de BambuLab a través d'amfitrions " +"d'impressió de 3 ª part" msgid "Hostname, IP or URL" msgstr "Nom d'equip, IP o URL" @@ -9535,13 +9674,13 @@ msgid "First layer print sequence" msgstr "Seqüència d'impressió de primera capa" msgid "Other layers print sequence" -msgstr "" +msgstr "Seqüència d'impressió d'altres capes" msgid "The number of other layers print sequence" -msgstr "" +msgstr "El nombre d'altres capes de la seqüència d'impressió" msgid "Other layers filament sequence" -msgstr "" +msgstr "Seqüència de filaments d'altres capes" msgid "This G-code is inserted at every layer change before lifting z" msgstr "Aquest Codi-G s'insereix en cada canvi de capa abans d'aixecar z" @@ -9830,7 +9969,7 @@ msgstr "" "direccions alternes en capes senars, independentment del seu grau de voladís." msgid "Bridge counterbore holes" -msgstr "" +msgstr "Pont pels forats esbocats( contraforats )" msgid "" "This option creates bridges for counterbore holes, allowing them to be " @@ -10473,10 +10612,10 @@ msgstr "" "col·lisions en impressió per objecte." msgid "Nozzle height" -msgstr "" +msgstr "Alçada del broquet" msgid "The height of nozzle tip." -msgstr "" +msgstr "L'alçada de la punta del broquet." msgid "Bed mesh min" msgstr "Malla de llit mínim" @@ -10898,7 +11037,7 @@ msgid "(Undefined)" msgstr "( Indefinit )" msgid "Sparse infill direction" -msgstr "" +msgstr "Direcció de farciment poc dens" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10908,18 +11047,20 @@ msgstr "" "direcció principal de la línia" msgid "Solid infill direction" -msgstr "" +msgstr "Direcció de farciment sòlid" msgid "" "Angle for solid infill pattern, which controls the start or main direction " "of line" msgstr "" +"Angle per al patró de farciment sòlid, que controla l'inici o la direcció " +"principal de la línia" msgid "Rotate solid infill direction" -msgstr "" +msgstr "Rotar la direcció de farciment sòlid" msgid "Rotate the solid infill direction by 90° for each layer." -msgstr "" +msgstr "Rotar la direcció de farciment sòlid 90° per a cada capa." msgid "Sparse infill density" msgstr "Densitat de farciment poc dens" @@ -10969,7 +11110,7 @@ msgid "Lightning" msgstr "Llampec" msgid "Cross Hatch" -msgstr "" +msgstr "Quadrícula" msgid "Sparse infill anchor length" msgstr "Longitud d'ancoratge de farciment poc dens" @@ -11133,7 +11274,7 @@ msgid "" "can improve build plate adhension" msgstr "" "Alçada de la capa inicial. Fer que l'alçada inicial de la capa sigui " -"gruixuda lleugerament pot millorar l'adherència de la placa d'impressió" +"lleugerament més gruixuda pot millorar l'adherència de la placa d'impressió" msgid "Speed of initial layer except the solid infill part" msgstr "Velocitat de la capa inicial excepte la part de farciment sòlid" @@ -11173,15 +11314,15 @@ msgstr "Velocitat màxima del ventilador a la capa" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" -"\". \"full_fan_speed_layer\" will be ignored if lower than " -"\"close_fan_the_first_x_layers\", in which case the fan will be running at " -"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer " +"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " +"than \"close_fan_the_first_x_layers\", in which case the fan will be running " +"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "La velocitat del ventilador augmentarà linealment de zero a la capa " -"\"close_fan_the_first_x_layers\" al màxim a la capa \"full_fan_speed_layer" -"\". S'ignorarà \"full_fan_speed_layer\" si és inferior a " -"\"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a " +"\"close_fan_the_first_x_layers\" al màxim a la capa " +"\"full_fan_speed_layer\". S'ignorarà \"full_fan_speed_layer\" si és inferior " +"a \"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a " "la velocitat màxima permesa a la capa \"close_fan_the_first_x_layers\" + 1." msgid "Support interface fan speed" @@ -11259,13 +11400,17 @@ msgstr "" "irregular i s'ha d'imprimir més lentament" msgid "Precise Z height" -msgstr "" +msgstr "Alçada Z precisa" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" +"Habiliteu-lo per obtenir una alçada z precisa de l'objecte després de " +"laminar-lo. Obtindrà l'alçada precisa de l'objecte ajustant finament les " +"altures de capa de les últimes capes. Tingueu en compte que es tracta d'un " +"paràmetre experimental." msgid "Arc fitting" msgstr "Ajustament en Arc( Arc fitting )" @@ -11280,6 +11425,15 @@ msgid "" "quality as line segments are converted to arcs by the slicer and then back " "to line segments by the firmware." msgstr "" +"Habiliteu-lo per obtenir un fitxer de codi-G que tingui moviments G2 i G3. " +"La tolerància d'ajust és la mateixa que la resolució. \n" +"\n" +"Nota: Per a les màquines de sabatilles, es recomana desactivar aquesta " +"opció. Klipper no es beneficia de les ordres arc, ja que aquestes es " +"divideixen de nou en segments de línia pel firmware. Això resulta en una " +"reducció de la qualitat de la superfície, ja que els segments de línia es " +"converteixen en arcs per la talladora i després tornen als segments de línia " +"pel firmware." msgid "Add line number" msgstr "Afegir número de línia" @@ -11522,9 +11676,14 @@ msgid "" "value to ~10-15% to minimize potential over extrusion and accumulation of " "material resulting in rough top surfaces." msgstr "" +"L'àrea de farciment s'amplia lleugerament per superposar-se amb la paret per " +"a una millor unió. El valor percentual és relatiu a l'amplada de línia de " +"farciment poc dens. Establiu aquest valor a ~ 10-15% per minimitzar la " +"potencial sobreextrusió i acumulació de material que resulti en superfícies " +"superiors rugoses." msgid "Top/Bottom solid infill/wall overlap" -msgstr "" +msgstr "Farciment superposat a paret superior/inferior\"" #, no-c-format, no-boost-format msgid "" @@ -11534,6 +11693,11 @@ msgid "" "appearance of pinholes. The percentage value is relative to line width of " "sparse infill" msgstr "" +"L'àrea superior de farciment sòlid s'amplia lleugerament per superposar-se " +"amb la paret per a una millor unió i minimitzar l'aparició de forats on el " +"farciment superior es troba amb les parets. Un valor de 25-30% és un bon " +"punt de partida, minimitzant l'aparició de forats. El valor percentual és " +"relatiu a l'amplada de línia del farciment poc dens" msgid "Speed of internal sparse infill" msgstr "Velocitat de farciment poc dens intern" @@ -12226,7 +12390,7 @@ msgstr "" "la retracció" msgid "Long retraction when cut(experimental)" -msgstr "" +msgstr "Retracció llarga en tallar(experimental)" msgid "" "Experimental feature.Retracting and cutting off the filament at a longer " @@ -12234,14 +12398,20 @@ msgid "" "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" +"Característica experimental. Retreure i tallar el filament a més distància " +"durant els canvis per minimitzar la purga. Tot i que això redueix " +"significativament el flux, també pot augmentar el risc d'obstruccions del " +"broquet o altres problemes d'impressió." msgid "Retraction distance when cut" -msgstr "" +msgstr "Distància de retracció quan es talla" msgid "" "Experimental feature.Retraction length before cutting off during filament " "change" msgstr "" +"Característica experimental. Longitud de retracció abans de tallar durant el " +"canvi de filament" msgid "Z hop when retract" msgstr "Salt en Z quan hi ha retracció" @@ -12382,12 +12552,14 @@ msgstr "Desactivar el temps d'impressió restant" msgid "" "Disable generating of the M73: Set remaining print time in the final gcode" msgstr "" +"Desactivar la generació del M73: establir el temps d'impressió restant al " +"gcode final" msgid "Seam position" msgstr "Posició de la costura" msgid "The start position to print each part of outer wall" -msgstr "La posició inicial per imprimir cada part del perímetre exterior" +msgstr "La posició inicial per imprimir cada capa del perímetre exterior" msgid "Nearest" msgstr "Més proper" @@ -12461,7 +12633,7 @@ msgstr "" "valor per defecte és de 155°." msgid "Conditional overhang threshold" -msgstr "" +msgstr "Llindar d'angle condicional" #, no-c-format, no-boost-format msgid "" @@ -12471,6 +12643,11 @@ msgid "" "at 40% of the external wall's width. Due to performance considerations, the " "degree of overhang is estimated." msgstr "" +"Aquesta opció determina el llindar de voladís per a l'aplicació de costures " +"d'Unió en Bisell. Si la porció no suportada del perímetre és inferior a " +"aquest llindar, s'aplicaran costures de juntes d'Unió en Bisell. El llindar " +"per defecte s'estableix en 40% de l'amplada del perímetre extern. A causa de " +"consideracions de rendiment, s'estima el grau de voladís." msgid "Scarf joint speed" msgstr "Velocitat d'Unió en Bisell" @@ -12585,7 +12762,7 @@ msgstr "" "perímetre extern en imprimir amb ordre d'impressió de perímetre Exterior/" "Interior o Interior/Exterior/Interior, la deretracció es realitza " "lleugerament a l'interior des de l'inici del perímetre exterior. D'aquesta " -"manera, qualsevol potencial sobreextrusió queda amagat de la superfície " +"manera, qualsevol potencial sobreextrusió queda amagada de la superfície " "exterior. \n" "\n" "Això és útil quan s'imprimeix amb ordre d'impressió de perfil Exterior/" @@ -12621,7 +12798,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Quantes capes de faldilla. Normalment només una capa" msgid "Draft shield" -msgstr "" +msgstr "Escut contra corrents d'aire" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12636,18 +12813,32 @@ msgid "" "distance from the object. Therefore, if brims are active it may intersect " "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +"Un escut contra corrents d'aire és útil per protegir una impressió ABS o ASA " +"de la deformació i el despreniment del llit d'impressió a causa del corrent " +"d'aire. Normalment només es necessita amb impressores de marc obert, és a " +"dir, sense tancament. \n" +"\n" +"Opcions:\n" +"Habilitat = la faldilla és tan alta com l'objecte imprès més alt.\n" +"Limitat = la faldilla és tan alta com especifica l'alçada de la faldilla.\n" +"\n" +"Nota: Amb l'escut contra corrents d'aire actiu, la faldilla s'imprimirà a " +"distància de faldilla de l'objecte. Per tant, si les vores d'adherència " +"estan actives pot creuar-se amb elles. Per evitar-ho, augmenteu el valor de " +"distància de la faldilla.\n" msgid "Limited" -msgstr "" +msgstr "Limitat" msgid "Enabled" -msgstr "" +msgstr "Habilitat" msgid "Skirt loops" msgstr "Voltes de la faldilla" msgid "Number of loops for the skirt. Zero means disabling skirt" -msgstr "Nombre devoltes per a la faldilla. Zero significa faldilla desactivada" +msgstr "" +"Nombre de voltes per a la faldilla. Zero significa faldilla desactivada" msgid "Skirt speed" msgstr "Velocitat de la faldilla" @@ -12658,7 +12849,7 @@ msgstr "" "predeterminada d'extrusió de capa." msgid "Skirt minimum extrusion length" -msgstr "" +msgstr "Longitud mínima d'extrusió de la faldilla" msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " @@ -12667,6 +12858,11 @@ msgid "" "Using a non zero value is useful if the printer is set up to print without a " "prime line." msgstr "" +"Longitud mínima d'extrusió del filament en mm en imprimir la faldilla. Zero " +"significa que aquesta funció està desactivada.\n" +"\n" +"L'ús d'un valor diferent de zero és útil si la impressora està configurada " +"per imprimir sense una línia principal." msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " @@ -12817,7 +13013,7 @@ msgstr "" "frontal del llit d'impressió al començament de la impressió." msgid "Slice gap closing radius" -msgstr "Radi de tancament des buits en laminar" +msgstr "Radi de tancament dels buits en laminar" msgid "" "Cracks smaller than 2x gap closing radius are being filled during the " @@ -13448,7 +13644,7 @@ msgid "Spacing of purge lines on the wipe tower." msgstr "Espaiat de les línies de purga de la Torre de Purga." msgid "Maximum wipe tower print speed" -msgstr "" +msgstr "Velocitat màxima d'impressió de la torre de purga" msgid "" "The maximum print speed when purging in the wipe tower and printing the wipe " @@ -13471,6 +13667,26 @@ msgid "" "For the wipe tower external perimeters the internal perimeter speed is used " "regardless of this setting." msgstr "" +"La velocitat màxima d'impressió en purgar a la torre de purga i imprimir a " +"la torre de purga capes poc denses. En la purga, si la velocitat de " +"farciment poc dens o la velocitat calculada de la màxima velocitat " +"volumètrica del filament és menor, s'utilitzarà la més baixa.\n" +"\n" +"En imprimir les capes poc denses, si la velocitat perimetral interna o la " +"velocitat calculada de la màxima velocitat volumètrica del filament és " +"menor, s'utilitzarà la més baixa.\n" +"\n" +"L'augment d'aquesta velocitat pot afectar l'estabilitat de la torre, així " +"com augmentar la força amb què el broquet xoca amb els grumolls que s'hagin " +"pogut formar a la torre de purga.\n" +"\n" +"Abans d'augmentar aquest paràmetre més enllà del valor per defecte de 90 mm/" +"segon, assegureu-vos que la impressora pugui fer un pont de manera fiable a " +"les velocitats augmentades i que el degoteig quan es produeixi el canvi " +"d'eina estigui ben controlat.\n" +"\n" +"Per als perímetres externs de la torre de purga, s'utilitza la velocitat " +"perimetral interna independentment d'aquesta configuració." msgid "Wipe tower extruder" msgstr "Extrusor de la Torre de Purga" @@ -14244,7 +14460,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj: no s'ha pogut analitzar" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "carrega mtl a obj: no s'ha pogut analitzar" msgid "The file contains polygons with more than 4 vertices." msgstr "El fitxer conté polígons amb més de 4 vèrtexs." @@ -14379,6 +14595,11 @@ msgid "" "historical results. \n" "Do you still want to continue the calibration?" msgstr "" +"Aquest tipus de màquina només pot contenir 16 resultats històrics per " +"broquet. Podeu suprimir els resultats de l'historial existents i, a " +"continuació, iniciar el calibratge. O podeu continuar el calibratge, però no " +"podeu crear nous resultats històrics de calibratge. \n" +"Encara vols continuar amb el calibratge?" msgid "Connecting to printer..." msgstr "Connectant amb la impressora..." @@ -14397,12 +14618,17 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" +"Ja hi ha un resultat històric de calibratge amb el mateix nom: %s. Només es " +"guarda un dels resultats amb el mateix nom. Estàs segur que vols " +"sobreescriure el resultat històric?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" +"Aquest tipus de màquina només pot contenir %d resultats de l'historial per " +"broquet. Aquest resultat no es guardarà." msgid "Internal Error" msgstr "Error intern" @@ -14774,7 +15000,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "Resultat del Calibratge de Dinàmiques de Flux" msgid "New" -msgstr "" +msgstr "Nou" msgid "No History Result" msgstr "Sense Resultats Històrics" @@ -14792,18 +15018,20 @@ msgstr "Acció" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." msgstr "" +"Aquest tipus de màquina només pot contenir %d resultats de l'historial per " +"broquet." msgid "Edit Flow Dynamics Calibration" msgstr "Editeu el Calibratge de Dinàmiques de Flux" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "Calibratge de Dinàmiques de Flux" msgid "Ok" -msgstr "" +msgstr "D’acord" msgid "The filament must be selected." -msgstr "" +msgstr "S'ha de seleccionar el filament." msgid "Network lookup" msgstr "Cerca de xarxa" @@ -15086,7 +15314,7 @@ msgid "Export Log" msgstr "Exportar Registre( Log )" msgid "OrcaSlicer Version:" -msgstr "" +msgstr "Versió d'Orca Slicer:" msgid "System Version:" msgstr "Versió del Sistema:" @@ -15095,10 +15323,10 @@ msgid "DNS Server:" msgstr "Servidor DNS:" msgid "Test OrcaSlicer(GitHub)" -msgstr "" +msgstr "Prova OrcaSlicer (GitHub)" msgid "Test OrcaSlicer(GitHub):" -msgstr "" +msgstr "Prova OrcaSlicer (GitHub):" msgid "Test Bing.com" msgstr "Prova Bing.com" @@ -15208,6 +15436,9 @@ msgid "" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" +"El nom de Filament %s que heu creat ja existeix. \n" +"Si continueu creant-lo, el perfil creat es mostrarà amb el seu nom complet. " +"Vols continuar?" msgid "Some existing presets have failed to be created, as follows:\n" msgstr "" @@ -15221,8 +15452,8 @@ msgstr "" "Vols reescriure'l?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you selected" -"\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you " +"selected\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus " @@ -15435,6 +15666,11 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" +"Aneu a la configuració del filament per editar els perfils si ho " +"necessiteu.\n" +"Tingueu en compte que la temperatura del broquet, la temperatura del llit i " +"la velocitat volumètrica màxima tenen un impacte significatiu en la qualitat " +"d'impressió. Si us plau, configureu-los amb cura." msgid "" "\n" @@ -15444,6 +15680,13 @@ msgid "" "page. \n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" +"\n" +"\n" +"L'Orca ha detectat que la funció de sincronització de perfils no està " +"habilitada, cosa que pot provocar una configuració de filament incorrecta a " +"la pàgina Dispositiu. \n" +"Feu clic a \"Sincronitzar els perfils d'usuari\" per habilitar la funció de " +"sincronització." msgid "Printer Setting" msgstr "Configuració de la Impressora" @@ -15554,6 +15797,8 @@ msgstr "Seleccioneu el tipus que voleu exportar" msgid "Failed to create temporary folder, please try Export Configs again." msgstr "" +"No s'ha pogut crear una carpeta temporal, torneu a provar Exportar " +"Configuracions." msgid "Edit Filament" msgstr "Edita el Filament" @@ -15670,7 +15915,7 @@ msgid "Success!" msgstr "Èxit!" msgid "Are you sure to log out?" -msgstr "" +msgstr "Estàs segur de tancar sessió?" msgid "Refresh Printers" msgstr "Refrescar Impressores" @@ -15705,7 +15950,7 @@ msgstr "" "Magatzem de Certificats / Clauer." msgid "Login/Test" -msgstr "" +msgstr "Iniciar Sessió/Provar" msgid "Connection to printers connected via the print host failed." msgstr "" @@ -15849,30 +16094,46 @@ msgid "" "It has a small layer height, and results in almost negligible layer lines " "and high printing quality. It is suitable for most general printing cases." msgstr "" +"Té una alçada de capa petita i produeix línies de capa gairebé " +"insignificants i una alta qualitat d'impressió. És adequat per a la majoria " +"dels casos d'impressió generals." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. So, it results in " "much higher printing quality, but a much longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,2 mm, té " +"velocitats i acceleracions més baixes, i el patró de farciment poc dens és " +"Giroide. Això es tradueix en una qualitat d'impressió molt més alta, però un " +"temps d'impressió molt més llarg." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,2 mm, té una " +"alçada de capa lleugerament més gran i resulta en línies de capa gairebé " +"insignificants i un temps d'impressió lleugerament més curt." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height, and results in slightly visible layer lines, but shorter printing " "time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,2 mm, té una " +"alçada de capa més gran i resulta en línies de capa lleugerament visibles, " +"però un temps d'impressió més curt." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height, and results in almost invisible layer lines and higher printing " "quality, but shorter printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,2 mm, té una " +"alçada de capa més petita i resulta en línies de capes gairebé invisibles i " +"una qualitat d'impressió més alta, però un temps d'impressió més curt." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15880,12 +16141,20 @@ msgid "" "Gyroid. So, it results in almost invisible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,2 mm, té línies " +"de capa més petites, velocitats i acceleracions més baixes, i el patró de " +"farciment poc dens és Giroide. Això es tradueix en línies de capa gairebé " +"invisibles i una qualitat d'impressió molt més gran, però un temps " +"d'impressió molt més llarg." msgid "" "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " "height, and results in minimal layer lines and higher printing quality, but " "shorter printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,2 mm, té una " +"alçada de capa més petita i produeix línies de capa mínimes i una qualitat " +"d'impressió més alta, però un temps d'impressió més curt." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15893,35 +16162,57 @@ msgid "" "Gyroid. So, it results in minimal layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,2 mm, té línies " +"de capa més petites, velocitats i acceleracions més baixes, i el patró de " +"farciment poc dens és Giroide. Això es tradueix en línies de capa mínimes i " +"una qualitat d'impressió molt més alta, però un temps d'impressió molt més " +"llarg." msgid "" "It has a general layer height, and results in general layer lines and " "printing quality. It is suitable for most general printing cases." msgstr "" +"Té una alçada general de capa, i produeix línies de capa i qualitat " +"d'impressió generals. És adequat per a la majoria dels casos d'impressió " +"generals." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,4 mm, té més " +"bucles de paret i una densitat de farciment més gran. Això es tradueix en " +"una major resistència de les impressions, però més consum de filaments i un " +"temps d'impressió més llarg." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but slightly shorter printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " +"alçada de capa més gran i produeix línies de capa més aparents i una " +"qualitat d'impressió més baixa, però un temps d'impressió lleugerament més " +"curt." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " +"alçada de capa més gran i produeix línies de capa més aparents i una " +"qualitat d'impressió més baixa, però un temps d'impressió més curt." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " +"alçada de capa més petita i produeix línies de capa menys aparents i una " +"qualitat d'impressió més alta, però un temps d'impressió més llarg." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15929,12 +16220,20 @@ msgid "" "Gyroid. So, it results in less apparent layer lines and much higher printing " "quality, but much longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " +"alçada de capa més petita, velocitats i acceleració més baixes, i el patró " +"de farciment poc dens és Giroide. Això es tradueix en línies de capa menys " +"aparents i una qualitat d'impressió molt més gran, però un temps d'impressió " +"molt més llarg." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and higher printing " "quality, but longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " +"alçada de capa més petita i produeix línies de capa gairebé insignificants i " +"una qualitat d'impressió més alta, però un temps d'impressió més llarg." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15942,64 +16241,102 @@ msgid "" "Gyroid. So, it results in almost negligible layer lines and much higher " "printing quality, but much longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " +"alçada de capa més petita, velocitats i acceleració més baixes, i el patró " +"de farciment poc dens és Giroide. Això produeix línies de capa gairebé " +"insignificants i una qualitat d'impressió molt més gran, però un temps " +"d'impressió molt més llarg." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, and results in almost negligible layer lines and longer printing " "time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " +"alçada de capa més petita i produeix línies de capa gairebé insignificants i " +"un temps d'impressió més llarg." msgid "" "It has a big layer height, and results in apparent layer lines and ordinary " "printing quality and printing time." msgstr "" +"Té una gran alçada de capa i produeix línies de capa aparents i qualitat " +"d'impressió i temps d'impressió ordinaris." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. So, it results in higher strength of the " "prints, but more filament consumption and longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,6 mm, té més " +"bucles de paret i una densitat de farciment més gran. Per tant, es tradueix " +"en una major resistència de les impressions, però més consum de filaments i " +"un temps d'impressió més llarg." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in more apparent layer lines and lower printing quality, " "but shorter printing time in some printing cases." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,6 mm, té una " +"alçada de capa més gran i produeix línies de capa més aparents i una " +"qualitat d'impressió més baixa, però un temps d'impressió més curt en alguns " +"casos d'impressió." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height, and results in much more apparent layer lines and much lower " "printing quality, but shorter printing time in some printing cases." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,6 mm, té una " +"alçada de capa més gran i produeix línies de capa molt més aparents i una " +"qualitat d'impressió molt menor, però un temps d'impressió més curt en " +"alguns casos d'impressió." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and slight higher printing " "quality, but longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,6 mm, té una " +"alçada de capa més petita i produeix línies de capa menys aparents i una " +"lleugera qualitat d'impressió més alta, però un temps d'impressió més llarg." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height, and results in less apparent layer lines and higher printing " "quality, but longer printing time." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,6 mm, té una " +"alçada de capa més petita i produeix línies de capa menys aparents i una " +"qualitat d'impressió més alta, però un temps d'impressió més llarg." msgid "" "It has a very big layer height, and results in very apparent layer lines, " "low printing quality and general printing time." msgstr "" +"Té una alçada de capa molt gran i produeix línies de capa molt aparents, " +"baixa qualitat d'impressió i temps d'impressió general." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height, and results in very apparent layer lines and much lower printing " "quality, but shorter printing time in some printing cases." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,8 mm, té una " +"alçada de capa més gran i produeix línies de capa molt aparents i una " +"qualitat d'impressió molt menor, però un temps d'impressió més curt en " +"alguns casos d'impressió." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height, and results in extremely apparent layer lines and much lower " "printing quality, but much shorter printing time in some printing cases." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,8 mm, té una " +"alçada de capa molt més gran, i produeix línies de capa extremadament " +"aparents i una qualitat d'impressió molt menor, però un temps d'impressió " +"molt més curt en alguns casos d'impressió." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -16007,53 +16344,68 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,8 mm, té una " +"alçada de capa lleugerament més petita i produeix línies de capa " +"lleugerament inferiors però encara aparents i una qualitat d'impressió " +"lleugerament superior, però un temps d'impressió més llarg en alguns casos " +"d'impressió." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height, and results in less but still apparent layer lines and slightly " "higher printing quality, but longer printing time in some printing cases." msgstr "" +"En comparació amb el perfil predeterminat del broquet de 0,8 mm, té una " +"alçada de capa més petita i produeix línies de capa menys però encara " +"aparents i una qualitat d'impressió lleugerament superior, però un temps " +"d'impressió més llarg en alguns casos d'impressió." msgid "Connected to Obico successfully!" -msgstr "" +msgstr "Connectat amb Obico amb èxit!" msgid "Could not connect to Obico" -msgstr "" +msgstr "No s'ha pogut connectar a Obico" msgid "Connected to SimplyPrint successfully!" -msgstr "" +msgstr "Connectat a SimplyPrint amb èxit!" msgid "Could not connect to SimplyPrint" -msgstr "" +msgstr "No s'ha pogut connectar a SimplyPrint" msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "" +"No s'ha enllaçat el compte de SimplyPrint. Aneu a Opcions de Connexió per " +"configurar-lo." msgid "" "File size exceeds the 100MB upload limit. Please upload your file through " "the panel." msgstr "" +"La mida del fitxer supera el límit de pujada de 100 MB. Si us plau, " +"carregueu el vostre fitxer a través del panell." msgid "Unknown error" -msgstr "" +msgstr "Error desconegut" msgid "Connection to Flashforge works correctly." -msgstr "" +msgstr "La connexió amb Flashforge funciona correctament." msgid "Could not connect to Flashforge" -msgstr "" +msgstr "No s'ha pogut connectar a Flashforge" msgid "The provided state is not correct." -msgstr "" +msgstr "L'estat proporcionat no és correcte." msgid "Please give the required permissions when authorizing this application." -msgstr "" +msgstr "Doneu els permisos necessaris quan autoritzeu aquesta aplicació." msgid "Something unexpected happened when trying to log in, please try again." msgstr "" +"Alguna cosa inesperada ha passat en intentar iniciar sessió, torneu-ho a " +"provar." msgid "User cancelled." -msgstr "" +msgstr "Usuari cancel·lat." #: resources/data/hints.ini: [hint:Precise wall] msgid "" @@ -16447,6 +16799,10 @@ msgstr "" #~ msgid "V" #~ msgstr "V" +#, fuzzy +#~ msgid "Maximum print speed when purging" +#~ msgstr "Màxima velocitat d'impressió en purgar" + #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " #~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " @@ -16459,6 +16815,20 @@ msgstr "" #~ msgid "Export &Configs" #~ msgstr "Exportar &Configuracions" +#~ msgid "Open &Studio" +#~ msgstr "Obrir &Studio" + +#~ msgid "Open Studio" +#~ msgstr "Obrir Studio" + +#, fuzzy +#~ msgid "" +#~ "Over 4 systems/handy are using remote access, you can close some and try " +#~ "again." +#~ msgstr "" +#~ "Hi ha més de 4 sistemes / pràctics que utilitzen accés remot, podeu " +#~ "tancar-ne alguns i tornar-ho a provar." + #~ msgid "Infill direction" #~ msgstr "Angle de farciment" @@ -16469,27 +16839,12 @@ msgstr "" #~ "Habiliteu-lo per obtenir un fitxer de Codi-G que tingui moviments G2 i " #~ "G3. I la tolerància de curvatura és la mateixa que la resolució" -#~ msgid "" -#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " -#~ "The percentage value is relative to line width of sparse infill" -#~ msgstr "" -#~ "L'àrea de farciment s'amplia lleugerament per superposar-se amb el " -#~ "perímetre per a una millor unió. El valor percentual és relatiu a " -#~ "l'amplada de línia del farciment poc dens" - #~ msgid "Export Configs" #~ msgstr "Exportar Configuracions" #~ msgid "Unload Filament" #~ msgstr "Descarregar Filament" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Trieu una ranura AMS i premeu el botó \"Carregar\" o \"Descarregar\" per " -#~ "carregar o descarregar el filament automàticament." - #~ msgid "MC" #~ msgstr "MC" @@ -16505,6 +16860,70 @@ msgstr "" #~ msgid "HMS" #~ msgstr "HMS" +#, fuzzy +#~| msgid "Unsaved Changes" +#~ msgid "Actions For Unsaved Changes" +#~ msgstr "Canvis no desats" + +#, fuzzy +#~| msgid "Reset scale" +#~ msgid "Preset Value" +#~ msgstr "Valor predefinit esquerre" + +#, fuzzy +#~| msgid "Modified G-codes" +#~ msgid "Modified Value" +#~ msgstr "Valor modificat" + +#, fuzzy +#~| msgid "User Preset" +#~ msgid "Use Preset Value" +#~ msgstr "Perfil d'usuari" + +#, fuzzy +#~| msgid "Save file as:" +#~ msgid "Save Modified Value" +#~ msgstr "Desa el fitxer com a:" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Would you like to save these changed settings(modified value)?" +#~ msgstr "" +#~ "\n" +#~ "Voleu desar aquests paràmetres canviats (valor modificat)?" + +#, fuzzy +#~| msgid "" +#~| "You have changed some preset settings. \n" +#~| "Would you like to keep these changed settings (new value) after " +#~| "switching preset?" +#~ msgid "" +#~ "\n" +#~ "Would you like to keep these changed settings(modified value) after " +#~ "switching preset?" +#~ msgstr "" +#~ "Heu canviat algunes opcions de configuració del perfil. \n" +#~ "Voleu mantenir aquests paràmetres modificats després de canviar el perfil?" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Do you want to keep your current modified settings, or use preset " +#~ "settings?" +#~ msgstr "" +#~ "\n" +#~ "Voleu mantenir la configuració modificada actual o utilitzar la " +#~ "configuració predeterminada?" + +#, fuzzy +#~ msgid "" +#~ "\n" +#~ "Do you want to save your current modified settings?" +#~ msgstr "" +#~ "\n" +#~ "Voleu desar la configuració modificada actual?" + #~ msgid "- ℃" #~ msgstr "- °C" @@ -16520,9 +16939,6 @@ msgstr "" #~ msgid "Jump to layer" #~ msgstr "Saltar a la capa" -#~ msgid "Cabin humidity" -#~ msgstr "Humitat de la cabina" - #~ msgid "" #~ "Green means that AMS humidity is normal, orange represent humidity is " #~ "high, red represent humidity is too high.(Hygrometer: lower the better.)" @@ -16531,9 +16947,6 @@ msgstr "" #~ "la humitat és alta, el vermell representa que la humitat és excessiva. " #~ "( Higròmetre: com més baix millor. )" -#~ msgid "Desiccant status" -#~ msgstr "Estat del dessecant" - #~ msgid "" #~ "A desiccant status lower than two bars indicates that desiccant may be " #~ "inactive. Please change the desiccant.(The bars: higher the better.)" @@ -16553,29 +16966,12 @@ msgstr "" #~ "també alenteixen el procés. Durant aquest temps, és possible que " #~ "l'indicador no representi la cambra amb precisió." -#~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " -#~ "automatically read any information until printing is completed." -#~ msgstr "" -#~ "Nota: si s'insereix un filament nou durant la impressió, l'AMS no llegirà " -#~ "automàticament cap informació fins que es completi la impressió." - -#, boost-format -#~ msgid "Succeed to export G-code to %1%" -#~ msgstr "Aconseguida l'exportació del Codi-G a %1%" - #~ msgid "Initialize failed (No Device)!" #~ msgstr "Inicialització fallida ( No hi ha dispositiu )!" #~ msgid "Initialize failed (No Camera Device)!" #~ msgstr "Inicialització fallida ( Sense Dispositiu de Càmera )!" -#~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." -#~ msgstr "" -#~ "La impressora està ocupada descarregant, espereu que finalitzi la " -#~ "descàrrega." - #~ msgid "Initialize failed (Not supported on the current printer version)!" #~ msgstr "" #~ "Inicialització fallida ( No és compatible amb la versió actual de la " @@ -16595,33 +16991,9 @@ msgstr "" #~ msgid "Load failed [%d]!" #~ msgstr "La càrrega ha fallat [%d]!" -#, c-format, boost-format -#~ msgid "No files [%d]" -#~ msgstr "Sense fitxers [%d]" - -#, c-format, boost-format -#~ msgid "Load failed [%d]" -#~ msgstr "Càrrega fallida [%d]" - -#~ msgid "Failed to fetching model infomations from printer." -#~ msgstr "No s'ha pogut obtenir la informació del model de la impressora." - -#~ msgid "Failed to parse model infomations." -#~ msgstr "No s'han pogut analitzar les informacions del model." - #~ msgid "Connection lost. Please retry." #~ msgstr "S'ha perdut la connexió. Si us plau, torna-ho a intentar." -#~ msgid "File not exists." -#~ msgstr "El fitxer no existeix." - -#~ msgid "" -#~ "Unable to perform boolean operation on model meshes. Only positive parts " -#~ "will be exported." -#~ msgstr "" -#~ "No s'ha pogut realitzar l'operació booleana a les malles del model. Només " -#~ "s'exportaran les parts positives." - #, boost-format #~ msgid "" #~ "You have changed some settings of preset \"%1%\". \n" @@ -16631,47 +17003,9 @@ msgstr "" #~ "Heu canviat alguns paràmetres del perfil \"%1%\". \n" #~ "Voleu mantenir aquests paràmetres modificats després de canviar el perfil?" -#~ msgid "" -#~ "You have changed some preset settings. \n" -#~ "Would you like to keep these changed settings (new value) after switching " -#~ "preset?" -#~ msgstr "" -#~ "Heu canviat algunes opcions de configuració del perfil. \n" -#~ "Voleu mantenir aquests paràmetres modificats després de canviar el perfil?" - #~ msgid " ℃" #~ msgstr " °C" -#~ msgid "" -#~ "Please go to filament setting to edit your presets if you need.\n" -#~ "Please note that nozzle temperature, hot bed temperature, and maximum " -#~ "volumetric speed have a significant impact on printing quality. Please " -#~ "set them carefully." -#~ msgstr "" -#~ "Aneu a la configuració del filament per editar els perfils si ho " -#~ "necessiteu.\n" -#~ "Tingueu en compte que la temperatura del broquet, la temperatura del llit " -#~ "i la velocitat volumètrica màxima tenen un impacte significatiu en la " -#~ "qualitat d'impressió. Si us plau, configureu-los amb cura." - -#~ msgid "" -#~ "Alternate extra wall only works with ensure vertical shell thickness " -#~ "disabled. " -#~ msgstr "" -#~ "El perímetre addicional alternat només funciona amb el gruix vertical de " -#~ "la carcassa desactivat. " - -#~ msgid "" -#~ "Change these settings automatically? \n" -#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra " -#~ "wall\n" -#~ "No - Dont use alternate extra wall" -#~ msgstr "" -#~ "Canviar aquesta configuració automàticament? \n" -#~ "Sí - Desactivar assegurar el gruix vertical de la carcassa i activar un " -#~ "perímetre addicional alternat\n" -#~ "No - No utilitzar perímetre addicional alternat" - #~ msgid "" #~ "The speed setting exceeds the printer's maximum speed " #~ "(machine_max_speed_x/machine_max_speed_y).\n" @@ -16687,9 +17021,6 @@ msgstr "" #~ "Podeu ajustar la configuració de velocitat màxima a la configuració de la " #~ "impressora per obtenir velocitats més altes." -#~ msgid "Bridge counterbole holes" -#~ msgstr "Pont pels forats esbocats( contraforats )" - #~ msgid "Studio Version:" #~ msgstr "Versió d'Studio:" From 1d5fb94dd1e67e5170ac7c45ac4280116ce294ec Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 24 May 2024 13:44:46 +0200 Subject: [PATCH 31/66] Updated FR translations (#5439) * Changed "chambre" to "caisson" * Added new locales --- localization/i18n/fr/OrcaSlicer_fr.po | 194 +++++++++++++++++--------- 1 file changed, 126 insertions(+), 68 deletions(-) diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index f320e04bba..6ee40b50fb 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -704,7 +704,7 @@ msgid "Emboss" msgstr "Embosser" msgid "NORMAL" -msgstr "" +msgstr "NORMAL" msgid "SMALL" msgstr "PETIT" @@ -1312,7 +1312,7 @@ msgid "Center of circle" msgstr "Centrer du cercle" msgid "ShiftLeft mouse button" -msgstr "" +msgstr "ShiftLeft mouse button" msgid "Select feature" msgstr "Sélectionner une fonctionnalité" @@ -1525,7 +1525,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Choisissez un ou plusieurs fichiers (3mf/step/stl/svg/obj/amf) :" msgid "Choose ZIP file" -msgstr "" +msgstr "Choisissez un fichier ZIP" msgid "Choose one file (gcode/3mf):" msgstr "Choisissez un fichier (gcode/3mf):" @@ -1603,6 +1603,9 @@ msgid "" "Could not start URL download. Destination folder is not set. Please choose " "destination folder in Configuration Wizard." msgstr "" +"Impossible de lancer le téléchargement de l’URL. Le dossier de destination " +"n’est pas défini. Veuillez choisir le dossier de destination dans " +"l’assistant de configuration." msgid "Import File" msgstr "Importer un Fichier" @@ -1759,7 +1762,7 @@ msgid "Stanford Bunny" msgstr "Lapin de Stanford" msgid "Orca String Hell" -msgstr "" +msgstr "Orca String Hell" msgid "" "This model features text embossment on the top surface. For optimal results, " @@ -2797,7 +2800,7 @@ msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero Licence Publique Générale, version 3" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" -msgstr "" +msgstr "Orca Slicer est basé sur PrusaSlicer et BambuStudio" msgid "Libraries" msgstr "Bibliothèques" @@ -3472,10 +3475,10 @@ msgstr "" "Données de fichier d'impression anormales. Veuillez redécouvre le fichier." msgid "There is no device available to send printing." -msgstr "" +msgstr "Il n’y a pas de périphérique disponible pour envoyer l’impression." msgid "The number of printers in use simultaneously cannot be equal to 0." -msgstr "" +msgstr "Le nombre d’imprimantes utilisées simultanément ne peut être égal à 0." msgid "Use External Spool" msgstr "Utiliser la bobine externe" @@ -3499,7 +3502,7 @@ msgid "Timelapse" msgstr "Timelapse" msgid "Flow Dynamic Calibration" -msgstr "" +msgstr "Calibration dynamique du débit" msgid "Send Options" msgstr "Options d’envoi" @@ -3664,7 +3667,7 @@ msgid "" "it may result in material softening and clogging.The maximum safe " "temperature for the material is %d" msgstr "" -"La température actuelle de la chambre est supérieure à la température de " +"La température actuelle du caisson est supérieure à la température de " "sécurité du matériau, ce qui peut entraîner un ramollissement et un bouchage " "du filament. La température de sécurité maximale pour le matériau est %d" @@ -3891,11 +3894,10 @@ msgstr "" msgid "Paused due to chamber temperature control error" msgstr "" -"Mise en pause en raison d’une erreur de contrôle de la température de la " -"chambre" +"Mise en pause en raison d’une erreur de contrôle de la température du caisson" msgid "Cooling chamber" -msgstr "Refroidissement de la chambre" +msgstr "Refroidissement du caisson" msgid "Paused by the Gcode inserted by user" msgstr "Mise en pause par le G-code inséré par l’utilisateur" @@ -3944,7 +3946,7 @@ msgid "" "45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" -"La température actuelle de la chambre ou la température cible de la chambre " +"La température actuelle du caisson ou la température cible du caisson " "dépasse 45℃. Afin d’éviter le bouchage de l’extrudeur, un filament basse " "température (PLA/PETG/TPU) ne doit pas être chargé." @@ -3955,16 +3957,16 @@ msgid "" msgstr "" "Un filament basse température (PLA/PETG/TPU) est chargé dans l’extrudeur. " "Afin d’éviter le bouchage de l’extrudeur, il n’est pas autorisé de régler la " -"température de la chambre au-dessus de 45℃." +"température du caisson au-dessus de 45℃." msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated. And the target chamber temperature will " "automatically be set to 0℃." msgstr "" -"Lorsque vous réglez la température de la chambre en dessous de 40℃, le " -"contrôle de la température de la chambre ne sera pas activé. Et la " -"température cible de la chambre sera automatiquement réglée sur 0℃." +"Lorsque vous réglez la température du caisson en dessous de 40℃, le contrôle " +"de la température du caisson ne sera pas activé. Et la température cible du " +"caisson sera automatiquement réglée sur 0℃." msgid "Failed to start printing job" msgstr "Échec du lancement de la tâche d'impression" @@ -4047,7 +4049,7 @@ msgid "Objects Info" msgstr "Informations sur les objets" msgid "Dimensions" -msgstr "" +msgstr "Dimensions" msgid "Temperatures" msgstr "Températures" @@ -4732,10 +4734,10 @@ msgid "Load a model" msgstr "Charger un modèle" msgid "Import Zip Archive" -msgstr "" +msgstr "Importer une archive Zip" msgid "Load models contained within a zip archive" -msgstr "" +msgstr "Charger les modèles contenus dans une archive zip" msgid "Import Configs" msgstr "Importer des Configs" @@ -4771,7 +4773,7 @@ msgid "Export current plate as G-code" msgstr "Exporter le plateau actuel en G-code" msgid "Export Preset Bundle" -msgstr "" +msgstr "Exporter l’ensemble des préréglages" msgid "Export current configuration to files" msgstr "Exporter la configuration actuelle vers des fichiers" @@ -6385,16 +6387,18 @@ msgstr "Une erreur se produit lors du chargement du fichier G-code" #. TRN %1% is archive path #, boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "Le chargement d’une archive ZIP se trouvant dans %1% a échoué." #. TRN: First argument = path to file, second argument = error description #, boost-format msgid "Failed to unzip file to %1%: %2%" -msgstr "" +msgstr "Échec de la décompression du fichier vers %1% : %2%" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." msgstr "" +"Impossible de trouver le fichier décompressé dans %1%. La décompression du " +"fichier a échoué." msgid "Drop project file" msgstr "Déposer le fichier de projet" @@ -6843,18 +6847,20 @@ msgstr "" "fichiers .step/.stp" msgid "Current association: " -msgstr "" +msgstr "Association actuelle : " msgid "Associate prusaslicer://" -msgstr "" +msgstr "Associer prusaslicer://" msgid "Not associated to any application" -msgstr "" +msgstr "N’est associé à aucune application" msgid "" "Associate OrcaSlicer with prusaslicer:// links so that Orca can open " "PrusaSlicer links from Printable.com" msgstr "" +"Associer OrcaSlicer aux liens prusaslicer:// pour qu’Orca puisse ouvrir les " +"liens PrusaSlicer de Printable.com" msgid "Maximum recent projects" msgstr "Projets récents maximum" @@ -7766,8 +7772,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add Primitive" -"\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add " +"Primitive\"->\"Timelapse Wipe Tower\"." msgstr "" "Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé " "d’ajouter une \"Tour d’essuyage timelapse\".\n" @@ -7904,7 +7910,7 @@ msgstr "" "d'ensemble" msgid "Print chamber temperature" -msgstr "Température de la chambre d’impression" +msgstr "Température du caisson d’impression" msgid "Print temperature" msgstr "Température d'impression" @@ -7922,9 +7928,9 @@ msgid "" "Bed temperature when cool plate is installed. Value 0 means the filament " "does not support to print on the Cool Plate" msgstr "" -"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool plate" -"\") est installé. Une valeur à 0 signifie que ce filament ne peut pas être " -"imprimé sur le plateau froid." +"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool " +"plate\") est installé. Une valeur à 0 signifie que ce filament ne peut pas " +"être imprimé sur le plateau froid." msgid "Engineering plate" msgstr "Plaque Engineering" @@ -8797,10 +8803,10 @@ msgid "Shift+Mouse wheel" msgstr "Maj+Molette de la souris" msgid "Horizontal slider - Move to start position" -msgstr "" +msgstr "Curseur horizontal - Déplacement vers la position de départ" msgid "Horizontal slider - Move to last position" -msgstr "" +msgstr "Curseur horizontal - Déplacer vers la dernière position" msgid "Release Note" msgstr "Note de version" @@ -11455,10 +11461,10 @@ msgstr "Ventilateur à pleine vitesse à la couche" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" -"\". \"full_fan_speed_layer\" will be ignored if lower than " -"\"close_fan_the_first_x_layers\", in which case the fan will be running at " -"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer " +"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " +"than \"close_fan_the_first_x_layers\", in which case the fan will be running " +"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à " "la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche " @@ -11717,14 +11723,14 @@ msgid "money/h" msgstr "€/heure" msgid "Support control chamber temperature" -msgstr "Contrôle de température de la chambre" +msgstr "Contrôle de température du caisson" msgid "" "This option is enabled if machine support controlling chamber temperature\n" "G-code command: M141 S(0-255)" msgstr "" "Activez cette option si la machine prend en charge le contrôle de la " -"température de la chambre\n" +"température du caisson\n" "Commande de G-code : M141 S(0-255)" msgid "Support air filtration" @@ -11818,6 +11824,11 @@ msgid "" "value to ~10-15% to minimize potential over extrusion and accumulation of " "material resulting in rough top surfaces." msgstr "" +"La zone de remplissage est légèrement élargie pour chevaucher la paroi afin " +"d’améliorer l’adhérence. La valeur du pourcentage est relative à la largeur " +"de la ligne de remplissage. Réglez cette valeur à ~10-15% pour minimiser le " +"risque de sur-extrusion et d’accumulation de matériau, ce qui rendrait les " +"surfaces supérieures rugueuses." msgid "Top/Bottom solid infill/wall overlap" msgstr "Chevauchement du remplissage ou de la paroi supérieur(e)/inférieur(e)" @@ -11830,6 +11841,12 @@ msgid "" "appearance of pinholes. The percentage value is relative to line width of " "sparse infill" msgstr "" +"La zone de remplissage solide supérieure est légèrement élargie pour " +"chevaucher la paroi afin d’améliorer l’adhérence et de minimiser " +"l’apparition de trous d’épingle à l’endroit où le remplissage supérieur " +"rencontre les parois. Une valeur de 25-30% est un bon point de départ, " +"minimisant l’apparition de trous d’épingle. La valeur en pourcentage est " +"relative à la largeur de ligne du remplissage." msgid "Speed of internal sparse infill" msgstr "Vitesse de remplissage interne" @@ -12943,7 +12960,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Nombre de couches de jupe, généralement une seule." msgid "Draft shield" -msgstr "" +msgstr "Paravent" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12958,12 +12975,27 @@ msgid "" "distance from the object. Therefore, if brims are active it may intersect " "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +"Un paravent est utile pour protéger une impression ABS ou ASA contre les " +"risques de déformation et de détachement du plateau d’impression en raison " +"des courants d’air. Il n’est généralement nécessaire que pour les " +"imprimantes à cadre ouvert, c’est-à-dire sans caisson. \n" +"\n" +"Options :\n" +"Activé = la hauteur de la jupe est égale à celle de l’objet imprimé le plus " +"haut.\n" +"Limité = la hauteur de la jupe est celle spécifiée par la hauteur de la " +"jupe.\n" +"\n" +"Remarque : lorsque le paravent est actif, la jupe est imprimée à la distance " +"de la jupe par rapport à l’objet. Par conséquent, si des bordures sont " +"actives, elle risque de les croiser. Pour éviter cela, augmentez la valeur " +"de la distance de la jupe.\n" msgid "Limited" -msgstr "" +msgstr "Limité" msgid "Enabled" -msgstr "" +msgstr "Activé" msgid "Skirt loops" msgstr "Boucles de la jupe" @@ -12980,7 +13012,7 @@ msgstr "" "d’extrusion par défaut est utilisée." msgid "Skirt minimum extrusion length" -msgstr "" +msgstr "Longueur minimale d’extrusion de la jupe" msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " @@ -12989,6 +13021,11 @@ msgid "" "Using a non zero value is useful if the printer is set up to print without a " "prime line." msgstr "" +"Longueur minimale d’extrusion du filament en mm lors de l’impression de la " +"jupe. Zéro signifie que cette fonction est désactivée.\n" +"\n" +"L’utilisation d’une valeur non nulle est utile si l’imprimante est " +"configurée pour imprimer sans ligne d’amorce." msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " @@ -13161,8 +13198,8 @@ msgid "" "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " "close all holes in the model." msgstr "" -"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « " -"Fermer les trous » pour fermer tous les trous du modèle." +"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez " +"« Fermer les trous » pour fermer tous les trous du modèle." msgid "Regular" msgstr "Standard" @@ -13588,12 +13625,12 @@ msgid "" "added before \"machine_start_gcode\"\n" "G-code commands: M141/M191 S(0-255)" msgstr "" -"Activez cette option pour le contrôle de la température de la chambre. Une " +"Activez cette option pour le contrôle de la température du caisson. Une " "commande M191 sera ajoutée avant \"machine_start_gcode\"\n" "Commandes G-code : M141/M191 S(0-255)" msgid "Chamber temperature" -msgstr "Température de la chambre" +msgstr "Température du caisson" msgid "" "Higher chamber temperature can help suppress or reduce warping and " @@ -13604,13 +13641,13 @@ msgid "" "high to avoid cloggings, so 0 which stands for turning off is highly " "recommended" msgstr "" -"Une température de chambre plus élevée peut aider à supprimer ou à réduire " +"Une température de caisson plus élevée peut aider à supprimer ou à réduire " "la déformation et potentiellement conduire à une force de liaison " "intercouche plus élevée pour les matériaux à haute température comme l’ABS, " "l’ASA, le PC, le PA, etc. Dans le même temps, la filtration de l’air de " "l’ABS et de l’ASA s’aggravera. Pour le PLA, le PETG, le TPU, le PVA et " -"d’autres matériaux à basse température, la température réelle de la chambre " -"ne doit pas être élevée pour éviter les bouchages, donc la valeur 0 qui " +"d’autres matériaux à basse température, la température réelle du caisson ne " +"doit pas être élevée pour éviter les bouchages, donc la valeur 0 qui " "signifie éteindre est fortement recommandé." msgid "Nozzle temperature for layers after the initial one" @@ -13725,8 +13762,8 @@ msgid "" "appearance defects when printing objects." msgstr "" "La tour de purge peut être utilisée pour nettoyer les résidus sur la buse et " -"stabiliser la pression de la chambre à l'intérieur de la buse afin d'éviter " -"les défauts d'apparence lors de l'impression d'objets." +"stabiliser la pression du caisson à l'intérieur de la buse afin d'éviter les " +"défauts d'apparence lors de l'impression d'objets." msgid "Purging volumes" msgstr "Volumes de purge" @@ -13773,7 +13810,7 @@ msgid "Spacing of purge lines on the wipe tower." msgstr "Espacement des lignes de purge sur la tour d’essuyage." msgid "Maximum wipe tower print speed" -msgstr "" +msgstr "Vitesse maximale d’impression de la tour d’essuyage" msgid "" "The maximum print speed when purging in the wipe tower and printing the wipe " @@ -13796,6 +13833,27 @@ msgid "" "For the wipe tower external perimeters the internal perimeter speed is used " "regardless of this setting." msgstr "" +"Vitesse d'impression maximale lors de la purge dans la tour de raclage et de " +"l'impression des couches éparses de la tour d'essuyage. Lors de la purge, si " +"la vitesse de remplissage ou la vitesse calculée à partir de la vitesse " +"volumétrique maximale du filament est inférieure, c'est la vitesse la plus " +"faible qui sera utilisée.\n" +"\n" +"Lors de l’impression des couches éparses, si la vitesse du périmètre interne " +"ou la vitesse calculée à partir de la vitesse volumétrique maximale du " +"filament est inférieure, c’est la vitesse la plus faible qui sera utilisée.\n" +"\n" +"L’augmentation de cette vitesse peut affecter la stabilité de la tour et " +"augmenter la force avec laquelle la buse entre en collision avec les blobs " +"qui peuvent s’être formés sur la tour d’essuyage.\n" +"\n" +"Avant d’augmenter ce paramètre au-delà de la valeur par défaut de 90 mm/sec, " +"assurez-vous que votre imprimante peut effectuer un pontage fiable à des " +"vitesses élevées et que le suintement lors du changement d’outil est bien " +"contrôlé.\n" +"\n" +"Pour les périmètres externes de la tour d’essuyage, la vitesse du périmètre " +"interne est utilisée indépendamment de ce paramètre." msgid "Wipe tower extruder" msgstr "Extrudeur de tour d’essuyage" @@ -13950,8 +14008,8 @@ msgid "" "Wipe tower is only compatible with relative mode. It is recommended on most " "printers. Default is checked" msgstr "" -"L’extrusion relative est recommandée lors de l’utilisation de l’option « " -"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " +"L’extrusion relative est recommandée lors de l’utilisation de l’option " +"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " "non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est " "compatible qu’avec le mode relatif. Il est recommandé sur la plupart des " "imprimantes. L’option par défaut est cochée" @@ -14402,7 +14460,7 @@ msgid "Hour" msgstr "Heure" msgid "Minute" -msgstr "" +msgstr "Minute" msgid "Print preset name" msgstr "Imprimer le nom de la présélection" @@ -14814,9 +14872,9 @@ msgstr "" "Wiki.\n" "\n" "Habituellement, la calibration est inutile. Lorsque vous démarrez une " -"impression d'une seule couleur/matériau, avec l'option \"Calibration du débit" -"\" cochée dans le menu de démarrage de l'impression, l'imprimante suivra " -"l'ancienne méthode de calibration du filament avant l'impression.\n" +"impression d'une seule couleur/matériau, avec l'option \"Calibration du " +"débit\" cochée dans le menu de démarrage de l'impression, l'imprimante " +"suivra l'ancienne méthode de calibration du filament avant l'impression.\n" "Lorsque vous démarrez une impression multi-couleurs/matériaux, l'imprimante " "utilise le paramètre de compensation par défaut pour le filament lors de " "chaque changement de filament, ce qui donne un bon résultat dans la plupart " @@ -15595,8 +15653,8 @@ msgstr "" "Voulez-vous le réécrire ?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you selected" -"\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you " +"selected\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Nous renommerions les préréglages en « Vendor Type Serial @printer you " @@ -15647,10 +15705,10 @@ msgid "Printable Space" msgstr "Espace imprimable" msgid "X" -msgstr "" +msgstr "X" msgid "Y" -msgstr "" +msgstr "Y" msgid "Hot Bed STL" msgstr "STL du plateau" @@ -16598,8 +16656,8 @@ msgid "" "Chamber temperature\n" "Did you know that OrcaSlicer supports chamber temperature?" msgstr "" -"Température de la chambre\n" -"Saviez-vous qu’OrcaSlicer prend en charge la température de la chambre ?" +"Température du caisson\n" +"Saviez-vous qu’OrcaSlicer prend en charge la température du caisson ?" #: resources/data/hints.ini: [hint:Calibration] msgid "" @@ -17382,8 +17440,8 @@ msgstr "" #~ "thickness (top+bottom solid layers)" #~ msgstr "" #~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour " -#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure" -#~ "+inférieure)." +#~ "garantir l'épaisseur verticale de la coque (couches solides " +#~ "supérieure+inférieure)." #~ msgid "Further reduce solid infill on walls (beta)" #~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)" From 966c18cbadb4a45dccf5d0c5c889ef7bd471152c Mon Sep 17 00:00:00 2001 From: Dima Buzdyk <46728448+buzzhuzz@users.noreply.github.com> Date: Fri, 24 May 2024 17:00:09 +0500 Subject: [PATCH 32/66] fix slow_down_layers (#5396) Setting slow_down_layers to 2 or more results in wrong number of slowed down layers. Do not increment layer_id since bottom layer (#0) handled separately. --- 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 71614cda04..f0ca33cfe1 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -5195,7 +5195,7 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description, speed = m_config.get_abs_value("initial_layer_speed"); } else if(m_config.slow_down_layers > 1){ - const auto _layer = layer_id() + 1; + const auto _layer = layer_id(); if (_layer > 0 && _layer < m_config.slow_down_layers) { const auto first_layer_speed = is_perimeter(path.role()) From 194ec6b1cd65236c63896831ae8214e34865a695 Mon Sep 17 00:00:00 2001 From: William Date: Sat, 25 May 2024 00:52:35 +1200 Subject: [PATCH 33/66] feat: add model_name and plate_number placeholders (#5401) This uses the BBS project name from the `Project` tab which could be susceptible to upstream changes removing this feature. The project_name template only works when you open a 3MF file. If you create a new project and set the project name `Model.model_info` is always null whether you save the project or not. If you save the current project, switch to a new project/different project, then re-load it then the template works as expected. The plate number is assumed to always be <100 which matches the formatting of the plate number in the UI. Relates-To: https://github.com/SoftFever/OrcaSlicer/issues/3816 --- src/libslic3r/GCode.cpp | 2 ++ src/libslic3r/Print.cpp | 20 ++++++++++++++++++++ src/libslic3r/Print.hpp | 3 +++ 3 files changed, 25 insertions(+) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index f0ca33cfe1..bac3ea7323 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -2399,6 +2399,8 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato this->placeholder_parser().set("first_layer_temperature", new ConfigOptionInts(m_config.nozzle_temperature_initial_layer)); this->placeholder_parser().set("max_print_height",new ConfigOptionInt(m_config.printable_height)); this->placeholder_parser().set("z_offset", new ConfigOptionFloat(m_config.z_offset)); + this->placeholder_parser().set("model_name", new ConfigOptionString(print.get_model_name())); + this->placeholder_parser().set("plate_number", new ConfigOptionString(print.get_plate_number_formatted())); this->placeholder_parser().set("plate_name", new ConfigOptionString(print.get_plate_name())); this->placeholder_parser().set("first_layer_height", new ConfigOptionFloat(m_config.initial_layer_print_height.value)); diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index 46918088ed..2b1492a2f5 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -2841,10 +2841,30 @@ std::string Print::output_filename(const std::string &filename_base) const DynamicConfig config = this->finished() ? this->print_statistics().config() : this->print_statistics().placeholders(); config.set_key_value("num_filaments", new ConfigOptionInt((int)m_config.nozzle_diameter.size())); config.set_key_value("plate_name", new ConfigOptionString(get_plate_name())); + config.set_key_value("plate_number", new ConfigOptionString(get_plate_number_formatted())); + config.set_key_value("model_name", new ConfigOptionString(get_model_name())); return this->PrintBase::output_filename(m_config.filename_format.value, ".gcode", filename_base, &config); } +std::string Print::get_model_name() const +{ + if (model().model_info != nullptr) + { + return model().model_info->model_name; + } else { + return ""; + } +} + +std::string Print::get_plate_number_formatted() const +{ + std::string plate_number = std::to_string(get_plate_index() + 1); + static const size_t n_zero = 2; + + return std::string(n_zero - std::min(n_zero, plate_number.length()), '0') + plate_number; +} + //BBS: add gcode file preload logic void Print::set_gcode_file_ready() { diff --git a/src/libslic3r/Print.hpp b/src/libslic3r/Print.hpp index 23a3a00159..bd7b867b99 100644 --- a/src/libslic3r/Print.hpp +++ b/src/libslic3r/Print.hpp @@ -903,6 +903,9 @@ public: std::string output_filename(const std::string &filename_base = std::string()) const override; + std::string get_model_name() const; + std::string get_plate_number_formatted() const; + size_t num_print_regions() const throw() { return m_print_regions.size(); } const PrintRegion& get_print_region(size_t idx) const { return *m_print_regions[idx]; } const ToolOrdering& get_tool_ordering() const { return m_wipe_tower_data.tool_ordering; } From d31748f7c00ffee2fc70f4e60b796d1caca0f250 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 24 May 2024 23:27:23 +0800 Subject: [PATCH 34/66] Merge some translations from PrusaSlicer --- localization/i18n/OrcaSlicer.pot | 2 +- localization/i18n/ca/OrcaSlicer_ca.po | 33 +- localization/i18n/cs/OrcaSlicer_cs.po | 751 +++++++++-------- localization/i18n/de/OrcaSlicer_de.po | 12 +- localization/i18n/en/OrcaSlicer_en.po | 17 +- localization/i18n/es/OrcaSlicer_es.po | 40 +- localization/i18n/fr/OrcaSlicer_fr.po | 42 +- localization/i18n/hu/OrcaSlicer_hu.po | 251 ++++-- localization/i18n/it/OrcaSlicer_it.po | 50 +- localization/i18n/ja/OrcaSlicer_ja.po | 864 ++++++++++++-------- localization/i18n/ko/OrcaSlicer_ko.po | 2 +- localization/i18n/nl/OrcaSlicer_nl.po | 260 ++++-- localization/i18n/pl/OrcaSlicer_pl.po | 3 +- localization/i18n/pt_BR/OrcaSlicer_pt_BR.po | 42 +- localization/i18n/ru/OrcaSlicer_ru.po | 42 +- localization/i18n/sv/OrcaSlicer_sv.po | 2 +- localization/i18n/tr/OrcaSlicer_tr.po | 12 +- localization/i18n/uk/OrcaSlicer_uk.po | 212 +++-- localization/i18n/zh_CN/OrcaSlicer_zh_CN.po | 264 +++--- localization/i18n/zh_TW/OrcaSlicer_zh_TW.po | 214 ++--- 20 files changed, 1863 insertions(+), 1252 deletions(-) diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index 8125385e8c..6809ea7776 100644 --- a/localization/i18n/OrcaSlicer.pot +++ b/localization/i18n/OrcaSlicer.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index 7f6cc3f5f3..2bd9428e68 100644 --- a/localization/i18n/ca/OrcaSlicer_ca.po +++ b/localization/i18n/ca/OrcaSlicer_ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: 2024-05-23 23:00+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -7685,8 +7685,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add " -"Primitive\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add Primitive" +"\"->\"Timelapse Wipe Tower\"." msgstr "" "Quan graveu timelapse sense capçal d'impressió, es recomana afegir una " "\"Torre de Purga Timelapse\" \n" @@ -11314,15 +11314,15 @@ msgstr "Velocitat màxima del ventilador a la capa" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer " -"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " -"than \"close_fan_the_first_x_layers\", in which case the fan will be running " -"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" +"\". \"full_fan_speed_layer\" will be ignored if lower than " +"\"close_fan_the_first_x_layers\", in which case the fan will be running at " +"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "La velocitat del ventilador augmentarà linealment de zero a la capa " -"\"close_fan_the_first_x_layers\" al màxim a la capa " -"\"full_fan_speed_layer\". S'ignorarà \"full_fan_speed_layer\" si és inferior " -"a \"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a " +"\"close_fan_the_first_x_layers\" al màxim a la capa \"full_fan_speed_layer" +"\". S'ignorarà \"full_fan_speed_layer\" si és inferior a " +"\"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a " "la velocitat màxima permesa a la capa \"close_fan_the_first_x_layers\" + 1." msgid "Support interface fan speed" @@ -15452,8 +15452,8 @@ msgstr "" "Vols reescriure'l?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you selected" +"\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus " @@ -16861,27 +16861,22 @@ msgstr "" #~ msgstr "HMS" #, fuzzy -#~| msgid "Unsaved Changes" #~ msgid "Actions For Unsaved Changes" #~ msgstr "Canvis no desats" #, fuzzy -#~| msgid "Reset scale" #~ msgid "Preset Value" #~ msgstr "Valor predefinit esquerre" #, fuzzy -#~| msgid "Modified G-codes" #~ msgid "Modified Value" #~ msgstr "Valor modificat" #, fuzzy -#~| msgid "User Preset" #~ msgid "Use Preset Value" #~ msgstr "Perfil d'usuari" #, fuzzy -#~| msgid "Save file as:" #~ msgid "Save Modified Value" #~ msgstr "Desa el fitxer com a:" @@ -16894,10 +16889,6 @@ msgstr "" #~ "Voleu desar aquests paràmetres canviats (valor modificat)?" #, fuzzy -#~| msgid "" -#~| "You have changed some preset settings. \n" -#~| "Would you like to keep these changed settings (new value) after " -#~| "switching preset?" #~ msgid "" #~ "\n" #~ "Would you like to keep these changed settings(modified value) after " diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index ac91c2fe8e..4d2cec4120 100644 --- a/localization/i18n/cs/OrcaSlicer_cs.po +++ b/localization/i18n/cs/OrcaSlicer_cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: 2023-09-30 15:15+0200\n" "Last-Translator: René Mošner \n" "Language-Team: \n" @@ -107,7 +107,7 @@ msgid "Support Generated" msgstr "Vygenerovat podpěry" msgid "Gizmo-Place on Face" -msgstr "" +msgstr "Gizmo-Umístit plochou na podložku" msgid "Lay on face" msgstr "Plochou na podložku" @@ -189,13 +189,13 @@ msgid "Move" msgstr "Přesunout" msgid "Gizmo-Move" -msgstr "" +msgstr "Gizmo-Posuv" msgid "Rotate" msgstr "Otočit" msgid "Gizmo-Rotate" -msgstr "" +msgstr "Gizmo-Otáčení" msgid "Optimize orientation" msgstr "Optimalizovat orientaci" @@ -207,7 +207,7 @@ msgid "Scale" msgstr "Měřítko" msgid "Gizmo-Scale" -msgstr "" +msgstr "Gizmo-Měřítko" msgid "Error: Please close all toolbar menus first" msgstr "Chyba: Nejprve prosím zavřete všechny nabídky panelu nástrojů" @@ -261,7 +261,7 @@ msgid "World coordinates" msgstr "Světové souřadnice" msgid "Object coordinates" -msgstr "" +msgstr "Souřadnice objektu" msgid "°" msgstr "°" @@ -277,16 +277,16 @@ msgid "uniform scale" msgstr "jednotné měřítko" msgid "Planar" -msgstr "" +msgstr "Rovinný" msgid "Dovetail" -msgstr "" +msgstr "Rybinový spoj" msgid "Auto" msgstr "Automaticky" msgid "Manual" -msgstr "" +msgstr "Ručně" msgid "Plug" msgstr "Čep" @@ -295,10 +295,10 @@ msgid "Dowel" msgstr "Kolík" msgid "Snap" -msgstr "" +msgstr "Zaklapávací" msgid "Prism" -msgstr "" +msgstr "Hranol" msgid "Frustum" msgstr "Středový jehlan" @@ -310,13 +310,13 @@ msgid "Hexagon" msgstr "Šestiúhelník" msgid "Keep orientation" -msgstr "" +msgstr "Zachovat orientaci" msgid "Place on cut" msgstr "Umístit řezem na podložku" msgid "Flip upside down" -msgstr "" +msgstr "Obrácení vzhůru nohama" msgid "Connectors" msgstr "Spojky" @@ -334,19 +334,19 @@ msgstr "Tvar" #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "" +msgstr "Hloubka" msgid "Groove" -msgstr "" +msgstr "Drážka" msgid "Width" msgstr "Šířka" msgid "Flap Angle" -msgstr "" +msgstr "Úhel patky" msgid "Groove Angle" -msgstr "" +msgstr "Úhel drážky" msgid "Part" msgstr "Dílů" @@ -358,21 +358,26 @@ msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" msgstr "" +"Kliknutím překlopíte rovinu řezu\n" +"Tažením myši posunete rovinu řezu" msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane\n" "Right-click a part to assign it to the other side" msgstr "" +"Kliknutím otočíte rovinu řezu\n" +"Přesunete rovinu řezu tažením myši\n" +"Kliknutím pravým tlačítkem myši na díl jej přiřadíte na druhou stranu" msgid "Move cut plane" -msgstr "" +msgstr "Přesun roviny řezu" msgid "Mode" -msgstr "" +msgstr "Režim" msgid "Change cut mode" -msgstr "" +msgstr "Změna režimu řezání" msgid "Tolerance" msgstr "Tolerance" @@ -411,22 +416,22 @@ msgid "Cut" msgstr "Řezat" msgid "Rotate cut plane" -msgstr "" +msgstr "Otáčení roviny řezu" msgid "Remove connectors" msgstr "Odstranit spojky" msgid "Bulge" -msgstr "" +msgstr "Vyboulení" msgid "Bulge proportion related to radius" -msgstr "" +msgstr "Poměr vyboulení v závislosti na poloměru" msgid "Space" msgstr "Mezerník" msgid "Space proportion related to radius" -msgstr "" +msgstr "Velikost mezery vůči poloměru" msgid "Confirm connectors" msgstr "Potvrzení spojek" @@ -435,26 +440,26 @@ msgid "Cancel" msgstr "Zrušit" msgid "Build Volume" -msgstr "" +msgstr "Maximální rozměry tisku" msgid "Flip cut plane" -msgstr "" +msgstr "Otočit řezovou rovinu" msgid "Groove change" -msgstr "" +msgstr "Změna drážky" msgid "Reset" msgstr "Výchozí" #. TRN: This is an entry in the Undo/Redo stack. The whole line will be 'Edited: (name of whatever was edited)'. msgid "Edited" -msgstr "" +msgstr "Upraveno" msgid "Cut position" -msgstr "" +msgstr "Pozice řezu" msgid "Reset cutting plane" -msgstr "" +msgstr "Obnovit řezovou rovinu" msgid "Edit connectors" msgstr "Upravit spojky" @@ -463,10 +468,10 @@ msgid "Add connectors" msgstr "Přidat spojky" msgid "Reset cut" -msgstr "" +msgstr "Resetovat řez" msgid "Reset cutting plane and remove connectors" -msgstr "" +msgstr "Reset řezné roviny a odstranění konektorů" msgid "Upper part" msgstr "Horní část" @@ -513,19 +518,19 @@ msgid "Some connectors are overlapped" msgstr "Některé spojky se překrývají" msgid "Select at least one object to keep after cutting." -msgstr "" +msgstr "Vyberte alespoň jeden objekt, který bude po řezu zachován." msgid "Cut plane is placed out of object" -msgstr "" +msgstr "Rovina řezu je umístěna mimo objekt" msgid "Cut plane with groove is invalid" -msgstr "" +msgstr "Řezová rovina s drážkou je neplatná" msgid "Connector" msgstr "Spojka" msgid "Cut by Plane" -msgstr "" +msgstr "Řez Rovinou" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" msgstr "" @@ -534,10 +539,10 @@ msgid "Repairing model object" msgstr "Oprava objektu modelu" msgid "Cut by line" -msgstr "" +msgstr "Řez podle přímky" msgid "Delete connector" -msgstr "" +msgstr "Smazat konektor" msgid "Mesh name" msgstr "Název sítě" @@ -626,13 +631,13 @@ msgid "Remove selection" msgstr "Odebrat výběr" msgid "Entering Seam painting" -msgstr "" +msgstr "Vstup do módu Malování pozice švu" msgid "Leaving Seam painting" -msgstr "" +msgstr "Opuštění módu Malování pozice švu" msgid "Paint-on seam editing" -msgstr "" +msgstr "Editace pozice švu" #. TRN - Input label. Be short as possible #. Select look of letter shape @@ -675,50 +680,50 @@ msgstr "Tvar textu" #. TRN - Title in Undo/Redo stack after rotate with text around emboss axe msgid "Text rotate" -msgstr "" +msgstr "Otáčení textu" #. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface msgid "Text move" -msgstr "" +msgstr "Přesun textu" msgid "Set Mirror" -msgstr "" +msgstr "Zrcadlení" msgid "Embossed text" -msgstr "" +msgstr "Embossovaný text" msgid "Enter emboss gizmo" -msgstr "" +msgstr "Vstup do Ebosování textu" msgid "Leave emboss gizmo" -msgstr "" +msgstr "Opuštění Ebosování textu" msgid "Embossing actions" -msgstr "" +msgstr "Emobosovací akce" msgid "Emboss" -msgstr "" +msgstr "Embosování" msgid "NORMAL" -msgstr "" +msgstr "NORMÁLNÍ" msgid "SMALL" -msgstr "" +msgstr "MALÝ" msgid "ITALIC" -msgstr "" +msgstr "KURZIVA" msgid "SWISS" -msgstr "" +msgstr "SWISS" msgid "MODERN" -msgstr "" +msgstr "MODERNÍ" msgid "First font" -msgstr "" +msgstr "První písmo" msgid "Default font" -msgstr "" +msgstr "Výchozí písmo" msgid "Advanced" msgstr "Pokročilé" @@ -726,143 +731,144 @@ msgstr "Pokročilé" msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." -msgstr "" +msgstr "Text nelze napsat zvoleným typem písma. Zkuste vybrat jiné písmo." msgid "Embossed text cannot contain only white spaces." -msgstr "" +msgstr "Reliéfní text nesmí obsahovat pouze bílé znaky." msgid "Text contains character glyph (represented by '?') unknown by font." msgstr "" +"Text obsahuje znakový glyf (reprezentovaný znakem \"?\"), který písmo nezná." msgid "Text input doesn't show font skew." -msgstr "" +msgstr "Při zadávání textu se nezobrazuje zkosení písma." msgid "Text input doesn't show font boldness." -msgstr "" +msgstr "Při zadávání textu se nezobrazuje tučné formátování písma." msgid "Text input doesn't show gap between lines." -msgstr "" +msgstr "Při zadávání textu se nezobrazuje mezera mezi řádky." msgid "Too tall, diminished font height inside text input." -msgstr "" +msgstr "Příliš vysoká, zmenšená výška písma uvnitř textového vstupu." msgid "Too small, enlarged font height inside text input." -msgstr "" +msgstr "Příliš malé, zvěte výšku písma uvnitř textového vstupu." msgid "Text doesn't show current horizontal alignment." -msgstr "" +msgstr "Text nezobrazuje aktuální vodorovné zarovnání." msgid "Revert font changes." -msgstr "" +msgstr "Vrátit změny písma." #, boost-format msgid "Font \"%1%\" can't be selected." -msgstr "" +msgstr "Písmo \"%1%\" nelze vybrat." msgid "Operation" -msgstr "" +msgstr "Operace" msgid "Join" -msgstr "" +msgstr "Přidat" msgid "Click to change text into object part." -msgstr "" +msgstr "Kliknutím změníte text na část objektu." msgid "You can't change a type of the last solid part of the object." -msgstr "" +msgstr "Nelze změnit typ poslední plné části objektu." msgctxt "EmbossOperation" msgid "Cut" msgstr "Řezat" msgid "Click to change part type into negative volume." -msgstr "" +msgstr "Kliknutím změníte typ části modelu na negativní objem." msgid "Modifier" msgstr "Modifikátor" msgid "Click to change part type into modifier." -msgstr "" +msgstr "Kliknutím změníte typ části modelu na modifikátor." msgid "Change Text Type" -msgstr "" +msgstr "Změnit typ operace s textem" #, boost-format msgid "Rename style(%1%) for embossing text" -msgstr "" +msgstr "Přejmenování stylu(%1%) pro reliéfní text" msgid "Name can't be empty." -msgstr "" +msgstr "Název nesmí být prázdný." msgid "Name has to be unique." -msgstr "" +msgstr "Jméno musí být unikátní." msgid "OK" msgstr "OK" msgid "Rename style" -msgstr "" +msgstr "Přejmenovat styl" msgid "Rename current style." -msgstr "" +msgstr "Přejmenování aktuálního stylu." msgid "Can't rename temporary style." -msgstr "" +msgstr "Nelze přejmenovat dočasný styl." msgid "First Add style to list." -msgstr "" +msgstr "Nejprve do seznamu přidejte styl." #, boost-format msgid "Save %1% style" -msgstr "" +msgstr "Uložit styl %1%" msgid "No changes to save." -msgstr "" +msgstr "Žádné změny k uložení." msgid "New name of style" -msgstr "" +msgstr "Nový název stylu" msgid "Save as new style" -msgstr "" +msgstr "Uložit jako nový styl" msgid "Only valid font can be added to style." -msgstr "" +msgstr "Do stylu lze přidat pouze platné písmo." msgid "Add style to my list." -msgstr "" +msgstr "Přidat styl na můj seznam." msgid "Save as new style." -msgstr "" +msgstr "Uložit jako nový styl" msgid "Remove style" -msgstr "" +msgstr "Odstranit styl" msgid "Can't remove the last existing style." -msgstr "" +msgstr "Nelze odstranit poslední existující styl." #, boost-format msgid "Are you sure you want to permanently remove the \"%1%\" style?" -msgstr "" +msgstr "Opravdu chcete trvale odstranit styl \"%1%\"?" #, boost-format msgid "Delete \"%1%\" style." -msgstr "" +msgstr "Odstranění stylu \"%1%\"." #, boost-format msgid "Can't delete \"%1%\". It is last style." -msgstr "" +msgstr "Styl \"%1%\" nelze odstranit, protože je to poslední styl." #, boost-format msgid "Can't delete temporary style \"%1%\"." -msgstr "" +msgstr "Nelze odstranit dočasný styl \"%1%\"." #, boost-format msgid "Modified style \"%1%\"" -msgstr "" +msgstr "Upravený styl \"%1%\"" #, boost-format msgid "Current style is \"%1%\"" -msgstr "" +msgstr "Aktuální styl je \"%1%\"" #, boost-format msgid "" @@ -870,48 +876,53 @@ msgid "" "\n" "Would you like to continue anyway?" msgstr "" +"Změna stylu na \"%1%\" zruší aktuální úpravy stylu.\n" +"\n" +"Chcete přesto pokračovat?" msgid "Not valid style." -msgstr "" +msgstr "Neplatný styl." #, boost-format msgid "Style \"%1%\" can't be used and will be removed from a list." -msgstr "" +msgstr "Styl \"%1%\" nelze použít a bude ze seznamu odstraněn." msgid "Unset italic" -msgstr "" +msgstr "Odnastavení kurzívy" msgid "Set italic" -msgstr "" +msgstr "Nastavení kurzívy" msgid "Unset bold" -msgstr "" +msgstr "Odstranění tučného písma" msgid "Set bold" -msgstr "" +msgstr "Nastavení tučného písma" msgid "Revert text size." -msgstr "" +msgstr "Vrátit velikost textu." msgid "Revert embossed depth." -msgstr "" +msgstr "Obnovit původní hloubku." msgid "" "Advanced options cannot be changed for the selected font.\n" "Select another font." msgstr "" +"Pro vybrané písmo nelze měnit pokročilé možnosti nastavení.\n" +"Vyberte jiné písmo." msgid "Revert using of model surface." -msgstr "" +msgstr "Vrátit použití povrchu modelu." msgid "Revert Transformation per glyph." -msgstr "" +msgstr "Vrátit transformaci po znacích." msgid "Set global orientation for whole text." -msgstr "" +msgstr "Nastavení globální orientace pro celý text." msgid "Set position and orientation per glyph." -msgstr "" +msgstr "Nastavení polohy a orientace pro každý znak zvlášť." msgctxt "Alignment" msgid "Left" @@ -931,84 +942,86 @@ msgstr "Horní" msgctxt "Alignment" msgid "Middle" -msgstr "" +msgstr "Doprostřed" msgctxt "Alignment" msgid "Bottom" msgstr "Spodní" msgid "Revert alignment." -msgstr "" +msgstr "Vrátit zarovnání." #. TRN EmbossGizmo: font units msgid "points" -msgstr "" +msgstr "body" msgid "Revert gap between characters" -msgstr "" +msgstr "Vrátit mezeru mezi znaky" msgid "Distance between characters" -msgstr "" +msgstr "Vzdálenost mezi znaky" msgid "Revert gap between lines" -msgstr "" +msgstr "Vrátit mezeru mezi extruzemi" msgid "Distance between lines" -msgstr "" +msgstr "Vzdálenost mezi extruzemi" msgid "Undo boldness" -msgstr "" +msgstr "Akce zpět Tučné písmo" msgid "Tiny / Wide glyphs" -msgstr "" +msgstr "Drobné / široké glyfy" msgid "Undo letter's skew" -msgstr "" +msgstr "Akce zpět Zkosení písma" msgid "Italic strength ratio" -msgstr "" +msgstr "Míra zkosení kurzívy" msgid "Undo translation" -msgstr "" +msgstr "Akce zpět Posun" msgid "Distance of the center of the text to the model surface." -msgstr "" +msgstr "Vzdálenost středu textu od povrchu modelu." msgid "Undo rotation" -msgstr "" +msgstr "Akce zpět Rotace" msgid "Rotate text Clock-wise." -msgstr "" +msgstr "Otáčení textu ve směru hodinových ručiček." msgid "Unlock the text's rotation when moving text along the object's surface." -msgstr "" +msgstr "Odemknout natočení textu při pohybu textu po povrchu objektu." msgid "Lock the text's rotation when moving text along the object's surface." -msgstr "" +msgstr "Uzamknout natočení textu při pohybu textu po povrchu objektu." msgid "Select from True Type Collection." -msgstr "" +msgstr "Vyberte z kolekce True Type." msgid "Set text to face camera" -msgstr "" +msgstr "Natočit text kolmo ke kameře" msgid "Orient the text towards the camera." -msgstr "" +msgstr "Orientovat text směrem ke kameře." #, boost-format msgid "" "Can't load exactly same font(\"%1%\"). Aplication selected a similar " "one(\"%2%\"). You have to specify font for enable edit text." msgstr "" +"Nelze načíst přesně stejné písmo(\"%1%\"). Aplikace vybrala podobné " +"písmo(\"%2%\"). Musíte zadat písmo pro povolení editace textu." msgid "No symbol" -msgstr "" +msgstr "Žádný symbol" msgid "Loading" msgstr "Načítání" msgid "In queue" -msgstr "" +msgstr "Ve frontě" #. TRN - Input label. Be short as possible #. Height of one text line - Font Ascent @@ -1019,35 +1032,35 @@ msgstr "Výška" #. Copy surface of model on surface of the embossed text #. TRN - Input label. Be short as possible msgid "Use surface" -msgstr "" +msgstr "Použít povrch" #. TRN - Input label. Be short as possible #. Option to change projection on curved surface #. for each character(glyph) in text separately msgid "Per glyph" -msgstr "" +msgstr "Na znak" #. TRN - Input label. Be short as possible #. Align Top|Middle|Bottom and Left|Center|Right msgid "Alignment" -msgstr "" +msgstr "Zarovnání" #. TRN - Input label. Be short as possible msgid "Char gap" -msgstr "" +msgstr "Mezera mezi znaky" #. TRN - Input label. Be short as possible msgid "Line gap" -msgstr "" +msgstr "Řádkování" #. TRN - Input label. Be short as possible msgid "Boldness" -msgstr "" +msgstr "Tučnost" #. TRN - Input label. Be short as possible #. Like Font italic msgid "Skew ratio" -msgstr "" +msgstr "Míra zkosení" #. TRN - Input label. Be short as possible #. Distance from model surface to be able @@ -1055,247 +1068,250 @@ msgstr "" #. move text as modifier fully out of not flat surface #. TRN - Input label. Be short as possible msgid "From surface" -msgstr "" +msgstr "Z povrchu" #. TRN - Input label. Be short as possible #. Keep vector from bottom to top of text aligned with printer Y axis msgid "Keep up" -msgstr "" +msgstr "Držet směr" #. TRN - Input label. Be short as possible. #. Some Font file contain multiple fonts inside and #. this is numerical selector of font inside font collections msgid "Collection" -msgstr "" +msgstr "Kolekce" #. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe msgid "SVG rotate" -msgstr "" +msgstr "Otáčení SVG" #. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface msgid "SVG move" -msgstr "" +msgstr "Přesun SVG" msgid "Enter SVG gizmo" -msgstr "" +msgstr "Vstup do SVG nástroje" msgid "Leave SVG gizmo" -msgstr "" +msgstr "Opuštění SVG nástroje" msgid "SVG actions" -msgstr "" +msgstr "SVG akce" msgid "SVG" -msgstr "" +msgstr "SVG" #, boost-format msgid "Opacity (%1%)" -msgstr "" +msgstr "Průhlednost (%1%)" #, boost-format msgid "Color gradient (%1%)" -msgstr "" +msgstr "Barevný gradient (%1%)" msgid "Undefined fill type" -msgstr "" +msgstr "Nedefinovaný typ výplně" msgid "Linear gradient" -msgstr "" +msgstr "Lineární gradient" msgid "Radial gradient" -msgstr "" +msgstr "Radiální gradient" msgid "Open filled path" -msgstr "" +msgstr "Otevřená vyplněná cesta" msgid "Undefined stroke type" -msgstr "" +msgstr "Nedefinovaný typ obrysu" msgid "Path can't be healed from selfintersection and multiple points." -msgstr "" +msgstr "Cestu nelze opravit z křížení sama sebe a více bodů." msgid "" "Final shape constains selfintersection or multiple points with same " "coordinate." msgstr "" +"Konečný tvar obsahuje vlastní průsečík nebo více bodů se stejnou souřadnicí." #, boost-format msgid "Shape is marked as invisible (%1%)." -msgstr "" +msgstr "Tvar je označen jako neviditelný (%1%)." #. TRN: The first placeholder is shape identifier, the second one is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." -msgstr "" +msgstr "Výplň tvaru (%1%) obsahuje nepodporované: %2%." #, boost-format msgid "Stroke of shape (%1%) is too thin (minimal width is %2% mm)." -msgstr "" +msgstr "Obrys tvaru (%1%) je příliš tenký (minimální šířka je %2% mm)." #, boost-format msgid "Stroke of shape (%1%) contains unsupported: %2%." -msgstr "" +msgstr "Obrys tvaru (%1%) obsahuje nepodporované: %2%." msgid "Face the camera" -msgstr "" +msgstr "Kolmo ke kameře" #. TRN - Preview of filename after clear local filepath. msgid "Unknown filename" -msgstr "" +msgstr "Neznámý název souboru" #, boost-format msgid "SVG file path is \"%1%\"" -msgstr "" +msgstr "Cesta k SVG souboru je \"%1%\"." msgid "Reload SVG file from disk." -msgstr "" +msgstr "Znovu načíst SVG z disku." msgid "Change file" -msgstr "" +msgstr "Změnit soubor" msgid "Change to another .svg file" -msgstr "" +msgstr "Změnit na jiný .svg soubor" msgid "Forget the file path" -msgstr "" +msgstr "Zapomenout cestu k souboru" msgid "" "Do NOT save local path to 3MF file.\n" "Also disables 'reload from disk' option." msgstr "" +"Neukládat místní cestu k 3MF souboru.\n" +"Také znemožní funkci \"Znovu načíst z disku\"." #. TRN: An menu option to convert the SVG into an unmodifiable model part. msgid "Bake" -msgstr "" +msgstr "Zapéct" #. TRN: Tooltip for the menu item. msgid "Bake into model as uneditable part" -msgstr "" +msgstr "Zapéct do modelu jako neupravitelnou část" msgid "Save as" -msgstr "" +msgstr "Uložit jako" msgid "Save SVG file" -msgstr "" +msgstr "Uložit SVG soubor" msgid "Save as '.svg' file" -msgstr "" +msgstr "Uložit jako soubor '.svg'" msgid "Size in emboss direction." -msgstr "" +msgstr "Velikost ve směru embosování." #. TRN: The placeholder contains a number. #, boost-format msgid "Scale also changes amount of curve samples (%1%)" -msgstr "" +msgstr "Změna velikosti současně mění jemnost diskretizace oblouků (%1%)" msgid "Width of SVG." -msgstr "" +msgstr "Šířka SVG." msgid "Height of SVG." -msgstr "" +msgstr "Výška SVG." msgid "Lock/unlock the aspect ratio of the SVG." -msgstr "" +msgstr "Zamknout/odemknout poměr stran SVG." msgid "Reset scale" -msgstr "" +msgstr "Výchozí měřítko" msgid "Distance of the center of the SVG to the model surface." -msgstr "" +msgstr "Vzdálenost mezi středem SVG a povrchem modelu." msgid "Reset distance" -msgstr "" +msgstr "Obnovit vzdálenost" msgid "Reset rotation" -msgstr "" +msgstr "Výchozí natočení" msgid "Lock/unlock rotation angle when dragging above the surface." -msgstr "" +msgstr "Zamknutí/odemknutí úhlu natočení při přetahování nad povrchem." msgid "Mirror vertically" -msgstr "" +msgstr "Zrcadlit vertikálně" msgid "Mirror horizontally" -msgstr "" +msgstr "Zrcadlit horizontálně" #. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else). msgid "Change SVG Type" -msgstr "" +msgstr "Změna typu SVG" #. TRN - Input label. Be short as possible msgid "Mirror" msgstr "Zrcadlit" msgid "Choose SVG file for emboss:" -msgstr "" +msgstr "Vyberte SVG soubor pro embosování:" #, boost-format msgid "File does NOT exist (%1%)." -msgstr "" +msgstr "Soubor neexistuje (%1%)." #, boost-format msgid "Filename has to end with \".svg\" but you selected %1%" -msgstr "" +msgstr "Název souboru musí končit \".svg\", ale vy jste vybrali %1%." #, boost-format msgid "Nano SVG parser can't load from file (%1%)." -msgstr "" +msgstr "Nano SVG parser nemůže číst ze souboru (%1%)." #, boost-format msgid "SVG file does NOT contain a single path to be embossed (%1%)." -msgstr "" +msgstr "SVG soubor neobsahuje jedinou cestu, kterou lze embosovat (%1%)." msgid "Vertex" -msgstr "" +msgstr "Vertex" msgid "Edge" -msgstr "" +msgstr "Hrana" msgid "Plane" -msgstr "" +msgstr "Rovina" msgid "Point on edge" -msgstr "" +msgstr "Bod na hraně" msgid "Point on circle" -msgstr "" +msgstr "Bod na kružnici" msgid "Point on plane" -msgstr "" +msgstr "Bod v rovině" msgid "Center of edge" -msgstr "" +msgstr "Střed hrany" msgid "Center of circle" -msgstr "" +msgstr "Střed kruhu" msgid "ShiftLeft mouse button" msgstr "" msgid "Select feature" -msgstr "" +msgstr "Vyberat objekt" msgid "Select point" -msgstr "" +msgstr "Zvolte bod" msgid "Delete" msgstr "Smazat" msgid "Restart selection" -msgstr "" +msgstr "Zrušit výběr" msgid "Esc" msgstr "Esc" msgid "Unselect" -msgstr "" +msgstr "Zrušení výběru" msgid "Measure" -msgstr "" +msgstr "Měření" msgid "Edit to scale" -msgstr "" +msgstr "Změna rozměru" msgctxt "Verb" msgid "Scale" @@ -1311,22 +1327,22 @@ msgid "Length" msgstr "Vzdálenost" msgid "Selection" -msgstr "" +msgstr "Výběr" msgid "Copy to clipboard" msgstr "Kopírovat do schránky" msgid "Perpendicular distance" -msgstr "" +msgstr "Kolmá vzdálenost" msgid "Distance" -msgstr "" +msgstr "Vzdálenost" msgid "Direct distance" -msgstr "" +msgstr "Přímá vzdálenost" msgid "Distance XYZ" -msgstr "" +msgstr "Vzdálenost XYZ" msgid "Ctrl+" msgstr "Ctrl+" @@ -1478,7 +1494,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Vyberte jeden nebo více souborů (3mf/step/stl/svg/obj/amf):" msgid "Choose ZIP file" -msgstr "" +msgstr "Vyberte ZIP soubor" msgid "Choose one file (gcode/3mf):" msgstr "Vyberte jeden soubor (gcode/3mf):" @@ -1552,6 +1568,8 @@ msgid "" "Could not start URL download. Destination folder is not set. Please choose " "destination folder in Configuration Wizard." msgstr "" +"Nelze spustit stahování z URL. Cílová složka není nastavena. Zvolte cílovou " +"složku v průvodci nastavení." msgid "Import File" msgstr "Importovat soubor" @@ -1642,22 +1660,22 @@ msgid "Add support enforcer" msgstr "Přidat vynucení podpěr" msgid "Add text" -msgstr "" +msgstr "Přidat text" msgid "Add negative text" -msgstr "" +msgstr "Přidat text jako negativní objem" msgid "Add text modifier" -msgstr "" +msgstr "Přidat textový modifikátor" msgid "Add SVG part" -msgstr "" +msgstr "Přidat SVG část" msgid "Add negative SVG" -msgstr "" +msgstr "Přidat negativní SVG" msgid "Add SVG modifier" -msgstr "" +msgstr "Přidání SVG modifikátoru" msgid "Select settings" msgstr "Vybrat nastavení" @@ -1719,7 +1737,7 @@ msgid "" msgstr "" msgid "Text" -msgstr "" +msgstr "Text" msgid "Height range Modifier" msgstr "Modifikátor výškového rozsahu" @@ -1852,16 +1870,16 @@ msgid "Mirror object" msgstr "Zrcadlit objekt" msgid "Edit text" -msgstr "" +msgstr "Upravit text" msgid "Ability to change text, font, size, ..." -msgstr "" +msgstr "Možnost měnit text, písmo, velikost, ..." msgid "Edit SVG" -msgstr "" +msgstr "Upravit SVG" msgid "Change SVG source file, projection, size, ..." -msgstr "" +msgstr "Změna zdrojového souboru SVG, projekce, velikosti, ..." msgid "Invalidate cut info" msgstr "Zneplatnění informací o řezu" @@ -2395,7 +2413,7 @@ msgid "AMS not connected" msgstr "AMS není připojen" msgid "Load" -msgstr "" +msgstr "Načíst" msgid "Unload" msgstr "Vysunout" @@ -2546,13 +2564,13 @@ msgid "Bed filling done." msgstr "Vyplnění podložky je dokončené." msgid "Searching for optimal orientation" -msgstr "" +msgstr "Hledání optimální orientace" msgid "Orientation search canceled." -msgstr "" +msgstr "Hledání optimální orientace zrušeno." msgid "Orientation found." -msgstr "" +msgstr "Orientace nalezena." msgid "Logging in" msgstr "Přihlášení" @@ -3149,7 +3167,7 @@ msgid "Successfully executed post-processing script" msgstr "" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "Během exportu G-codu došlo k neznámé chybě." #, boost-format msgid "" @@ -3157,6 +3175,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" 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?\n" +"Chybová hláška: %1%" #, boost-format msgid "" @@ -3164,28 +3185,37 @@ msgid "" "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." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"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." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"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." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"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." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "G-code byl exportován do %1%" msgid "Unknown error when export G-code." msgstr "Neznámá chyba při exportu G-kódu." @@ -3395,7 +3425,7 @@ msgid "" msgstr "" msgid "Wait" -msgstr "" +msgstr "Zaneprázdněn" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" @@ -3869,19 +3899,19 @@ msgstr "výchozí" #, boost-format msgid "Edit Custom G-code (%1%)" -msgstr "" +msgstr "Upravit Vlastní G-code (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" -msgstr "" +msgstr "Vestavěné zástupné symboly (dvojklikem na položku přidáte do G-code)" msgid "Search gcode placeholders" msgstr "" msgid "Add selected placeholder to G-code" -msgstr "" +msgstr "Přidat vybraný zástupný symbol do G-code" msgid "Select placeholder" -msgstr "" +msgstr "Vyberte zástupný symbol" msgid "[Global] Slicing State" msgstr "" @@ -3902,17 +3932,17 @@ msgid "Objects Info" msgstr "" msgid "Dimensions" -msgstr "" +msgstr "Rozměry" msgid "Temperatures" -msgstr "" +msgstr "Teploty" msgid "Timestamps" -msgstr "" +msgstr "Časová razítka" #, boost-format msgid "Specific for %1%" -msgstr "" +msgstr "Specifické pro %1%" msgid "Presets" msgstr "Předvolby" @@ -3924,7 +3954,7 @@ msgid "Filament settings" msgstr "Nastavení filamentu" msgid "SLA Materials settings" -msgstr "" +msgstr "Nastavení SLA materiálů" msgid "Printer settings" msgstr "Nastavení tiskárny" @@ -5883,10 +5913,10 @@ msgstr "" "nedokonalosti. Doporučuje se přepnout na hladký režim." msgid "Expand sidebar" -msgstr "" +msgstr "Rozbalit postranní panel" msgid "Collapse sidebar" -msgstr "" +msgstr "Sbalit postranní panel" #, c-format, boost-format msgid "Loading file: %s" @@ -6160,7 +6190,7 @@ msgstr "" "Import do Orca Sliceru selhal. Stáhněte soubor a proveďte jeho ruční import." msgid "Import SLA archive" -msgstr "" +msgstr "Importovat SLA archiv" msgid "The selected file" msgstr "Vybraný soubor" @@ -6174,16 +6204,18 @@ msgstr "Při načítání souboru G-kód došlo k chybě" #. TRN %1% is archive path #, boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "Načítání ZIP archivu z %1% se nezdařilo." #. TRN: First argument = path to file, second argument = error description #, boost-format msgid "Failed to unzip file to %1%: %2%" -msgstr "" +msgstr "Nepodařilo se rozbalit soubor do %1%: %2%" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." msgstr "" +"Nepodařilo se najít rozbalený soubor na cestě %1%. Rozbalení souboru se " +"nezdařilo." msgid "Drop project file" msgstr "Zrušit soubor projektu" @@ -6270,9 +6302,12 @@ msgid "" "3MF file?\n" "If you hit 'NO', all SVGs in the project will not be editable any more." msgstr "" +"Jste si jisti, že chcete do souboru 3MF uložit původní SVG s lokální cestou " +"k souboru?\n" +"Pokud stisknete \"NE\", všechny SVG v projektu již nebude možné upravovat." msgid "Private protection" -msgstr "" +msgstr "Ochrana soukromí" msgid "Is the printer ready? Is the print sheet in place, empty and clean?" msgstr "Je tiskárna připravená k tisku? Je podložka prázdná a čistá?" @@ -6444,6 +6479,9 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"Na OSX je ve výchozím nastavení vždy spuštěna pouze jedna instance aplikace. " +"Je však povoleno spouštět více instancí stejné aplikace z příkazového řádku. " +"V takovém případě toto nastavení povolí pouze jednu instanci." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6452,7 +6490,7 @@ msgid "" msgstr "" msgid "Home" -msgstr "" +msgstr "Home" msgid "Default Page" msgstr "" @@ -6495,7 +6533,7 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" msgid "Show splash screen" -msgstr "" +msgstr "Zobrazovat úvodní obrazovku" msgid "Show the splash screen during startup." msgstr "" @@ -6536,7 +6574,7 @@ msgid "" msgstr "" msgid "Network" -msgstr "" +msgstr "Síť" msgid "Auto sync user presets(Printer/Filament/Process)" msgstr "" @@ -6769,7 +6807,7 @@ msgid "The selected preset is null!" msgstr "Vybrané přednastavení je nula!" msgid "End" -msgstr "" +msgstr "Konec" msgid "Customize" msgstr "Přizpůsobit" @@ -6914,7 +6952,7 @@ msgid "(LAN)" msgstr "(LAN)" msgid "Search" -msgstr "" +msgstr "Vyhledávání" msgid "My Device" msgstr "Moje zařízení" @@ -7408,7 +7446,7 @@ msgid "Adjust" msgstr "" msgid "Ignore" -msgstr "" +msgstr "Ignorovat" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7966,9 +8004,12 @@ msgid "" "Note: New modified presets will be selected in settings tabs after close " "this dialog." msgstr "" +"Přeneste vybrané možnosti z levého přednastavení do pravého.\n" +"Poznámka: Po zavření tohoto dialogu budou na kartách nastavení vybrány nové " +"upravené předvolby." msgid "Transfer values from left to right" -msgstr "" +msgstr "Přenést hodnoty zleva doprava" msgid "" "If enabled, this dialog can be used for transfer selected values from left " @@ -8326,13 +8367,13 @@ msgid "Gizmo FDM paint-on seam" msgstr "Gizmo FDM malování pozice švu" msgid "Gizmo Text emboss / engrave" -msgstr "" +msgstr "Gizmo Text emboss / gravírování" msgid "Zoom in" -msgstr "" +msgstr "Přiblížit" msgid "Zoom out" -msgstr "" +msgstr "Oddálit" msgid "Switch between Prepare/Preview" msgstr "Přepnout mezi Přípravou/Náhledem" @@ -8912,6 +8953,8 @@ 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)." msgid "" "Ooze prevention is currently not supported with the prime tower enabled." @@ -9383,7 +9426,7 @@ msgid "" msgstr "" msgid "Everywhere" -msgstr "" +msgstr "Všude" msgid "Top and bottom surfaces" msgstr "" @@ -9875,7 +9918,7 @@ msgid "" msgstr "" msgid "Disabled" -msgstr "" +msgstr "Zakázáno" msgid "Limited filtering" msgstr "" @@ -11132,13 +11175,13 @@ msgstr "" "rozpustným podpůrným materiálem" msgid "Maximum width of a segmented region" -msgstr "" +msgstr "Maximální šířka segmentované oblasti" msgid "Maximum width of a segmented region. Zero disables this feature." -msgstr "" +msgstr "Maximální šířka segmentované oblasti. Nula tuto funkci vypne." msgid "Interlocking depth of a segmented region" -msgstr "" +msgstr "Hloubka propojení segmentované oblasti" msgid "Interlocking depth of a segmented region. Zero disables this feature." msgstr "" @@ -12113,7 +12156,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Kolik vrstev Obrysu. Obvykle pouze jedna vrstva" msgid "Draft shield" -msgstr "" +msgstr "Ochranný štít" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12130,10 +12173,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "Omezeno" msgid "Enabled" -msgstr "" +msgstr "Povoleno" msgid "Skirt loops" msgstr "Obrysové smyčky" @@ -12474,7 +12517,7 @@ msgid "Number of bottom interface layers" msgstr "" msgid "Same as top" -msgstr "" +msgstr "Stejné jako vrchní" msgid "Top interface spacing" msgstr "Horní rozestup" @@ -13274,91 +13317,104 @@ msgid "Load custom gcode from json" msgstr "Načíst vlastní G-kód z JSON" msgid "Current z-hop" -msgstr "" +msgstr "Aktuální z-hop" msgid "Contains z-hop present at the beginning of the custom G-code block." -msgstr "" +msgstr "Obsahuje z-hop na začátku vlastního bloku G-code." msgid "" "Position of the extruder at the beginning of the custom G-code block. If the " "custom G-code travels somewhere else, it should write to this variable so " "PrusaSlicer knows where it travels from when it gets control back." msgstr "" +"Poloha extruderu na začátku vlastního bloku G-code. Pokud vlastní G-code " +"vytváří pohyb, měl by pohyb zapsat do této proměnné, aby PrusaSlicer věděl, " +"odkud se pohybuje, až získá zpět kontrolu." msgid "" "Retraction state at the beginning of the custom G-code block. If the custom " "G-code moves the extruder axis, it should write to this variable so " "PrusaSlicer deretracts correctly when it gets control back." msgstr "" +"Stav retrakce na začátku vlastního G-code. Pokud vlastní G-code pohybuje " +"osou extruderu, měl by do této proměnné zapisovat, aby PrusaSlicer správně " +"zrušil deretrakce, když mu bude znovu předáno řízení." msgid "Extra deretraction" -msgstr "" +msgstr "Extra deretrakce" msgid "Currently planned extra extruder priming after deretraction." -msgstr "" +msgstr "Současně naplánované extra čištění extruderu po deretrakci." msgid "Current extruder" -msgstr "" +msgstr "Aktuální extruder" msgid "Zero-based index of currently used extruder." -msgstr "" +msgstr "Index aktuálně používaného extrudéru (počítáno do nuly)." msgid "Current object index" -msgstr "" +msgstr "Aktuální index objektu" msgid "" "Specific for sequential printing. Zero-based index of currently printed " "object." msgstr "" +"Specifické pro sekvenční tisk. Index aktuálně tištěného objektu (počítáno do " +"nuly)." msgid "Has wipe tower" -msgstr "" +msgstr "Má čistící věž" msgid "Whether or not wipe tower is being generated in the print." -msgstr "" +msgstr "Zda se v tisku generuje čistící věž." msgid "Initial extruder" -msgstr "" +msgstr "Počáteční extruder" msgid "" "Zero-based index of the first extruder used in the print. Same as " "initial_tool." msgstr "" +"Index prvního extruderu použitého při tisku (počítáno do nuly). Stejně jako " +"initial_tool." msgid "Initial tool" -msgstr "" +msgstr "Počáteční nástroj" msgid "" "Zero-based index of the first extruder used in the print. Same as " "initial_extruder." msgstr "" +"Index prvního extruderu použitého při tisku (počítáno do nuly). Stejně jako " +"initial_extruder." msgid "Is extruder used?" -msgstr "" +msgstr "Je extruder použitý?" msgid "Vector of bools stating whether a given extruder is used in the print." msgstr "" msgid "Volume per extruder" -msgstr "" +msgstr "Objem pro každý extruder" msgid "Total filament volume extruded per extruder during the entire print." msgstr "" +"Celkový objem filamentu vytlačeného daným extruderem během celého tisku." msgid "Total toolchanges" msgstr "" msgid "Number of toolchanges during the print." -msgstr "" +msgstr "Počet výměn nástrojů během tisku." msgid "Total volume" -msgstr "" +msgstr "Celkový objem" msgid "Total volume of filament used during the entire print." -msgstr "" +msgstr "Celkový objem filamentu použitý během celého tisku." msgid "Weight per extruder" -msgstr "" +msgstr "Hmotnost pro každý extruder" msgid "" "Weight per extruder extruded during the entire print. Calculated from " @@ -13366,7 +13422,7 @@ msgid "" msgstr "" msgid "Total weight" -msgstr "" +msgstr "Celková hmotnost" msgid "" "Total weight of the print. Calculated from filament_density value in " @@ -13374,25 +13430,25 @@ msgid "" msgstr "" msgid "Total layer count" -msgstr "" +msgstr "Celkový počet vrstev" msgid "Number of layers in the entire print." -msgstr "" +msgstr "Počet vrstev v celém tisku." msgid "Number of objects" -msgstr "" +msgstr "Počet objektů" msgid "Total number of objects in the print." -msgstr "" +msgstr "Celkový počet objektů v tisku." msgid "Number of instances" -msgstr "" +msgstr "Počet instancí" msgid "Total number of object instances in the print, summed over all objects." -msgstr "" +msgstr "Celkový počet instancí objektu v tisku, sečtený pro všechny objekty." msgid "Scale per object" -msgstr "" +msgstr "Měřítko pro každý objekt" msgid "" "Contains a string with the information about what scaling was applied to the " @@ -13402,22 +13458,23 @@ msgid "" msgstr "" msgid "Input filename without extension" -msgstr "" +msgstr "Název vstupního souboru bez přípony" msgid "Source filename of the first object, without extension." -msgstr "" +msgstr "Název zdrojového souboru prvního objektu bez přípony." msgid "" "The vector has two elements: x and y coordinate of the point. Values in mm." -msgstr "" +msgstr "Vektor má dva prvky: souřadnice x a y bodu. Hodnoty v mm." msgid "" "The vector has two elements: x and y dimension of the bounding box. Values " "in mm." msgstr "" +"Vektor má dva prvky: rozměr x a y ohraničujícího rámečku. Hodnoty v mm." msgid "First layer convex hull" -msgstr "" +msgstr "Konvexní obal první vrstvy" msgid "" "Vector of points of the first layer convex hull. Each element has the " @@ -13425,66 +13482,68 @@ msgid "" msgstr "" msgid "Bottom-left corner of first layer bounding box" -msgstr "" +msgstr "Levý dolní roh ohraničujícího rámečku v první vrstvě" msgid "Top-right corner of first layer bounding box" -msgstr "" +msgstr "Pravý horní roh ohraničujícího rámečku v první vrstvě" msgid "Size of the first layer bounding box" -msgstr "" +msgstr "Velikost ohraničujícího rámečku v první vrstvě" msgid "Bottom-left corner of print bed bounding box" -msgstr "" +msgstr "Levý dolní roh ohraničujícího rámečku tiskové podložky" msgid "Top-right corner of print bed bounding box" -msgstr "" +msgstr "Pravý horní roh ohraničujícího rámečku tiskové podložky" msgid "Size of the print bed bounding box" -msgstr "" +msgstr "Velikost ohraničujícího rámečku tiskové podložky" msgid "Timestamp" -msgstr "" +msgstr "Časové razítko" msgid "String containing current time in yyyyMMdd-hhmmss format." -msgstr "" +msgstr "Řetězec obsahující aktuální čas ve formátu rrrrMMdd-hhmmss." msgid "Day" -msgstr "" +msgstr "Den" msgid "Hour" -msgstr "" +msgstr "Hodina" msgid "Minute" -msgstr "" +msgstr "Minuta" msgid "Print preset name" -msgstr "" +msgstr "Název přednastavení tisku" msgid "Name of the print preset used for slicing." -msgstr "" +msgstr "Název přednastavení tisku použitého pro slicování." msgid "Filament preset name" -msgstr "" +msgstr "Název přednastavení filamentu" msgid "" "Names of the filament presets used for slicing. The variable is a vector " "containing one name for each extruder." msgstr "" +"Názvy přednastavení filamentu používaných pro slicování. Proměnná je vektor " +"obsahující jeden název pro každý extruder." msgid "Printer preset name" -msgstr "" +msgstr "Název přednastavení tiskárny" msgid "Name of the printer preset used for slicing." -msgstr "" +msgstr "Název přednastavení tiskárny použité pro slicování." msgid "Physical printer name" -msgstr "" +msgstr "Fyzický název tiskárny" msgid "Name of the physical printer used for slicing." -msgstr "" +msgstr "Název fyzické tiskárny použité pro slicování." msgid "Layer number" -msgstr "" +msgstr "Číslo vrstvy" msgid "Index of the current layer. One-based (i.e. first layer is number 1)." msgstr "" @@ -13496,12 +13555,13 @@ msgid "" "Height of the current layer above the print bed, measured to the top of the " "layer." msgstr "" +"Výška aktuální vrstvy nad tiskovou podložkou, měřeno k hornímu okraji vrstvy." msgid "Maximal layer z" msgstr "" msgid "Height of the last layer above the print bed." -msgstr "" +msgstr "Výška poslední vrstvy nad tiskovou podložkou." msgid "Filament extruder ID" msgstr "" @@ -14136,7 +14196,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "Výsledek kalibrace dynamiky průtoku" msgid "New" -msgstr "" +msgstr "Nový" msgid "No History Result" msgstr "Žádný historický výsledek" @@ -14874,7 +14934,7 @@ msgid "Are you sure to delete the selected preset?" msgstr "" msgid "Delete preset" -msgstr "" +msgstr "Smazat přednastavení" msgid "+ Add Preset" msgstr "" @@ -14913,7 +14973,7 @@ msgid "For more information, please check out Wiki" msgstr "" msgid "Collapse" -msgstr "" +msgstr "Sbalit" msgid "Daily Tips" msgstr "" @@ -14996,111 +15056,116 @@ msgstr "" #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "" +msgstr "Nesprávný typ tiskového serveru: %s" msgid "Connection to AstroBox works correctly." -msgstr "" +msgstr "Připojení k AstroBoxu funguje správně." msgid "Could not connect to AstroBox" -msgstr "" +msgstr "Nelze se připojit k AstroBoxu" msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "" +msgstr "Poznámka: Je vyžadována verze AstroBoxu nejméně 1.1.0." msgid "Connection to Duet works correctly." -msgstr "" +msgstr "Připojení k Duet funguje správně." msgid "Could not connect to Duet" -msgstr "" +msgstr "Nelze se připojit k Duet" msgid "Unknown error occured" -msgstr "" +msgstr "Došlo k neznámé chybě" msgid "Wrong password" -msgstr "" +msgstr "Chybné heslo" msgid "Could not get resources to create a new connection" -msgstr "" +msgstr "Nelze získat prostředky pro vytvoření nového spojení" msgid "Upload not enabled on FlashAir card." -msgstr "" +msgstr "Na kartě FlashAir není nahrávání povoleno." msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "" +msgstr "Připojení k FlashAir funguje správně a nahrávání je povoleno." msgid "Could not connect to FlashAir" -msgstr "" +msgstr "Nelze se spojit s FlashAir" 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í." msgid "Connection to MKS works correctly." -msgstr "" +msgstr "Připojení k MKS funguje správně." msgid "Could not connect to MKS" -msgstr "" +msgstr "Nelze se připojit k MKS" msgid "Connection to OctoPrint works correctly." -msgstr "" +msgstr "Připojení k OctoPrint pracuje správně." msgid "Could not connect to OctoPrint" -msgstr "" +msgstr "Nelze se spojit s OctoPrintem" msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "" +msgstr "Poznámka: Je vyžadován OctoPrint ve verzi alespoň 1.1.0." msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "" +msgstr "Připojení k tiskárně Prusa SL1 /SL1S funguje správně." msgid "Could not connect to Prusa SLA" -msgstr "" +msgstr "Nelze se připojit k Prusa SLA" msgid "Connection to PrusaLink works correctly." -msgstr "" +msgstr "Připojení k PrusaLinku funguje správně." msgid "Could not connect to PrusaLink" -msgstr "" +msgstr "Nelze se připojit k PrusaLinku" msgid "Storages found" -msgstr "" +msgstr "Úložiště nalezeno" #. TRN %1% = storage path #, boost-format msgid "%1% : read only" -msgstr "" +msgstr "%1% : pouze pro čtení" #. TRN %1% = storage path #, boost-format msgid "%1% : no free space" -msgstr "" +msgstr "%1% : nedostatek volného místa" #. TRN %1% = host #, boost-format msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "" +"Nahrání se nezdařilo. Na adrese %1% nebylo nalezeno žádné vhodné úložiště." msgid "Connection to Prusa Connect works correctly." -msgstr "" +msgstr "Připojení k Prusa Connectu funguje správně." msgid "Could not connect to Prusa Connect" -msgstr "" +msgstr "Nelze se připojit k Prusa Connectu" msgid "Connection to Repetier works correctly." -msgstr "" +msgstr "Připojení k Repetieru funguje správně." msgid "Could not connect to Repetier" -msgstr "" +msgstr "Nelze se připojit k Repetieru" msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "" +msgstr "Poznámka: Je vyžadována verze Repetier alespoň 0.90.0." #, boost-format msgid "" "HTTP status: %1%\n" "Message body: \"%2%\"" msgstr "" +"HTTP stavový kód: %1%\n" +"Tělo zprávy: \"%2%\"" #, boost-format msgid "" @@ -15108,6 +15173,9 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Parsování odpovědi od hostitele se nezdařilo.\n" +"Tělo zprávy: \"%1%\"\n" +"Chyba: \"%2%\"" #, boost-format msgid "" @@ -15115,6 +15183,9 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"Výčet tiskových serverů se nezdařil.\n" +"Tělo zprávy: \"%1%\"\n" +"Chyba: \"%2%\"" msgid "" "It has a small layer height, and results in almost negligible layer lines " diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 3d917675b2..26d59d44ab 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: \n" "Last-Translator: Heiko Liebscher \n" "Language-Team: \n" @@ -1511,7 +1511,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Wählen sie eine oder mehrere Dateien (3mf/step/stl/svg/obj/amf):" msgid "Choose ZIP file" -msgstr "" +msgstr "ZIP Datei wählen" msgid "Choose one file (gcode/3mf):" msgstr "Wählen sie eine Datei (3mf):" @@ -1589,6 +1589,8 @@ msgid "" "Could not start URL download. Destination folder is not set. Please choose " "destination folder in Configuration Wizard." msgstr "" +"Der URL-Download konnte nicht gestartet werden. Der Zielordner ist nicht " +"festgelegt. Bitte wählen Sie den Zielordner im Konfigurationsassistenten." msgid "Import File" msgstr "Datei importieren" @@ -6403,16 +6405,18 @@ msgstr "Beim Laden der G-Code-Datei ist ein Fehler aufgetreten." #. TRN %1% is archive path #, boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "Das Laden eines ZIP-Archivs auf dem Pfad %1% ist fehlgeschlagen." #. TRN: First argument = path to file, second argument = error description #, boost-format msgid "Failed to unzip file to %1%: %2%" -msgstr "" +msgstr "Entpacken der Datei nach %1%: %2% fehlgeschlagen" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." msgstr "" +"Die entpackte Datei bei %1% konnte nicht gefunden werden. Das Entpacken der " +"Datei ist fehlgeschlagen." msgid "Drop project file" msgstr "Projektdatei ablegen" diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index 60397cbc9e..41e7024201 100644 --- a/localization/i18n/en/OrcaSlicer_en.po +++ b/localization/i18n/en/OrcaSlicer_en.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -7686,7 +7686,7 @@ msgid "Wipe tower parameters" msgstr "" msgid "Toolchange parameters with single extruder MM printers" -msgstr "" +msgstr "Toolchange parameters with single extruder MM printers" msgid "Ramming settings" msgstr "" @@ -10281,6 +10281,8 @@ msgid "" "Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" +"Speed used for unloading the filament on the wipe tower (does not affect " +"initial part of unloading just after ramming)." msgid "Unloading speed at the start" msgstr "" @@ -10297,6 +10299,9 @@ msgid "" "toolchanges with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " +"original dimensions." msgid "Number of cooling moves" msgstr "" @@ -11392,6 +11397,10 @@ msgid "" "positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" +"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." msgid "Start end points" msgstr "Start end points" @@ -12090,6 +12099,10 @@ msgid "" "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " +"print the wipe tower. User is responsible for ensuring there is no collision " +"with the print." msgid "Prime all printing extruders" msgstr "" diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index fd619cbdd0..0dee8e7c7f 100644 --- a/localization/i18n/es/OrcaSlicer_es.po +++ b/localization/i18n/es/OrcaSlicer_es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: \n" "Last-Translator: Carlos Fco. Caruncho Serrano \n" "Language-Team: \n" @@ -258,7 +258,7 @@ msgid "World coordinates" msgstr "Coordenadas cartesianas" msgid "Object coordinates" -msgstr "" +msgstr "Coordenadas del objeto" msgid "°" msgstr "°" @@ -1524,7 +1524,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Elige uno o más archivos (3mf/step/stl/svg/obj/amf):" msgid "Choose ZIP file" -msgstr "" +msgstr "Escoger archivo ZIP" msgid "Choose one file (gcode/3mf):" msgstr "Elegir un archivo (gcode/3mf):" @@ -1602,6 +1602,9 @@ msgid "" "Could not start URL download. Destination folder is not set. Please choose " "destination folder in Configuration Wizard." msgstr "" +"No se pudo iniciar la descarga del URL. La carpeta de destino no se " +"seleccionó. Por favor escoge una carpeta de destino en el Asistente de " +"Configuración." msgid "Import File" msgstr "Importar Archivo" @@ -3237,7 +3240,7 @@ msgid "Successfully executed post-processing script" msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "Se produjo un error desconocido durante la exportación del código G." #, boost-format msgid "" @@ -3245,6 +3248,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"Error al copiar el código G temporal en el código G de salida. ¿Quizás la " +"tarjeta SD está bloqueada contra escritura?\n" +"Mensaje de error: %1%" #, boost-format msgid "" @@ -3252,28 +3258,40 @@ msgid "" "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." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"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." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"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." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"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." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "Archivo de código G exportado a %1%" msgid "Unknown error when export G-code." msgstr "Error desconocido al exportar el G-Code." @@ -6335,16 +6353,18 @@ msgstr "Se produce un error al cargar el archivo de G-Code" #. TRN %1% is archive path #, boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "La carga del archivo ZIP en la ruta %1% ha fallado." #. TRN: First argument = path to file, second argument = error description #, boost-format msgid "Failed to unzip file to %1%: %2%" -msgstr "" +msgstr "Fallo al descomprimir el archivo en %1%: %2%" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." msgstr "" +"No se ha encontrado el archivo descomprimido en %1%. No se ha podido " +"descomprimir el archivo." msgid "Drop project file" msgstr "Soltar el archivo del proyecto" @@ -12755,7 +12775,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "C capas de falda. Normalmente sólo una capa" msgid "Draft shield" -msgstr "" +msgstr "Escudo de protección" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12772,10 +12792,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "Limitado" msgid "Enabled" -msgstr "" +msgstr "Activado" msgid "Skirt loops" msgstr "Contorno de la falda" diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index 6ee40b50fb..534ca37bdc 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: Guislain Cyril, Thomas Lété\n" @@ -7772,8 +7772,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add " -"Primitive\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add Primitive" +"\"->\"Timelapse Wipe Tower\"." msgstr "" "Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé " "d’ajouter une \"Tour d’essuyage timelapse\".\n" @@ -7928,9 +7928,9 @@ msgid "" "Bed temperature when cool plate is installed. Value 0 means the filament " "does not support to print on the Cool Plate" msgstr "" -"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool " -"plate\") est installé. Une valeur à 0 signifie que ce filament ne peut pas " -"être imprimé sur le plateau froid." +"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool plate" +"\") est installé. Une valeur à 0 signifie que ce filament ne peut pas être " +"imprimé sur le plateau froid." msgid "Engineering plate" msgstr "Plaque Engineering" @@ -11461,10 +11461,10 @@ msgstr "Ventilateur à pleine vitesse à la couche" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer " -"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " -"than \"close_fan_the_first_x_layers\", in which case the fan will be running " -"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" +"\". \"full_fan_speed_layer\" will be ignored if lower than " +"\"close_fan_the_first_x_layers\", in which case the fan will be running at " +"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à " "la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche " @@ -13198,8 +13198,8 @@ msgid "" "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " "close all holes in the model." msgstr "" -"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez " -"« Fermer les trous » pour fermer tous les trous du modèle." +"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « " +"Fermer les trous » pour fermer tous les trous du modèle." msgid "Regular" msgstr "Standard" @@ -14008,8 +14008,8 @@ msgid "" "Wipe tower is only compatible with relative mode. It is recommended on most " "printers. Default is checked" msgstr "" -"L’extrusion relative est recommandée lors de l’utilisation de l’option " -"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " +"L’extrusion relative est recommandée lors de l’utilisation de l’option « " +"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " "non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est " "compatible qu’avec le mode relatif. Il est recommandé sur la plupart des " "imprimantes. L’option par défaut est cochée" @@ -14872,9 +14872,9 @@ msgstr "" "Wiki.\n" "\n" "Habituellement, la calibration est inutile. Lorsque vous démarrez une " -"impression d'une seule couleur/matériau, avec l'option \"Calibration du " -"débit\" cochée dans le menu de démarrage de l'impression, l'imprimante " -"suivra l'ancienne méthode de calibration du filament avant l'impression.\n" +"impression d'une seule couleur/matériau, avec l'option \"Calibration du débit" +"\" cochée dans le menu de démarrage de l'impression, l'imprimante suivra " +"l'ancienne méthode de calibration du filament avant l'impression.\n" "Lorsque vous démarrez une impression multi-couleurs/matériaux, l'imprimante " "utilise le paramètre de compensation par défaut pour le filament lors de " "chaque changement de filament, ce qui donne un bon résultat dans la plupart " @@ -15653,8 +15653,8 @@ msgstr "" "Voulez-vous le réécrire ?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you selected" +"\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Nous renommerions les préréglages en « Vendor Type Serial @printer you " @@ -17440,8 +17440,8 @@ msgstr "" #~ "thickness (top+bottom solid layers)" #~ msgstr "" #~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour " -#~ "garantir l'épaisseur verticale de la coque (couches solides " -#~ "supérieure+inférieure)." +#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure" +#~ "+inférieure)." #~ msgid "Further reduce solid infill on walls (beta)" #~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)" diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index 52d0069683..4294c40416 100644 --- a/localization/i18n/hu/OrcaSlicer_hu.po +++ b/localization/i18n/hu/OrcaSlicer_hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,7 +100,7 @@ msgid "Support Generated" msgstr "Támasz legenerálva" msgid "Gizmo-Place on Face" -msgstr "" +msgstr "Gizmo- Felület Tárgyasztalra Illesztése" msgid "Lay on face" msgstr "Felületre fektetés" @@ -181,13 +181,13 @@ msgid "Move" msgstr "Mozgatás" msgid "Gizmo-Move" -msgstr "" +msgstr "Gizmo-Mozgatása" msgid "Rotate" msgstr "Forgatás" msgid "Gizmo-Rotate" -msgstr "" +msgstr "Gizmo-Forgatása" msgid "Optimize orientation" msgstr "Orientáció optimalizálása" @@ -199,7 +199,7 @@ msgid "Scale" msgstr "Átméretezés" msgid "Gizmo-Scale" -msgstr "" +msgstr "Gizmo-Skála" msgid "Error: Please close all toolbar menus first" msgstr "Hiba: Kérjük, először zárd be az összes eszköztár menüt" @@ -515,7 +515,7 @@ msgid "Connector" msgstr "Connector" msgid "Cut by Plane" -msgstr "" +msgstr "Vágás Síkkal" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" msgstr "A vágás után hibás élek keletkeztek, szeretnéd most javítani őket?" @@ -672,7 +672,7 @@ msgid "Text move" msgstr "" msgid "Set Mirror" -msgstr "" +msgstr "Tükrözés beállítása" msgid "Embossed text" msgstr "" @@ -708,7 +708,7 @@ msgid "First font" msgstr "" msgid "Default font" -msgstr "" +msgstr "Az alapértelmezett nyomtató" msgid "Advanced" msgstr "Haladó" @@ -759,7 +759,7 @@ msgid "Click to change text into object part." msgstr "" msgid "You can't change a type of the last solid part of the object." -msgstr "" +msgstr "Az objektum utolsó tömör részének típusát nem lehet megváltoztatni." msgctxt "EmbossOperation" msgid "Cut" @@ -1020,7 +1020,7 @@ msgstr "" #. TRN - Input label. Be short as possible #. Align Top|Middle|Bottom and Left|Center|Right msgid "Alignment" -msgstr "" +msgstr "Balra igazítsd" #. TRN - Input label. Be short as possible msgid "Char gap" @@ -1076,7 +1076,7 @@ msgid "SVG actions" msgstr "" msgid "SVG" -msgstr "" +msgstr "SVG" #, boost-format msgid "Opacity (%1%)" @@ -1163,7 +1163,7 @@ msgid "Bake into model as uneditable part" msgstr "" msgid "Save as" -msgstr "" +msgstr "Mentés Másként" msgid "Save SVG file" msgstr "" @@ -1189,7 +1189,7 @@ msgid "Lock/unlock the aspect ratio of the SVG." msgstr "" msgid "Reset scale" -msgstr "" +msgstr "Skála visszaállítása" msgid "Distance of the center of the SVG to the model surface." msgstr "" @@ -1198,16 +1198,16 @@ msgid "Reset distance" msgstr "" msgid "Reset rotation" -msgstr "" +msgstr "Forgatás visszaállítása" msgid "Lock/unlock rotation angle when dragging above the surface." msgstr "" msgid "Mirror vertically" -msgstr "" +msgstr "Tükrözés függőlegesen" msgid "Mirror horizontally" -msgstr "" +msgstr "Tükrözés vízszintesen" #. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else). msgid "Change SVG Type" @@ -2537,13 +2537,13 @@ msgid "Bed filling done." msgstr "Bed filling done." msgid "Searching for optimal orientation" -msgstr "" +msgstr "Az optimális tájolás keresése" msgid "Orientation search canceled." -msgstr "" +msgstr "Tájolás keresés visszavonva." msgid "Orientation found." -msgstr "" +msgstr "Tájolás megtalálva." msgid "Logging in" msgstr "Bejelentkezés" @@ -3158,7 +3158,7 @@ msgid "Successfully executed post-processing script" msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "Ismeretlen hiba történt a G-kód exportálása közben." #, boost-format msgid "" @@ -3166,6 +3166,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"Az ideiglenes G-kód másolása a kimeneti G-kódba nem sikerült. Lehet, hogy az " +"SD kártya írásvédett?\n" +"Hibaüzenet: %1%" #, boost-format msgid "" @@ -3173,28 +3176,37 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"Az ideiglenes G-kód másolása a kimeneti G-kódba nem sikerült. Probléma lehet " +"a céleszközzel. Kérjük, próbálkozzon újra az exportálással, vagy használjon " +"másik eszközt. A sérült kimeneti G-kód %1%.tmp." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"A G-kód átnevezése a kiválasztott célmappába másolás után nem sikerült. A " +"jelenlegi elérési út %1%.tmp. Kérjük, próbálja meg újra az exportálást." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"Az ideiglenes G-kód másolása befejeződött, de az eredeti, %1% kódot nem " +"lehetett megnyitni a másolásellenőrzés során. A kimeneti G-kód %2%.tmp." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"Az ideiglenes G-kód másolása befejeződött, de az exportált kódot nem " +"lehetett megnyitni a másolásellenőrzés során. A kimeneti G-kód %1%.tmp." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "G-kód fájl exportálva ide: %1%" msgid "Unknown error when export G-code." msgstr "Ismeretlen hiba a G-kód exportálásakor." @@ -3920,7 +3932,7 @@ msgid "Dimensions" msgstr "" msgid "Temperatures" -msgstr "" +msgstr "Hőmérséklet(ek)" msgid "Timestamps" msgstr "" @@ -5896,10 +5908,10 @@ msgstr "" "hogy válts a sima módra." msgid "Expand sidebar" -msgstr "" +msgstr "Az oldalsáv kibontása" msgid "Collapse sidebar" -msgstr "" +msgstr "&Az oldalsáv összecsukása" #, c-format, boost-format msgid "Loading file: %s" @@ -6178,7 +6190,7 @@ msgid "" msgstr "" msgid "Import SLA archive" -msgstr "" +msgstr "SLA archívum importálása" msgid "The selected file" msgstr "A kiválasztott fájl" @@ -6299,7 +6311,7 @@ msgid "Is the printer ready? Is the print sheet in place, empty and clean?" msgstr "" msgid "Upload and Print" -msgstr "" +msgstr "Feltöltés és Nyomtatás" msgid "" "Print By Object: \n" @@ -6476,7 +6488,7 @@ msgid "" msgstr "" msgid "Home" -msgstr "" +msgstr "Haza" msgid "Default Page" msgstr "" @@ -6507,10 +6519,12 @@ msgstr "" "2D window center." msgid "Use free camera" -msgstr "" +msgstr "Szabad kamera használata" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" +"Ha engedélyezve van, szabad kamerát használ. Ha nincs engedélyezve, akkor " +"kötött kamerát használ." msgid "Reverse mouse zoom" msgstr "" @@ -6519,7 +6533,7 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" msgid "Show splash screen" -msgstr "" +msgstr "Splash screen meglenítése" msgid "Show the splash screen during startup." msgstr "" @@ -7570,7 +7584,7 @@ msgid "Tree supports" msgstr "" msgid "Skirt" -msgstr "" +msgstr "Szoknya" msgid "Prime tower" msgstr "Törlő torony" @@ -7742,13 +7756,14 @@ msgid "Multimaterial" msgstr "" msgid "Wipe tower parameters" -msgstr "" +msgstr "Törlőtorony paraméterek" msgid "Toolchange parameters with single extruder MM printers" msgstr "" +"Szerszámváltási paraméterek egy extruderes Több Anyagos (MM) nyomtatónál" msgid "Ramming settings" -msgstr "" +msgstr "Tömörítési beállítások" msgid "Toolchange parameters with multi extruder MM printers" msgstr "" @@ -7823,10 +7838,10 @@ msgid "Single extruder multimaterial setup" msgstr "" msgid "Wipe tower" -msgstr "" +msgstr "Törlőtorony" msgid "Single extruder multimaterial parameters" -msgstr "" +msgstr "Egyetlen extruder többanyagú paraméterei" msgid "Layer height limits" msgstr "Rétegmagasság limitek" @@ -8126,7 +8141,7 @@ msgid "The configuration is up to date." msgstr "A konfiguráció naprakész." msgid "Ramming customization" -msgstr "" +msgstr "Tömörítés testreszabása" msgid "" "Ramming denotes the rapid extrusion just before a tool change in a single-" @@ -8139,21 +8154,31 @@ msgid "" "This is an expert-level setting, incorrect adjustment will likely lead to " "jams, extruder wheel grinding into filament etc." msgstr "" +"A tömörítés az egy extruderes Többféle Anyaggal (MM) dolgozó nyomtatókban a " +"szerszámcsere előtti gyors extrudálást jelenti. Célja, hogy megfelelően " +"alakítsa a visszahúzott filament végét, hogy az ne akadályozza az új " +"filament betöltését, és később újra betölthető legyen. Ez a fázis fontos, és " +"a különböző anyagok különböző extrudálási sebességet igényelhetnek a " +"megfelelő forma eléréséhez. Ezért a tömörítés során alkalmazott extrudálási " +"sebességek állíthatóak.\n" +"\n" +"Ez egy szakértői szintű beállítás, a helytelen beállítás elakadásokhoz, az " +"extruder kerék filamentbe marásához stb. vezethet." msgid "Total ramming time" -msgstr "" +msgstr "Teljes tömörítési idő" msgid "s" msgstr "mp" msgid "Total rammed volume" -msgstr "" +msgstr "Teljes tömörített térfogat" msgid "Ramming line width" -msgstr "" +msgstr "Tömörítési vonal szélessége" msgid "Ramming line spacing" -msgstr "" +msgstr "Tömörítési vonal térköze" msgid "Auto-Calc" msgstr "Automatikus számítás" @@ -8391,10 +8416,10 @@ msgid "Gizmo Text emboss / engrave" msgstr "" msgid "Zoom in" -msgstr "" +msgstr "Zoom közelítés" msgid "Zoom out" -msgstr "" +msgstr "Zoom távolítás" msgid "Switch between Prepare/Preview" msgstr "" @@ -9460,7 +9485,7 @@ msgid "" msgstr "" msgid "Everywhere" -msgstr "" +msgstr "Mindenhol" msgid "Top and bottom surfaces" msgstr "" @@ -9934,7 +9959,7 @@ msgid "" msgstr "" msgid "Disabled" -msgstr "" +msgstr "Letiltva" msgid "Limited filtering" msgstr "" @@ -10353,54 +10378,61 @@ msgid "" msgstr "" msgid "Loading speed" -msgstr "" +msgstr "Betöltési sebesség" msgid "Speed used for loading the filament on the wipe tower." -msgstr "" +msgstr "A filament törlőtoronyra való betöltéséhez használt sebesség." msgid "Loading speed at the start" -msgstr "" +msgstr "Betöltési sebesség kezdéskor" msgid "Speed used at the very beginning of loading phase." -msgstr "" +msgstr "A betöltési fázis legelején használt sebesség." msgid "Unloading speed" -msgstr "" +msgstr "Kiürítési sebesség" msgid "" "Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" +"A filament törlőtoronynál való kiürítéséhez használt sebesség (nem " +"befolyásolja a kiürítés kezdeti részét közvetlenül a tömörítés után)." msgid "Unloading speed at the start" -msgstr "" +msgstr "Kiürítési sebesség kezdéskor" msgid "" "Speed used for unloading the tip of the filament immediately after ramming." -msgstr "" +msgstr "A filament kiürítésének sebessége közvetlenül a tömörítés után." msgid "Delay after unloading" -msgstr "" +msgstr "Várakozás a kiürítés után" 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 "" +"A várakozási idő az filament kiürítése után. Segíthet megbízható " +"szerszámcserét elérni rugalmas anyagok esetén, amelyeknek több időre lehet " +"szükségük ahhoz, hogy az eredeti méretükre zsugorodjanak." msgid "Number of cooling moves" -msgstr "" +msgstr "Hűtési lépések száma" msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " "Specify desired number of these moves." msgstr "" +"A filament hűtése úgy történik, hogy oda-vissza mozgatják a hűtőcsőben. Adja " +"meg a kívánt lépések számát." msgid "Speed of the first cooling move" -msgstr "" +msgstr "Az első hűtési lépés sebessége" msgid "Cooling moves are gradually accelerating beginning at this speed." -msgstr "" +msgstr "A hűtési lépések fokozatosan felgyorsulnak ettől a sebességtől kezdve." msgid "Minimal purge on wipe tower" msgstr "Minimális tisztítás a törlőtoronyban" @@ -10414,30 +10446,39 @@ msgid "" msgstr "" msgid "Speed of the last cooling move" -msgstr "" +msgstr "Az utolsó hűtési lépés sebessége" msgid "Cooling moves are gradually accelerating towards this speed." -msgstr "" +msgstr "A hűtési lépések fokozatosan felgyorsulnak erre a sebességre." 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 "" +"Az az idő, amíg a nyomtató vezérlő szoftvere (vagy a Multi Material Unit " +"2.0) új filamentet tölt be a szerszámcsere során (a T kód végrehajtásakor). " +"Ezt az időt a G-kód időbecslő hozzáadja a teljes nyomtatási időhöz." msgid "Ramming parameters" -msgstr "" +msgstr "Tömörítési paraméterek" msgid "" "This string is edited by RammingDialog and contains ramming specific " "parameters." msgstr "" +"Ez a karakterlánc a TömörítésPárbeszéd ablakban szerkeszthető, és a " +"tömörítéssel kapcsolatos paramétereket tartalmaz." 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 "" +"Az az idő, amíg a nyomtató vezérlő szoftvere (vagy a Multi Material Unit " +"2.0) az előző Filamenet kiüríti a szerszámcsere során (a T kód " +"végrehajtásakor). Ezt az időt a G-kód időbecslő hozzáadja a teljes " +"nyomtatási időhöz." msgid "Enable ramming for multitool setups" msgstr "" @@ -10616,7 +10657,7 @@ msgid "1000 (unlimited)" msgstr "1000 (unlimited)" msgid "Maximum length of the infill anchor" -msgstr "" +msgstr "A kitöltőhorgony maximális hossza" msgid "" "Connect an infill line to an internal perimeter with a short segment of an " @@ -11018,7 +11059,7 @@ msgid "Enable this option if you want to use multiple bed types" msgstr "" msgid "Label objects" -msgstr "" +msgstr "Objektumok címkézése" msgid "" "Enable this to add comments into the G-Code labeling print moves with what " @@ -11034,13 +11075,17 @@ msgid "Enable this option to add EXCLUDE OBJECT command in g-code" msgstr "" msgid "Verbose G-code" -msgstr "" +msgstr "Bővebb G-kód" 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 "" +"Ha engedélyezi ezt a funkciót, akkor egy kommentezett G-kód fájlt kap, " +"amelynek minden egyes sorát egy leíró szöveg magyarázza. Ha SD-kártyáról " +"nyomtat, a fájl nagyobb mérete miatt a nyomtató vezérlő szoftvere " +"lelassulhat." msgid "Infill combination" msgstr "Kitöltés összevonása" @@ -11377,7 +11422,7 @@ msgid "" msgstr "" msgid "mm³/s²" -msgstr "" +msgstr "mm³/s²" msgid "Smoothing segment length" msgstr "" @@ -11431,12 +11476,14 @@ msgid "Diameter of nozzle" msgstr "Fúvóka átmérője" msgid "Configuration notes" -msgstr "" +msgstr "Konfiguráció megjegyzések" msgid "" "You can put here your personal notes. This text will be added to the G-code " "header comments." msgstr "" +"Itt elhelyezheti személyes jegyzeteit. Ez a szöveg hozzá lesz fűzve a G-kód " +"fejlécének megjegyzéseihez." msgid "Host Type" msgstr "Host típusa" @@ -11455,36 +11502,43 @@ msgid "Volume of nozzle between the cutter and the end of nozzle" msgstr "A fúvóka térfogata a filamentvágó és a fúvóka vége között" msgid "Cooling tube position" -msgstr "" +msgstr "Hűtőcső helyzete" msgid "Distance of the center-point of the cooling tube from the extruder tip." -msgstr "" +msgstr "A hűtőcső középpontjának távolsága az extruder csúcsától." msgid "Cooling tube length" -msgstr "" +msgstr "Hűtőcső hossza" msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "" +"A hűtőcső hossza, ami limitálja a hűtéshez használható helyet annak a " +"belsejében." msgid "High extruder current on filament swap" -msgstr "" +msgstr "Magas extruderáram a szálcserénél" 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 "" +"Előnyös lehet az extrudermotor áramának növelése a filamentcsere során, hogy " +"elérhetővé tegye a tömörítéshez szükséges magas előtolási sebességet és az " +"ellenállás leküzdését deformált hegyű filament betöltésekor." msgid "Filament parking position" -msgstr "" +msgstr "Filament parkolási pozíció" 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 "" +"Az extruder hegyének távolsága attól a helyzettől, ahol a szál betöltetlenül " +"parkol. Ennek meg kell egyeznie a nyomtató firmware-ében megadott értékkel." msgid "Extra loading distance" -msgstr "" +msgstr "Extra betöltési hossz" msgid "" "When set to zero, the distance the filament is moved from parking position " @@ -11492,6 +11546,10 @@ msgid "" "positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" +"Ha nullára van állítva, akkor a filamentet a betöltés során a " +"parkolóhelyzetből pontosan ugyanannyira kerül előtolásra, mint amennyire a " +"kiürítéskor vissza lett húzva. Ha pozitív, akkor tovább töltődik, ha " +"negatív, akkor a betöltési mozgás rövidebb, mint a kiürítési." msgid "Start end points" msgstr "Kezdő- és végpontok" @@ -11744,7 +11802,7 @@ msgid "Spiral" msgstr "Spirál" msgid "Only lift Z above" -msgstr "" +msgstr "Z emelés csak efelett" msgid "" "If you set this to a positive value, Z lift will only take place above the " @@ -11752,7 +11810,7 @@ msgid "" msgstr "" msgid "Only lift Z below" -msgstr "" +msgstr "Z emelés csak ezalatt" msgid "" "If you set this to a positive value, Z lift will only take place below the " @@ -11786,11 +11844,16 @@ 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 "" +"Amikor a visszahúzás kompenzálásra kerül utazási mozgás után, az extruder " +"ezt a további szálmennyiséget nyomja előre. Erre a beállításra ritkán van " +"szükség." msgid "" "When the retraction is compensated after changing tool, the extruder will " "push this additional amount of filament." msgstr "" +"Amikor a visszahúzás kompenzálásra kerül szerszámváltás után, az extruder " +"ezt a további szálmennyiséget nyomja előre." msgid "Retraction Speed" msgstr "Visszahúzás sebessége" @@ -12021,7 +12084,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Number of skirt layers: usually only one" msgid "Draft shield" -msgstr "" +msgstr "Huzatvédő" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12038,10 +12101,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "Korlátozott" msgid "Enabled" -msgstr "" +msgstr "Engedélyezve" msgid "Skirt loops" msgstr "Szoknya hurkok száma" @@ -12164,7 +12227,7 @@ msgid "Start G-code when start the printing of this filament" msgstr "Kezdő G-kód a filament nyomtatásának megkezdésekor" msgid "Single Extruder Multi Material" -msgstr "" +msgstr "Egyetlen Extruder Többféle Anyag" msgid "Use single nozzle to print multi filament" msgstr "" @@ -12198,14 +12261,20 @@ msgid "" "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" +"Ha engedélyezve van, akkor törlőtorony nem kerül kinyomtatásra " +"szerszámváltás nélküli rétegeken. A szerszámcserével rendelkező rétegeken az " +"extruder az aktuális magasság alá süllyed a törlőtorony nyomtatásához. A " +"felhasználó felelős azért, hogy ez ne okozzon ütközést a nyomtatás során." msgid "Prime all printing extruders" -msgstr "" +msgstr "Az összes nyomtató extruder előkészítése" msgid "" "If enabled, all printing extruders will be primed at the front edge of the " "print bed at the start of the print." msgstr "" +"Ha engedélyezve van, akkor a nyomtatás kezdetén az összes nyomtató extruder " +"előkészítésre kerül a tárgyasztal elülső szélénél." msgid "Slice gap closing radius" msgstr "Szeletelési hézag lezárási sugara" @@ -12240,7 +12309,7 @@ msgid "Close holes" msgstr "Hézagok lezárása" msgid "Z offset" -msgstr "" +msgstr "Z ofszet" msgid "" "This value will be added (or subtracted) from all the Z coordinates in the " @@ -12248,6 +12317,11 @@ msgid "" "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 "" +"Ez az érték hozzáadódik (vagy kivonásra kerül) az összes Z koordinátához a " +"kimeneti G-kódban. A Z tengely végállás pozíciójának kompenzálására szolgál: " +"például ha a végállás nullája valójában 0,3 mm-re hagyja a fúvókát a " +"tárgyasztal felett, akkor állítsa ezt az értéke -0,3-ra (vagy javítsa meg a " +"végállást)." msgid "Enable support" msgstr "Támasz engedélyezése" @@ -12760,10 +12834,10 @@ msgid "Width of prime tower" msgstr "Ez a törlő torony szélessége." msgid "Wipe tower rotation angle" -msgstr "" +msgstr "Törlőtorony forgatási szöge" msgid "Wipe tower rotation angle with respect to x-axis." -msgstr "" +msgstr "Törlőtorony forgatási szöge az x-tengelyhez képest." msgid "Stabilization cone apex angle" msgstr "" @@ -12852,10 +12926,10 @@ msgstr "" "akkor működik, ha a törlőtorony engedélyezve van." msgid "Maximal bridging distance" -msgstr "" +msgstr "Maximális áthidalási távolság" msgid "Maximal distance between supports on sparse infill sections." -msgstr "" +msgstr "A támaszok közötti maximális távolság a ritkás kitöltésű részeken." msgid "X-Y hole compensation" msgstr "X-Y furatkompenzáció" @@ -12914,7 +12988,7 @@ msgid "Rotate the polyhole every layer." msgstr "" msgid "G-code thumbnails" -msgstr "" +msgstr "G-kód miniatűrök" msgid "" "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the " @@ -13101,7 +13175,7 @@ msgid "Do not run any validity checks, such as gcode path conflicts check." msgstr "Do not run any validity checks, such as G-code path conflicts check." msgid "Ensure on bed" -msgstr "" +msgstr "Ágyra igazítás" msgid "" "Lift the object above the bed when it is partially below. Disabled by default" @@ -13114,22 +13188,25 @@ msgid "Orient options: 0-disable, 1-enable, others-auto" msgstr "" msgid "Rotation angle around the Z axis in degrees." -msgstr "" +msgstr "Az Z tengely körüli forgatási szög fokban." msgid "Rotate around Y" -msgstr "" +msgstr "Forgatás Y körül" msgid "Rotation angle around the Y axis in degrees." -msgstr "" +msgstr "Az Y tengely körüli forgatási szög fokban." msgid "Data directory" -msgstr "" +msgstr "Adatkönyvtár" msgid "" "Load and store settings at the given directory. This is useful for " "maintaining different profiles or including configurations from a network " "storage." msgstr "" +"A beállítások betöltése és tárolása a megadott könyvtárban. Ez hasznos a " +"különböző profilok karbantartásához vagy a hálózaton tárolt konfigurációk " +"beviteléhez." msgid "Load custom gcode" msgstr "" @@ -14205,7 +14282,7 @@ msgid "mm/mm" msgstr "mm/mm" msgid "Send G-Code to printer host" -msgstr "" +msgstr "G-kód küldése a nyomtató gazdagépének" msgid "Upload to Printer Host with the following filename:" msgstr "Feltöltés a nyomtatóra a következő fájlnévvel:" diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index f12461a169..d47812bcd1 100644 --- a/localization/i18n/it/OrcaSlicer_it.po +++ b/localization/i18n/it/OrcaSlicer_it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -257,7 +257,7 @@ msgid "World coordinates" msgstr "Coordinate reali" msgid "Object coordinates" -msgstr "" +msgstr "Coordinate oggetto" msgid "°" msgstr "°" @@ -1515,7 +1515,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Scegli uno o più file (3mf/step/stl/svg/obj/amf):" msgid "Choose ZIP file" -msgstr "" +msgstr "Seleziona il file ZIP" msgid "Choose one file (gcode/3mf):" msgstr "Scegli file (gcode/3mf):" @@ -1591,6 +1591,9 @@ msgid "" "Could not start URL download. Destination folder is not set. Please choose " "destination folder in Configuration Wizard." msgstr "" +"Impossibile avviare il download dell'URL. La cartella di destinazione non è " +"impostata. Scegliere la cartella di destinazione nella Configurazione " +"guidata." msgid "Import File" msgstr "Importa File" @@ -3233,6 +3236,7 @@ msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." msgstr "" +"Si è verificato un errore sconosciuto durante l'esportazione del G-code." #, boost-format msgid "" @@ -3240,6 +3244,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"Copia del G-code temporaneo sul G-code di uscita non riuscita. Forse la " +"scheda SD è bloccata in scrittura?\n" +"Messaggio di errore: %1%" #, boost-format msgid "" @@ -3247,28 +3254,41 @@ msgid "" "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." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"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." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"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." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"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." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "G-code esportato in %1%" msgid "Unknown error when export G-code." msgstr "Errore sconosciuto nell'esportazione del G-code." @@ -3977,15 +3997,17 @@ msgstr "Modifica G-code personalizzato (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "" +"Placeholder incorporati (fai doppio clic sull'elemento per aggiungerlo al G-" +"code)" msgid "Search gcode placeholders" msgstr "" msgid "Add selected placeholder to G-code" -msgstr "" +msgstr "Aggiungi il placeholder selezionato al G-code" msgid "Select placeholder" -msgstr "" +msgstr "Seleziona placeholder" msgid "[Global] Slicing State" msgstr "" @@ -4012,11 +4034,11 @@ msgid "Temperatures" msgstr "Temperature" msgid "Timestamps" -msgstr "" +msgstr "Timestamp" #, boost-format msgid "Specific for %1%" -msgstr "" +msgstr "Specifico per %1%" msgid "Presets" msgstr "Preset" @@ -6312,16 +6334,18 @@ msgstr "Si è verificato un errore durante il caricamento del file G-code." #. TRN %1% is archive path #, boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "Il caricamento di un archivio zip sul percorso %1% non è riuscito." #. TRN: First argument = path to file, second argument = error description #, boost-format msgid "Failed to unzip file to %1%: %2%" -msgstr "" +msgstr "Impossibile decomprimere il file su %1%: %2%" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." msgstr "" +"Impossibile trovare il file decompresso su %1%. La decompressione del file " +"non è riuscita." msgid "Drop project file" msgstr "Elimina il file di progetto" @@ -12747,7 +12771,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Numero di layer skirt: solitamente uno" msgid "Draft shield" -msgstr "" +msgstr "Scudo di protezione" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12764,10 +12788,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "Limitato" msgid "Enabled" -msgstr "" +msgstr "Abilitato" msgid "Skirt loops" msgstr "Anelli skirt" diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index 9c4151ba8c..09bf7d8df3 100644 --- a/localization/i18n/ja/OrcaSlicer_ja.po +++ b/localization/i18n/ja/OrcaSlicer_ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -103,7 +103,7 @@ msgid "Support Generated" msgstr "生成されたサポート" msgid "Gizmo-Place on Face" -msgstr "" +msgstr "ギズモ-面に配置" msgid "Lay on face" msgstr "底面選択" @@ -183,13 +183,13 @@ msgid "Move" msgstr "移動" msgid "Gizmo-Move" -msgstr "" +msgstr "ギズモ-移動" msgid "Rotate" msgstr "回転" msgid "Gizmo-Rotate" -msgstr "" +msgstr "ギズモ-回転" msgid "Optimize orientation" msgstr "向きを最適化" @@ -201,7 +201,7 @@ msgid "Scale" msgstr "スケール" msgid "Gizmo-Scale" -msgstr "" +msgstr "ギズモ-縮尺" msgid "Error: Please close all toolbar menus first" msgstr "エラー: ツールバーを閉じてください" @@ -255,7 +255,7 @@ msgid "World coordinates" msgstr "空間座標" msgid "Object coordinates" -msgstr "" +msgstr "オブジェクト座標" msgid "°" msgstr "°" @@ -292,7 +292,7 @@ msgid "Snap" msgstr "Snap" msgid "Prism" -msgstr "" +msgstr "プリズム" msgid "Frustum" msgstr "Frustum" @@ -310,7 +310,7 @@ msgid "Place on cut" msgstr "Place on cut" msgid "Flip upside down" -msgstr "" +msgstr "上下反転" msgid "Connectors" msgstr "Connectors" @@ -352,21 +352,26 @@ msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" msgstr "" +"クリックでカット面を反転\n" +"ドラッグでカット面を移動" msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane\n" "Right-click a part to assign it to the other side" msgstr "" +"クリックでカット面を反転させる\n" +"ドラッグしてカット面を移動する\n" +"パーツを右クリックすると、他方のパーツに割り当てます" msgid "Move cut plane" -msgstr "" +msgstr "カット面の移動" msgid "Mode" msgstr "Mode" msgid "Change cut mode" -msgstr "" +msgstr "カットモード変更" msgid "Tolerance" msgstr "Tolerance" @@ -405,7 +410,7 @@ msgid "Cut" msgstr "カット" msgid "Rotate cut plane" -msgstr "" +msgstr "カット面の回転" msgid "Remove connectors" msgstr "Remove connectors" @@ -414,13 +419,13 @@ msgid "Bulge" msgstr "Bulge" msgid "Bulge proportion related to radius" -msgstr "" +msgstr "バルジの比率と半径の関係" msgid "Space" msgstr "スペース" msgid "Space proportion related to radius" -msgstr "" +msgstr "半径に関係する空間の割合" msgid "Confirm connectors" msgstr "Confirm connectors" @@ -429,26 +434,26 @@ msgid "Cancel" msgstr "取消し" msgid "Build Volume" -msgstr "" +msgstr "ビルドボリューム" msgid "Flip cut plane" -msgstr "" +msgstr "カット面の反転" msgid "Groove change" -msgstr "" +msgstr "溝変更" msgid "Reset" msgstr "リセット" #. TRN: This is an entry in the Undo/Redo stack. The whole line will be 'Edited: (name of whatever was edited)'. msgid "Edited" -msgstr "" +msgstr "編集済み" msgid "Cut position" -msgstr "" +msgstr "カットポジション" msgid "Reset cutting plane" -msgstr "" +msgstr "カット面をリセット" msgid "Edit connectors" msgstr "Edit connectors" @@ -457,10 +462,10 @@ msgid "Add connectors" msgstr "Add connectors" msgid "Reset cut" -msgstr "" +msgstr "カットをリセット" msgid "Reset cutting plane and remove connectors" -msgstr "" +msgstr "カット面をリセットし、コネクターを削除" msgid "Upper part" msgstr "Upper part" @@ -503,19 +508,19 @@ msgid "Some connectors are overlapped" msgstr "Some connectors are overlapped" msgid "Select at least one object to keep after cutting." -msgstr "" +msgstr "カットした後に残すものを1つ以上選んでください。" msgid "Cut plane is placed out of object" -msgstr "" +msgstr "カット面はオブジェクトの外に配置される" msgid "Cut plane with groove is invalid" -msgstr "" +msgstr "溝のあるカット面は無効" msgid "Connector" msgstr "Connector" msgid "Cut by Plane" -msgstr "" +msgstr "面でカット" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" msgstr "Non-manifold edges be caused by cut tool: do you want to fix now?" @@ -524,10 +529,10 @@ msgid "Repairing model object" msgstr "モデルオブジェクトを修復" msgid "Cut by line" -msgstr "" +msgstr "ラインでカット" msgid "Delete connector" -msgstr "" +msgstr "コネクター削除" msgid "Mesh name" msgstr "メッシュ名" @@ -662,50 +667,50 @@ msgstr "文字形状" #. TRN - Title in Undo/Redo stack after rotate with text around emboss axe msgid "Text rotate" -msgstr "" +msgstr "テキストの回転" #. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface msgid "Text move" -msgstr "" +msgstr "テキストの移動" msgid "Set Mirror" -msgstr "" +msgstr "ミラーリング設定" msgid "Embossed text" -msgstr "" +msgstr "エンボステキスト" msgid "Enter emboss gizmo" -msgstr "" +msgstr "エンボスギズモに入る" msgid "Leave emboss gizmo" -msgstr "" +msgstr "エンボスギズモを退出" msgid "Embossing actions" -msgstr "" +msgstr "エンボス加工" msgid "Emboss" -msgstr "" +msgstr "エンボス" msgid "NORMAL" -msgstr "" +msgstr "ノーマル" msgid "SMALL" -msgstr "" +msgstr "スモール" msgid "ITALIC" -msgstr "" +msgstr "イタリック" msgid "SWISS" -msgstr "" +msgstr "スイス" msgid "MODERN" -msgstr "" +msgstr "モダン" msgid "First font" -msgstr "" +msgstr "最初のフォント" msgid "Default font" -msgstr "" +msgstr "デフォルトフォント" msgid "Advanced" msgstr "高度な設定" @@ -714,142 +719,144 @@ msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." msgstr "" +"選択されているフォントでは、文字が書けません。別のフォントを選択してみてくだ" +"さい。" msgid "Embossed text cannot contain only white spaces." -msgstr "" +msgstr "エンボス加工されたテキストは、空白部分のみを含むことはできません。" msgid "Text contains character glyph (represented by '?') unknown by font." -msgstr "" +msgstr "テキストにフォントで不明な文字記号( '?'で表される)が含まれている。" msgid "Text input doesn't show font skew." -msgstr "" +msgstr "テキスト入力でイタリック体が表示されない。" msgid "Text input doesn't show font boldness." -msgstr "" +msgstr "文字入力でボールドフォントが表示されない。" msgid "Text input doesn't show gap between lines." -msgstr "" +msgstr "テキスト入力で、行間が表示されない。" msgid "Too tall, diminished font height inside text input." -msgstr "" +msgstr "高すぎます、テキスト入力の文字高を小さくしました。" msgid "Too small, enlarged font height inside text input." -msgstr "" +msgstr "小さすぎます、テキスト入力時のフォント高さを大きくしました。" msgid "Text doesn't show current horizontal alignment." -msgstr "" +msgstr "テキストが現在の水平アライメントを示さない。" msgid "Revert font changes." -msgstr "" +msgstr "フォント変更を元に戻す" #, boost-format msgid "Font \"%1%\" can't be selected." -msgstr "" +msgstr "フォント\"%1%\"は選択できません。" msgid "Operation" -msgstr "" +msgstr "オペレーション" msgid "Join" -msgstr "" +msgstr "結合" msgid "Click to change text into object part." -msgstr "" +msgstr "クリックすると、テキストをオブジェクトパーツに変更します。" msgid "You can't change a type of the last solid part of the object." -msgstr "" +msgstr "オブジェクトの最後のソリッドパーツのタイプを変更することはできません。" msgctxt "EmbossOperation" msgid "Cut" msgstr "カット" msgid "Click to change part type into negative volume." -msgstr "" +msgstr "クリックすると、パーツタイプをマイナスボリュームに変更します。" msgid "Modifier" msgstr "モディファイア" msgid "Click to change part type into modifier." -msgstr "" +msgstr "クリックすると、パーツタイプをモディファイアに変更します。" msgid "Change Text Type" -msgstr "" +msgstr "テキストタイプ変更" #, boost-format msgid "Rename style(%1%) for embossing text" -msgstr "" +msgstr "エンボステキスト用のスタイル(%1%) をリネームする" msgid "Name can't be empty." -msgstr "" +msgstr "名前を空にすることはできません。" msgid "Name has to be unique." -msgstr "" +msgstr "名前は一意でなければなりません。" msgid "OK" msgstr "OK" msgid "Rename style" -msgstr "" +msgstr "スタイルの名前を変更" msgid "Rename current style." -msgstr "" +msgstr "源左のスタイルの名前を変更" msgid "Can't rename temporary style." -msgstr "" +msgstr "テンポラリスタイルの名前を変更できません。" msgid "First Add style to list." -msgstr "" +msgstr "まず、スタイルをリストに追加" #, boost-format msgid "Save %1% style" -msgstr "" +msgstr "%1% スタイル保存" msgid "No changes to save." -msgstr "" +msgstr "保存する変更点はありません。" msgid "New name of style" -msgstr "" +msgstr "スタイルの新しい名前" msgid "Save as new style" -msgstr "" +msgstr "新しいスタイルとして保存します。" msgid "Only valid font can be added to style." -msgstr "" +msgstr "スタイルに追加できるのは、有効なフォントだけです。" msgid "Add style to my list." -msgstr "" +msgstr "マイリストにスタイルを追加。" msgid "Save as new style." -msgstr "" +msgstr "新しいスタイルとして保存します。" msgid "Remove style" -msgstr "" +msgstr "スタイル削除" msgid "Can't remove the last existing style." -msgstr "" +msgstr "最後に存在したスタイルを削除できません。" #, boost-format msgid "Are you sure you want to permanently remove the \"%1%\" style?" -msgstr "" +msgstr "本当に\"%1%\"スタイルを永久に削除しますか?" #, boost-format msgid "Delete \"%1%\" style." -msgstr "" +msgstr "\"%1%\"スタイル削除" #, boost-format msgid "Can't delete \"%1%\". It is last style." -msgstr "" +msgstr "\"%1%\"を削除できません。直前に使用していたスタイルです。" #, boost-format msgid "Can't delete temporary style \"%1%\"." -msgstr "" +msgstr "テンポラリスタイル\"%1%\"を削除できません。" #, boost-format msgid "Modified style \"%1%\"" -msgstr "" +msgstr "変更したスタイル\"%1%\"" #, boost-format msgid "Current style is \"%1%\"" -msgstr "" +msgstr "現在のスタイルは\"%1%\"" #, boost-format msgid "" @@ -857,48 +864,53 @@ msgid "" "\n" "Would you like to continue anyway?" msgstr "" +"スタイルを\"%1%\"に変更すると、現在のスタイル変更は破棄されます。\n" +"\n" +"それでもこのまま続けますか?" msgid "Not valid style." -msgstr "" +msgstr "有効なスタイルではありません。" #, boost-format msgid "Style \"%1%\" can't be used and will be removed from a list." -msgstr "" +msgstr "スタイル\"%1%\"は使用できないので、リストから削除されます。" msgid "Unset italic" -msgstr "" +msgstr "イタリック設定を解除" msgid "Set italic" -msgstr "" +msgstr "イタリック設定" msgid "Unset bold" -msgstr "" +msgstr "ボールド設定解除" msgid "Set bold" -msgstr "" +msgstr "ボールド設定" msgid "Revert text size." -msgstr "" +msgstr "テキストサイズを元に戻す" msgid "Revert embossed depth." -msgstr "" +msgstr "エンボス深さを元に戻す" msgid "" "Advanced options cannot be changed for the selected font.\n" "Select another font." msgstr "" +"選択されているフォントでは、高度なオプションを変更することはできません。\n" +"他のフォントを選択してください。" msgid "Revert using of model surface." -msgstr "" +msgstr "モデル面の使用を元に戻す。" msgid "Revert Transformation per glyph." -msgstr "" +msgstr "文字ごとに変換を戻す。" msgid "Set global orientation for whole text." -msgstr "" +msgstr "テキスト全体のグローバルな方向を設定する。" msgid "Set position and orientation per glyph." -msgstr "" +msgstr "文字ごとに位置と方向を設定する。" msgctxt "Alignment" msgid "Left" @@ -918,84 +930,91 @@ msgstr "トップ" msgctxt "Alignment" msgid "Middle" -msgstr "" +msgstr "ミドル" msgctxt "Alignment" msgid "Bottom" msgstr "底面" msgid "Revert alignment." -msgstr "" +msgstr "アライメントを戻す。" #. TRN EmbossGizmo: font units msgid "points" -msgstr "" +msgstr "ポイント" msgid "Revert gap between characters" -msgstr "" +msgstr "文字間のズレを戻す" msgid "Distance between characters" -msgstr "" +msgstr "文字の間隔" msgid "Revert gap between lines" -msgstr "" +msgstr "ライン間のズレを戻す" msgid "Distance between lines" -msgstr "" +msgstr "ライン間距離" msgid "Undo boldness" -msgstr "" +msgstr "ボールドネス取り消し" msgid "Tiny / Wide glyphs" -msgstr "" +msgstr "小さい/広いグリフ" msgid "Undo letter's skew" -msgstr "" +msgstr "文字の傾きを取り消す" msgid "Italic strength ratio" -msgstr "" +msgstr "イタリック体の強度比" msgid "Undo translation" -msgstr "" +msgstr "移動を取り消す" msgid "Distance of the center of the text to the model surface." -msgstr "" +msgstr "テキストの中心からモデル表面までの距離。" msgid "Undo rotation" -msgstr "" +msgstr "回転を取り消す" msgid "Rotate text Clock-wise." -msgstr "" +msgstr "テキストを時計回りに回転。" msgid "Unlock the text's rotation when moving text along the object's surface." msgstr "" +"オブジェクトの表面に沿ってテキストを移動させる時に、テキストの回転ロックを解" +"除する。" msgid "Lock the text's rotation when moving text along the object's surface." msgstr "" +"オブジェクトの表面に沿ってテキストを移動させる時に、テキストの回転をロックす" +"る。" msgid "Select from True Type Collection." -msgstr "" +msgstr "True Type コレクションから選択。" msgid "Set text to face camera" -msgstr "" +msgstr "テキストをカメラに向ける" msgid "Orient the text towards the camera." -msgstr "" +msgstr "テキストの向きをカメラ側にする。" #, boost-format msgid "" "Can't load exactly same font(\"%1%\"). Aplication selected a similar " "one(\"%2%\"). You have to specify font for enable edit text." msgstr "" +"全く同じフォント(\"%1%\")を読み込むことができません。アプリケーションは似たよ" +"うなもの(\"%2%\")を選択しました。編集テキストを有効にするには、フォントを指定" +"する必要があります。" msgid "No symbol" -msgstr "" +msgstr "シンボルなし" msgid "Loading" msgstr "ロード中" msgid "In queue" -msgstr "" +msgstr "キュー内" #. TRN - Input label. Be short as possible #. Height of one text line - Font Ascent @@ -1006,35 +1025,35 @@ msgstr "高度" #. Copy surface of model on surface of the embossed text #. TRN - Input label. Be short as possible msgid "Use surface" -msgstr "" +msgstr "サーフェースを使用" #. TRN - Input label. Be short as possible #. Option to change projection on curved surface #. for each character(glyph) in text separately msgid "Per glyph" -msgstr "" +msgstr "文字あたり" #. TRN - Input label. Be short as possible #. Align Top|Middle|Bottom and Left|Center|Right msgid "Alignment" -msgstr "" +msgstr "アライメント" #. TRN - Input label. Be short as possible msgid "Char gap" -msgstr "" +msgstr "文字間ギャップ" #. TRN - Input label. Be short as possible msgid "Line gap" -msgstr "" +msgstr "ラインギャップ" #. TRN - Input label. Be short as possible msgid "Boldness" -msgstr "" +msgstr "ボールドネス" #. TRN - Input label. Be short as possible #. Like Font italic msgid "Skew ratio" -msgstr "" +msgstr "傾斜比" #. TRN - Input label. Be short as possible #. Distance from model surface to be able @@ -1042,196 +1061,200 @@ msgstr "" #. move text as modifier fully out of not flat surface #. TRN - Input label. Be short as possible msgid "From surface" -msgstr "" +msgstr "表面から" #. TRN - Input label. Be short as possible #. Keep vector from bottom to top of text aligned with printer Y axis msgid "Keep up" -msgstr "" +msgstr "続ける" #. TRN - Input label. Be short as possible. #. Some Font file contain multiple fonts inside and #. this is numerical selector of font inside font collections msgid "Collection" -msgstr "" +msgstr "コレクション" #. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe msgid "SVG rotate" -msgstr "" +msgstr "SVGの回転" #. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface msgid "SVG move" -msgstr "" +msgstr "SVGの移動" msgid "Enter SVG gizmo" -msgstr "" +msgstr "SVGギズモに入る" msgid "Leave SVG gizmo" -msgstr "" +msgstr "SVGギズモから出る" msgid "SVG actions" -msgstr "" +msgstr "SVGアクション" msgid "SVG" -msgstr "" +msgstr "SVG" #, boost-format msgid "Opacity (%1%)" -msgstr "" +msgstr "不透明度 (%1%)" #, boost-format msgid "Color gradient (%1%)" -msgstr "" +msgstr "カラーグラデーション (%1%)" msgid "Undefined fill type" -msgstr "" +msgstr "未定義のフィルタイプ" msgid "Linear gradient" -msgstr "" +msgstr "線形グラデーション" msgid "Radial gradient" -msgstr "" +msgstr "放射状グラデーション" msgid "Open filled path" -msgstr "" +msgstr "塗りつぶしパスを開く" msgid "Undefined stroke type" -msgstr "" +msgstr "未定義のストロークタイプ" msgid "Path can't be healed from selfintersection and multiple points." -msgstr "" +msgstr "自己交差および複数のポイントからパスを修復できません。" msgid "" "Final shape constains selfintersection or multiple points with same " "coordinate." -msgstr "" +msgstr "最終的な形状には、同じ座標を持つ複数の点の自己交差が含まれています。" #, boost-format msgid "Shape is marked as invisible (%1%)." -msgstr "" +msgstr "図形は非表示としてマークされています (%1%)" #. TRN: The first placeholder is shape identifier, the second one is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "" +"形状の塗りつぶし(%1%) にはサポートされていないものが含まれています: %2%" #, boost-format msgid "Stroke of shape (%1%) is too thin (minimal width is %2% mm)." -msgstr "" +msgstr "形状のストローク (%1%) が細すぎます (最小幅は %2% mm)。" #, boost-format msgid "Stroke of shape (%1%) contains unsupported: %2%." msgstr "" +"形状 (%1%) のストロークにサポートされていないものが含まれています: %2%." msgid "Face the camera" -msgstr "" +msgstr "カメラに向ける" #. TRN - Preview of filename after clear local filepath. msgid "Unknown filename" -msgstr "" +msgstr "不明なファイル名" #, boost-format msgid "SVG file path is \"%1%\"" -msgstr "" +msgstr "SVGファイルパス: \"%1%\"" msgid "Reload SVG file from disk." -msgstr "" +msgstr "ディスクからSVGファイルを再読込みします。" msgid "Change file" -msgstr "" +msgstr "ファイル変更" msgid "Change to another .svg file" -msgstr "" +msgstr "別の .svg ファイルに変更します" msgid "Forget the file path" -msgstr "" +msgstr "ファイルパスを忘れる" msgid "" "Do NOT save local path to 3MF file.\n" "Also disables 'reload from disk' option." msgstr "" +"ローカルパスを3MFファイルに保存しない。\n" +"また、'reload from disk' オプションも無効にする。" #. TRN: An menu option to convert the SVG into an unmodifiable model part. msgid "Bake" -msgstr "" +msgstr "焼付け" #. TRN: Tooltip for the menu item. msgid "Bake into model as uneditable part" -msgstr "" +msgstr "編集不可パーツとしてモデルに焼付けする" msgid "Save as" -msgstr "" +msgstr "別名で保存" msgid "Save SVG file" -msgstr "" +msgstr "SVGファイルの保存" msgid "Save as '.svg' file" -msgstr "" +msgstr "'.svg' ファイルとして保存" msgid "Size in emboss direction." -msgstr "" +msgstr "エンボス方向のサイズです。" #. TRN: The placeholder contains a number. #, boost-format msgid "Scale also changes amount of curve samples (%1%)" -msgstr "" +msgstr "スケールによりカーブ サンプル量も変更されます(%1%)" msgid "Width of SVG." -msgstr "" +msgstr "SVGの幅" msgid "Height of SVG." -msgstr "" +msgstr "SVGの高さ" msgid "Lock/unlock the aspect ratio of the SVG." -msgstr "" +msgstr "SVG のアスペクト比をロック/アンロックします。" msgid "Reset scale" -msgstr "" +msgstr "縮尺をリセット" msgid "Distance of the center of the SVG to the model surface." -msgstr "" +msgstr "SVG の中心からモデル表面までの距離。" msgid "Reset distance" -msgstr "" +msgstr "距離をリセット" msgid "Reset rotation" -msgstr "" +msgstr "回転をリセット" msgid "Lock/unlock rotation angle when dragging above the surface." -msgstr "" +msgstr "表面上をドラッグするときの回転角度のロック/アンロック。" msgid "Mirror vertically" -msgstr "" +msgstr "垂直にミラーリング" msgid "Mirror horizontally" -msgstr "" +msgstr "水平にミラーリング" #. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else). msgid "Change SVG Type" -msgstr "" +msgstr "SVGタイプ変更" #. TRN - Input label. Be short as possible msgid "Mirror" msgstr "反転" msgid "Choose SVG file for emboss:" -msgstr "" +msgstr "エンボス用の SVG ファイルを選択します:" #, boost-format msgid "File does NOT exist (%1%)." -msgstr "" +msgstr "ファイルが存在しません (%1%)。" #, boost-format msgid "Filename has to end with \".svg\" but you selected %1%" -msgstr "" +msgstr "ファイル名は\".svg\" で終わる必要がありますが、%1%を選択しました" #, boost-format msgid "Nano SVG parser can't load from file (%1%)." -msgstr "" +msgstr "Nano SVG パーサーはファイル(%1%)からロードできません。" #, boost-format msgid "SVG file does NOT contain a single path to be embossed (%1%)." -msgstr "" +msgstr "SVG ファイルには、エンボスされる単一のパス(%1%)が含まれていません。" msgid "Vertex" msgstr "Vertex" @@ -1276,7 +1299,7 @@ msgid "Esc" msgstr "Esc" msgid "Unselect" -msgstr "" +msgstr "選択解除" msgid "Measure" msgstr "Measure" @@ -1449,7 +1472,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "ファイルを選択 (3mf/step/stl/svg/obj/amf)" msgid "Choose ZIP file" -msgstr "" +msgstr "ZIPファイルの選択" msgid "Choose one file (gcode/3mf):" msgstr "" @@ -1522,6 +1545,8 @@ msgid "" "Could not start URL download. Destination folder is not set. Please choose " "destination folder in Configuration Wizard." msgstr "" +"URLのダウンロードを開始できませんでした。保存先フォルダが設定されていません。" +"設定ウィザードで保存先フォルダーを選択してください。" msgid "Import File" msgstr "Import File" @@ -1612,22 +1637,22 @@ msgid "Add support enforcer" msgstr "サポート補強を追加" msgid "Add text" -msgstr "" +msgstr "テキストの追加" msgid "Add negative text" -msgstr "" +msgstr "切取りテキストの追加" msgid "Add text modifier" -msgstr "" +msgstr "テキストモディファイアの追加" msgid "Add SVG part" -msgstr "" +msgstr "SVGパーツ追加" msgid "Add negative SVG" -msgstr "" +msgstr "切取りSVGの追加" msgid "Add SVG modifier" -msgstr "" +msgstr "SVGモディファイアの追加" msgid "Select settings" msgstr "設定を選択" @@ -1689,7 +1714,7 @@ msgid "" msgstr "" msgid "Text" -msgstr "" +msgstr "テキスト" msgid "Height range Modifier" msgstr "Height Range Modifier" @@ -1822,16 +1847,16 @@ msgid "Mirror object" msgstr "オブジェクトを反転" msgid "Edit text" -msgstr "" +msgstr "テキスト編集" msgid "Ability to change text, font, size, ..." -msgstr "" +msgstr "テキスト、フォント、サイズ、...を変更することが可能" msgid "Edit SVG" -msgstr "" +msgstr "SVG編集" msgid "Change SVG source file, projection, size, ..." -msgstr "" +msgstr "SVG ソース ファイル、プロジェクション、サイズなどを変更します。" msgid "Invalidate cut info" msgstr "Invalidate cut info" @@ -2501,13 +2526,13 @@ msgid "Bed filling done." msgstr "Bed filling done." msgid "Searching for optimal orientation" -msgstr "" +msgstr "最適方向を探す" msgid "Orientation search canceled." -msgstr "" +msgstr "オリエンテーション検索がキャンセルされました。" msgid "Orientation found." -msgstr "" +msgstr "オリエンテーションが見つかりました。" msgid "Logging in" msgstr "サインイン中" @@ -3095,7 +3120,7 @@ msgid "Successfully executed post-processing script" msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "Gコードのエクスポート中に不明なエラーが発生しました。" #, boost-format msgid "" @@ -3103,6 +3128,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"一時的なGコードの出力Gコードへのコピーに失敗しました。 もしかしたらSDカードが" +"書き込みロックされていませんか?\n" +"エラーメッセージ:%1%" #, boost-format msgid "" @@ -3110,28 +3138,37 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"一時Gコードの出力Gコードへのコピーに失敗しました。 ターゲットデバイスに問題が" +"ある可能性があります。もう一度エクスポートするか、別のデバイスを使用してみて" +"ください。 破損した出力Gコードは%1%.tmpにあります。" #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"選択した宛先フォルダーにコピーした後、Gコードの名前を変更できませんでした。 " +"現在のパスは%1%.tmpです。 もう一度やり直してください。" #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"一時的なGコードのコピーは完了しましたが、コピーチェック中に元のGコードの%1%を" +"開くことができませんでした。 出力Gコードは、%2%.tmpです。" #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"一時的なGコードのコピーは完了しましたが、コピーチェック中にエクスポートされた" +"Gコードを開くことができませんでした。 出力Gコードは、%1%.tmpです。" #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "Gコードファイルを%1%にエクスポートしました" msgid "Unknown error when export G-code." msgstr "不明なエラー: G-codeエクスポート" @@ -3803,19 +3840,19 @@ msgstr "デフォルト" #, boost-format msgid "Edit Custom G-code (%1%)" -msgstr "" +msgstr "カスタムG-コードの編集(%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" -msgstr "" +msgstr "組込みプレースホルダー (アイテムをダブルクリックして G コードに追加)" msgid "Search gcode placeholders" msgstr "" msgid "Add selected placeholder to G-code" -msgstr "" +msgstr "選択したプレースホルダーをGコードに追加する" msgid "Select placeholder" -msgstr "" +msgstr "プレースホルダーを選択" msgid "[Global] Slicing State" msgstr "" @@ -3836,17 +3873,17 @@ msgid "Objects Info" msgstr "" msgid "Dimensions" -msgstr "" +msgstr "寸法" msgid "Temperatures" -msgstr "" +msgstr "温度" msgid "Timestamps" -msgstr "" +msgstr "タイムスタンプ" #, boost-format msgid "Specific for %1%" -msgstr "" +msgstr "%1%に固有" msgid "Presets" msgstr "Presets" @@ -3858,7 +3895,7 @@ msgid "Filament settings" msgstr "フィラメント設定" msgid "SLA Materials settings" -msgstr "" +msgstr "SLAマテリアル設定" msgid "Printer settings" msgstr "プリンター設定" @@ -5789,10 +5826,10 @@ msgstr "" "It is recommended to change to smooth mode." msgid "Expand sidebar" -msgstr "" +msgstr "サイドバーを展開" msgid "Collapse sidebar" -msgstr "" +msgstr "サイドバーを折りたたむ" #, c-format, boost-format msgid "Loading file: %s" @@ -6065,7 +6102,7 @@ msgid "" msgstr "" msgid "Import SLA archive" -msgstr "" +msgstr "SLAアーカイブをインポート" msgid "The selected file" msgstr "選択したファイル" @@ -6079,16 +6116,17 @@ msgstr "G-codeファイルの読込みにエラーが発生しました" #. TRN %1% is archive path #, boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "パス %1% の ZIP ファイルの読み込みに失敗しました。" #. TRN: First argument = path to file, second argument = error description #, boost-format msgid "Failed to unzip file to %1%: %2%" -msgstr "" +msgstr "ファイルを %1%に解凍できませんでした: %2%" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." msgstr "" +"%1%で解凍されたファイルが見つかりません。ファイルの解凍に失敗しました。" msgid "Drop project file" msgstr "プロジェクトをドロップ" @@ -6176,15 +6214,20 @@ msgid "" "3MF file?\n" "If you hit 'NO', all SVGs in the project will not be editable any more." msgstr "" +"オリジナルの SVG をローカル パスとともに 3MF ファイルに保存してもよろしいです" +"か?\n" +"「いいえ」を押すと、プロジェクト内のすべての SVG は編集できなくなります。" msgid "Private protection" -msgstr "" +msgstr "プライベートプロテクション" msgid "Is the printer ready? Is the print sheet in place, empty and clean?" msgstr "" +"プリンター準備はできていますか?プリントシートの上は空で、きれいな状態で装着" +"されていますか?" msgid "Upload and Print" -msgstr "" +msgstr "アップロードとプリント" msgid "" "Print By Object: \n" @@ -6361,7 +6404,7 @@ msgid "" msgstr "" msgid "Home" -msgstr "" +msgstr "ホーム" msgid "Default Page" msgstr "" @@ -6392,10 +6435,12 @@ msgstr "" "2D window center." msgid "Use free camera" -msgstr "" +msgstr "フリーカメラを使用" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" +"チェックすると、フリーカメラが使用されます。 そうでない場合は、拘束カメラを使" +"用します。" msgid "Reverse mouse zoom" msgstr "" @@ -6404,7 +6449,7 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" msgid "Show splash screen" -msgstr "" +msgstr "スプラッシュ画面を表示する" msgid "Show the splash screen during startup." msgstr "" @@ -6447,7 +6492,7 @@ msgstr "" "same time and manage multiple devices." msgid "Network" -msgstr "" +msgstr "ネットワーク (&N)" msgid "Auto sync user presets(Printer/Filament/Process)" msgstr "ユーザープリセットの自動同期 (プリンター/フィラメント/プロセス)" @@ -7409,7 +7454,7 @@ msgid "Tree supports" msgstr "" msgid "Skirt" -msgstr "" +msgstr "スカート" msgid "Prime tower" msgstr "プライムタワー" @@ -7570,16 +7615,16 @@ msgid "Multimaterial" msgstr "" msgid "Wipe tower parameters" -msgstr "" +msgstr "ワイプタワーのパラメータ" msgid "Toolchange parameters with single extruder MM printers" -msgstr "" +msgstr "単一エクストルーダーMMプリンターのツールチェンジパラメーター" msgid "Ramming settings" -msgstr "" +msgstr "ラミング設定" msgid "Toolchange parameters with multi extruder MM printers" -msgstr "" +msgstr "マルチエクストルーダーMMプリンターのツールチェンジパラメータ" msgid "Printable space" msgstr "造形可能領域" @@ -7651,10 +7696,10 @@ msgid "Single extruder multimaterial setup" msgstr "" msgid "Wipe tower" -msgstr "" +msgstr "ワイプタワー" msgid "Single extruder multimaterial parameters" -msgstr "" +msgstr "単一エクストルーダーのマルチマテリアルパラメーター" msgid "Layer height limits" msgstr "積層ピッチの制限" @@ -7856,9 +7901,11 @@ msgid "" "Note: New modified presets will be selected in settings tabs after close " "this dialog." msgstr "" +"選択したオプションを左のプリセットから右に転送します。\n" +"注意:このダイアログを閉じた後、新しいプリセットが設定タブで選択されます。" msgid "Transfer values from left to right" -msgstr "" +msgstr "左から右へ値を移す" msgid "" "If enabled, this dialog can be used for transfer selected values from left " @@ -7943,7 +7990,7 @@ msgid "The configuration is up to date." msgstr "構成データが最新です" msgid "Ramming customization" -msgstr "" +msgstr "ラミングのカスタマイズ" msgid "" "Ramming denotes the rapid extrusion just before a tool change in a single-" @@ -7956,21 +8003,30 @@ msgid "" "This is an expert-level setting, incorrect adjustment will likely lead to " "jams, extruder wheel grinding into filament etc." msgstr "" +"ラミングとは、単一エクストルーダーMMプリンターでツールを交換する直前の急速吐" +"出動作を指します。 その目的は、フィラメントを抜く時に新しいフィラメントの挿入" +"を妨げないようにすることと、再挿入のときにエラーにならないよう、フィラメント" +"の先端部を適切なシェイプにすることです。 この処理は重要であり、材料が変わる" +"と、良好な先端形状が得られるラミング条件の変更が必要となったりします。 このた" +"め、ラミング中の吐出速度は調整できるようになっています。\n" +"\n" +"これはエキスパートレベルの設定です。不適切な調整は、ジャムや、ドライブギアが" +"フィラメントを削ったりする可能性があります。" msgid "Total ramming time" -msgstr "" +msgstr "トータルラミング時間" msgid "s" msgstr "s" msgid "Total rammed volume" -msgstr "" +msgstr "合計ラミング容積" msgid "Ramming line width" -msgstr "" +msgstr "ラミング線幅" msgid "Ramming line spacing" -msgstr "" +msgstr "ラミング線間距離" msgid "Auto-Calc" msgstr "自動計算" @@ -8202,13 +8258,13 @@ msgid "Gizmo FDM paint-on seam" msgstr "継ぎ目ペイント" msgid "Gizmo Text emboss / engrave" -msgstr "" +msgstr "ギズモ・テキストのエンボス/エングレーブ" msgid "Zoom in" -msgstr "" +msgstr "ズームイン" msgid "Zoom out" -msgstr "" +msgstr "縮小" msgid "Switch between Prepare/Preview" msgstr "" @@ -8744,18 +8800,22 @@ msgstr "複数の素材の場合、スパイラルモードを使用できませ #, boost-format msgid "The object %1% exceeds the maximum build volume height." -msgstr "" +msgstr "オブジェクト %1% がビルドボリュームの最大高さを超えています。" #, boost-format msgid "" "While the object %1% itself fits the build volume, its last layer exceeds " "the maximum build volume height." msgstr "" +"オブジェクト %1% 自体はビルドボリュームに適合していますが、その最後のレイヤー" +"はビルドボリュームの最大高さを超えてしまいます。" msgid "" "You might want to reduce the size of your model or change current print " "settings and retry." msgstr "" +"モデルのサイズを小さくするか、現在のプリント設定を変更してリトライしてくださ" +"い。" msgid "Variable layer height is not supported with Organic supports." msgstr "Variable layer height is not supported with Organic supports." @@ -8841,16 +8901,22 @@ msgid "" "Organic support tree tip diameter must not be smaller than support material " "extrusion width." msgstr "" +"有機サポート枝の先端の直径は、サポート材の押し出し幅よりも小さくする必要があ" +"ります。" msgid "" "Organic support branch diameter must not be smaller than 2x support material " "extrusion width." msgstr "" +"有機サポート枝の直径は、サポート材の押し出し幅の2倍よりも小さくする必要があり" +"ます。" msgid "" "Organic support branch diameter must not be smaller than support tree tip " "diameter." msgstr "" +"有機サポートの枝の直径は、サポートの幹の先端直径よりも小さい値である必要があ" +"ります。" msgid "" "Support enforcers are used but support is not enabled. Please enable support." @@ -8866,16 +8932,23 @@ msgid "" "each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " "layer_gcode." msgstr "" +"相対的なエクストルーダーアドレッシングは、浮動小数点精度による損失を防ぐため" +"に、各レイヤーでエクストルーダー位置をリセットする必要があります。layer_gcode" +"に \"G92 E0 \"を追加する。" msgid "" "\"G92 E0\" was found in before_layer_gcode, which is incompatible with " "absolute extruder addressing." msgstr "" +"before_layer_gcode に \"G92 E0\" が見つかりましたが、これはエクストルーダーの" +"絶対アドレッシングと互換性がありません。" msgid "" "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " "extruder addressing." msgstr "" +"layer_gcode に \"G92 E0\" が見つかりましたが、これはエクストルーダーの絶対ア" +"ドレッシングと互換性がありません。" #, c-format, boost-format msgid "Plate %d: %s does not support filament %s" @@ -9211,7 +9284,7 @@ msgid "" msgstr "" msgid "Everywhere" -msgstr "" +msgstr "どこでも" msgid "Top and bottom surfaces" msgstr "" @@ -9670,7 +9743,7 @@ msgid "" msgstr "" msgid "Disabled" -msgstr "" +msgstr "無効" msgid "Limited filtering" msgstr "" @@ -10075,54 +10148,61 @@ msgid "" msgstr "" msgid "Loading speed" -msgstr "" +msgstr "ローディング速度" msgid "Speed used for loading the filament on the wipe tower." -msgstr "" +msgstr "フィラメントをワイプタワー上でロードする際のスピード。" msgid "Loading speed at the start" -msgstr "" +msgstr "ローディング開始時の速度" msgid "Speed used at the very beginning of loading phase." -msgstr "" +msgstr "ロードし始めの最初のスピード。" msgid "Unloading speed" -msgstr "" +msgstr "アップロードスピード" msgid "" "Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" +"ワイプタワー上でアンロードするときのスピード(ラミング直後のアンロードスピー" +"ドには影響しません)" msgid "Unloading speed at the start" -msgstr "" +msgstr "最初のアンロードスピード" msgid "" "Speed used for unloading the tip of the filament immediately after ramming." -msgstr "" +msgstr "ラミング直後にフィラメントの先端を引き抜く速度。" msgid "Delay after unloading" -msgstr "" +msgstr "アンロードした後の待ち時間" 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 "" +"フィラメントがアンロードされた後に停止する時間。 軟らかい材料などで元の寸法に" +"縮小するのに時間を必要とすると考えられる場合で、信頼性の高いツール交換を行う" +"のに役立ちます。" msgid "Number of cooling moves" -msgstr "" +msgstr "冷却移動回数" msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " "Specify desired number of these moves." msgstr "" +"フィラメントは、冷却チューブ内で上下に移動することにより冷却されます。 これら" +"の上下移動の必要な回数を指定します。" msgid "Speed of the first cooling move" -msgstr "" +msgstr "冷却移動の最初の速度" msgid "Cooling moves are gradually accelerating beginning at this speed." -msgstr "" +msgstr "クーリング動作はこのスピードから徐々に加速します。" msgid "Minimal purge on wipe tower" msgstr "プライムタワー上最小フラッシュ量" @@ -10136,33 +10216,41 @@ msgid "" msgstr "" msgid "Speed of the last cooling move" -msgstr "" +msgstr "最後の冷却移動の速度" msgid "Cooling moves are gradually accelerating towards this speed." -msgstr "" +msgstr "冷却動作は、この速度に向かって徐々に加速しています。" 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コード" +"時間推定プログラムによって合計プリント時間に追加されます。" msgid "Ramming parameters" -msgstr "" +msgstr "ラミングパラメーター" msgid "" "This string is edited by RammingDialog and contains ramming specific " "parameters." msgstr "" +"この文字列はラミングダイアログで編集され、ラミング固有のパラメーターが含まれ" +"ています。" 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コード時" +"間予測プログラムによって合計プリント予測時間に追加されます。" msgid "Enable ramming for multitool setups" -msgstr "" +msgstr "マルチツールのセットアップでラミングを有効にする" msgid "" "Perform ramming when using multitool printer (i.e. when the 'Single Extruder " @@ -10170,18 +10258,23 @@ msgid "" "amount of filament is rapidly extruded on the wipe tower just before the " "toolchange. This option is only used when the wipe tower is enabled." msgstr "" +"マルチツールプリンターを使用しているとき(つまり、プリンター設定の「シングル" +"エクストルーダーマルチマテリアル」のチェックが外れているとき)に、ラミングを" +"実行します。チェックすると、ツール交換の直前に少量のフィラメントがワイプタ" +"ワー上で急速に押し出されます。このオプションは、ワイプタワーが有効な場合にの" +"み使用されます。" msgid "Multitool ramming volume" -msgstr "" +msgstr "マルチツールラミング量" msgid "The volume to be rammed before the toolchange." -msgstr "" +msgstr "ツールチェンジ前にラミングで使用する量" msgid "Multitool ramming flow" -msgstr "" +msgstr "マルチツールラミングフロー" msgid "Flow used for ramming the filament before the toolchange." -msgstr "" +msgstr "ツールチェンジ前のフィラメントのラミングに使うフロー。" msgid "Density" msgstr "密度" @@ -10332,7 +10425,7 @@ msgid "1000 (unlimited)" msgstr "1000 (unlimited)" msgid "Maximum length of the infill anchor" -msgstr "" +msgstr "最長インフィルアンカー" msgid "" "Connect an infill line to an internal perimeter with a short segment of an " @@ -10717,7 +10810,7 @@ msgid "Enable this option if you want to use multiple bed types" msgstr "" msgid "Label objects" -msgstr "" +msgstr "オブジェクトにラベルを付ける" msgid "" "Enable this to add comments into the G-Code labeling print moves with what " @@ -10733,13 +10826,16 @@ msgid "Enable this option to add EXCLUDE OBJECT command in g-code" msgstr "" msgid "Verbose G-code" -msgstr "" +msgstr "コメント付きGコード" 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カードからプリントする場合、ファイルサイズ増大" +"が原因で処理が間に合わずプリント速度が低下する可能性があります。" msgid "Infill combination" msgstr "インフィル マージ" @@ -11064,7 +11160,7 @@ msgid "" msgstr "" msgid "mm³/s²" -msgstr "" +msgstr "mm³/s²" msgid "Smoothing segment length" msgstr "" @@ -11117,12 +11213,14 @@ msgid "Diameter of nozzle" msgstr "ノズル直径" msgid "Configuration notes" -msgstr "" +msgstr "設定上の注意" msgid "" "You can put here your personal notes. This text will be added to the G-code " "header comments." msgstr "" +"ここにメモを書いておくことができます。 このテキストは、Gコードヘッダーのコメ" +"ントに追加されます。" msgid "Host Type" msgstr "ホストタイプ" @@ -11139,36 +11237,43 @@ msgid "Volume of nozzle between the cutter and the end of nozzle" msgstr "ノズル先端とフィラメントカッターの間の体積" msgid "Cooling tube position" -msgstr "" +msgstr "冷却チューブ位置" msgid "Distance of the center-point of the cooling tube from the extruder tip." -msgstr "" +msgstr "ノズル先端から冷却チューブの中心までの距離。" msgid "Cooling tube length" -msgstr "" +msgstr "冷却チューブの長さ" msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "" +"ノズルからの溶融樹脂を引抜いた後にフィラメントを凝固させるための冷却用チュー" +"ブの長さ。" msgid "High extruder current on filament swap" -msgstr "" +msgstr "フィラメント交換時の高いエクストルーダー電流" 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 "" +"フィラメント交換シーケンス中にエクストルーダーモーター電流を増やして、フィラ" +"メント押出し力を高められます。フィラメントの先端シェイプによりロード時の負荷" +"抵抗が増加してしまう場合に有効な機能です。" msgid "Filament parking position" -msgstr "" +msgstr "フィラメント待避ポジション" 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 "" +"アンロード時にフィラメントが止まっている位置からエクストルーダー先端までの距" +"離。 これは、プリンターファームウェアの値と一致させる必要があります。" msgid "Extra loading distance" -msgstr "" +msgstr "追加ローディング長さ" msgid "" "When set to zero, the distance the filament is moved from parking position " @@ -11176,6 +11281,9 @@ msgid "" "positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" +"ゼロに設定すると、ロード中にフィラメントがパーキング位置から押し出される距離" +"は、アンロード中に戻った距離と同一になります。 正の場合、その分多くロードさ" +"れ、逆に負の場合は、ロード距離はアンロードよりも短くなります。" msgid "Start end points" msgstr "終始点" @@ -11418,7 +11526,7 @@ msgid "Spiral" msgstr "スパイラル" msgid "Only lift Z above" -msgstr "" +msgstr "これ以上でリフトZ" msgid "" "If you set this to a positive value, Z lift will only take place above the " @@ -11426,7 +11534,7 @@ msgid "" msgstr "" msgid "Only lift Z below" -msgstr "" +msgstr "Zリフト以下" msgid "" "If you set this to a positive value, Z lift will only take place below the " @@ -11460,11 +11568,15 @@ 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 "" +"移動後に引込みが補償されると、エクストルーダーはこの追加量のフィラメントを押" +"し出します。 この設定はほとんど必要ありません。" msgid "" "When the retraction is compensated after changing tool, the extruder will " "push this additional amount of filament." msgstr "" +"ツールの交換後に吸込み分が補正されると、エクストルーダーはこの追加量のフィラ" +"メントを押し出します。" msgid "Retraction Speed" msgstr "リトラクション速度" @@ -11519,12 +11631,14 @@ msgid "Random" msgstr "ランダム" msgid "Staggered inner seams" -msgstr "" +msgstr "ジグザグ状のインナーシーム" msgid "" "This option causes the inner seams to be shifted backwards based on their " "depth, forming a zigzag pattern." msgstr "" +"このオプションは、内側のシーム部を深さに応じて後方にずらし、ジグザグ模様を形" +"成するものです。" msgid "Seam gap" msgstr "Seam gap" @@ -11695,7 +11809,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Number of skirt layers: usually only one" msgid "Draft shield" -msgstr "" +msgstr "保護シールド" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -11712,10 +11826,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "限定" msgid "Enabled" -msgstr "" +msgstr "有効" msgid "Skirt loops" msgstr "スカートのループ数" @@ -11823,7 +11937,7 @@ msgid "Start G-code when start the printing of this filament" msgstr "このフィラメントを使用開始時のG-code" msgid "Single Extruder Multi Material" -msgstr "" +msgstr "シングルエクストルーダー・マルチマテリアル" msgid "Use single nozzle to print multi filament" msgstr "" @@ -11857,14 +11971,21 @@ msgid "" "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" +"有効にすると、ツール変更がない場合にワイプタワーをプリントしなくなります。 ワ" +"イプタワーの高さが同期しなくなりますので、ツールチェンジのあるレイヤーでは、" +"エクストルーダーがプリント面より下方に移動してワイプタワーをプリントするケー" +"スもあります。 この場合、プリントした部分との衝突がないことをご自身で確認して" +"おく必要があります。" msgid "Prime all printing extruders" -msgstr "" +msgstr "全てのエクストルーダーでプライムを実施" msgid "" "If enabled, all printing extruders will be primed at the front edge of the " "print bed at the start of the print." msgstr "" +"有効にすると、すべてのプリントエクストルーダーは、プリント開始時にプリント" +"ベッドの前端で準備されます。" msgid "Slice gap closing radius" msgstr "隙間充填半径" @@ -11898,7 +12019,7 @@ msgid "Close holes" msgstr "穴を閉じる" msgid "Z offset" -msgstr "" +msgstr "Zオフセット" msgid "" "This value will be added (or subtracted) from all the Z coordinates in the " @@ -11906,6 +12027,10 @@ msgid "" "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に設定します(もしくはエンドス" +"トップ位置を修正します)。" msgid "Enable support" msgstr "有効化" @@ -12111,7 +12236,7 @@ msgid "Tree Hybrid" msgstr "ツリーハイブリッド" msgid "Organic" -msgstr "" +msgstr "オーガニック" msgid "Independent support layer height" msgstr "独立サポート層ピッチ" @@ -12145,7 +12270,7 @@ msgstr "" "大きくなると、枝部分が繋がりやすくなります。" msgid "Preferred Branch Angle" -msgstr "" +msgstr "優先の枝アングル" #. TRN PrintSettings: "Organic supports" > "Preferred Branch Angle" msgid "" @@ -12153,6 +12278,8 @@ msgid "" "model. Use a lower angle to make them more vertical and more stable. Use a " "higher angle for branches to merge faster." msgstr "" +"枝の好ましい角度、モデルを避ける必要がない場合。低い角度を使用すると、より垂" +"直になり、より安定します。枝が早く合流するようにするには、角度を高くします。" msgid "Tree support branch distance" msgstr "ツリーサポート枝間隔" @@ -12162,7 +12289,7 @@ msgid "" msgstr "サポートタイプがツリーの時、隣接するノードの距離です。" msgid "Branch Density" -msgstr "" +msgstr "枝の密度" #. TRN PrintSettings: "Organic supports" > "Branch Density" msgid "" @@ -12172,6 +12299,10 @@ msgid "" "interfaces instead of a high branch density value if dense interfaces are " "needed." msgstr "" +"枝の先端を生成するために使用されるサポート構造の密度を調整します。高い値を設" +"定するとオーバーハングが良くなりますが、サポートの除去が困難になるため、密度" +"の高いインターフェースが必要な場合は、枝密度を高めるのではなく、トップサポー" +"トのインターフェースを有効にすることをお勧めします。" msgid "Adaptive layer height" msgstr "アダプティブ積層ピッチ" @@ -12196,11 +12327,11 @@ msgid "Distance from tree branch to the outermost brim line" msgstr "" msgid "Tip Diameter" -msgstr "" +msgstr "先端径" #. TRN PrintSettings: "Organic supports" > "Tip Diameter" msgid "Branch tip diameter for organic supports." -msgstr "" +msgstr "オーガニックサポート時の枝先径。" msgid "Tree support branch diameter" msgstr "ツリーサポート枝直径" @@ -12210,7 +12341,7 @@ msgstr "サポートノードの初期直径です。" #. TRN PrintSettings: #lmFIXME msgid "Branch Diameter Angle" -msgstr "" +msgstr "枝径アングル" #. TRN PrintSettings: "Organic supports" > "Branch Diameter Angle" msgid "" @@ -12219,9 +12350,12 @@ msgid "" "over their length. A bit of an angle can increase stability of the organic " "support." msgstr "" +"枝の直径が、下に向かって徐々に太くなっていくときの角度です。角度が0だと、枝の" +"太さが一定になります。少し角度をつけると、オーガニックサポートの安定性が増し" +"ます。" msgid "Branch Diameter with double walls" -msgstr "" +msgstr "二重ウォール枝径" #. TRN PrintSettings: "Organic supports" > "Branch Diameter" msgid "" @@ -12229,6 +12363,9 @@ msgid "" "printed with double walls for stability. Set this value to zero for no " "double walls." msgstr "" +"この直径の円の面積よりも大きな面積を持つ枝は、安定性向上のためために二重" +"ウォールでプリントされます。 二重ウォールにしないときは、この値をゼロに設定し" +"ます。" msgid "Support wall loops" msgstr "Support wall loops" @@ -12388,24 +12525,26 @@ msgid "Width of prime tower" msgstr "プライムタワーの幅です。" msgid "Wipe tower rotation angle" -msgstr "" +msgstr "ワイプタワーの回転角" msgid "Wipe tower rotation angle with respect to x-axis." -msgstr "" +msgstr "x軸に対するワイプタワーの回転角度。" msgid "Stabilization cone apex angle" -msgstr "" +msgstr "スタビライザーコーンの頂角" msgid "" "Angle at the apex of the cone that is used to stabilize the wipe tower. " "Larger angle means wider base." msgstr "" +"ワイプタワーを安定させるために使用される円錐の頂点の角度。角度が大きいと底面" +"が広くなります。" msgid "Wipe tower purge lines spacing" -msgstr "" +msgstr "ワイプタワーのパージラインの間隔" msgid "Spacing of purge lines on the wipe tower." -msgstr "" +msgstr "ワイプタワーのパージラインの間隔。" msgid "Maximum wipe tower print speed" msgstr "" @@ -12433,21 +12572,26 @@ msgid "" msgstr "" msgid "Wipe tower extruder" -msgstr "" +msgstr "ワイプタワーエクストルーダー" msgid "" "The extruder to use when printing perimeter of the wipe tower. Set to 0 to " "use the one that is available (non-soluble would be preferred)." msgstr "" +"ワイプタワーの外周を印刷する際に使用するエクストルーダーです。0に設定すると、" +"使用可能なものを使用します(非水溶性であることが望ましい)。" msgid "Purging volumes - load/unload volumes" -msgstr "" +msgstr "パージ量-ロード/アンロード時" 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 "" +"このベクトル列には、ワイプタワーで使用される各フィラメント間で変更するために" +"必要なボリュームが保存されます。 これらの値は、以下の完全なパージボリュームの" +"作成を簡素化するために使用されます。" msgid "" "Purging after filament change will be done inside objects' infills. This may " @@ -12477,10 +12621,10 @@ msgstr "" "無効になります。" msgid "Maximal bridging distance" -msgstr "" +msgstr "ブリッジ最大距離" msgid "Maximal distance between supports on sparse infill sections." -msgstr "" +msgstr "中抜きインフィルレイヤーの間隔の最大値。" msgid "X-Y hole compensation" msgstr "ホール補正 X-Y" @@ -12534,7 +12678,7 @@ msgid "Rotate the polyhole every layer." msgstr "" msgid "G-code thumbnails" -msgstr "" +msgstr "Gコードのサムネイル" msgid "" "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the " @@ -12542,12 +12686,14 @@ msgid "" msgstr "" msgid "Format of G-code thumbnails" -msgstr "" +msgstr "Gコードサムネイルのフォーマット" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " "QOI for low memory firmware" msgstr "" +"Gコードサムネイルのフォーマット。PNGは最高の品質、JPGは最小のサイズ、QOIは低" +"メモリのファームウェアのため" msgid "Use relative E distances" msgstr "Use relative E distances" @@ -12713,7 +12859,7 @@ msgid "Do not run any validity checks, such as gcode path conflicts check." msgstr "Do not run any validity checks, such as G-code path conflicts check." msgid "Ensure on bed" -msgstr "" +msgstr "ベッド上で確認" msgid "" "Lift the object above the bed when it is partially below. Disabled by default" @@ -12726,22 +12872,24 @@ msgid "Orient options: 0-disable, 1-enable, others-auto" msgstr "" msgid "Rotation angle around the Z axis in degrees." -msgstr "" +msgstr "Z軸周りの回転角度(度)。" msgid "Rotate around Y" -msgstr "" +msgstr "Y軸周りの回転" msgid "Rotation angle around the Y axis in degrees." -msgstr "" +msgstr "Y軸を中心とした回転角(度単位)。" msgid "Data directory" -msgstr "" +msgstr "データディレクトリー" msgid "" "Load and store settings at the given directory. This is useful for " "maintaining different profiles or including configurations from a network " "storage." msgstr "" +"指定されたディレクトリで設定を読込み/保存します。 これは、異なるプロファイル" +"を維持したり、ネットワークストレージからの構成を含めたりするのに役立ちます。" msgid "Load custom gcode" msgstr "" @@ -12750,91 +12898,105 @@ msgid "Load custom gcode from json" msgstr "" msgid "Current z-hop" -msgstr "" +msgstr "現在のz-hop" msgid "Contains z-hop present at the beginning of the custom G-code block." -msgstr "" +msgstr "カスタムGコードブロックの先頭に存在するz-hopを含む。" msgid "" "Position of the extruder at the beginning of the custom G-code block. If the " "custom G-code travels somewhere else, it should write to this variable so " "PrusaSlicer knows where it travels from when it gets control back." msgstr "" +"カスタム G コード ブロックの先頭のエクストルーダーのモーターの位置。 カスタ" +"ム G コードで動かしたとき、PrusaSlicer が制御を取り戻したときにどこから移動し" +"たかを認識できるように、この変数に書き込む必要があります。" msgid "" "Retraction state at the beginning of the custom G-code block. If the custom " "G-code moves the extruder axis, it should write to this variable so " "PrusaSlicer deretracts correctly when it gets control back." msgstr "" +"カスタム G コード ブロックの先頭のリトラクション状態。 カスタム G コードがエ" +"クストルーダー軸を動かすとき、PrusaSlicer が制御を取り戻したときに正しく撤回" +"できるように、この変数に書き込む必要があります。" msgid "Extra deretraction" -msgstr "" +msgstr "追加リトラクションからの復帰" msgid "Currently planned extra extruder priming after deretraction." msgstr "" +"現在、リトラクションからの復帰時のエクストルーダーの追加プライミングが計画さ" +"れています。" msgid "Current extruder" -msgstr "" +msgstr "現在のエクストルーダー" msgid "Zero-based index of currently used extruder." -msgstr "" +msgstr "現在使用されているエクストルーダーの 0 から始まるインデックス。" msgid "Current object index" -msgstr "" +msgstr "現在のオブジェクトインデックス" msgid "" "Specific for sequential printing. Zero-based index of currently printed " "object." msgstr "" +"順次プリントに特化したものです。 現在プリントされているオブジェクトの 0 から" +"始まるインデックス。" msgid "Has wipe tower" -msgstr "" +msgstr "ワイプタワーあり" msgid "Whether or not wipe tower is being generated in the print." -msgstr "" +msgstr "プリント時にワイプタワーが生成されているかどうか。" msgid "Initial extruder" -msgstr "" +msgstr "イニシャルエクストルーダー" msgid "" "Zero-based index of the first extruder used in the print. Same as " "initial_tool." msgstr "" +"プリントで使用される最初のエクストルーダーの 0 から始まるインデックス。 " +"initial_toolと同じ。" msgid "Initial tool" -msgstr "" +msgstr "イニシャルツール" msgid "" "Zero-based index of the first extruder used in the print. Same as " "initial_extruder." msgstr "" +"プリントで使用される最初のエクストルーダーの 0 から始まるインデックス。 " +"Initial_extruder と同じです。" msgid "Is extruder used?" -msgstr "" +msgstr "エクストルーダーは使用されましたか?" msgid "Vector of bools stating whether a given extruder is used in the print." msgstr "" msgid "Volume per extruder" -msgstr "" +msgstr "エクストルーダーあたりの体積" msgid "Total filament volume extruded per extruder during the entire print." -msgstr "" +msgstr "プリント全体でエクストルーダーごとに押し出されたフィラメントの総量。" msgid "Total toolchanges" msgstr "" msgid "Number of toolchanges during the print." -msgstr "" +msgstr "プリント中のツール交換の数。" msgid "Total volume" -msgstr "" +msgstr "トータル体積" msgid "Total volume of filament used during the entire print." -msgstr "" +msgstr "プリント全体で使用されるフィラメントの総量。" msgid "Weight per extruder" -msgstr "" +msgstr "エクストルーダーあたりの重量" msgid "" "Weight per extruder extruded during the entire print. Calculated from " @@ -12842,7 +13004,7 @@ msgid "" msgstr "" msgid "Total weight" -msgstr "" +msgstr "トータル重量" msgid "" "Total weight of the print. Calculated from filament_density value in " @@ -12850,25 +13012,26 @@ msgid "" msgstr "" msgid "Total layer count" -msgstr "" +msgstr "トータルレイヤー数" msgid "Number of layers in the entire print." -msgstr "" +msgstr "全てのプリントのレイヤー数" msgid "Number of objects" -msgstr "" +msgstr "オブジェクト数" msgid "Total number of objects in the print." -msgstr "" +msgstr "プリント中のオブジェクトの総数" msgid "Number of instances" -msgstr "" +msgstr "インスタンス数" msgid "Total number of object instances in the print, summed over all objects." msgstr "" +"すべてのオブジェクトを合計した、プリント内のオブジェクト インスタンスの総数。" msgid "Scale per object" -msgstr "" +msgstr "オブジェクトごとのスケール" msgid "" "Contains a string with the information about what scaling was applied to the " @@ -12878,22 +13041,26 @@ msgid "" msgstr "" msgid "Input filename without extension" -msgstr "" +msgstr "拡張子を除いたファイル名を入力。" msgid "Source filename of the first object, without extension." -msgstr "" +msgstr "最初のオブジェクトのソース ファイル名(拡張子を除く)。" msgid "" "The vector has two elements: x and y coordinate of the point. Values in mm." msgstr "" +"ベクトルには、点の x 座標と y 座標という 2 つの要素があります。 値は mm 単位" +"です。" msgid "" "The vector has two elements: x and y dimension of the bounding box. Values " "in mm." msgstr "" +"ベクトルには、境界ボックスの x 次元と y 次元という 2 つの要素があります。 値" +"は mm 単位です。" msgid "First layer convex hull" -msgstr "" +msgstr "第 1 層の凸包(convex hull)" msgid "" "Vector of points of the first layer convex hull. Each element has the " @@ -12901,66 +13068,68 @@ msgid "" msgstr "" msgid "Bottom-left corner of first layer bounding box" -msgstr "" +msgstr "最初のレイヤーの境界ボックスの左下隅" msgid "Top-right corner of first layer bounding box" -msgstr "" +msgstr "最初のレイヤーの境界ボックスの右上隅" msgid "Size of the first layer bounding box" -msgstr "" +msgstr "最初のレイヤーの境界ボックスのサイズ" msgid "Bottom-left corner of print bed bounding box" -msgstr "" +msgstr "プリント ベッド境界ボックスの左下隅" msgid "Top-right corner of print bed bounding box" -msgstr "" +msgstr "プリント ベッド境界ボックスの右上隅" msgid "Size of the print bed bounding box" -msgstr "" +msgstr "プリントベッド境界ボックスのサイズ" msgid "Timestamp" -msgstr "" +msgstr "タイムスタンプ" msgid "String containing current time in yyyyMMdd-hhmmss format." -msgstr "" +msgstr "yyyyMMdd-hhmmss形式の現在時刻を表す文字列。" msgid "Day" -msgstr "" +msgstr "日" msgid "Hour" -msgstr "" +msgstr "時" msgid "Minute" -msgstr "" +msgstr "分" msgid "Print preset name" -msgstr "" +msgstr "プリセット名をプリント" msgid "Name of the print preset used for slicing." -msgstr "" +msgstr "スライスに使用されるプリントプリセットの名前。" msgid "Filament preset name" -msgstr "" +msgstr "フィラメントのプリセット名" msgid "" "Names of the filament presets used for slicing. The variable is a vector " "containing one name for each extruder." msgstr "" +"スライスに使用されるフィラメント プリセットの名前。 変数は、各エクストルー" +"ダーの 1 つの名前を含むベクトルです。" msgid "Printer preset name" -msgstr "" +msgstr "プリンタのプリセット名" msgid "Name of the printer preset used for slicing." -msgstr "" +msgstr "スライスに使用されるプリンタ プリセットの名前。" msgid "Physical printer name" -msgstr "" +msgstr "物理プリンター名" msgid "Name of the physical printer used for slicing." -msgstr "" +msgstr "スライスに使用される物理プリンターの名前。" msgid "Layer number" -msgstr "" +msgstr "レイヤーナンバー" msgid "Index of the current layer. One-based (i.e. first layer is number 1)." msgstr "" @@ -12971,13 +13140,13 @@ msgstr "" msgid "" "Height of the current layer above the print bed, measured to the top of the " "layer." -msgstr "" +msgstr "プリント ベッド上の現在のレイヤーの高さ (レイヤーの最上部までの計測)。" msgid "Maximal layer z" msgstr "" msgid "Height of the last layer above the print bed." -msgstr "" +msgstr "プリントベッド上の最後のレイヤーの高さ。" msgid "Filament extruder ID" msgstr "" @@ -13674,13 +13843,15 @@ msgid "Finished" msgstr "完了" msgid "Multiple resolved IP addresses" -msgstr "" +msgstr "IPアドレスの複数割当て" #, boost-format msgid "" "There are several IP addresses resolving to hostname %1%.\n" "Please select one that should be used." msgstr "" +"ホスト名%1%には、いくつかのIPアドレスがあります。\n" +"使用するIPアドレスを1つ選んでください。" msgid "PA Calibration" msgstr "PA Calibration" @@ -13811,7 +13982,7 @@ msgid "mm/mm" msgstr "mm/mm" msgid "Send G-Code to printer host" -msgstr "" +msgstr "プリンターサーバーにGコードを送信" msgid "Upload to Printer Host with the following filename:" msgstr "Upload to Printer Host with the following filename:" @@ -13820,7 +13991,7 @@ msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "Use forward slashes ( / ) as a directory separator if needed." msgid "Upload to storage" -msgstr "" +msgstr "ストレージへのアップロード" #, c-format, boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" @@ -13864,7 +14035,7 @@ msgid "Cancelling" msgstr "Canceling" msgid "Error uploading to print host" -msgstr "" +msgstr "プリントホストへのアップロードに失敗" msgid "Unable to perform boolean operation on selected parts" msgstr "Unable to perform boolean operation on selected parts" @@ -14588,28 +14759,29 @@ msgid "Could not connect to PrusaLink" msgstr "Could not connect to PrusaLink" msgid "Storages found" -msgstr "" +msgstr "ストレージが見つかりました" #. TRN %1% = storage path #, boost-format msgid "%1% : read only" -msgstr "" +msgstr "%1% : 読込のみ" #. TRN %1% = storage path #, boost-format msgid "%1% : no free space" -msgstr "" +msgstr "%1% : 十分な空きがありません" #. TRN %1% = host #, boost-format msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "" +"アップロードに失敗しました。%1%に適切なストレージが見つかりませんでした。" msgid "Connection to Prusa Connect works correctly." -msgstr "" +msgstr "Prusa コネクトに接続しました。" msgid "Could not connect to Prusa Connect" -msgstr "" +msgstr "Prusaコネクトに接続できませんでした" msgid "Connection to Repetier works correctly." msgstr "Connection to Repetier is working correctly." diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index 715f5f53b3..0f3476e6e3 100644 --- a/localization/i18n/ko/OrcaSlicer_ko.po +++ b/localization/i18n/ko/OrcaSlicer_ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: 2024-05-01 04:51+0900\n" "Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply." "github.com>, crwusiz \n" diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index 40d3fd558d..36b6496dc4 100644 --- a/localization/i18n/nl/OrcaSlicer_nl.po +++ b/localization/i18n/nl/OrcaSlicer_nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,7 +100,7 @@ msgid "Support Generated" msgstr "Ondersteuning gegenereerd" msgid "Gizmo-Place on Face" -msgstr "" +msgstr "Plaats op vlak" msgid "Lay on face" msgstr "Op deze zijde neerleggen." @@ -182,13 +182,13 @@ msgid "Move" msgstr "Verplaats" msgid "Gizmo-Move" -msgstr "" +msgstr "Verplaatsen" msgid "Rotate" msgstr "Draai" msgid "Gizmo-Rotate" -msgstr "" +msgstr "Roteren" msgid "Optimize orientation" msgstr "Oriëntatie optimaliseren" @@ -200,7 +200,7 @@ msgid "Scale" msgstr "Schalen" msgid "Gizmo-Scale" -msgstr "" +msgstr "Verschalen" msgid "Error: Please close all toolbar menus first" msgstr "Fout: sluit eerst alle openstaande hulpmiddelmenu's" @@ -516,7 +516,7 @@ msgid "Connector" msgstr "Verbinding" msgid "Cut by Plane" -msgstr "" +msgstr "Snij met behulp van vlak" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" msgstr "" @@ -675,7 +675,7 @@ msgid "Text move" msgstr "" msgid "Set Mirror" -msgstr "" +msgstr "Stel spiegeling in" msgid "Embossed text" msgstr "" @@ -711,7 +711,7 @@ msgid "First font" msgstr "" msgid "Default font" -msgstr "" +msgstr "Standaard lettertype" msgid "Advanced" msgstr "Geavanceerd" @@ -763,6 +763,7 @@ msgstr "" 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." msgctxt "EmbossOperation" msgid "Cut" @@ -1023,7 +1024,7 @@ msgstr "" #. TRN - Input label. Be short as possible #. Align Top|Middle|Bottom and Left|Center|Right msgid "Alignment" -msgstr "" +msgstr "Uitlijning" #. TRN - Input label. Be short as possible msgid "Char gap" @@ -1079,7 +1080,7 @@ msgid "SVG actions" msgstr "" msgid "SVG" -msgstr "" +msgstr "SVG" #, boost-format msgid "Opacity (%1%)" @@ -1166,7 +1167,7 @@ msgid "Bake into model as uneditable part" msgstr "" msgid "Save as" -msgstr "" +msgstr "Opslaan Als" msgid "Save SVG file" msgstr "" @@ -1192,7 +1193,7 @@ msgid "Lock/unlock the aspect ratio of the SVG." msgstr "" msgid "Reset scale" -msgstr "" +msgstr "Reset verschaling" msgid "Distance of the center of the SVG to the model surface." msgstr "" @@ -1201,16 +1202,16 @@ msgid "Reset distance" msgstr "" msgid "Reset rotation" -msgstr "" +msgstr "Reset rotatie" msgid "Lock/unlock rotation angle when dragging above the surface." msgstr "" msgid "Mirror vertically" -msgstr "" +msgstr "Verticaal spiegelen" msgid "Mirror horizontally" -msgstr "" +msgstr "Spiegel horizontaal" #. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else). msgid "Change SVG Type" @@ -2554,13 +2555,13 @@ msgid "Bed filling done." msgstr "Bed filling done." msgid "Searching for optimal orientation" -msgstr "" +msgstr "Zoeken naar optimale oriëntatie" msgid "Orientation search canceled." -msgstr "" +msgstr "Oriëntatie zoeken geannuleerd." msgid "Orientation found." -msgstr "" +msgstr "Oriëntatie gevonden." msgid "Logging in" msgstr "Bezig met inloggen" @@ -3180,7 +3181,7 @@ msgid "Successfully executed post-processing script" msgstr "Successfully executed post-processing script" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "Onbekende fout opgetreden tijdens exporteren van de G-code." #, boost-format msgid "" @@ -3188,6 +3189,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"Fout bij het exporteren naar output-G-code. Is de SD-kaart geblokkeerd tegen " +"schrijven?\n" +"Foutbericht: %1%" #, boost-format msgid "" @@ -3195,28 +3199,37 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"Fout bij het exporteren naar output-G-code. Het probleem ligt mogelijk bij " +"het doelapparaat. Probeer het opnieuw te exporteren of gebruik een ander " +"apparat. De beschadigde G-code is opgeslagen als %1%.tmp." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"Fout bij het exporteren naar output-G-code. Hernoemen van het bestand " +"mislukt. Huidige locatie is %1%.tmp. Probeer opnieuw te exporteren." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"Fout bij het exporteren naar output-G-code. Exporteren gelukt, maar kan het " +"bestand %1% niet openen om te controleren. De output is %2%.tmp." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"Fout bij het exporteren naar output-G-code. Exporteren gelukt, maar kan het " +"bestand niet openen om te controleren. De output is %1%.tmp." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr ".gcode-bestand geëxporteerd naar %1%" msgid "Unknown error when export G-code." msgstr "Onbekende fout tijdens het exporteren van de G-code" @@ -3950,7 +3963,7 @@ msgid "Dimensions" msgstr "" msgid "Temperatures" -msgstr "" +msgstr "Temperaturen" msgid "Timestamps" msgstr "" @@ -5941,10 +5954,10 @@ msgstr "" "vloeiende modus." msgid "Expand sidebar" -msgstr "" +msgstr "Zijbalk uitklappen" msgid "Collapse sidebar" -msgstr "" +msgstr "Zijbalk inklappen" #, c-format, boost-format msgid "Loading file: %s" @@ -6232,7 +6245,7 @@ msgid "" msgstr "" msgid "Import SLA archive" -msgstr "" +msgstr "Importeer SLA-archief" msgid "The selected file" msgstr "Het geselecteerde bestand" @@ -6354,7 +6367,7 @@ msgid "Is the printer ready? Is the print sheet in place, empty and clean?" msgstr "" msgid "Upload and Print" -msgstr "" +msgstr "Upload en print" msgid "" "Print By Object: \n" @@ -6534,7 +6547,7 @@ msgid "" msgstr "" msgid "Home" -msgstr "" +msgstr "Thuis" msgid "Default Page" msgstr "" @@ -6565,10 +6578,12 @@ msgstr "" "2D window center." msgid "Use free camera" -msgstr "" +msgstr "Gebruik vrij beweegbare camera" 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." msgid "Reverse mouse zoom" msgstr "" @@ -6577,7 +6592,7 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" msgid "Show splash screen" -msgstr "" +msgstr "Toon startscherm" msgid "Show the splash screen during startup." msgstr "" @@ -6624,7 +6639,7 @@ msgstr "" "same time and manage multiple devices." msgid "Network" -msgstr "" +msgstr "Netwerk" msgid "Auto sync user presets(Printer/Filament/Process)" msgstr "" @@ -7642,7 +7657,7 @@ msgid "Tree supports" msgstr "" msgid "Skirt" -msgstr "" +msgstr "Skirt" msgid "Prime tower" msgstr "Prime toren" @@ -7815,13 +7830,13 @@ msgid "Multimaterial" msgstr "" msgid "Wipe tower parameters" -msgstr "" +msgstr "Afveegblokparameters" msgid "Toolchange parameters with single extruder MM printers" -msgstr "" +msgstr "Toolwisselparameter voor multi-materialprinters met één extruder" msgid "Ramming settings" -msgstr "" +msgstr "Ramming-instellingen" msgid "Toolchange parameters with multi extruder MM printers" msgstr "" @@ -7896,10 +7911,10 @@ msgid "Single extruder multimaterial setup" msgstr "" msgid "Wipe tower" -msgstr "" +msgstr "Afveegblok" msgid "Single extruder multimaterial parameters" -msgstr "" +msgstr "Parameter voor multi-material met één extruder" msgid "Layer height limits" msgstr "Limieten voor laaghoogte" @@ -8206,7 +8221,7 @@ msgid "The configuration is up to date." msgstr "De configuratie is up to date." msgid "Ramming customization" -msgstr "" +msgstr "Ramming aanpassen" msgid "" "Ramming denotes the rapid extrusion just before a tool change in a single-" @@ -8219,21 +8234,31 @@ msgid "" "This is an expert-level setting, incorrect adjustment will likely lead to " "jams, extruder wheel grinding into filament etc." msgstr "" +"Ramming wordt gebruikt voor het snel extruderen vlak voor een toolwisseling " +"bij multi-materialprinters met één extruder. Het doel daarvan is om het " +"einde van het ongeladen filament goed te vormen (zodat het later weer " +"geladen kan worden) en nieuw filament niet verhinderd wordt. Deze fase is " +"belangrijk. Verschillende materialen vereisen verschillende " +"extrusiesnelheden voor de juiste vorm. Daarom zijn de waarden tijdens de " +"ramming aan te passen.\n" +"\n" +"Dit is een expert-level instelling. Onjuiste aanpassingen kunnen zorgen voor " +"verstoppingen en andere problemen." msgid "Total ramming time" -msgstr "" +msgstr "Totale ramming-tijd" msgid "s" msgstr "s" msgid "Total rammed volume" -msgstr "" +msgstr "Totaal ramming-volume" msgid "Ramming line width" -msgstr "" +msgstr "Lijnbreedte voor ramming" msgid "Ramming line spacing" -msgstr "" +msgstr "Lijnafstand voor ramming" msgid "Auto-Calc" msgstr "Automatisch berekenen" @@ -8474,10 +8499,10 @@ msgid "Gizmo Text emboss / engrave" msgstr "" msgid "Zoom in" -msgstr "" +msgstr "Zoom in" msgid "Zoom out" -msgstr "" +msgstr "Zoom uit" msgid "Switch between Prepare/Preview" msgstr "" @@ -9171,16 +9196,23 @@ msgid "" "each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " "layer_gcode." msgstr "" +"Relatieve extruderwaarden vereist het resetten van de extruderpositie op " +"elke laag om decimale onnauwkeurigheid te voorkomen. Voeg \"G92 E0\" toe aan " +"layer_gcode." msgid "" "\"G92 E0\" was found in before_layer_gcode, which is incompatible with " "absolute extruder addressing." msgstr "" +"\"G92 E0\" gevonden in before_layer_gcode, wat niet compatibel is met " +"absolute positionering." msgid "" "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " "extruder addressing." msgstr "" +"\"G92 E0\" gevonden in layer_gcode, wat niet compatibel is met absolute " +"positionering." #, c-format, boost-format msgid "Plate %d: %s does not support filament %s" @@ -9548,7 +9580,7 @@ msgid "" msgstr "" msgid "Everywhere" -msgstr "" +msgstr "Overal" msgid "Top and bottom surfaces" msgstr "" @@ -10025,7 +10057,7 @@ msgid "" msgstr "" msgid "Disabled" -msgstr "" +msgstr "Uit" msgid "Limited filtering" msgstr "" @@ -10447,54 +10479,64 @@ msgid "" msgstr "" msgid "Loading speed" -msgstr "" +msgstr "Laadsnelheid" msgid "Speed used for loading the filament on the wipe tower." -msgstr "" +msgstr "Snelheid die gebruikt wordt voor het afveegblok." msgid "Loading speed at the start" -msgstr "" +msgstr "Laadsnelheid aan het begin" msgid "Speed used at the very beginning of loading phase." -msgstr "" +msgstr "Snelheid die gebruikt wordt aan het begin van de laadfase." msgid "Unloading speed" -msgstr "" +msgstr "Ontlaadsnelheid" msgid "" "Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." 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)." msgid "Unloading speed at the start" -msgstr "" +msgstr "Ontlaadsnelheid in het begin" 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." msgid "Delay after unloading" -msgstr "" +msgstr "Vertraging na het ontladen" 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 "" +"Wachttijd voor het ontladen van het filament. Dit kan helpen om betrouwbare " +"toolwisselingen te krijgen met flexibele materialen die meer tijd nodig " +"hebben om te krimpen naar de originele afmetingen." msgid "Number of cooling moves" -msgstr "" +msgstr "Aantal koelbewegingen" msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " "Specify desired number of these moves." msgstr "" +"Het filament wordt gekoeld tijdens het terug en voorwaarts bewegen in de " +"koelbuis. Specificeer het benodigd aantal bewegingen." msgid "Speed of the first cooling move" -msgstr "" +msgstr "Snelheid voor de eerste koelbeweging" msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "" +"Koelbewegingen worden gelijkmatig versneld, beginnend vanaf deze snelheid." msgid "Minimal purge on wipe tower" msgstr "Minimale filament reiniging op de wipe tower" @@ -10508,30 +10550,38 @@ msgid "" msgstr "" msgid "Speed of the last cooling move" -msgstr "" +msgstr "Snelheid voor de laatste koelbeweging" msgid "Cooling moves are gradually accelerating towards this speed." -msgstr "" +msgstr "Koelbewegingen versnellen gelijkmatig tot aan deze snelheid." 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 "" +"Tijd voor de printerfirmware (of de MMU 2.0) om nieuw filament te laden " +"tijdens een toolwissel (tijdens het uitvoeren van de T-code). Deze tijd " +"wordt toegevoegd aan de totale printtijd in de tijdsschatting." msgid "Ramming parameters" -msgstr "" +msgstr "Rammingparameters" msgid "" "This string is edited by RammingDialog and contains ramming specific " "parameters." msgstr "" +"Deze frase is bewerkt door het Rammingdialoog en bevat parameters voor de " +"ramming." 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 "" +"Tijd voor de printerfirmware (of de MMU 2.0) om filament te ontladen tijdens " +"een toolwissel (tijdens het uitvoeren van de T-code). Deze tijd wordt " +"toegevoegd aan de totale printtijd in de tijdsschatting." msgid "Enable ramming for multitool setups" msgstr "" @@ -10710,7 +10760,7 @@ msgid "1000 (unlimited)" msgstr "1000 (unlimited)" msgid "Maximum length of the infill anchor" -msgstr "" +msgstr "Maximale lengte van de vullingsbevestiging" msgid "" "Connect an infill line to an internal perimeter with a short segment of an " @@ -11117,7 +11167,7 @@ msgid "Enable this option if you want to use multiple bed types" msgstr "" msgid "Label objects" -msgstr "" +msgstr "Label objecten" msgid "" "Enable this to add comments into the G-Code labeling print moves with what " @@ -11133,13 +11183,16 @@ msgid "Enable this option to add EXCLUDE OBJECT command in g-code" msgstr "" msgid "Verbose G-code" -msgstr "" +msgstr "Opmerkingen in G-code" 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 "" +"Sta dit toe om een G-code met opmerkingen te genereren. Bij elk blok " +"commando's wordt een opmerking geplaatst. Als u print vanaf een SD-kaart, " +"kan de extra grootte van het bestand de firmware vertragen." msgid "Infill combination" msgstr "Vulling (infill) combinatie" @@ -11477,7 +11530,7 @@ msgid "" msgstr "" msgid "mm³/s²" -msgstr "" +msgstr "mm³/s²" msgid "Smoothing segment length" msgstr "" @@ -11530,12 +11583,14 @@ msgid "Diameter of nozzle" msgstr "Diameter van de nozzle" msgid "Configuration notes" -msgstr "" +msgstr "Configuratie-opmerkingen" msgid "" "You can put here your personal notes. This text will be added to the G-code " "header comments." msgstr "" +"Hier kunt u eigen opmerkingen plaatsen. Deze tekst wordt bovenin de G-code " +"toegevoegd." msgid "Host Type" msgstr "Hosttype" @@ -11555,36 +11610,44 @@ msgstr "" "Volume van de nozzle tussen de filamentsnijder en het uiteinde van de nozzle" msgid "Cooling tube position" -msgstr "" +msgstr "Koelbuispositie" msgid "Distance of the center-point of the cooling tube from the extruder tip." -msgstr "" +msgstr "Afstand vanaf de nozzle tot het middelpunt van de koelbuis." msgid "Cooling tube length" -msgstr "" +msgstr "Koelbuislengte" 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." msgid "High extruder current on filament swap" -msgstr "" +msgstr "Hoge stroomsterkte bij extruder voor filamentwissel" 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 "" +"Het kan nuttig zijn om de stroomsterkte van de extrudermotor te verhogen " +"tijdens het uitvoeren van de filamentwisseling om snelle ramming mogelijk te " +"maken en om weerstand te overwinnen tijdens het laden van filament met een " +"misvormde kop." msgid "Filament parking position" -msgstr "" +msgstr "Filament parkeerpositie" 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 "" +"Afstand van de nozzlepunt tot de positie waar het filament wordt geparkeerd " +"wanneer dat niet geladen is. Deze moet overeenkomen met de waarde in de " +"firmware." msgid "Extra loading distance" -msgstr "" +msgstr "Extra laadafstand" msgid "" "When set to zero, the distance the filament is moved from parking position " @@ -11592,6 +11655,10 @@ msgid "" "positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" +"Als dit ingesteld is op 0, zal de afstand die het filament tijdens het laden " +"uit de parkeerpositie even groot zijn als wanneer het filament " +"teruggetrokken wordt. Als de waarde positief is, zal het verder geladen " +"worden. Als het negatief is, is de laadafstand dus korter." msgid "Start end points" msgstr "Start end points" @@ -11851,7 +11918,7 @@ msgid "Spiral" msgstr "Spiraal" msgid "Only lift Z above" -msgstr "" +msgstr "Beweeg Z alleen omhoog boven" msgid "" "If you set this to a positive value, Z lift will only take place above the " @@ -11859,7 +11926,7 @@ msgid "" msgstr "" msgid "Only lift Z below" -msgstr "" +msgstr "Beweeg Z alleen omhoog onder" msgid "" "If you set this to a positive value, Z lift will only take place below the " @@ -11893,11 +11960,15 @@ 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 "" +"Als retracten wordt gecompenseerd na een beweging, wordt deze extra " +"hoeveelheid filament geëxtrudeerd. Deze instelling is zelden van toepassing." msgid "" "When the retraction is compensated after changing tool, the extruder will " "push this additional amount of filament." msgstr "" +"Als retracten wordt gecompenseerd na een toolwisseling, wordt deze extra " +"hoeveelheid filament geëxtrudeerd." msgid "Retraction Speed" msgstr "Terugtrek (retraction) snelheid" @@ -12129,7 +12200,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Number of skirt layers: usually only one" msgid "Draft shield" -msgstr "" +msgstr "Tochtscherm" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12146,10 +12217,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "Gelimiteerd" msgid "Enabled" -msgstr "" +msgstr "Aan" msgid "Skirt loops" msgstr "Rand (skirt) lussen" @@ -12269,7 +12340,7 @@ msgid "Start G-code when start the printing of this filament" msgstr "Start G-code wanneer het printen van dit filament begint" msgid "Single Extruder Multi Material" -msgstr "" +msgstr "Multi-material met één extruder" msgid "Use single nozzle to print multi filament" msgstr "" @@ -12303,14 +12374,20 @@ msgid "" "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" +"Het afveegblok wordt niet geprint bij lagen zonder toolwisselingen als dit " +"is ingeschakeld. Op lagen met een toolwissel zal de extruder neerwaarts " +"bewegen naar het afveegblok. De gebruiker is verantwoordelijk voor eventuele " +"botsingen met de print." msgid "Prime all printing extruders" -msgstr "" +msgstr "Veeg alle printextruders af" msgid "" "If enabled, all printing extruders will be primed at the front edge of the " "print bed at the start of the print." msgstr "" +"Alle extruders worden afgeveegd aan de voorzijde van het printbed aan het " +"begin van de print als dit is ingeschakeld." msgid "Slice gap closing radius" msgstr "Sluitingsradius van de gap" @@ -12345,7 +12422,7 @@ msgid "Close holes" msgstr "Gaten sluiten" msgid "Z offset" -msgstr "" +msgstr "Z-hoogte" msgid "" "This value will be added (or subtracted) from all the Z coordinates in the " @@ -12353,6 +12430,10 @@ msgid "" "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 "" +"Deze waarde wordt toegevoegd (of afgetrokken) van alle Z-coördinaten in de G-" +"code. Het wordt gebruikt voor een slechte Z-eindstop positie. Als de Z-" +"eindstop bijvoorbeeld een waarde gebruikt die 0.3mm van het printbed is, kan " +"dit ingesteld worden op -0.3mm." msgid "Enable support" msgstr "Support inschakelen" @@ -12871,10 +12952,10 @@ msgid "Width of prime tower" msgstr "Dit is de breedte van de prime toren." msgid "Wipe tower rotation angle" -msgstr "" +msgstr "Rotatie van het afveegblok" msgid "Wipe tower rotation angle with respect to x-axis." -msgstr "" +msgstr "Rotatie van het afveegblok ten opzichte van de X-as." msgid "Stabilization cone apex angle" msgstr "" @@ -12965,10 +13046,10 @@ msgstr "" "kracht tenzij de prime tower is ingeschakeld." msgid "Maximal bridging distance" -msgstr "" +msgstr "Maximale brugafstand" msgid "Maximal distance between supports on sparse infill sections." -msgstr "" +msgstr "Maximale afstand tussen support op dunne vullingsdelen." msgid "X-Y hole compensation" msgstr "X-Y-gaten compensatie" @@ -13026,7 +13107,7 @@ msgid "Rotate the polyhole every layer." msgstr "" msgid "G-code thumbnails" -msgstr "" +msgstr "G-code miniaturen" msgid "" "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the " @@ -13034,12 +13115,14 @@ msgid "" msgstr "" msgid "Format of G-code thumbnails" -msgstr "" +msgstr "Bestandstype van G-code-voorbeelden" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " "QOI for low memory firmware" msgstr "" +"Bestandstype van G-code-voorbeelden: PNG voor de beste kwaliteit, JPG voor " +"kleinste bestand, QOI voor firmware met weinig geheugen" msgid "Use relative E distances" msgstr "Relatieve E-afstanden gebruiken" @@ -13216,7 +13299,7 @@ msgid "Do not run any validity checks, such as gcode path conflicts check." msgstr "Do not run any validity checks, such as G-code path conflicts check." msgid "Ensure on bed" -msgstr "" +msgstr "Plaats op bed" msgid "" "Lift the object above the bed when it is partially below. Disabled by default" @@ -13229,22 +13312,25 @@ msgid "Orient options: 0-disable, 1-enable, others-auto" msgstr "" msgid "Rotation angle around the Z axis in degrees." -msgstr "" +msgstr "Rotatiehoek rond de Z-as in graden." msgid "Rotate around Y" -msgstr "" +msgstr "Draai over de Y-as" msgid "Rotation angle around the Y axis in degrees." -msgstr "" +msgstr "Rotatiehoek rond de Y-as in graden." msgid "Data directory" -msgstr "" +msgstr "Bestandslocatie voor de data" msgid "" "Load and store settings at the given directory. This is useful for " "maintaining different profiles or including configurations from a network " "storage." msgstr "" +"Laad fabrieksinstellingen en sla op. Dit is handig voor het onderhouden van " +"verschillende profielen of het opnemen van configuraties van een " +"netwerkopslag." msgid "Load custom gcode" msgstr "" @@ -14327,7 +14413,7 @@ msgid "mm/mm" msgstr "mm/mm" msgid "Send G-Code to printer host" -msgstr "" +msgstr "Stuur G-code naar printerhost" msgid "Upload to Printer Host with the following filename:" msgstr "Uploaden naar Printer Host met de volgende bestandsnaam:" diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index 0418f87c6b..4382de12e7 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: OrcaSlicer 2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: \n" "Last-Translator: Krzysztof Morga \n" "Language-Team: \n" diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index 976a749dcc..4002c20b36 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -1,8 +1,9 @@ +# msgid "" msgstr "" "Project-Id-Version: OrcaSlicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: 2024-04-16 11:17-0300\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" @@ -11,11 +12,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Crowdin-Project: orcaslicer-pt-br\n" -"X-Crowdin-Project-ID: 664934\n" -"X-Crowdin-Language: pt-BR\n" "X-Crowdin-File: OrcaSlicer.pot\n" "X-Crowdin-File-ID: 10\n" +"X-Crowdin-Language: pt-BR\n" +"X-Crowdin-Project: orcaslicer-pt-br\n" +"X-Crowdin-Project-ID: 664934\n" "X-Generator: Poedit 3.4.2\n" msgid "Supports Painting" @@ -2433,7 +2434,7 @@ msgid "AMS not connected" msgstr "AMS não conectado" msgid "Load" -msgstr "" +msgstr "Carregar" msgid "Unload" msgstr "Descarregar" @@ -3214,7 +3215,7 @@ msgid "Successfully executed post-processing script" msgstr "Script de pós-processamento executado com êxito" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "Ocorreu um erro desconhecido durante a exportação do G-code." #, boost-format msgid "" @@ -3222,6 +3223,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"Falha na cópia do G-code temporário para o G-code de saída. Talvez o cartão " +"SD está bloqueado para escrita?\n" +"Mensagem de erro: %1%" #, boost-format msgid "" @@ -3229,28 +3233,38 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"A cópia do G-code temporário para o G-code de saída falhou. Pode haver " +"problemas com o dispositivo de destino, por favor tente exportar novamente " +"ou usar dispositivo diferente. O G-code de saída corrompido está em %1%.tmp." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"A renomeação do G-code após a cópia na pasta de destino selecionada falhou. " +"O caminho atual é %1%.tmp. Por favor, tente exportar de novo." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"A cópia do G-code temporário foi concluída, mas o código original em %1% não " +"pôde ser aberto durante a verificação de cópia. O G-code de saída está em " +"%2%.tmp." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"A cópia do G-code temporário foi concluída, mas o código exportado não pôde " +"ser aberto durante a verificação de cópia. O G-code de saída está em %1%.tmp." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "Arquivo G-code exportado para %1%" msgid "Unknown error when export G-code." msgstr "Erro desconhecido ao exportar G-Code." @@ -3460,7 +3474,7 @@ msgid "" msgstr "" msgid "Wait" -msgstr "" +msgstr "Aguardar" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" @@ -6579,6 +6593,10 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"No OSX, sempre há apenas uma instância do aplicativo em execução por padrão. " +"No entanto, é permitido executar várias instâncias do mesmo aplicativo a " +"partir da linha de comando. Nesse caso, essas configurações permitirão " +"apenas uma instância." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -8056,7 +8074,7 @@ msgid "Don't save" msgstr "Não salvar" msgid "Discard" -msgstr "" +msgstr "Descartar" msgid "Click the right mouse button to display the full text." msgstr "Clique com o botão direito do mouse para exibir o texto completo." @@ -12666,7 +12684,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Quantas camadas de saia. Geralmente apenas uma camada" msgid "Draft shield" -msgstr "" +msgstr "Escudo de proteção" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12683,10 +12701,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "Limitado" msgid "Enabled" -msgstr "" +msgstr "Habilitado" msgid "Skirt loops" msgstr "Voltas da saia" diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index b5159939f2..945b8d9505 100644 --- a/localization/i18n/ru/OrcaSlicer_ru.po +++ b/localization/i18n/ru/OrcaSlicer_ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OrcaSlicer V2.0.0 Official Release\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: 2024-04-12 13:49+0700\n" "Last-Translator: \n" "Language-Team: andylg@yandex.ru\n" @@ -264,7 +264,7 @@ msgid "World coordinates" msgstr "Мировая СК" msgid "Object coordinates" -msgstr "" +msgstr "СК модели" msgid "°" msgstr "°" @@ -1508,7 +1508,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Выберите один или несколько файлов (3mf/step/stl/svg/obj/amf):" msgid "Choose ZIP file" -msgstr "" +msgstr "Выберите ZIP файл" msgid "Choose one file (gcode/3mf):" msgstr "Выберите один файл (gcode/3mf):" @@ -1584,6 +1584,8 @@ msgid "" "Could not start URL download. Destination folder is not set. Please choose " "destination folder in Configuration Wizard." msgstr "" +"Не удалось запустить загрузку по URL-адресу. Не задана папка назначения. " +"Пожалуйста, задайте папку назначения в мастере настройки." msgid "Import File" msgstr "Импорт файла" @@ -2441,7 +2443,7 @@ msgid "AMS not connected" msgstr "АСПП не подключена" msgid "Load" -msgstr "" +msgstr "Загрузить" msgid "Unload" msgstr "Выгруз." @@ -3226,7 +3228,7 @@ msgid "Successfully executed post-processing script" msgstr "Скрипт постобработки успешно выполнен." msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "При экспорте G-кода произошла неизвестная ошибка." #, boost-format msgid "" @@ -3234,6 +3236,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"Не удалось скопировать временный G-код в местонахождение выходного файла G-" +"кода. Может ваша SD карта защищена от записи?\n" +"Сообщение об ошибке: %1%" #, boost-format msgid "" @@ -3241,28 +3246,39 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"Не удалось скопировать временный G-код в местонахождение выходного файла G-" +"кода. Возможно, проблема с устройством назначения, попробуйте снова " +"выполнить экспорт или использовать другое устройство. Повреждённый выходной " +"файл G-кода находится в %1%.tmp." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"Не удалось переименовать G-код после копирования в выбранную папку " +"назначения. Текущий путь %1%.tmp. Пожалуйста, попробуйте экспортировать ещё " +"раз." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"Копирование временного G-кода завершено, но исходный код в %1% не удалось " +"открыть во время проверки копии. Выходной G-код находится в %2%.tmp." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"Копирование временного G-кода завершено, но экспортированный код не удалось " +"открыть во время проверки копии. Выходной G-код находится в %1%.tmp." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "Файл G-кода экспортирован в %1%" msgid "Unknown error when export G-code." msgstr "Неизвестная ошибка при экспорте G-кода." @@ -3476,7 +3492,7 @@ msgid "" msgstr "" msgid "Wait" -msgstr "" +msgstr "Подождите" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" @@ -6332,16 +6348,16 @@ msgstr "Ошибка при загрузке файла G-кода" #. TRN %1% is archive path #, boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "Не удалось загрузить ZIP-архив расположенный по пути %1%." #. TRN: First argument = path to file, second argument = error description #, boost-format msgid "Failed to unzip file to %1%: %2%" -msgstr "" +msgstr "Не удалось разархивировать файл в %1%: %2%" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." -msgstr "" +msgstr "Ошибка поиска распакованного файла в %1%. Не удалось распаковать файл." msgid "Drop project file" msgstr "Операции с файлами проекта" @@ -12746,7 +12762,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Количество слоёв юбки. Обычно только один слой." msgid "Draft shield" -msgstr "" +msgstr "Защитный кожух" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12763,10 +12779,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "Ограничено" msgid "Enabled" -msgstr "" +msgstr "Включено" msgid "Skirt loops" msgstr "Юбок вокруг модели" diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index be06e1fb9f..c590d533e5 100644 --- a/localization/i18n/sv/OrcaSlicer_sv.po +++ b/localization/i18n/sv/OrcaSlicer_sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index 18376547c8..a84aeae888 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: 2024-05-02 19:55+0300\n" "Last-Translator: Olcay ÖREN\n" "Language-Team: \n" @@ -1495,7 +1495,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Bir veya daha fazla dosya seçin (3mf/step/stl/svg/obj/amf):" msgid "Choose ZIP file" -msgstr "" +msgstr "ZIP dosyasını seçin:" msgid "Choose one file (gcode/3mf):" msgstr "Bir dosya seçin (gcode/3mf):" @@ -6279,6 +6279,8 @@ msgstr "" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." msgstr "" +"%1%'de sıkıştırılmamış dosya bulunamadı. Dosyanın sıkıştırmadan çıkartılması " +"başarısız oldu." msgid "Drop project file" msgstr "Proje dosyasını sürükle" @@ -12563,7 +12565,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Etek katman sayısı. Genellikle tek katman" msgid "Draft shield" -msgstr "" +msgstr "Rüzgarlık" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12580,10 +12582,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "Sınırlı" msgid "Enabled" -msgstr "" +msgstr "Etkinleştirildi" msgid "Skirt loops" msgstr "Etek sayısı" diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index c62c2a26f2..f62b9708fa 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: 2023-08-10 20:25-0400\n" "Last-Translator: \n" "Language-Team: \n" @@ -108,7 +108,7 @@ msgid "Support Generated" msgstr "Генерація підтримки" msgid "Gizmo-Place on Face" -msgstr "" +msgstr "Gizmo \"Поверхнею на стіл\"" msgid "Lay on face" msgstr "Покласти в обличчя" @@ -190,13 +190,13 @@ msgid "Move" msgstr "Перемістити" msgid "Gizmo-Move" -msgstr "" +msgstr "Gizmo переміщення" msgid "Rotate" msgstr "Повернути" msgid "Gizmo-Rotate" -msgstr "" +msgstr "Gizmo обертання" msgid "Optimize orientation" msgstr "Оптимізувати орієнтацію" @@ -208,7 +208,7 @@ msgid "Scale" msgstr "Масштаб" msgid "Gizmo-Scale" -msgstr "" +msgstr "Gizmo масштабування" msgid "Error: Please close all toolbar menus first" msgstr "Помилка: будь ласка, спочатку закрийте все меню панелі інструментів" @@ -526,7 +526,7 @@ msgid "Connector" msgstr "З'єднувач" msgid "Cut by Plane" -msgstr "" +msgstr "Вирізати площиною" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" msgstr "" @@ -682,7 +682,7 @@ msgid "Text move" msgstr "" msgid "Set Mirror" -msgstr "" +msgstr "Встановити віддзеркалення" msgid "Embossed text" msgstr "" @@ -718,7 +718,7 @@ msgid "First font" msgstr "" msgid "Default font" -msgstr "" +msgstr "Типовий шрифт" msgid "Advanced" msgstr "Додатково" @@ -769,7 +769,7 @@ msgid "Click to change text into object part." msgstr "" msgid "You can't change a type of the last solid part of the object." -msgstr "" +msgstr "Ви не можете змінити тип останньої твердої частини об’єкта." msgctxt "EmbossOperation" msgid "Cut" @@ -1030,7 +1030,7 @@ msgstr "" #. TRN - Input label. Be short as possible #. Align Top|Middle|Bottom and Left|Center|Right msgid "Alignment" -msgstr "" +msgstr "Вирівнювання" #. TRN - Input label. Be short as possible msgid "Char gap" @@ -1086,7 +1086,7 @@ msgid "SVG actions" msgstr "" msgid "SVG" -msgstr "" +msgstr "SVG" #, boost-format msgid "Opacity (%1%)" @@ -1173,7 +1173,7 @@ msgid "Bake into model as uneditable part" msgstr "" msgid "Save as" -msgstr "" +msgstr "Зберегти як" msgid "Save SVG file" msgstr "" @@ -1199,7 +1199,7 @@ msgid "Lock/unlock the aspect ratio of the SVG." msgstr "" msgid "Reset scale" -msgstr "" +msgstr "Скинути масштаб" msgid "Distance of the center of the SVG to the model surface." msgstr "" @@ -1208,16 +1208,16 @@ msgid "Reset distance" msgstr "" msgid "Reset rotation" -msgstr "" +msgstr "Скинути обертання" msgid "Lock/unlock rotation angle when dragging above the surface." msgstr "" msgid "Mirror vertically" -msgstr "" +msgstr "Віддзеркалити вертикально" msgid "Mirror horizontally" -msgstr "" +msgstr "Віддзеркалити горизонтально" #. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else). msgid "Change SVG Type" @@ -2547,13 +2547,13 @@ msgid "Bed filling done." msgstr "Заповнення ліжка виконане." msgid "Searching for optimal orientation" -msgstr "" +msgstr "Пошук оптимальної орієнтації" msgid "Orientation search canceled." -msgstr "" +msgstr "Пошук орієнтації скасовано." msgid "Orientation found." -msgstr "" +msgstr "Орієнтація знайдена." msgid "Logging in" msgstr "Вхід до системи" @@ -3178,7 +3178,7 @@ msgid "Successfully executed post-processing script" msgstr "Скрипт післяобробки успішно виконаний" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "Під час експорту G-коду сталася невідома помилка." #, boost-format msgid "" @@ -3186,6 +3186,9 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"Не вдалося скопіювати тимчасовий G-код у вихідний G-код. Можливо, SD-карта " +"заблокована?\n" +"Повідомлення про помилку: %1%" #, boost-format msgid "" @@ -3193,28 +3196,37 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"Не вдалося скопіювати тимчасовий G-код у вихідний G-код. Можливо, проблема з " +"цільовим пристроєм, спробуйте експортувати ще раз або використати інший " +"пристрій. Пошкоджений вихідний G-код - %1% .tmp." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"Не вдалося перейменувати G-код після копіювання у вибрану папку призначення. " +"Поточний шлях - %1%.tmp. Спробуйте експортувати ще раз." #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"Копіювання тимчасового G-коду закінчено, але оригінальний код на рівні %1% " +"не вдалося відкрити під час перевірки копії. Вихідний G-код - %2% .tmp." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"Копіювання тимчасового G-коду завершено, але експортований код не вдалося " +"відкрити під час перевірки копії. Вихідний G-код - %1% .tmp." #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "Файл G-коду експортується до %1%" msgid "Unknown error when export G-code." msgstr "Невідома помилка під час експорту G-коду." @@ -3942,7 +3954,7 @@ msgid "Dimensions" msgstr "" msgid "Temperatures" -msgstr "" +msgstr "Температури" msgid "Timestamps" msgstr "" @@ -5946,10 +5958,10 @@ msgstr "" "поверхні. Рекомендується перейти в режим згладжування." msgid "Expand sidebar" -msgstr "" +msgstr "Розгорнути бічну панель" msgid "Collapse sidebar" -msgstr "" +msgstr "Згорнути бічну панель" #, c-format, boost-format msgid "Loading file: %s" @@ -6229,7 +6241,7 @@ msgid "" msgstr "" msgid "Import SLA archive" -msgstr "" +msgstr "Імпорт SLА-архіву" msgid "The selected file" msgstr "Вибраний файл" @@ -6529,7 +6541,7 @@ msgid "" msgstr "" msgid "Home" -msgstr "" +msgstr "Домівка" msgid "Default Page" msgstr "" @@ -6559,10 +6571,12 @@ msgstr "" "Наблизьтеся до положення покажчика миші у 3D-виді, а не до центру 2D вікна." msgid "Use free camera" -msgstr "" +msgstr "Використовувати вільну камеру" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" +"Якщо увімкнено, використовуватиметься вільна камера. Якщо вимкнено, " +"використовуватиметься камера з обмеженими можливостями." msgid "Reverse mouse zoom" msgstr "" @@ -6571,7 +6585,7 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "" msgid "Show splash screen" -msgstr "" +msgstr "Показувати заставку" msgid "Show the splash screen during startup." msgstr "" @@ -6619,7 +6633,7 @@ msgstr "" "одночасно та керувати декількома пристроями." msgid "Network" -msgstr "" +msgstr "Мережа" msgid "Auto sync user presets(Printer/Filament/Process)" msgstr "" @@ -7620,7 +7634,7 @@ msgid "Tree supports" msgstr "" msgid "Skirt" -msgstr "" +msgstr "Плінтус" msgid "Prime tower" msgstr "Вежа Очищення" @@ -7793,13 +7807,13 @@ msgid "Multimaterial" msgstr "" msgid "Wipe tower parameters" -msgstr "" +msgstr "Параметри вежі витирання" msgid "Toolchange parameters with single extruder MM printers" -msgstr "" +msgstr "Параметри зміни інструменту в одно-екструдерному ММ-принтері" msgid "Ramming settings" -msgstr "" +msgstr "Налаштування раммінгу" msgid "Toolchange parameters with multi extruder MM printers" msgstr "" @@ -7874,10 +7888,10 @@ msgid "Single extruder multimaterial setup" msgstr "" msgid "Wipe tower" -msgstr "" +msgstr "Вежа витирання" msgid "Single extruder multimaterial parameters" -msgstr "" +msgstr "Параметри екструдеру в багато-екструдерному принтері" msgid "Layer height limits" msgstr "Обмеження висоти шару" @@ -8179,7 +8193,7 @@ msgid "The configuration is up to date." msgstr "Конфігурація є актуальною." msgid "Ramming customization" -msgstr "" +msgstr "Налаштування раммінгу" msgid "" "Ramming denotes the rapid extrusion just before a tool change in a single-" @@ -8192,21 +8206,30 @@ msgid "" "This is an expert-level setting, incorrect adjustment will likely lead to " "jams, extruder wheel grinding into filament etc." msgstr "" +"Раммінг означає швидке екструдування безпосередньо перед заміною інструменту " +"в одно-екструдерному принтері ММ. Його мета полягає у правильній формі кінця " +"виведеного філаменту, щоб вона не заважала вставці нового філаменту і може " +"бути знову встановлений пізніше. Ця фаза є важливою, і різні матеріали " +"можуть вимагати різної швидкості екструзії для отримання гарної форми. З " +"цієї причини швидкість екструдування під час раммінгу регулюється.\n" +"\n" +"Це налаштування на рівні експерта, неправильне регулювання, ймовірно, " +"призведе до заклинювання, подрібнення екструдерного колеса до філаменту тощо." msgid "Total ramming time" -msgstr "" +msgstr "Загальний час швидкої екструзії" msgid "s" msgstr "c" msgid "Total rammed volume" -msgstr "" +msgstr "Загальний обсяг швидкої екструзії" msgid "Ramming line width" -msgstr "" +msgstr "Ширина ліній раммінгу" msgid "Ramming line spacing" -msgstr "" +msgstr "Проміжки між лініями раммінгу" msgid "Auto-Calc" msgstr "Автокалькулятор" @@ -8444,10 +8467,10 @@ msgid "Gizmo Text emboss / engrave" msgstr "" msgid "Zoom in" -msgstr "" +msgstr "Приблизити" msgid "Zoom out" -msgstr "" +msgstr "Віддалити" msgid "Switch between Prepare/Preview" msgstr "Переключення між Підготовка/Попередній перегляд" @@ -9493,7 +9516,7 @@ msgid "" msgstr "" msgid "Everywhere" -msgstr "" +msgstr "Всюди" msgid "Top and bottom surfaces" msgstr "" @@ -10397,54 +10420,65 @@ msgid "" msgstr "" msgid "Loading speed" -msgstr "" +msgstr "Швидкість заведення" msgid "Speed used for loading the filament on the wipe tower." msgstr "" +"Швидкість, що використовується для заведення філаменту на вежі витирання." msgid "Loading speed at the start" -msgstr "" +msgstr "Швидкість заведення на старті" msgid "Speed used at the very beginning of loading phase." -msgstr "" +msgstr "Швидкість, що використовується на самому початку фази заведення." msgid "Unloading speed" -msgstr "" +msgstr "Швидкість виведення" msgid "" "Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" +"Швидкість, яка використовується для виведення філаменту на вежі витирання " +"(не впливає на початкову частину виведення безпосередньо після раммінгу)." msgid "Unloading speed at the start" -msgstr "" +msgstr "Швидкість виведення на старті" msgid "" "Speed used for unloading the tip of the filament immediately after ramming." msgstr "" +"Швидкість, яка використовується для виведення кінчику філаменту " +"безпосередньо після раммінгу." msgid "Delay after unloading" -msgstr "" +msgstr "Затримка після виведення" 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 "" +"Час очікування після виведення філаменту. Може допомогти отримати надійну " +"заміну інструменту для гнучких матеріалів, яким може знадобитися більше " +"часу, щоб зменшитись до початкових розмірів." msgid "Number of cooling moves" -msgstr "" +msgstr "Кількість охолоджуючих рухів" msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " "Specify desired number of these moves." msgstr "" +"Філамент охолоджується шляхом переміщення вперед-назад у охолоджувальних " +"трубках. Вкажіть бажану кількість цих рухів." msgid "Speed of the first cooling move" -msgstr "" +msgstr "Швидкість першого охолоджуючого руху" msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "" +"Охолоджувальні рухи поступово прискорюються, починаючи з цієї швидкості." msgid "Minimal purge on wipe tower" msgstr "Мінімальне продування на очисній вежі" @@ -10464,30 +10498,38 @@ msgstr "" "послідовне заповненняабо видавлювання об'єкта, що витрачається." msgid "Speed of the last cooling move" -msgstr "" +msgstr "Швидкість останнього охолоджуючого руху" msgid "Cooling moves are gradually accelerating towards this speed." -msgstr "" +msgstr "Охолоджувальні рухи поступово прискорюються до цієї швидкості." 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 "" +"Час для прошивки принтера (або Multi Material Unit 2.0), щоб завести новий " +"філамент під час заміни інструменту (під час виконання коду Т). Цей час " +"додається до загального часу друку за допомогою оцінювача часу G-коду." msgid "Ramming parameters" -msgstr "" +msgstr "Параметри раммінгу" msgid "" "This string is edited by RammingDialog and contains ramming specific " "parameters." msgstr "" +"Цей рядок відредаговано у діалогу налаштувань раммінгу та містить певні " +"параметри раммінгу." 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 "" +"Час для прошивки принтера (або Multi Material Unit 2.0), щоб вивести " +"філамент під час заміни інструменту (під час виконання коду Т). Цей час " +"додається до загального часу друку за допомогою оцінювача часу G-коду." msgid "Enable ramming for multitool setups" msgstr "" @@ -11485,7 +11527,7 @@ msgid "" msgstr "" msgid "mm³/s²" -msgstr "" +msgstr "мм³/с²" msgid "Smoothing segment length" msgstr "" @@ -11538,12 +11580,14 @@ msgid "Diameter of nozzle" msgstr "Діаметр сопла" msgid "Configuration notes" -msgstr "" +msgstr "Примітки до конфігурації" msgid "" "You can put here your personal notes. This text will be added to the G-code " "header comments." msgstr "" +"Ви можете додати тут свої особисті примітки. Цей текст буде додано до " +"коментарів заголовка G-коду." msgid "Host Type" msgstr "Тип хоста" @@ -11562,36 +11606,44 @@ msgid "Volume of nozzle between the cutter and the end of nozzle" msgstr "Об'єм сопла між різцем та кінцем сопла" msgid "Cooling tube position" -msgstr "" +msgstr "Позиція охолоджувальної трубки" msgid "Distance of the center-point of the cooling tube from the extruder tip." msgstr "" +"Відстань центральної точки охолоджувальної трубки від наконечника екструдера." msgid "Cooling tube length" -msgstr "" +msgstr "Довжина охолоджувальної трубки" msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "" +"Довжина охолоджувальної трубки для обмеження простору для охолоджуючих рухів " +"всередині неї." msgid "High extruder current on filament swap" -msgstr "" +msgstr "Звищення струму екструдера на заміні філамента" 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 "" +"Може бути корисно збільшити струм двигуна екструдера під час заміни " +"філаменту, щоб забезпечити швидкий раммінг та подолати опір при заведенні " +"філаменту з кінчиком потворної форми." msgid "Filament parking position" -msgstr "" +msgstr "Позиція паркування філаменту" 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 "" +"Відстань наконечника екструдера від місця паркування філаменту при " +"виведенні. Це має відповідати значенню в мікропрограмі принтера." msgid "Extra loading distance" -msgstr "" +msgstr "Додаткова відстань заведення" msgid "" "When set to zero, the distance the filament is moved from parking position " @@ -11599,6 +11651,10 @@ msgid "" "positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" +"Якщо встановлено на нуль, відстань, на яку філамент переміщується з " +"положення стоянки під час заведення, є точно такою ж, як і при переміщенні " +"назад під час виведення. Якщо позитивне, воно заводеться далі, якщо " +"негативне, рух заведення коротший, ніж виведення." msgid "Start end points" msgstr "Початкові кінцеві точки" @@ -12158,7 +12214,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Скільки шарів спідниці. Зазвичай лише один шар" msgid "Draft shield" -msgstr "" +msgstr "Чорновий щит" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12297,7 +12353,7 @@ msgid "Start G-code when start the printing of this filament" msgstr "Стартовий G-code при запуску друку цим філаментом" msgid "Single Extruder Multi Material" -msgstr "" +msgstr "Мульти-матеріальний (ММ) друк з одним екструдером" msgid "Use single nozzle to print multi filament" msgstr "" @@ -12331,14 +12387,20 @@ msgid "" "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" +"Якщо увімкнено, вежа витирання не друкується на шарах без змін інструментів. " +"На шарах із зміною інструменту екструдер рухатиметься вниз, щоб надрукувати " +"вежу витирання. Користувач несе відповідальність за те, щоб не було " +"зіткнення з друком." msgid "Prime all printing extruders" -msgstr "" +msgstr "Підготовка всіх друкуючих екструдерів" msgid "" "If enabled, all printing extruders will be primed at the front edge of the " "print bed at the start of the print." msgstr "" +"Якщо увімкнено, усі друкуючі екструдери будуть отестовані на передньому краї " +"друкарського столу перед початком друку." msgid "Slice gap closing radius" msgstr "Радіус закриття пробілів під час нарізування" @@ -12373,7 +12435,7 @@ msgid "Close holes" msgstr "Закрити отвори" msgid "Z offset" -msgstr "" +msgstr "Зміщення Z" msgid "" "This value will be added (or subtracted) from all the Z coordinates in the " @@ -12381,6 +12443,10 @@ msgid "" "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 "" +"Це значення буде додано/вилучено до/з усіх координат Z у вихідному G-коді. " +"Воно використовується для зрівноваження поганої кінцевої позиції Z: " +"наприклад, якщо ваш кінцевий нуль фактично залишає сопло на 0,3 мм від " +"полотна друку, встановіть його на значення -0,3 (або виправте ваш endstop)." msgid "Enable support" msgstr "Увімкнути підтримку" @@ -12890,10 +12956,10 @@ msgid "Width of prime tower" msgstr "Ширина основної вежі" msgid "Wipe tower rotation angle" -msgstr "" +msgstr "Кут повороту вежі витирання" msgid "Wipe tower rotation angle with respect to x-axis." -msgstr "" +msgstr "Кут повороту вежі витирання за віссю Х." msgid "Stabilization cone apex angle" msgstr "" @@ -12983,10 +13049,10 @@ msgstr "" "включена первиннавежа." msgid "Maximal bridging distance" -msgstr "" +msgstr "Максимальна мостова відстань" msgid "Maximal distance between supports on sparse infill sections." -msgstr "" +msgstr "Максимальна відстань між підтримками на рідкісних ділянках заповнення." msgid "X-Y hole compensation" msgstr "Компенсація отвору XY" @@ -13248,13 +13314,13 @@ msgid "Orient options: 0-disable, 1-enable, others-auto" msgstr "" msgid "Rotation angle around the Z axis in degrees." -msgstr "" +msgstr "Кут обертання навколо осі Z у градусах." msgid "Rotate around Y" -msgstr "" +msgstr "Обертати навколо осі Y" msgid "Rotation angle around the Y axis in degrees." -msgstr "" +msgstr "Кут обертання навколо осі Y у градусах." msgid "Data directory" msgstr "Каталог даних" @@ -14356,7 +14422,7 @@ msgid "mm/mm" msgstr "мм/мм" msgid "Send G-Code to printer host" -msgstr "" +msgstr "Надіслання G-коду на хост друку" msgid "Upload to Printer Host with the following filename:" msgstr "Завантажити на хост принтера з наступним іменем файлу:" diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index f125af2b38..6a1e682d95 100644 --- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po +++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Slic3rPE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: 2023-04-01 13:21+0800\n" "Last-Translator: SoftFever \n" "Language-Team: \n" @@ -295,7 +295,7 @@ msgid "Snap" msgstr "按扣" msgid "Prism" -msgstr "" +msgstr "棱角" msgid "Frustum" msgstr "锥体" @@ -313,7 +313,7 @@ msgid "Place on cut" msgstr "切割面放置到热床" msgid "Flip upside down" -msgstr "" +msgstr "倒置" msgid "Connectors" msgstr "连接件" @@ -361,9 +361,12 @@ msgid "" "Drag to move the cut plane\n" "Right-click a part to assign it to the other side" msgstr "" +"单击以翻转剖切面\n" +"拖动以移动剖切面\n" +"在零件上单击鼠标右键以将其指定给另一侧" msgid "Move cut plane" -msgstr "" +msgstr "移动剖切面" msgid "Mode" msgstr "模式" @@ -408,7 +411,7 @@ msgid "Cut" msgstr "剪切" msgid "Rotate cut plane" -msgstr "" +msgstr "旋转剖切面" msgid "Remove connectors" msgstr "删除所有连接件" @@ -435,7 +438,7 @@ msgid "Build Volume" msgstr "零件体积" msgid "Flip cut plane" -msgstr "" +msgstr "翻转剖切面" msgid "Groove change" msgstr "" @@ -451,7 +454,7 @@ msgid "Cut position" msgstr "切割位置" msgid "Reset cutting plane" -msgstr "" +msgstr "重置切割平面" msgid "Edit connectors" msgstr "编辑连接件" @@ -463,7 +466,7 @@ msgid "Reset cut" msgstr "重置" msgid "Reset cutting plane and remove connectors" -msgstr "" +msgstr "重置切割平面并移除连接器" msgid "Upper part" msgstr "上半部分" @@ -506,10 +509,10 @@ msgid "Some connectors are overlapped" msgstr "存在连接件相互重叠" msgid "Select at least one object to keep after cutting." -msgstr "" +msgstr "切割后至少选择一个要保留的对象。" msgid "Cut plane is placed out of object" -msgstr "" +msgstr "剖切面放置在对象之外" msgid "Cut plane with groove is invalid" msgstr "" @@ -518,7 +521,7 @@ msgid "Connector" msgstr "连接件" msgid "Cut by Plane" -msgstr "" +msgstr "按平面切割" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" msgstr "因切割产生了非流形边,您是否想现在修复?" @@ -527,10 +530,10 @@ msgid "Repairing model object" msgstr "修复模型对象" msgid "Cut by line" -msgstr "" +msgstr "按线切割" msgid "Delete connector" -msgstr "" +msgstr "删除连接器" msgid "Mesh name" msgstr "Mesh名" @@ -673,16 +676,16 @@ msgid "Set Mirror" msgstr "设置镜像" msgid "Embossed text" -msgstr "" +msgstr "浮雕文字" msgid "Enter emboss gizmo" -msgstr "" +msgstr "进入浮雕小工具" msgid "Leave emboss gizmo" -msgstr "" +msgstr "离开浮雕小工具" msgid "Embossing actions" -msgstr "" +msgstr "浮雕动作" msgid "Emboss" msgstr "浮雕" @@ -700,13 +703,13 @@ msgid "SWISS" msgstr "" msgid "MODERN" -msgstr "" +msgstr "现代" msgid "First font" -msgstr "" +msgstr "第一个字体" msgid "Default font" -msgstr "" +msgstr "缺省字体" msgid "Advanced" msgstr "高级" @@ -714,38 +717,38 @@ msgstr "高级" msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." -msgstr "" +msgstr "无法使用所选字体书写文本。请尝试选择其他字体。" msgid "Embossed text cannot contain only white spaces." -msgstr "" +msgstr "浮雕文本不能只包含空格。" msgid "Text contains character glyph (represented by '?') unknown by font." -msgstr "" +msgstr "文本包含字体未知的字符字形(用“?”表示)。" msgid "Text input doesn't show font skew." -msgstr "" +msgstr "文本输入不显示字体倾斜。" msgid "Text input doesn't show font boldness." -msgstr "" +msgstr "文本输入不显示字体加粗。" msgid "Text input doesn't show gap between lines." -msgstr "" +msgstr "文本输入不显示行之间的间隙。" msgid "Too tall, diminished font height inside text input." -msgstr "" +msgstr "太高,文本输入中的字体高度减小。" msgid "Too small, enlarged font height inside text input." -msgstr "" +msgstr "文字输入里面的字体高度太小,放大了。" msgid "Text doesn't show current horizontal alignment." msgstr "" msgid "Revert font changes." -msgstr "" +msgstr "还原字体更改。" #, boost-format msgid "Font \"%1%\" can't be selected." -msgstr "" +msgstr "无法选择字体“%1%”。" msgid "Operation" msgstr "操作" @@ -754,7 +757,7 @@ msgid "Join" msgstr "合并" msgid "Click to change text into object part." -msgstr "" +msgstr "单击可将文本更改为对象部分。" msgid "You can't change a type of the last solid part of the object." msgstr "不能更改对象的最后一个实体部分的类型。" @@ -764,93 +767,93 @@ msgid "Cut" msgstr "切割" msgid "Click to change part type into negative volume." -msgstr "" +msgstr "单击可将零件类型更改为负体积。" msgid "Modifier" msgstr "修改器" msgid "Click to change part type into modifier." -msgstr "" +msgstr "单击可将零件类型更改为修改器。" msgid "Change Text Type" -msgstr "" +msgstr "更改文本类型" #, boost-format msgid "Rename style(%1%) for embossing text" -msgstr "" +msgstr "重命名浮雕文本的样式(%1%)" msgid "Name can't be empty." -msgstr "" +msgstr "名称不能为空。" msgid "Name has to be unique." -msgstr "" +msgstr "名称必须是唯一的。" msgid "OK" msgstr "确认" msgid "Rename style" -msgstr "" +msgstr "重命名样式" msgid "Rename current style." -msgstr "" +msgstr "重命名当前样式。" msgid "Can't rename temporary style." -msgstr "" +msgstr "无法重命名临时样式。" msgid "First Add style to list." -msgstr "" +msgstr "首先将样式添加到列表中。" #, boost-format msgid "Save %1% style" -msgstr "" +msgstr "保存%1%样式" msgid "No changes to save." -msgstr "" +msgstr "没有要保存的更改。" msgid "New name of style" -msgstr "" +msgstr "样式的新名称" msgid "Save as new style" -msgstr "" +msgstr "另存为新样式" msgid "Only valid font can be added to style." -msgstr "" +msgstr "只有有效的字体才能添加到样式中。" msgid "Add style to my list." -msgstr "" +msgstr "将样式添加到我的列表中。" msgid "Save as new style." -msgstr "" +msgstr "另存为新样式。" msgid "Remove style" -msgstr "" +msgstr "删除样式" msgid "Can't remove the last existing style." -msgstr "" +msgstr "无法删除最后一个现有样式。" #, boost-format msgid "Are you sure you want to permanently remove the \"%1%\" style?" -msgstr "" +msgstr "您确定要永久删除“%1%”样式吗?" #, boost-format msgid "Delete \"%1%\" style." -msgstr "" +msgstr "删除“%1%”样式。" #, boost-format msgid "Can't delete \"%1%\". It is last style." -msgstr "" +msgstr "无法删除“%1%”。这是最后一种风格。" #, boost-format msgid "Can't delete temporary style \"%1%\"." -msgstr "" +msgstr "无法删除临时样式“%1%”。" #, boost-format msgid "Modified style \"%1%\"" -msgstr "" +msgstr "已修改样式“%1%”" #, boost-format msgid "Current style is \"%1%\"" -msgstr "" +msgstr "当前样式为“%1%”" #, boost-format msgid "" @@ -858,39 +861,43 @@ msgid "" "\n" "Would you like to continue anyway?" msgstr "" +"将样式更改为“%1%”将放弃当前的样式修改。\n" +"是否仍要继续?" msgid "Not valid style." -msgstr "" +msgstr "无效的样式。" #, boost-format msgid "Style \"%1%\" can't be used and will be removed from a list." -msgstr "" +msgstr "样式“%1%”无法使用,将从列表中删除。" msgid "Unset italic" -msgstr "" +msgstr "取消斜体" msgid "Set italic" -msgstr "" +msgstr "斜体" msgid "Unset bold" -msgstr "" +msgstr "取消加粗" msgid "Set bold" -msgstr "" +msgstr "加粗" msgid "Revert text size." -msgstr "" +msgstr "恢复文本大小。" msgid "Revert embossed depth." -msgstr "" +msgstr "还原浮雕深度。" msgid "" "Advanced options cannot be changed for the selected font.\n" "Select another font." msgstr "" +"无法更改所选字体的高级选项。\n" +"选择其他字体。" msgid "Revert using of model surface." -msgstr "" +msgstr "恢复使用模型曲面。" msgid "Revert Transformation per glyph." msgstr "" @@ -933,49 +940,49 @@ msgid "points" msgstr "" msgid "Revert gap between characters" -msgstr "" +msgstr "恢复字间距" msgid "Distance between characters" -msgstr "" +msgstr "字间距" msgid "Revert gap between lines" -msgstr "" +msgstr "恢复行间距" msgid "Distance between lines" -msgstr "" +msgstr "行间距" msgid "Undo boldness" msgstr "" msgid "Tiny / Wide glyphs" -msgstr "" +msgstr "细小/宽大的字形" msgid "Undo letter's skew" -msgstr "" +msgstr "撤消字母的歪斜" msgid "Italic strength ratio" -msgstr "" +msgstr "倾斜强度比" msgid "Undo translation" -msgstr "" +msgstr "撤消翻译" msgid "Distance of the center of the text to the model surface." -msgstr "" +msgstr "文字中心到模型曲面的距离。" msgid "Undo rotation" -msgstr "" +msgstr "撤消旋转" msgid "Rotate text Clock-wise." -msgstr "" +msgstr "顺时针旋转文本。" msgid "Unlock the text's rotation when moving text along the object's surface." -msgstr "" +msgstr "沿对象曲面移动文本时,解除锁定文本的旋转。" msgid "Lock the text's rotation when moving text along the object's surface." -msgstr "" +msgstr "沿对象曲面移动文本时,锁定文本的旋转。" msgid "Select from True Type Collection." -msgstr "" +msgstr "从True Type集合中选择。" msgid "Set text to face camera" msgstr "文字面向摄像头" @@ -988,9 +995,11 @@ msgid "" "Can't load exactly same font(\"%1%\"). Aplication selected a similar " "one(\"%2%\"). You have to specify font for enable edit text." msgstr "" +"不能加载完全相同的字体(\"%1%\")。应用程序选择了一种类似的字体(\"%2%\")。你" +"必须为启用编辑文本指定字体。" msgid "No symbol" -msgstr "" +msgstr "无符号" msgid "Loading" msgstr "载入中" @@ -1054,7 +1063,7 @@ msgstr "保持向上" #. Some Font file contain multiple fonts inside and #. this is numerical selector of font inside font collections msgid "Collection" -msgstr "" +msgstr "收集" #. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe msgid "SVG rotate" @@ -1161,7 +1170,7 @@ msgid "Bake into model as uneditable part" msgstr "" msgid "Save as" -msgstr "" +msgstr "另存为" msgid "Save SVG file" msgstr "" @@ -1202,10 +1211,10 @@ msgid "Lock/unlock rotation angle when dragging above the surface." msgstr "" msgid "Mirror vertically" -msgstr "" +msgstr "垂直镜像" msgid "Mirror horizontally" -msgstr "" +msgstr "水平镜像" #. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else). msgid "Change SVG Type" @@ -1317,7 +1326,7 @@ msgid "Distance XYZ" msgstr "距离 XYZ" msgid "Ctrl+" -msgstr "" +msgstr "Ctrl+" msgid "Notice" msgstr "通知" @@ -1452,7 +1461,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "选择一个或多个文件(3mf/step/stl/svg/obj/amf):" msgid "Choose ZIP file" -msgstr "" +msgstr "选择ZIP文件" msgid "Choose one file (gcode/3mf):" msgstr "选择一个文件(gcode/3mf):" @@ -1520,7 +1529,7 @@ msgstr "选择一个G-code文件:" msgid "" "Could not start URL download. Destination folder is not set. Please choose " "destination folder in Configuration Wizard." -msgstr "" +msgstr "无法启动URL下载。目标文件夹没有设置。请在配置向导中选择目标文件夹。" msgid "Import File" msgstr "导入文件" @@ -1611,13 +1620,13 @@ msgid "Add support enforcer" msgstr "添加支撑生成器" msgid "Add text" -msgstr "" +msgstr "添加文本" msgid "Add negative text" -msgstr "" +msgstr "添加负文本" msgid "Add text modifier" -msgstr "" +msgstr "添加文本修改器" msgid "Add SVG part" msgstr "" @@ -1824,7 +1833,7 @@ msgid "Edit text" msgstr "编辑文字" msgid "Ability to change text, font, size, ..." -msgstr "" +msgstr "能够更改文本、字体、大小。。。" msgid "Edit SVG" msgstr "编辑SVG" @@ -2294,7 +2303,7 @@ msgid "No printer" msgstr "无打印机" msgid "..." -msgstr "" +msgstr "..." msgid "Failed to connect to the server" msgstr "无法连接服务器" @@ -3055,7 +3064,7 @@ msgid "Successfully executed post-processing script" msgstr "成功执行后处理脚本" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "导出 G-Code 时出现未知错误。" #, boost-format msgid "" @@ -3063,6 +3072,8 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"将临时 G-Code 复制到输出 G-Code 失败。也许 SD 卡被写锁定了?\n" +"错误消息:%1%" #, boost-format msgid "" @@ -3070,24 +3081,32 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"将临时 G-Code 复制到输出 G-Code 失败。目标设备可能有问题,请再次尝试导出或使" +"用其他设备。损坏的输出 G-Code 在 %1%.tmp。" #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"复制到所选目标文件夹后重命名 G-Code 失败。当前路径为 %1%.tmp。请再次尝试导" +"出。" #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"临时 G-Code 的复制已完成,但在复制检查期间无法打开位于 %1% 的原始代码。输出 " +"G-Code 为 %2%.tmp。" #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"临时 G-Code 的复制已完成,但在复制检查期间无法打开导出的代码。输出 G-Code 为 " +"%1%.tmp。" #, boost-format msgid "G-code file exported to %1%" @@ -4456,7 +4475,7 @@ msgid "Save Project as" msgstr "项目另存为" msgid "Shift+" -msgstr "" +msgstr "Shift+" msgid "Save current project as" msgstr "项目另存为" @@ -5715,10 +5734,10 @@ msgid "" msgstr "启用传统的延时摄影可能会导致表面瑕疵。建议更改为平滑模式。" msgid "Expand sidebar" -msgstr "" +msgstr "展开侧边栏" msgid "Collapse sidebar" -msgstr "" +msgstr "折叠边栏" #, c-format, boost-format msgid "Loading file: %s" @@ -5977,7 +5996,7 @@ msgid "" msgstr "" msgid "Import SLA archive" -msgstr "" +msgstr "导入 SLA 存档" msgid "The selected file" msgstr "已选择的文件" @@ -5991,7 +6010,7 @@ msgstr "加载G-code文件时遇到错误" #. TRN %1% is archive path #, boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "加载路径为%1%的ZIP档案失败。" #. TRN: First argument = path to file, second argument = error description #, boost-format @@ -6000,7 +6019,7 @@ msgstr "" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." -msgstr "" +msgstr "未能找到位于 %1% 的解压文件。解压缩文件失败。" msgid "Drop project file" msgstr "项目文件操作" @@ -7721,9 +7740,11 @@ msgid "" "Note: New modified presets will be selected in settings tabs after close " "this dialog." msgstr "" +"将选定的选项从左边的预设转移到右边。\n" +"注意:关闭此对话框后,新修改的预置将在设置标签中被选中。" msgid "Transfer values from left to right" -msgstr "" +msgstr "从左到右的转移值" msgid "" "If enabled, this dialog can be used for transfer selected values from left " @@ -8077,13 +8098,13 @@ msgid "Gizmo FDM paint-on seam" msgstr "FDM涂装接缝" msgid "Gizmo Text emboss / engrave" -msgstr "" +msgstr "Gizmo文本浮雕/雕刻" msgid "Zoom in" -msgstr "" +msgstr "放大" msgid "Zoom out" -msgstr "" +msgstr "缩小" msgid "Switch between Prepare/Preview" msgstr "准备/预览之间的切换" @@ -8717,16 +8738,18 @@ msgid "" "each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " "layer_gcode." msgstr "" +"相对挤出机寻址要求在每层重置挤出机位置,以防止浮点精度损失。将 \"G92E0\" 添加" +"到图层代码中。" msgid "" "\"G92 E0\" was found in before_layer_gcode, which is incompatible with " "absolute extruder addressing." -msgstr "" +msgstr "\"G92E0\" 出现在 before_layer_gcode 中,与绝对挤出机寻址不兼容。" msgid "" "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " "extruder addressing." -msgstr "" +msgstr "\"G92E0\" 出现在 layer_gcode 中,这与绝对挤出机寻址不兼容。" #, c-format, boost-format msgid "Plate %d: %s does not support filament %s" @@ -11033,7 +11056,7 @@ msgstr "" "注意:此参数禁用圆弧拟合。" msgid "mm³/s²" -msgstr "" +msgstr "mm³/s²" msgid "Smoothing segment length" msgstr "平滑段长度" @@ -11678,7 +11701,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "skirt有多少层。通常只有一层" msgid "Draft shield" -msgstr "" +msgstr "风挡" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -11887,6 +11910,9 @@ msgid "" "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-Code 中的所有 Z 坐标中添加(或减去)。它用于补偿损坏的 Z 端限位" +"器置:例如,如果限位器零实际离开喷嘴 0.3mm 远离构建板(打印床),将其设置为 " +"-0.3(或调整限位器)。" msgid "Enable support" msgstr "开启支撑" @@ -12538,7 +12564,7 @@ msgstr "G-code缩略图的格式" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " "QOI for low memory firmware" -msgstr "" +msgstr "G-Code 缩略图格式: PNG 质量最佳,JPG 尺寸最小,QOI 用于低内存固件" msgid "Use relative E distances" msgstr "使用相对E距离" @@ -12735,6 +12761,8 @@ msgid "" "maintaining different profiles or including configurations from a network " "storage." msgstr "" +"在给定目录加载和存储设置。这对于维护不同的配置文件或包括网络存储中的配置非常" +"有用。" msgid "Load custom gcode" msgstr "加载自定义G-code" @@ -13622,13 +13650,15 @@ msgid "Finished" msgstr "完成" msgid "Multiple resolved IP addresses" -msgstr "" +msgstr "多个解析的IP地址" #, boost-format msgid "" "There are several IP addresses resolving to hostname %1%.\n" "Please select one that should be used." msgstr "" +"有几个IP地址可以解析到主机名 %1%。\n" +"请选择一个应该使用的地址。" msgid "PA Calibration" msgstr "PA校准" @@ -13793,7 +13823,7 @@ msgid "Print host upload queue" msgstr "打印主机上传队列" msgid "ID" -msgstr "" +msgstr "ID" msgid "Progress" msgstr "进程" @@ -14417,7 +14447,7 @@ msgid "" msgstr "HTTPS CA文件是可选的。只有在使用自签名证书进行HTTPS连接时才需要。" msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -msgstr "" +msgstr "证书文件 (*.crt,*.pem)|*.crt;*.pem|所有文件|*.*" msgid "Open CA certificate file" msgstr "打开CA证书文件" @@ -14509,28 +14539,28 @@ msgid "Could not connect to PrusaLink" msgstr "无法连接到 PrusaLink。" msgid "Storages found" -msgstr "" +msgstr "已找到存储" #. TRN %1% = storage path #, boost-format msgid "%1% : read only" -msgstr "" +msgstr "%1%:只读" #. TRN %1% = storage path #, boost-format msgid "%1% : no free space" -msgstr "" +msgstr "%1%:没有可用空间" #. TRN %1% = host #, boost-format msgid "Upload has failed. There is no suitable storage found at %1%." -msgstr "" +msgstr "上载失败。在%1%找不到合适的存储。" msgid "Connection to Prusa Connect works correctly." -msgstr "" +msgstr "与Prusa Connect的连接工作正常。" msgid "Could not connect to Prusa Connect" -msgstr "" +msgstr "无法连接到Prusa connect" msgid "Connection to Repetier works correctly." msgstr "与 Repetier 的连接正常。" diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index cadffd7e03..7507c05d14 100644 --- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po +++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-23 23:36+0800\n" +"POT-Creation-Date: 2024-05-24 23:26+0800\n" "PO-Revision-Date: 2023-11-06 14:37+0800\n" "Last-Translator: ablegods \n" "Language-Team: \n" @@ -117,7 +117,7 @@ msgid "Support Generated" msgstr "已產生支撐" msgid "Gizmo-Place on Face" -msgstr "" +msgstr "Gizmo-放置在臉上" msgid "Lay on face" msgstr "選擇底面" @@ -201,13 +201,13 @@ msgid "Move" msgstr "移動" msgid "Gizmo-Move" -msgstr "" +msgstr "Gizmo-移動" msgid "Rotate" msgstr "旋轉" msgid "Gizmo-Rotate" -msgstr "" +msgstr "Gizmo-旋轉" msgid "Optimize orientation" msgstr "最佳化方向" @@ -219,13 +219,13 @@ msgid "Scale" msgstr "縮放" msgid "Gizmo-Scale" -msgstr "" +msgstr "Gizmo 比例" msgid "Error: Please close all toolbar menus first" msgstr "錯誤:請先關閉所有工具欄選單" msgid "in" -msgstr "" +msgstr "在" msgid "mm" msgstr "mm" @@ -279,14 +279,14 @@ msgid "Object coordinates" msgstr "" msgid "°" -msgstr "" +msgstr "°" #. TRN - Input label. Be short as possible msgid "Size" msgstr "尺寸" msgid "%" -msgstr "" +msgstr "%" msgid "uniform scale" msgstr "等比例縮放" @@ -353,7 +353,7 @@ msgid "Depth" msgstr "" msgid "Groove" -msgstr "" +msgstr "溝槽" msgid "Width" msgstr "寬度" @@ -385,7 +385,7 @@ msgid "Move cut plane" msgstr "" msgid "Mode" -msgstr "" +msgstr "模式" msgid "Change cut mode" msgstr "" @@ -539,7 +539,7 @@ msgid "Connector" msgstr "連接件" msgid "Cut by Plane" -msgstr "" +msgstr "用平面分割" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" msgstr "" @@ -697,7 +697,7 @@ msgid "Text move" msgstr "" msgid "Set Mirror" -msgstr "" +msgstr "設定鏡像" msgid "Embossed text" msgstr "" @@ -733,7 +733,7 @@ msgid "First font" msgstr "" msgid "Default font" -msgstr "" +msgstr "預設字型" msgid "Advanced" msgstr "高級" @@ -784,11 +784,11 @@ msgid "Click to change text into object part." msgstr "" msgid "You can't change a type of the last solid part of the object." -msgstr "" +msgstr "您無法變更模型最後一個實體部分的類型。" msgctxt "EmbossOperation" msgid "Cut" -msgstr "" +msgstr "切割" msgid "Click to change part type into negative volume." msgstr "" @@ -930,19 +930,19 @@ msgstr "" msgctxt "Alignment" msgid "Left" -msgstr "" +msgstr "左" msgctxt "Alignment" msgid "Center" -msgstr "" +msgstr "置中" msgctxt "Alignment" msgid "Right" -msgstr "" +msgstr "右" msgctxt "Alignment" msgid "Top" -msgstr "" +msgstr "頂部" msgctxt "Alignment" msgid "Middle" @@ -950,7 +950,7 @@ msgstr "" msgctxt "Alignment" msgid "Bottom" -msgstr "" +msgstr "底部" msgid "Revert alignment." msgstr "" @@ -1045,7 +1045,7 @@ msgstr "" #. TRN - Input label. Be short as possible #. Align Top|Middle|Bottom and Left|Center|Right msgid "Alignment" -msgstr "" +msgstr "對齊" #. TRN - Input label. Be short as possible msgid "Char gap" @@ -1101,7 +1101,7 @@ msgid "SVG actions" msgstr "" msgid "SVG" -msgstr "" +msgstr "SVG" #, boost-format msgid "Opacity (%1%)" @@ -1214,7 +1214,7 @@ msgid "Lock/unlock the aspect ratio of the SVG." msgstr "" msgid "Reset scale" -msgstr "" +msgstr "重置比例" msgid "Distance of the center of the SVG to the model surface." msgstr "" @@ -1223,16 +1223,16 @@ msgid "Reset distance" msgstr "" msgid "Reset rotation" -msgstr "" +msgstr "重置旋轉" msgid "Lock/unlock rotation angle when dragging above the surface." msgstr "" msgid "Mirror vertically" -msgstr "" +msgstr "垂直鏡像" msgid "Mirror horizontally" -msgstr "" +msgstr "水平鏡像" #. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else). msgid "Change SVG Type" @@ -1301,7 +1301,7 @@ msgid "Restart selection" msgstr "" msgid "Esc" -msgstr "" +msgstr "Esc" msgid "Unselect" msgstr "" @@ -1314,7 +1314,7 @@ msgstr "" msgctxt "Verb" msgid "Scale" -msgstr "" +msgstr "縮放" msgid "None" msgstr "無" @@ -1326,7 +1326,7 @@ msgid "Length" msgstr "長度" msgid "Selection" -msgstr "" +msgstr "所選項目" msgid "Copy to clipboard" msgstr "複製到剪貼簿" @@ -1344,7 +1344,7 @@ msgid "Distance XYZ" msgstr "" msgid "Ctrl+" -msgstr "" +msgstr "Ctrl+" msgid "Notice" msgstr "通知" @@ -1546,7 +1546,7 @@ msgid "Language" msgstr "語言" msgid "*" -msgstr "" +msgstr "*" msgid "The uploads are still ongoing" msgstr "正在上傳任務中" @@ -2213,7 +2213,7 @@ msgid "Remove parameter" msgstr "刪除參數" msgid "to" -msgstr "" +msgstr "到" msgid "Remove height range" msgstr "移除高度範圍" @@ -2377,7 +2377,7 @@ msgid "No printer" msgstr "無列印設備" msgid "..." -msgstr "" +msgstr "..." msgid "Failed to connect to the server" msgstr "無法連接伺服器" @@ -2429,7 +2429,7 @@ msgid "AMS not connected" msgstr "AMS 尚未連接" msgid "Load" -msgstr "" +msgstr "匯入" msgid "Unload" msgstr "退料" @@ -2578,13 +2578,13 @@ msgid "Bed filling done." msgstr "填充列印板已完成。" msgid "Searching for optimal orientation" -msgstr "" +msgstr "查詢最佳方向" msgid "Orientation search canceled." -msgstr "" +msgstr "定向搜尋已取消." msgid "Orientation found." -msgstr "" +msgstr "找到方向。" msgid "Logging in" msgstr "登入中" @@ -3169,7 +3169,7 @@ msgid "Successfully executed post-processing script" msgstr "" msgid "Unknown error occured during exporting G-code." -msgstr "" +msgstr "匯出 G-code 期間發生未知錯誤。" #, boost-format msgid "" @@ -3177,6 +3177,8 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" +"將臨時的 G-code 複製到輸出的 G-code 失敗 ,也許 SD 卡寫入被鎖定?\n" +"錯誤訊息:%1%" #, boost-format msgid "" @@ -3184,28 +3186,36 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" +"將臨時 G-code 複製到輸出 G-code 時失敗。目標設備可能存在問題,請嘗試再次匯出" +"或使用不同的設備。損壞的G-code 已輸出為%1%.tmp。" #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" +"複製到選取之目標檔案夾的 G-code 重命名失敗。當前路徑為%1%.tmp。請再試看看匯" +"出。" #, boost-format msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" +"臨時 G-code 的 複製已完成,但原始 G-code 因%1%在複製檢查期間無法打開。輸出 G-" +"code 為%2%.tmp。" #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" +"臨時 G-code 的複制已完成,但匯出的 G-code 無法在復製檢查過程中打開。輸出 G-" +"code 為%1%.tmp。" #, boost-format msgid "G-code file exported to %1%" -msgstr "" +msgstr "G-code 檔案已匯出為 %1%" msgid "Unknown error when export G-code." msgstr "匯出 G-code 檔案發生未知錯誤。" @@ -3415,7 +3425,7 @@ msgid "" msgstr "" msgid "Wait" -msgstr "" +msgstr "等待" msgid "" "minute each batch.(It depends on how long it takes to complete the heating.)" @@ -3924,7 +3934,7 @@ msgid "Dimensions" msgstr "" msgid "Temperatures" -msgstr "" +msgstr "溫度" msgid "Timestamps" msgstr "" @@ -4491,7 +4501,7 @@ msgid "Yes" msgstr "是" msgid "No" -msgstr "" +msgstr "否" msgid "will be closed before creating a new model. Do you want to continue?" msgstr "將會被關閉以建立新模型,是否繼續?" @@ -5937,10 +5947,10 @@ msgid "" msgstr "使用傳統模式的縮時攝影可能會導致表面缺陷。建議改為平滑模式。" msgid "Expand sidebar" -msgstr "" +msgstr "展開側邊欄" msgid "Collapse sidebar" -msgstr "" +msgstr "折疊側邊欄" #, c-format, boost-format msgid "Loading file: %s" @@ -6095,7 +6105,7 @@ msgid "Another export job is running." msgstr "有其他匯出任務正在進行中。" msgid "Unable to replace with more than one volume" -msgstr "" +msgstr "無法取代超過一個體積" msgid "Error during replace" msgstr "替換時發生錯誤" @@ -6204,7 +6214,7 @@ msgid "" msgstr "匯入 Orca Slicer 失敗。 請下載該檔案並手動匯入。" msgid "Import SLA archive" -msgstr "" +msgstr "匯入 SLA 存檔" msgid "The selected file" msgstr "已選擇的檔案" @@ -6494,6 +6504,8 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" +"在 OSX 上,預設情況下總是只有一個應用程式實例在運行。但是卻允許從命令視窗執行" +"同一應用程式的多個實例。當您設定了這個設定後將只允許一個實例執行。" msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6585,7 +6597,7 @@ msgid "" msgstr "" msgid "Network" -msgstr "" +msgstr "網路" #, fuzzy msgid "Auto sync user presets(Printer/Filament/Process)" @@ -6828,7 +6840,7 @@ msgid "The selected preset is null!" msgstr "選擇的預設為空!" msgid "End" -msgstr "" +msgstr "End" msgid "Customize" msgstr "自訂" @@ -6979,7 +6991,7 @@ msgid "(LAN)" msgstr "(區域網路)" msgid "Search" -msgstr "" +msgstr "搜尋" msgid "My Device" msgstr "我的設備" @@ -7487,7 +7499,7 @@ msgid "Adjust" msgstr "" msgid "Ignore" -msgstr "" +msgstr "忽略" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " @@ -7586,7 +7598,7 @@ msgid "Tree supports" msgstr "樹狀支撐" msgid "Skirt" -msgstr "" +msgstr "側裙" msgid "Prime tower" msgstr "擦拭塔" @@ -8437,10 +8449,10 @@ msgid "Gizmo Text emboss / engrave" msgstr "" msgid "Zoom in" -msgstr "" +msgstr "放大" msgid "Zoom out" -msgstr "" +msgstr "縮小" msgid "Switch between Prepare/Preview" msgstr "在準備/預覽模式之中切換" @@ -9008,7 +9020,7 @@ msgstr "" msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." -msgstr "" +msgstr "擦拭塔目前僅支援相對擠出機定址 (use_relative_e_distances=1)。" msgid "" "Ooze prevention is currently not supported with the prime tower enabled." @@ -9305,10 +9317,10 @@ msgid "Authorization Type" msgstr "授權類型" msgid "API key" -msgstr "" +msgstr "API 金鑰" msgid "HTTP digest" -msgstr "" +msgstr "HTTP摘要" msgid "Avoid crossing wall" msgstr "避免跨越外牆" @@ -9460,7 +9472,7 @@ msgid "" msgstr "" msgid "Everywhere" -msgstr "" +msgstr "全部" msgid "Top and bottom surfaces" msgstr "" @@ -9959,7 +9971,7 @@ msgid "" msgstr "" msgid "Disabled" -msgstr "" +msgstr "停用" msgid "Limited filtering" msgstr "" @@ -11156,10 +11168,10 @@ msgstr "" "多擠出機列印" msgid "Maximum width of a segmented region" -msgstr "" +msgstr "分隔區域的最大寬度" msgid "Maximum width of a segmented region. Zero disables this feature." -msgstr "" +msgstr "分隔區域的最大寬度。零表示禁用此功能。" msgid "Interlocking depth of a segmented region" msgstr "" @@ -11443,7 +11455,7 @@ msgstr "" "注意:此參數會停用圓弧擬合。" msgid "mm³/s²" -msgstr "" +msgstr "mm³/s²" msgid "Smoothing segment length" msgstr "平滑段長度" @@ -12073,7 +12085,7 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "skirt 有多少層。通常只有一層" msgid "Draft shield" -msgstr "" +msgstr "防風罩" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " @@ -12090,10 +12102,10 @@ msgid "" msgstr "" msgid "Limited" -msgstr "" +msgstr "有限" msgid "Enabled" -msgstr "" +msgstr "啟用" msgid "Skirt loops" msgstr "Skirt 圈數" @@ -12409,7 +12421,7 @@ msgid "Number of bottom interface layers" msgstr "" msgid "Same as top" -msgstr "" +msgstr "與頂部相同" msgid "Top interface spacing" msgstr "頂部接觸面線距" @@ -12959,7 +12971,7 @@ msgstr "G-code 縮圖的格式" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " "QOI for low memory firmware" -msgstr "" +msgstr "G-code 縮圖的格式:PNG 品質最佳,JPG 檔案最小,QOI 最低記憶體韌體" msgid "Use relative E distances" msgstr "使用相對 E 距離" @@ -13985,7 +13997,7 @@ msgstr "" "-不同的線材品牌和系列(Brand = Bambu, Family = Basic, Matte)" msgid "Pattern" -msgstr "" +msgstr "花紋" msgid "Method" msgstr "方法" @@ -14024,7 +14036,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "動態流量校準結果" msgid "New" -msgstr "" +msgstr "新增" msgid "No History Result" msgstr "無歷史結果" @@ -14251,10 +14263,10 @@ msgid "Print host upload queue" msgstr "列印主機上傳隊列" msgid "ID" -msgstr "" +msgstr "ID" msgid "Progress" -msgstr "" +msgstr "進度" msgid "Host" msgstr "主機" @@ -14804,7 +14816,7 @@ msgid "For more information, please check out Wiki" msgstr "" msgid "Collapse" -msgstr "" +msgstr "摺疊" msgid "Daily Tips" msgstr "" @@ -14835,10 +14847,10 @@ msgid "Physical Printer" msgstr "實體列印設備" msgid "Print Host upload" -msgstr "" +msgstr "打印主機上傳" msgid "Could not get a valid Printer Host reference" -msgstr "" +msgstr "無法獲得有效的打印機主機參考資料" msgid "Success!" msgstr "成功!" @@ -14879,49 +14891,49 @@ msgid "Login/Test" msgstr "" msgid "Connection to printers connected via the print host failed." -msgstr "" +msgstr "經由打印主機連接的打印機連接失敗。" #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "" +msgstr "打印主機類型不符:%s" msgid "Connection to AstroBox works correctly." -msgstr "" +msgstr "與 AstroBox 的連接工作正常。" msgid "Could not connect to AstroBox" -msgstr "" +msgstr "無法連接到 AstroBox" msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "" +msgstr "注意:AstroBox 版本至少需要 1.1.0。" msgid "Connection to Duet works correctly." -msgstr "" +msgstr "與 Duet 的連接工作正常。" msgid "Could not connect to Duet" -msgstr "" +msgstr "無法連接到 Duet" msgid "Unknown error occured" -msgstr "" +msgstr "發生未知的錯誤" msgid "Wrong password" -msgstr "" +msgstr "密碼錯誤" msgid "Could not get resources to create a new connection" -msgstr "" +msgstr "無法取得建立新連結的資源" msgid "Upload not enabled on FlashAir card." -msgstr "" +msgstr "FlashAir 卡上未啟用上傳。" msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "" +msgstr "與 FlashAir 的連接工作正常並啟用上傳。" msgid "Could not connect to FlashAir" -msgstr "" +msgstr "無法連接到 FlashAir" msgid "" "Note: FlashAir with firmware 2.00.02 or newer and activated upload function " "is required." -msgstr "" +msgstr "注意:FlashAir 需要韌體為 2.00.02 或更新版本並啟動上傳功能。" msgid "Connection to MKS works correctly." msgstr "" @@ -14930,25 +14942,25 @@ msgid "Could not connect to MKS" msgstr "" msgid "Connection to OctoPrint works correctly." -msgstr "" +msgstr "與 OctoPrint 的連接工作正常。" msgid "Could not connect to OctoPrint" -msgstr "" +msgstr "無法連接到 OctoPrint" msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "" +msgstr "注意:OctoPrint 版本至少需要 1.1.0。" msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "" +msgstr "與 Prusa SL1 / SL1S 的連接工作正常。" msgid "Could not connect to Prusa SLA" -msgstr "" +msgstr "無法連接到 Prusa SLA" msgid "Connection to PrusaLink works correctly." -msgstr "" +msgstr "與 PrusaLink 的連接工作正常。" msgid "Could not connect to PrusaLink" -msgstr "" +msgstr "無法連接到 PrusaLink" msgid "Storages found" msgstr "" @@ -14975,19 +14987,21 @@ msgid "Could not connect to Prusa Connect" msgstr "" msgid "Connection to Repetier works correctly." -msgstr "" +msgstr "與 Repetier 的連接工作正常。" msgid "Could not connect to Repetier" -msgstr "" +msgstr "無法連接到 Repetier" msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "" +msgstr "注意:Repetier 版本至少需要 0.90.0。" #, boost-format msgid "" "HTTP status: %1%\n" "Message body: \"%2%\"" msgstr "" +"HTTP 狀態:%1%\n" +"訊息內容:“%2%”" #, boost-format msgid "" @@ -14995,6 +15009,9 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"主機溝通解析失敗。\n" +"訊息內容:“%1%”\n" +"錯誤碼:“%2%”" #, boost-format msgid "" @@ -15002,6 +15019,9 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" +"主機打印機例舉失敗。\n" +"訊息內容:“%1%”\n" +"錯誤碼:“%2%”" msgid "" "It has a small layer height, and results in almost negligible layer lines " From f33c18c488b10dd6672efc502b4c03e30c570604 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Fri, 24 May 2024 23:37:03 +0800 Subject: [PATCH 35/66] Add Simplified Chinese translations --- localization/i18n/zh_CN/OrcaSlicer_zh_CN.po | 36 +++++++++++++++++---- 1 file changed, 29 insertions(+), 7 deletions(-) diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index 6a1e682d95..6067c6116c 100644 --- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po +++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po @@ -10200,7 +10200,7 @@ msgid "(Undefined)" msgstr "(未定义)" msgid "Sparse infill direction" -msgstr "" +msgstr "稀疏填充方向" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10208,18 +10208,19 @@ msgid "" msgstr "稀疏填充图案的角度,决定走线的开始或整体方向。" msgid "Solid infill direction" -msgstr "" +msgstr "实心填充方向" msgid "" "Angle for solid infill pattern, which controls the start or main direction " "of line" msgstr "" +"实心填充图案的角度,决定走线的开始或整体方向。" msgid "Rotate solid infill direction" -msgstr "" +msgstr "旋转实心填充方向" msgid "Rotate the solid infill direction by 90° for each layer." -msgstr "" +msgstr "每层都旋转实心填充方向90°。" msgid "Sparse infill density" msgstr "稀疏填充密度" @@ -10746,7 +10747,7 @@ msgid "" msgstr "" msgid "Top/Bottom solid infill/wall overlap" -msgstr "" +msgstr "顶/底部实心填充/墙重叠率" #, no-c-format, no-boost-format msgid "" @@ -10756,6 +10757,10 @@ msgid "" "appearance of pinholes. The percentage value is relative to line width of " "sparse infill" msgstr "" +"顶部实心填充区域略微扩大,以便与墙壁重叠,以获得更好的粘合,并减少顶部填充与墙" +"壁相接处的小孔出现。25-30%的值是一个很好的起点,可以减少小孔的出现。百分比值相对" +"于稀疏填充的线宽" + msgid "Speed of internal sparse infill" msgstr "内部稀疏填充的打印速度" @@ -11736,7 +11741,7 @@ msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "skirt速度,单位为mm/s。0表示使用默认的层挤出速度。" msgid "Skirt minimum extrusion length" -msgstr "" +msgstr "Skirt最小挤出长度" msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " @@ -11745,6 +11750,9 @@ msgid "" "Using a non zero value is useful if the printer is set up to print without a " "prime line." msgstr "" +"打印skirt时的最小挤出长度,单位为mm。0表示关闭此功能。\n" +"\n" +"如果打印机设置为不使用擦拭塔,使用非零值是有用的。" msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " @@ -12414,7 +12422,7 @@ msgid "Spacing of purge lines on the wipe tower." msgstr "擦拭塔上冲刷线的间距" msgid "Maximum wipe tower print speed" -msgstr "" +msgstr "擦拭塔最大打印速度" msgid "" "The maximum print speed when purging in the wipe tower and printing the wipe " @@ -12437,6 +12445,20 @@ msgid "" "For the wipe tower external perimeters the internal perimeter speed is used " "regardless of this setting." msgstr "" +"擦拭塔冲刷和稀疏层的最大打印速度。当冲刷时,如果稀疏填充速度或从耗材最" +"大体积速度计算出的速度较低,则使用最低速度。\n" +"\n" +"当打印稀疏层时,如果内墙速度或从耗材最大体积速度计算出的速度较低,则使用" +"最低速度。\n" +"\n" +"增加此速度可能会影响塔的稳定性,同时增加喷嘴与擦拭塔上可能形成的任何斑点碰撞" +"的力。\n" +"\n" +"在将此参数增加到默认值90mm/sec之外之前,请确保您的打印机可以可靠地在增加的速" +"度下桥接,并且换料时的滴漏得到了很好的控制。\n" +"\n" +"对于擦拭塔外墙,无论此设置如何,都使用内墙速度。" + msgid "Wipe tower extruder" msgstr "擦拭塔挤出机" From b1bd30fd5e81925d8fe452a3049db8f874940353 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 25 May 2024 02:32:23 +0200 Subject: [PATCH 36/66] Ender 3 V3 Plus profile (#5447) --- resources/profiles/Creality.json | 40 ++++++ .../Creality Ender-3 V3 Plus_cover.png | Bin 0 -> 25241 bytes ...creality_ender3v3plus_buildplate_model.stl | Bin 0 -> 289684 bytes ...ty_ender3v3plus_buildplate_texture.png.png | Bin 0 -> 13629 bytes .../Creality Generic ABS @Ender-3V3-all.json | 4 +- .../Creality Generic ASA @Ender-3V3-all.json | 4 +- ...Creality Generic PA-CF @Ender-3V3-all.json | 4 +- .../Creality Generic PETG @Ender-3V3-all.json | 4 +- .../Creality Generic PLA @Ender-3V3-all.json | 4 +- ...Generic PLA High Speed @Ender-3V3-all.json | 4 +- ...lity Generic PLA Matte @Ender-3V3-all.json | 4 +- ...ality Generic PLA Silk @Ender-3V3-all.json | 4 +- .../Creality Generic TPU @Ender-3V3-all.json | 4 +- .../Creality Ender-3 V3 Plus 0.4 nozzle.json | 134 ++++++++++++++++++ .../Creality Ender-3 V3 Plus 0.6 nozzle.json | 134 ++++++++++++++++++ .../machine/Creality Ender-3 V3 Plus.json | 12 ++ ...ine @Creality Ender3V3Plus 0.4 nozzle.json | 118 +++++++++++++++ ...mal @Creality Ender3V3Plus 0.4 nozzle.json | 118 +++++++++++++++ ...ard @Creality Ender3V3Plus 0.4 nozzle.json | 118 +++++++++++++++ ...aft @Creality Ender3V3Plus 0.4 nozzle.json | 118 +++++++++++++++ ...mal @Creality Ender3V3Plus 0.6 nozzle.json | 118 +++++++++++++++ ...ard @Creality Ender3V3Plus 0.6 nozzle.json | 117 +++++++++++++++ ...aft @Creality Ender3V3Plus 0.6 nozzle.json | 117 +++++++++++++++ 23 files changed, 1171 insertions(+), 9 deletions(-) create mode 100644 resources/profiles/Creality/Creality Ender-3 V3 Plus_cover.png create mode 100644 resources/profiles/Creality/creality_ender3v3plus_buildplate_model.stl create mode 100644 resources/profiles/Creality/creality_ender3v3plus_buildplate_texture.png.png create mode 100644 resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.4 nozzle.json create mode 100644 resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.6 nozzle.json create mode 100644 resources/profiles/Creality/machine/Creality Ender-3 V3 Plus.json create mode 100644 resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3Plus 0.4 nozzle.json create mode 100644 resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3Plus 0.4 nozzle.json create mode 100644 resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3Plus 0.4 nozzle.json create mode 100644 resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3Plus 0.4 nozzle.json create mode 100644 resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3Plus 0.6 nozzle.json create mode 100644 resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3Plus 0.6 nozzle.json create mode 100644 resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3Plus 0.6 nozzle.json diff --git a/resources/profiles/Creality.json b/resources/profiles/Creality.json index a72b06b076..a175399367 100644 --- a/resources/profiles/Creality.json +++ b/resources/profiles/Creality.json @@ -64,6 +64,10 @@ "name": "Creality Ender-3 V3", "sub_path": "machine/Creality Ender-3 V3.json" }, + { + "name": "Creality Ender-3 V3 Plus", + "sub_path": "machine/Creality Ender-3 V3 Plus.json" + }, { "name": "Creality Ender-5", "sub_path": "machine/Creality Ender-5.json" @@ -334,6 +338,10 @@ "name": "0.12mm Fine @Creality Ender3V3", "sub_path": "process/0.12mm Fine @Creality Ender3V3 0.4 nozzle.json" }, + { + "name": "0.12mm Fine @Creality Ender3V3Plus", + "sub_path": "process/0.12mm Fine @Creality Ender3V3Plus 0.4 nozzle.json" + }, { "name": "0.12mm Detail @Creality Ender5Pro (2019) 0.2", "sub_path": "process/0.12mm Detail @Creality Ender5Pro (2019) 0.2.json" @@ -462,6 +470,10 @@ "name": "0.16mm Optimal @Creality Ender3V3", "sub_path": "process/0.16mm Optimal @Creality Ender3V3 0.4 nozzle.json" }, + { + "name": "0.16mm Optimal @Creality Ender3V3Plus", + "sub_path": "process/0.16mm Optimal @Creality Ender3V3Plus 0.4 nozzle.json" + }, { "name": "0.16mm Optimal @Creality Ender5", "sub_path": "process/0.16mm Optimal @Creality Ender5.json" @@ -626,6 +638,10 @@ "name": "0.20mm Standard @Creality Ender3V3", "sub_path": "process/0.20mm Standard @Creality Ender3V3 0.4 nozzle.json" }, + { + "name": "0.20mm Standard @Creality Ender3V3Plus", + "sub_path": "process/0.20mm Standard @Creality Ender3V3Plus 0.4 nozzle.json" + }, { "name": "0.20mm Standard @Creality Ender5", "sub_path": "process/0.20mm Standard @Creality Ender5.json" @@ -766,6 +782,14 @@ "name": "0.24mm Draft @Creality Ender3V3", "sub_path": "process/0.24mm Optimal @Creality Ender3V3 0.6 nozzle.json" }, + { + "name": "0.24mm Draft @Creality Ender3V3Plus", + "sub_path": "process/0.24mm Draft @Creality Ender3V3Plus 0.4 nozzle.json" + }, + { + "name": "0.24mm Optimal @Creality Ender3V3Plus", + "sub_path": "process/0.24mm Optimal @Creality Ender3V3Plus 0.6 nozzle.json" + }, { "name": "0.24mm Draft @Creality Ender3S1Plus 0.2", "sub_path": "process/0.24mm Draft @Creality Ender3S1Plus 0.2.json" @@ -826,6 +850,14 @@ "name": "0.36mm Draft @Creality Ender3V3", "sub_path": "process/0.36mm Draft @Creality Ender3V3 0.6 nozzle.json" }, + { + "name": "0.30mm Standard @Creality Ender3V3Plus", + "sub_path": "process/0.30mm Standard @Creality Ender3V3Plus 0.6 nozzle.json" + }, + { + "name": "0.36mm Draft @Creality Ender3V3Plus", + "sub_path": "process/0.36mm Draft @Creality Ender3V3Plus 0.6 nozzle.json" + }, { "name": "0.28mm SuperDraft @Creality CR-6 0.4", "sub_path": "process/0.28mm SuperDraft @Creality CR-6 0.4.json" @@ -1310,6 +1342,14 @@ "name": "Creality Ender-3 V3 0.6 nozzle", "sub_path": "machine/Creality Ender-3 V3 0.6 nozzle.json" }, + { + "name": "Creality Ender-3 V3 Plus 0.4 nozzle", + "sub_path": "machine/Creality Ender-3 V3 Plus 0.4 nozzle.json" + }, + { + "name": "Creality Ender-3 V3 Plus 0.6 nozzle", + "sub_path": "machine/Creality Ender-3 V3 Plus 0.6 nozzle.json" + }, { "name": "Creality Ender-5 0.4 nozzle", "sub_path": "machine/Creality Ender-5 0.4 nozzle.json" diff --git a/resources/profiles/Creality/Creality Ender-3 V3 Plus_cover.png b/resources/profiles/Creality/Creality Ender-3 V3 Plus_cover.png new file mode 100644 index 0000000000000000000000000000000000000000..1c33bec2f2488680ab346b2d10b4583bb59a2e72 GIT binary patch literal 25241 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 WiwOmW==Wa}03|tf*(Pa=|NaL({4WUr literal 0 HcmV?d00001 diff --git a/resources/profiles/Creality/creality_ender3v3plus_buildplate_model.stl b/resources/profiles/Creality/creality_ender3v3plus_buildplate_model.stl new file mode 100644 index 0000000000000000000000000000000000000000..c742406e33e5cb74d8ce56774d6dfb81c9582c0a GIT binary patch literal 289684 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%0D4gk>eeLo+EZhR<5!ND-%>m zjJqfeciAqZy=eKip~;4uY+`+opcSjIGC_sJvCF67HhZd%TX(!7>A&B))&~h%u?q7d z5>!aMcD`97e4P3?c=>0Oi!WHk`XE6oR$*R5f(nV<)=0upSF4Xh{f1QjNqdl>6{|2W zB0+`39?fyM!$S2T=ODjKe2}0Ot1$Dt1OycluO1PH%PrN*MvRFP(-v}t#Rmymu?i~_ zR7i{*6o)Twt3D*AB(}r{30koV^CA*dNF26896oZU`jEe^eS`$9ScRFjA0ViZ*nRP= z9+ckYh>DOTXvHe5Oi&>q{$5RhY|(mY_mH^5b5i`p9#84M8hbVJ^2@ zf(i-A^CNdtA9??)A!sF|kJfE&jIsok&cyf$@FD%Lh7ek&IEiT7`7L0p;G^-VvtK1k4t zRhW%kM^GVgXdmAv2MJoS3bQ%U5mZP_U8W6rS7J(HOMH-^6{|3t+Z{oL#I6I)o8E5x zFn>ER{m_n4BxuDd%#Klxph9BuR#`ph#z7%sIS&%FVio3mSb_=(@mGxJ`L#;K2MJoS z3Uk-W5>!aYbt~>m@;0v_XvHebwYepzkdXE-?yvILts!W|D$K>MC8&^)I45s+zZk|hO2wJfUbGgJ4R7gl(Del|zoLEE9idC4)iI$*3Lh@r# zf8@EnhM*OzFqhjcL4}0m`J#@}{wM80f>tv6XbtDaDC>htXF@AIFZyDKG4XA4d!#2% z8E@-BRfO)hWzP|9>-MO!3M&&-NUU>#sRxH;v=_~o>?PlAwu1FRf>x};$^;b>n=ftV z2X|H0#=@OVr1JO`lEVpZFj_D^_7<{u~6A5^+}?9{Q;IkaLi85g#P>fEBASFCsyO zM3;%??d8RK<=0BuLawm*AVDiuVO~Un3W?rp#o>e7s1J!Li7oL#f>x};%=!`#R7%9J z&EY0zs1NBI(nrJxiNj#UD$I*WP$99x*V#MnSzP5rMSPH;6{|4k!xB_Vg!zSkS-E%K z9{HL3dLBB`%db)^R$=a1S%L})xo+?6sXp=+tRZN{D$KRHC8&^)_FwCA^^r$n4M8hb zVJ>zpL8U~P$RG5)`pA1!4I$C4R;XFWIM@OKJ#Ou?lm!#1d3UNM8BL ze91G5t31O6(&i*+#VX9@L`zU1A^GvE(dr}5?KK3gScSRVZV4(RB+rkWs6O&Bs)nGI zj6PboxiQKTR5}w=BlxJ8epo{YtyZkUtPe*}A#ufRrXFL`l0nff>x};?6q

eTpcShy+Xo#%g~a69t*!^#%;3wphz}C9Vii^J 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

-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 literal 0 HcmV?d00001 diff --git a/resources/profiles/Creality/creality_ender3v3plus_buildplate_texture.png.png b/resources/profiles/Creality/creality_ender3v3plus_buildplate_texture.png.png new file mode 100644 index 0000000000000000000000000000000000000000..4dcf16e604f5f83890d32f4f75d7805c9d969459 GIT binary patch literal 13629 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 gR>{D4T+BZ Date: Fri, 24 May 2024 20:11:19 -0500 Subject: [PATCH 37/66] Flatpak build (#4175) * Initial commit for the builder * fix wx, use hack to install into /app * add some workarounds for /usr/local * fix up rest of paths * attempt to fix wxwebview undef * figure out why wxwidgets isnt getting its patches applied * do "proper" patching of wxwidgets * Flip the flag * actually append the /usr/local * restrict package finding to flatpak only * Update the destdir stuff for mpfr, gmp * Transfer over all the _destdir, again * update patch command for all other plats * initial ci check * what even happened * clear ci image * I doubt this will do anything * do cleanup after running each step * remove build objects for flatpak ci * compress debug info * Fix MacOS build * Try saving space after building deps * No debug info for now * Do debug info, use thin static archives * use BSD flag, not --thin * try building with lto * Use release, no debug info * remove lto * Revert the last 5 commits * It might require write perms * Revert "It might require write perms" This reverts commit 44cec58a5713cb5ebbc44e64e314b88b553b8f75. * Import fixes for merge * remove some patch stuff * the worst hack! * remove uneeded patches * Initial commit for the builder * note to self, go back to regular wx * attempt to fix wxwebview undef * do "proper" patching of wxwidgets * update patch command for all other plats * what even happened * -ldep_name-NOTFOUND is still here * concat patches * Build wx with flatpak * more wx shenatigans * fix a missing import * build wx with proper flags * fix imports and libs * trigger ci * try fixing mac and windows ci * remove duplicate definition of freetype * curl may not have openssl for a dep * has openssl been found? * force building * build images on apple * cleanup for review * cleanup cmake files --------- Co-authored-by: SoftFever --- .github/workflows/build_all.yml | 19 +- .gitignore | 3 +- CMakeLists.txt | 37 +- deps/CMakeLists.txt | 121 +++++- deps/CURL/CURL.cmake | 7 +- deps/GMP/GMP.cmake | 17 +- deps/MPFR/MPFR.cmake | 19 +- deps/OCCT/OCCT.cmake | 4 +- deps/OpenEXR/OpenEXR.cmake | 6 +- deps/OpenSSL/OpenSSL.cmake | 6 +- deps/TBB/GNU.cmake | 79 ++++ deps/TBB/TBB.cmake | 8 +- deps/wxWidgets/wxWidgets.cmake | 11 +- flatpak/.gitignore | 2 + flatpak/README.md | 3 + flatpak/entrypoint | 15 + flatpak/images/1.png | Bin 0 -> 286580 bytes flatpak/images/2.png | Bin 0 -> 999522 bytes ...o.github.softfever.OrcaSlicer.metainfo.xml | 48 +++ flatpak/io.github.softfever.OrcaSlicer.yml | 344 ++++++++++++++++++ flatpak/set-dark-theme-variant.py | 85 +++++ flatpak/umount | 10 + src/libslic3r/ParameterUtils.cpp | 1 + src/slic3r/CMakeLists.txt | 12 +- src/slic3r/GUI/Field.hpp | 1 + src/slic3r/GUI/Gizmos/GLGizmosManager.hpp | 1 + src/slic3r/GUI/HttpServer.hpp | 1 + src/slic3r/GUI/Jobs/OAuthJob.cpp | 3 +- src/slic3r/GUI/Jobs/OAuthJob.hpp | 3 + src/slic3r/GUI/PrinterWebView.hpp | 2 +- src/slic3r/GUI/WebViewDialog.hpp | 2 +- src/slic3r/Utils/SimplyPrint.cpp | 2 + src/slic3r/Utils/SimplyPrint.hpp | 2 +- 33 files changed, 790 insertions(+), 84 deletions(-) create mode 100644 deps/TBB/GNU.cmake create mode 100644 flatpak/.gitignore create mode 100644 flatpak/README.md create mode 100644 flatpak/entrypoint create mode 100644 flatpak/images/1.png create mode 100644 flatpak/images/2.png create mode 100755 flatpak/io.github.softfever.OrcaSlicer.metainfo.xml create mode 100755 flatpak/io.github.softfever.OrcaSlicer.yml create mode 100644 flatpak/set-dark-theme-variant.py create mode 100755 flatpak/umount diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index e5997c2e70..9c308de216 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -58,4 +58,21 @@ jobs: os: ${{ matrix.os }} arch: ${{ matrix.arch }} build-deps-only: ${{ inputs.build-deps-only || false }} - secrets: inherit \ No newline at end of file + secrets: inherit + flatpak: + name: "Flatpak" + runs-on: ubuntu-latest + container: + image: bilelmoussaoui/flatpak-github-actions:gnome-45 + options: --privileged + steps: + # maybe i'm too dumb and fucked up to do CI. OH WELL :D -ppd + - name: "Remove unneeded stuff to free disk space" + run: + sudo rm -rf /usr/share/dotnet /opt/ghc "/usr/local/share/boost" "$AGENT_TOOLSDIRECTORY" + - uses: actions/checkout@v4 + - uses: flatpak/flatpak-github-actions/flatpak-builder@v6 + with: + bundle: orcaslicer.flatpak + manifest-path: flatpak/io.github.softfever.OrcaSlicer.yml + cache-key: flatpak-builder-${{ github.sha }} diff --git a/.gitignore b/.gitignore index 4ec8a2075e..df5239095e 100644 --- a/.gitignore +++ b/.gitignore @@ -32,4 +32,5 @@ src/OrcaSlicer-doc/ **/filament_full/ /deps/DL_CACHE/ /deps/DL_CACHE -resources/profiles/user/default \ No newline at end of file +**/.flatpak-builder/ +resources/profiles/user/default diff --git a/CMakeLists.txt b/CMakeLists.txt index d0cec2845e..8854ab903d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -271,9 +271,18 @@ if (NOT MSVC AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMP # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431 # We will turn the warning of for GCC for now: if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") + # GCC generates loads of -Wunknown-pragmas when compiling igl. The fix is not easy due to a bug in gcc, see + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 or + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431 + # We will turn the warning of for GCC for now: add_compile_options(-Wno-unknown-pragmas) endif() + # Bit of a hack for flatpak building: compress the debug info with zstd to save space in CI + if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 13.0) + add_compile_options(-gz=zstd) + endif() + endif() if (SLIC3R_ASAN) @@ -382,9 +391,7 @@ endif() # set(Boost_COMPILER "-mgw81") # boost::process was introduced first in version 1.64.0, # boost::beast::detail::base64 was introduced first in version 1.66.0 -set(MINIMUM_BOOST_VERSION "1.66.0") -set(_boost_components "system;filesystem;thread;log;locale;regex;chrono;atomic;date_time;iostreams;program_options") -find_package(Boost ${MINIMUM_BOOST_VERSION} REQUIRED COMPONENTS ${_boost_components}) +find_package(Boost 1.66 REQUIRED COMPONENTS system filesystem thread log locale regex chrono atomic date_time iostreams program_options) add_library(boost_libs INTERFACE) add_library(boost_headeronly INTERFACE) @@ -410,28 +417,8 @@ function(slic3r_remap_configs targets from_Cfg to_Cfg) endif() endfunction() -if(TARGET Boost::system) - message(STATUS "Boost::boost exists") - target_link_libraries(boost_headeronly INTERFACE Boost::boost) - - # Only from cmake 3.12 - # list(TRANSFORM _boost_components PREPEND Boost:: OUTPUT_VARIABLE _boost_targets) - set(_boost_targets "") - foreach(comp ${_boost_components}) - list(APPEND _boost_targets "Boost::${comp}") - endforeach() - - target_link_libraries(boost_libs INTERFACE - boost_headeronly # includes the custom compile definitions as well - ${_boost_targets} - ) - slic3r_remap_configs("${_boost_targets}" RelWithDebInfo Release) -else() - target_include_directories(boost_headeronly INTERFACE ${Boost_INCLUDE_DIRS}) - target_link_libraries(boost_libs INTERFACE boost_headeronly ${Boost_LIBRARIES}) -endif() - - +target_include_directories(boost_headeronly INTERFACE ${Boost_INCLUDE_DIRS}) +target_link_libraries(boost_libs INTERFACE boost_headeronly ${Boost_LIBRARIES}) # Find and configure intel-tbb if(SLIC3R_STATIC) diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt index a21cc1bb5c..4bd3470d44 100644 --- a/deps/CMakeLists.txt +++ b/deps/CMakeLists.txt @@ -42,6 +42,10 @@ endif () set(DESTDIR "${CMAKE_CURRENT_BINARY_DIR}/destdir" CACHE PATH "Destination directory") set(DEP_DOWNLOAD_DIR ${CMAKE_CURRENT_BINARY_DIR}/../DL_CACHE CACHE PATH "Path for downloaded source packages.") +set(FLATPAK FALSE CACHE BOOL "Toggles various build settings for flatpak, like /usr/local in DESTDIR or not building wxwidgets") +if (NOT FLATPAK) + set(DESTDIR "${DESTDIR}/usr/local/") +endif() get_property(_is_multi GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) @@ -120,13 +124,13 @@ if (NOT IS_CROSS_COMPILE OR NOT APPLE) ExternalProject_Add( dep_${projectname} EXCLUDE_FROM_ALL ON - INSTALL_DIR ${DESTDIR}/usr/local + INSTALL_DIR ${DESTDIR} DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname} ${_gen} CMAKE_ARGS - -DCMAKE_INSTALL_PREFIX:STRING=${DESTDIR}/usr/local + -DCMAKE_INSTALL_PREFIX:STRING=${DESTDIR} -DCMAKE_MODULE_PATH:STRING=${PROJECT_SOURCE_DIR}/../cmake/modules - -DCMAKE_PREFIX_PATH:STRING=${DESTDIR}/usr/local + -DCMAKE_PREFIX_PATH:STRING=${DESTDIR} -DCMAKE_DEBUG_POSTFIX:STRING=d -DCMAKE_C_COMPILER:STRING=${CMAKE_C_COMPILER} -DCMAKE_CXX_COMPILER:STRING=${CMAKE_CXX_COMPILER} @@ -140,16 +144,26 @@ if (NOT IS_CROSS_COMPILE OR NOT APPLE) BUILD_COMMAND ${CMAKE_COMMAND} --build . --config Release -- ${_build_j} INSTALL_COMMAND ${CMAKE_COMMAND} --build . --target install --config Release ) -else() +elseif(FLATPAK) + # the only reason this is here is because of the HACK at the bottom for ci + # + # note for future devs: shared libs may actually create a size reduction + # but orcaslicer_deps tends to get really funny regarding linking after that (notably boost) + # so, as much as I would like to use that, it's not happening ExternalProject_Add( dep_${projectname} EXCLUDE_FROM_ALL ON - INSTALL_DIR ${DESTDIR}/usr/local + INSTALL_DIR ${DESTDIR} DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname} ${_gen} CMAKE_ARGS - -DCMAKE_INSTALL_PREFIX:STRING=${DESTDIR}/usr/local - -DCMAKE_PREFIX_PATH:STRING=${DESTDIR}/usr/local + -DCMAKE_INSTALL_PREFIX:STRING=${DESTDIR} + -DCMAKE_MODULE_PATH:STRING=${PROJECT_SOURCE_DIR}/../cmake/modules + -DCMAKE_PREFIX_PATH:STRING=${DESTDIR} + -DCMAKE_DEBUG_POSTFIX:STRING=d + -DCMAKE_C_COMPILER:STRING=${CMAKE_C_COMPILER} + -DCMAKE_CXX_COMPILER:STRING=${CMAKE_CXX_COMPILER} + -DCMAKE_TOOLCHAIN_FILE:STRING=${CMAKE_TOOLCHAIN_FILE} -DBUILD_SHARED_LIBS:BOOL=OFF ${_cmake_osx_arch} "${_configs_line}" @@ -158,6 +172,29 @@ else() ${P_ARGS_UNPARSED_ARGUMENTS} BUILD_COMMAND ${CMAKE_COMMAND} --build . --config Release -- ${_build_j} INSTALL_COMMAND ${CMAKE_COMMAND} --build . --target install --config Release + # HACK: save space after each compile job, because CI + # reasoning: cmake changes directory after this command, so just keep only the folders + # so that it can navigate out + COMMAND find "${CMAKE_BINARY_DIR}/dep_${projectname}-prefix/" -type f -delete + ) +else() + ExternalProject_Add( + dep_${projectname} + EXCLUDE_FROM_ALL ON + INSTALL_DIR ${DESTDIR} + DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname} + ${_gen} + CMAKE_ARGS + -DCMAKE_INSTALL_PREFIX:STRING=${DESTDIR} + -DCMAKE_PREFIX_PATH:STRING=${DESTDIR} + -DBUILD_SHARED_LIBS:BOOL=OFF + ${_cmake_osx_arch} + "${_configs_line}" + ${DEP_CMAKE_OPTS} + ${P_ARGS_CMAKE_ARGS} + ${P_ARGS_UNPARSED_ARGUMENTS} + BUILD_COMMAND ${CMAKE_COMMAND} --build . --config Release -- ${_build_j} + INSTALL_COMMAND ${CMAKE_COMMAND} --build . --target install --config Release ) endif() @@ -203,6 +240,20 @@ else() include("deps-linux.cmake") endif() +if(FLATPAK) + # flatpak bundles some deps with the layer, so attempt to find them first + # also, yes, this reduces CI by not needing to vendor certain deps + find_package(ZLIB) + find_package(PNG) + find_package(EXPAT) + find_package(CURL) + find_package(JPEG) + find_package(TIFF) + find_package(Freetype) + find_package(OpenSSL 1.1...<3.2) + find_package(CURL) +endif() + set(ZLIB_PKG "") if (NOT ZLIB_FOUND) include(ZLIB/ZLIB.cmake) @@ -214,6 +265,7 @@ if (NOT PNG_FOUND) set(PNG_PKG dep_PNG) endif () set(EXPAT_PKG "") +find_package(EXPAT) if (NOT EXPAT_FOUND) include(EXPAT/EXPAT.cmake) set(EXPAT_PKG dep_EXPAT) @@ -226,6 +278,7 @@ include(Boost/Boost.cmake) include(Cereal/Cereal.cmake) include(Qhull/Qhull.cmake) include(GLEW/GLEW.cmake) + include(GLFW/GLFW.cmake) include(OpenCSG/OpenCSG.cmake) @@ -241,34 +294,69 @@ include(CGAL/CGAL.cmake) include(NLopt/NLopt.cmake) -include(OpenSSL/OpenSSL.cmake) +# I *think* 1.1 is used for *just* md5 hashing? +# 3.1 has everything in the right place, but the md5 funcs used are deprecated +# a grep across the repo shows it is used for other things +# TODO: update openssl and everything that uses +set(OPENSSL_PKG "") +if(NOT OPENSSL_FOUND) + include(OpenSSL/OpenSSL.cmake) + set(OPENSSL_PKG dep_OpenSSL) +endif() + +# we don't want to load a "wrong" openssl when loading curl +# so, just don't even bother +# ...i think this is how it works? change if wrong set(CURL_PKG "") -if (NOT CURL_FOUND) +if (NOT OPENSSL_FOUND OR NOT CURL_FOUND) include(CURL/CURL.cmake) set(CURL_PKG dep_CURL) endif () -include(JPEG/JPEG.cmake) -include(TIFF/TIFF.cmake) -include(wxWidgets/wxWidgets.cmake) +set(JPEG_PKG "") +if (NOT JPEG_FOUND) + include(JPEG/JPEG.cmake) + set(JPEG_PKG dep_JPEG) +endif() + +set(TIFF_PKG "") +if (NOT TIFF_FOUND) + include(TIFF/TIFF.cmake) + set(TIFF_PKG "dep_TIFF") +endif() + +# flatpak builds wxwidgets separately +set(WXWIDGETS_PKG "") +if (NOT FLATPAK) + include(wxWidgets/wxWidgets.cmake) + set(WXWIDGETS_PKG "dep_wxWidgets") +endif() + +set(FREETYPE_PKG "") +if(NOT FREETYPE_FOUND) + include(FREETYPE/FREETYPE.cmake) + set(FREETYPE_PKG "dep_FREETYPE") +endif() + include(OCCT/OCCT.cmake) include(OpenCV/OpenCV.cmake) -include(FREETYPE/FREETYPE.cmake) set(_dep_list dep_Boost dep_TBB + ${OPENSSL_PKG} ${CURL_PKG} - dep_wxWidgets + ${WXWIDGETS_PKG} dep_Cereal dep_NLopt dep_OpenVDB dep_OpenCSG dep_OpenCV dep_CGAL - dep_OpenSSL dep_GLFW + dep_OCCT + ${FREETYPE_PKG} ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} @@ -283,9 +371,6 @@ else() #list(APPEND _dep_list "dep_libigl") endif() -list(APPEND _dep_list "dep_OCCT") -list(APPEND _dep_list "dep_FREETYPE") - add_custom_target(deps ALL DEPENDS ${_dep_list}) # Note: I'm not using any of the LOG_xxx options in ExternalProject_Add() commands diff --git a/deps/CURL/CURL.cmake b/deps/CURL/CURL.cmake index 9846c7c9c6..a5ae1b9d00 100644 --- a/deps/CURL/CURL.cmake +++ b/deps/CURL/CURL.cmake @@ -72,9 +72,10 @@ orcaslicer_add_cmake_project(CURL ${_curl_platform_flags} ) -# if (APPLE OR (CMAKE_SYSTEM_NAME STREQUAL "Linux")) - add_dependencies(dep_CURL dep_OpenSSL) -# endif () +if(NOT OPENSSL_FOUND) + # (openssl may or may not be built) + add_dependencies(dep_CURL ${OPENSSL_PKG}) +endif() if (MSVC) add_debug_dep(dep_CURL) diff --git a/deps/GMP/GMP.cmake b/deps/GMP/GMP.cmake index 8629f834fa..4f79a65731 100644 --- a/deps/GMP/GMP.cmake +++ b/deps/GMP/GMP.cmake @@ -1,17 +1,16 @@ set(_srcdir ${CMAKE_CURRENT_LIST_DIR}/gmp) -set(_dstdir ${DESTDIR}/usr/local) if (MSVC) - set(_output ${_dstdir}/include/gmp.h - ${_dstdir}/lib/libgmp-10.lib - ${_dstdir}/bin/libgmp-10.dll) + set(_output ${DESTDIR}/include/gmp.h + ${DESTDIR}/lib/libgmp-10.lib + ${DESTDIR}/bin/libgmp-10.dll) add_custom_command( OUTPUT ${_output} - COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/include/gmp.h ${_dstdir}/include/ - COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/lib/win${DEPS_BITS}/libgmp-10.lib ${_dstdir}/lib/ - COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/lib/win${DEPS_BITS}/libgmp-10.dll ${_dstdir}/bin/ + COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/include/gmp.h ${DESTDIR}/include/ + COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/lib/win${DEPS_BITS}/libgmp-10.lib ${DESTDIR}/lib/ + COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/lib/win${DEPS_BITS}/libgmp-10.dll ${DESTDIR}/bin/ ) add_custom_target(dep_GMP SOURCES ${_output}) @@ -61,8 +60,8 @@ else () URL_HASH SHA256=eae9326beb4158c386e39a356818031bd28f3124cf915f8c5b1dc4c7a36b4d7c DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/GMP BUILD_IN_SOURCE ON - CONFIGURE_COMMAND env "CFLAGS=${_gmp_ccflags}" "CXXFLAGS=${_gmp_ccflags}" ./configure ${_cross_compile_arg} --enable-shared=no --enable-cxx=yes --enable-static=yes "--prefix=${DESTDIR}/usr/local" ${_gmp_build_tgt} + CONFIGURE_COMMAND env "CFLAGS=${_gmp_ccflags}" "CXXFLAGS=${_gmp_ccflags}" ./configure ${_cross_compile_arg} --enable-shared=no --enable-cxx=yes --enable-static=yes "--prefix=${DESTDIR}" ${_gmp_build_tgt} BUILD_COMMAND make -j INSTALL_COMMAND make install ) -endif () \ No newline at end of file +endif () diff --git a/deps/MPFR/MPFR.cmake b/deps/MPFR/MPFR.cmake index 30ceca90b3..1161a1ca6e 100644 --- a/deps/MPFR/MPFR.cmake +++ b/deps/MPFR/MPFR.cmake @@ -1,18 +1,17 @@ set(_srcdir ${CMAKE_CURRENT_LIST_DIR}/mpfr) -set(_dstdir ${DESTDIR}/usr/local) if (MSVC) - set(_output ${_dstdir}/include/mpfr.h - ${_dstdir}/include/mpf2mpfr.h - ${_dstdir}/lib/libmpfr-4.lib - ${_dstdir}/bin/libmpfr-4.dll) + set(_output ${DESTDIR}/include/mpfr.h + ${DESTDIR}/include/mpf2mpfr.h + ${DESTDIR}/lib/libmpfr-4.lib + ${DESTDIR}/bin/libmpfr-4.dll) add_custom_command( OUTPUT ${_output} - COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/include/mpfr.h ${_dstdir}/include/ - COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/include/mpf2mpfr.h ${_dstdir}/include/ - COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/lib/win${DEPS_BITS}/libmpfr-4.lib ${_dstdir}/lib/ - COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/lib/win${DEPS_BITS}/libmpfr-4.dll ${_dstdir}/bin/ + COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/include/mpfr.h ${DESTDIR}/include/ + COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/include/mpf2mpfr.h ${DESTDIR}/include/ + COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/lib/win${DEPS_BITS}/libmpfr-4.lib ${DESTDIR}/lib/ + COMMAND ${CMAKE_COMMAND} -E copy ${_srcdir}/lib/win${DEPS_BITS}/libmpfr-4.dll ${DESTDIR}/bin/ ) add_custom_target(dep_MPFR SOURCES ${_output}) @@ -31,7 +30,7 @@ else () DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/MPFR BUILD_IN_SOURCE ON CONFIGURE_COMMAND autoreconf -f -i && - env "CFLAGS=${_gmp_ccflags}" "CXXFLAGS=${_gmp_ccflags}" ./configure ${_cross_compile_arg} --prefix=${DESTDIR}/usr/local --enable-shared=no --enable-static=yes --with-gmp=${DESTDIR}/usr/local ${_gmp_build_tgt} + env "CFLAGS=${_gmp_ccflags}" "CXXFLAGS=${_gmp_ccflags}" ./configure ${_cross_compile_arg} --prefix=${DESTDIR} --enable-shared=no --enable-static=yes --with-gmp=${DESTDIR} ${_gmp_build_tgt} BUILD_COMMAND make -j INSTALL_COMMAND make install DEPENDS dep_GMP diff --git a/deps/OCCT/OCCT.cmake b/deps/OCCT/OCCT.cmake index 541412b1ca..651e40ec83 100644 --- a/deps/OCCT/OCCT.cmake +++ b/deps/OCCT/OCCT.cmake @@ -14,7 +14,7 @@ orcaslicer_add_cmake_project(OCCT #PATCH_COMMAND ${PATCH_CMD} ${CMAKE_CURRENT_LIST_DIR}/0001-OCCT-fix.patch PATCH_COMMAND git apply --directory ${BINARY_DIR_REL}/dep_OCCT-prefix/src/dep_OCCT --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-OCCT-fix.patch #DEPENDS dep_Boost - #DEPENDS dep_FREETYPE + DEPENDS ${FREETYPE_PKG} CMAKE_ARGS -DBUILD_LIBRARY_TYPE=${library_build_type} -DUSE_TK=OFF @@ -31,4 +31,4 @@ orcaslicer_add_cmake_project(OCCT -DBUILD_MODULE_Visualization=OFF ) -add_dependencies(dep_OCCT dep_FREETYPE) +# add_dependencies(dep_OCCT ${FREETYPE_PKG}) diff --git a/deps/OpenEXR/OpenEXR.cmake b/deps/OpenEXR/OpenEXR.cmake index 6aea12b1f2..dd754d3a38 100644 --- a/deps/OpenEXR/OpenEXR.cmake +++ b/deps/OpenEXR/OpenEXR.cmake @@ -15,11 +15,11 @@ if (APPLE AND IS_CROSS_COMPILE) EXCLUDE_FROM_ALL ON URL https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/v2.5.5.zip URL_HASH SHA256=0307a3d7e1fa1e77e9d84d7e9a8694583fbbbfd50bdc6884e2c96b8ef6b902de - INSTALL_DIR ${DESTDIR}/usr/local + INSTALL_DIR ${DESTDIR} DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/OpenEXR ${_openxr_list_sep} CMAKE_ARGS - -DCMAKE_INSTALL_PREFIX:STRING=${DESTDIR}/usr/local + -DCMAKE_INSTALL_PREFIX:STRING=${DESTDIR} -DBUILD_SHARED_LIBS:BOOL=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DBUILD_TESTING=OFF @@ -54,4 +54,4 @@ endif() if (MSVC) add_debug_dep(dep_OpenEXR) -endif () \ No newline at end of file +endif () diff --git a/deps/OpenSSL/OpenSSL.cmake b/deps/OpenSSL/OpenSSL.cmake index 0adbaab43e..45f82ec589 100644 --- a/deps/OpenSSL/OpenSSL.cmake +++ b/deps/OpenSSL/OpenSSL.cmake @@ -46,8 +46,8 @@ ExternalProject_Add(dep_OpenSSL # URL_HASH SHA256=8c776993154652d0bb393f506d850b811517c8bd8d24b1008aef57fbe55d3f31 DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/OpenSSL CONFIGURE_COMMAND ${_conf_cmd} ${_cross_arch} - "--openssldir=${DESTDIR}/usr/local" - "--prefix=${DESTDIR}/usr/local" + "--openssldir=${DESTDIR}" + "--prefix=${DESTDIR}" ${_cross_comp_prefix_line} no-shared no-asm @@ -61,6 +61,6 @@ ExternalProject_Add(dep_OpenSSL ExternalProject_Add_Step(dep_OpenSSL install_cmake_files DEPENDEES install - COMMAND ${CMAKE_COMMAND} -E copy_directory openssl "${DESTDIR}/usr/local/${CMAKE_INSTALL_LIBDIR}/cmake/openssl" + COMMAND ${CMAKE_COMMAND} -E copy_directory openssl "${DESTDIR}${CMAKE_INSTALL_LIBDIR}/cmake/openssl" WORKING_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}" ) diff --git a/deps/TBB/GNU.cmake b/deps/TBB/GNU.cmake new file mode 100644 index 0000000000..a0ba4e5df7 --- /dev/null +++ b/deps/TBB/GNU.cmake @@ -0,0 +1,79 @@ +# Copyright (c) 2020-2021 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +if (MINGW) + set(TBB_LINK_DEF_FILE_FLAG "") + set(TBB_DEF_FILE_PREFIX "") +elseif (APPLE) + set(TBB_LINK_DEF_FILE_FLAG -Wl,-exported_symbols_list,) + set(TBB_DEF_FILE_PREFIX mac${TBB_ARCH}) + + # For correct ucontext.h structures layout + set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMON_COMPILE_FLAGS} -D_XOPEN_SOURCE) +else() + set(TBB_LINK_DEF_FILE_FLAG -Wl,--version-script=) + set(TBB_DEF_FILE_PREFIX lin${TBB_ARCH}) +endif() + +# Add -Wno-error=stringop-overflow to fix GCC 12+ build as suggested on https://github.com/oneapi-src/oneTBB/issues/843#issuecomment-1152646035 +set(TBB_WARNING_LEVEL -Wall -Wextra $<$:-Werror> -Wfatal-errors -Wno-error=stringop-overflow) +set(TBB_TEST_WARNING_FLAGS -Wshadow -Wcast-qual -Woverloaded-virtual -Wnon-virtual-dtor) + +# Depfile options (e.g. -MD) are inserted automatically in some cases. +# Don't add -MMD to avoid conflicts in such cases. +if (NOT CMAKE_GENERATOR MATCHES "Ninja" AND NOT CMAKE_CXX_DEPENDS_USE_COMPILER) + set(TBB_MMD_FLAG -MMD) +endif() + +# Enable Intel(R) Transactional Synchronization Extensions (-mrtm) and WAITPKG instructions support (-mwaitpkg) on relevant processors +if (CMAKE_SYSTEM_PROCESSOR MATCHES "(x86|AMD64)") + set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMON_COMPILE_FLAGS} -mrtm $<$>,$>>:-mwaitpkg>) +endif() + +if (NOT MINGW) + set(TBB_COMMON_LINK_LIBS dl) +endif() + +# Ignore -Werror set through add_compile_options() or added to CMAKE_CXX_FLAGS if TBB_STRICT is disabled. +if (NOT TBB_STRICT AND COMMAND tbb_remove_compile_flag) + tbb_remove_compile_flag(-Werror) +endif() + +if (NOT ${CMAKE_CXX_COMPILER_ID} STREQUAL Intel) + # gcc 6.0 and later have -flifetime-dse option that controls elimination of stores done outside the object lifetime + set(TBB_DSE_FLAG $<$>:-flifetime-dse=1>) +endif() + +# Workaround for heavy tests and too many symbols in debug (rellocation truncated to fit: R_MIPS_CALL16) +if ("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "mips") + set(TBB_TEST_COMPILE_FLAGS ${TBB_TEST_COMPILE_FLAGS} -DTBB_TEST_LOW_WORKLOAD $<$:-mxgot>) +endif() + +if (MINGW) + list(APPEND TBB_COMMON_COMPILE_FLAGS -U__STRICT_ANSI__) +endif() + +# For some reason GCC does not instrument code with Thread Sanitizer when lto is enabled and C linker is used. +if (NOT TBB_SANITIZE MATCHES "thread") + set(TBB_IPO_COMPILE_FLAGS $<$>:-flto>) + set(TBB_IPO_LINK_FLAGS $<$>:-flto>) +endif() + +# Disable lto flag +set(TBB_IPO_COMPILE_FLAGS "") +set(TBB_IPO_LINK_FLAGS "") + +# TBB malloc settings +set(TBBMALLOC_LIB_COMPILE_FLAGS -fno-rtti -fno-exceptions) +set(TBB_OPENMP_FLAG -fopenmp) diff --git a/deps/TBB/TBB.cmake b/deps/TBB/TBB.cmake index 6bf28ca2ec..13d40c0573 100644 --- a/deps/TBB/TBB.cmake +++ b/deps/TBB/TBB.cmake @@ -1,8 +1,14 @@ +if (FLATPAK) + set(_patch_command ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_LIST_DIR}/GNU.cmake ./cmake/compilers/GNU.cmake) +else() + set(_patch_command "") +endif() + orcaslicer_add_cmake_project( TBB URL "https://github.com/oneapi-src/oneTBB/archive/refs/tags/v2021.5.0.zip" URL_HASH SHA256=83ea786c964a384dd72534f9854b419716f412f9d43c0be88d41874763e7bb47 - #PATCH_COMMAND ${PATCH_CMD} ${CMAKE_CURRENT_LIST_DIR}/0001-TBB-GCC13.patch + PATCH_COMMAND ${_patch_command} CMAKE_ARGS -DTBB_BUILD_SHARED=OFF -DTBB_BUILD_TESTS=OFF diff --git a/deps/wxWidgets/wxWidgets.cmake b/deps/wxWidgets/wxWidgets.cmake index b7f852d244..1097e6cfc0 100644 --- a/deps/wxWidgets/wxWidgets.cmake +++ b/deps/wxWidgets/wxWidgets.cmake @@ -17,11 +17,16 @@ else () set(_wx_edge "-DwxUSE_WEBVIEW_EDGE=OFF") endif () +# Note: The flatpak build builds wxwidgets separately due to CI size constraints. +# ANY CHANGES MADE IN HERE MUST ALSO BE REFLECTED IN `flatpak/io.github.SoftFever.OrcaSlicer.yml`. +# ** THIS INCLUDES BUILD ARGS. ** +# ...if you can find a way around this size limitation, be my guest. + orcaslicer_add_cmake_project( wxWidgets GIT_REPOSITORY "https://github.com/SoftFever/Orca-deps-wxWidgets" GIT_SHALLOW ON - DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} dep_TIFF dep_JPEG + DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} ${TIFF_PKG} ${JPEG_PKG} CMAKE_ARGS -DwxBUILD_PRECOMP=ON ${_wx_toolkit} @@ -34,6 +39,7 @@ orcaslicer_add_cmake_project( -DwxUSE_UNICODE=ON ${_wx_private_font} -DwxUSE_OPENGL=ON + -DwxUSE_WEBREQUEST=ON -DwxUSE_WEBVIEW=ON ${_wx_edge} -DwxUSE_WEBVIEW_IE=OFF @@ -47,9 +53,10 @@ orcaslicer_add_cmake_project( -DwxUSE_ZLIB=sys -DwxUSE_LIBJPEG=sys -DwxUSE_LIBTIFF=sys + -DwxUSE_NANOSVG=OFF -DwxUSE_EXPAT=sys ) if (MSVC) add_debug_dep(dep_wxWidgets) -endif () \ No newline at end of file +endif () diff --git a/flatpak/.gitignore b/flatpak/.gitignore new file mode 100644 index 0000000000..49269ac6b0 --- /dev/null +++ b/flatpak/.gitignore @@ -0,0 +1,2 @@ +builddir +.flatpak-builder diff --git a/flatpak/README.md b/flatpak/README.md new file mode 100644 index 0000000000..4445f1e869 --- /dev/null +++ b/flatpak/README.md @@ -0,0 +1,3 @@ +# OrcaSlicer + +This is basically a copy of [com.bambulab.BambuStudio](https://github.com/flathub/com.bambulab.BambuStudio). As such, same rules apply here as does over there. diff --git a/flatpak/entrypoint b/flatpak/entrypoint new file mode 100644 index 0000000000..958d1cd130 --- /dev/null +++ b/flatpak/entrypoint @@ -0,0 +1,15 @@ +#!/usr/bin/env sh + +# Work-around https://gitlab.gnome.org/GNOME/gnome-build-meta/-/issues/754 +grep -q org.freedesktop.Platform.GL.nvidia /.flatpak-info && export WEBKIT_DISABLE_DMABUF_RENDERER=1 + +# Work-around https://github.com/bambulab/BambuStudio/issues/3440 +export LC_ALL=C.UTF-8 + +if [ $BAMBU_STUDIO_DARK_THEME == true ]; then + export GTK_THEME='Adwaita:dark' + # echo "Message: $(date +%T): INFO: using dark theme variant" +fi + +exec /app/bin/orca-slicer "$@" & +$(/app/bin/set-dark-theme-variant.py) & diff --git a/flatpak/images/1.png b/flatpak/images/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bf69169a022e465e3739e88a7dde994312f3263c GIT binary patch literal 286580 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

M}bS-gO}u;euEPum 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

a8gCu%`>9&uU){8_nROt~ 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

E;2mF-HmU-kYFe)^7ELy)jgw9tTrnAnz>Bk>jq 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�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

M%Ss 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 literal 0 HcmV?d00001 diff --git a/flatpak/images/2.png b/flatpak/images/2.png new file mode 100644 index 0000000000000000000000000000000000000000..510b7564fb6134be32ad8ebde069a4c574d8987e GIT binary patch literal 999522 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
-6hhm4t6pHlU8I- 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

iv$F}6O;j2~dEBwR{gzI@p` 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%0AV1K?#i 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

y42#l9^;RieP3 z-+i+M2`=BHgDe@l24|T&tnpU3k@I*;G^DlrZY`wE(XAsyD03*#&CjwBKPZG zm;S(C79zu6|9bHbV|Q^e=kXB~c(vVghuL4)a>IFX;o!J_C4)2Z)M)I5$K$i4!ipnQ!DIh;oub~LU?XCY$EO;Gfc-p~9_Oab&?-+x@+GdD zd*TA?t~^CM1tyTaMG>O%!XVj?;7Pti6$l;n1OK5Jnx?{0u%|Q7sB#DvdF(bhdea;B zj0kj9E46TKYEG=$Hnt*Gs_i}-TEF5~q#J1c)(`&2nWAcayf8lgtEt6wn(865Px9+H z8bUJ_3eLOHrE5tY`;>+bym1=pxE2H}FDsAi_xd8@&&x(!{itk$Q}C*vYFj4ZIr~f& z_Cl-~rSg$a22k~wwTh?V!?RM=>IYZpFG)>99_$8D5IyE>sdS9oDJcXqY9{S1bu(&PVpb;useCrw4mzLrdie_ zvjEIcN@a1pa+Mk;#$g;~WynH7YnjW610vfg3#0VDKkJ4KO>o~P3m<3yayQJ~-k)p# zecqVj{P53;Rzw1c*9(B8rRx3unh(u(NNxhQKSP0}Id@GVF5_rrP{-gWhN&EDYy<5V);+FKCeUr0| zbbwe$a7z~R-Mw2)8#Mvl+H=+)UAVGSQ-gM&1OCX@jT1OYkTqqv+21rGm`vyt1Jm%j1dGEe}{X*RALg%H1>p!k%|{l(<$`k>0Z_A;xO)9#l#YY~bx zFG9(<%2B)^IOtl#*t9^F+@9TL3={z=7_w=XbK^5yj{i%=?KONNa_^Try@1wBJ8+^v z-}ja=zMffkR-Ci*VX8tsET7FIvWW^}l5NYFw>^;o9*${qsZXca$=DpxuGTAzr^c`p z?`P}tn8tew+pSF97wt%fix)(L6=~vyE=m{5^s4|T9p8Obd`;DjdI~e4Ny|X&=Qn2? zvN^V&5$Y;ER08!DGT<&^6sDlnj3_$3T!3utf2@3HVN(M17L=B#0}S6(tb z&k)Da3NthyG`{wN5#~qfMT`;LfeaibY>vvQ`}2@r{|(2$JEKy>Av}o)>U;z}dYl1e zuhu(ISjQgQgZ;_Cxt$b2$62HfY4QTFTHE`gXAor@6bnp!dDm_R`4q*h0{S2y`i|(x zCC-SWwm=o}5JvuLX2ZVNqgMmMpuqn4jqjbc0%4V5B=F- zY%3PavxbztlPqz{Mb<*O6PSX33zUSn$&XO?y-)Rnndgpnv4;bhQ^S)XwFl=-p*ooU zne^sOSzyz-ogC%-$YbSnb#$5xyxOTSlV>GKDYdm1OINgb|Fm*kjle=Ev#_49{zrL{ z8}B_>`n#Clgq^>Y9h|{|zKR8zR^P+~7u}A2LyyL&K)LUWk*UCyw?`N^c2{i6f?A5; zFUsyUUu{o3`^Po9JM68xbAN<@ip5dcd^fJzMbAzYHl%9EZ^MOJ+iZe6gCtPI__8Jn zrnHjlKedY!ijKH1yY^`b(N0#frN_|En>AW7VAu|$>K*86_;qN)?i>I+ZgSij+m{B- zD+&Sv6s{5WRi#Qubar1MT-VC%rSC?b>T+5jnIA8nc@g4#A7otUA#>;OYsw3ua+U74 z0s>>-$@81WArmfzB2uaImP4DK$HSTG^}j%h)xo_e#{M#yD3wO4E@fkIj~ zpG^(#eEzl3Z4ACdp~6=~j}sK)D;|cFT?ZLTB@co5I6)kI)f$D;f)j>O^-H3pvKn-u zt-|rl2znbxdpew7D&=s~fjxf}@R0Yhd?u^u{ZG3$Cj3Ajt**|l#99{Sx=YR5gm+0D zqd}4wCZSU4Po%>sO8|XyX}hLouYmwEK*fx1N|Bb%5g9Ek#4mG50dIHdNIE=6s*!)Aa2v^6z81FcG z|6xJf)mG2X*5hHpx)_K0we6_qAM${#OcNeF92~mLHM7qzlvleE;&2{?>+tr7pm83Z z)wCn$f7q@pR#NzAIwZqxhKvxWxj#|-1LjPhX{bg#HSLmLCfwE5m@+KfmYz8-2BVYB z_#%F>R1(hpr4LzT*;LZ#->Rckk4b&NLcARXLt-x{zPTAsnXGu^Iyb)Q6HV>7BfGn{ z8R+=Eg7&mh`CCv_xOe@2A!6Om-N)mnkLd2~prUsUN>J0T6TsfG``Iy72|=}q)2L_5 z&)v;2XVC22svRJ2iSfW!boi~jVO(W#ce9GOqvq4B)1-hxr!^uxA>2WZMhLO9+1261`b87ohCv>3Jnv0X`+SyOn>3K>a%K7UbJ+avpu^ zcH+cgaNv3_D3!^>!c?e)YB`FNqE;F;He`aIBayQhCA89hpWD2t$a%gU%UKWB3@MTT zy@b6LqK6?wgSl9(SU49<=ao^FuxtX z_N+7f$8gxbZf)*Z`|@zXq1mX;v(vToaiRja)N@+V7R2eTPqY_QdHehl?9*fIs;|1Y za%sHN5d55AK$7;R3 z2piY-YRn2^9So|{KSKMDFSoEx!Q)Z5KM=IIj++)84D9Auc-qo)rn z3ig%&7*YIm%sP3fvRp>4rvaJy95;vjv`9s(12o&BRX$=#zjuh6BYNkmi|1YL2IKdq zfFellH=MVvNz#;vT=lK4@v)zNB}v7x`z064V!3PJ$FtcTaY-}fXl&C(Qi7%B{-*Rn zAxU&>(uH6rCW)Fnjn=}jBs%iGAzKrak!f6Plgmb0@=!|Q*+TP2Xdl*gV;65CmMIU! z2lQxd;rlC6p895L^!zIvMNUX-4GA{I*O1LK3@EZ&x9Pg8hb%Vqg+ZogZ~vOWT4l`F&yXp-&_LtLZ~9bZGB0_@ zhI7< zUr&8>W-HAJI|h-7u<%c~6SWHUX!p!P?~=4k8S-l0))lI9S;hVhW!WwNaeR>o&ZRc@ z^p$LySveEYwrDO@&N8=0WPO0!pJ{So;lN>a_HP1>9?12p9r%jDIb#<;XDD^B1m646 zDSGb<8pQ6$xwq2|oAMV4j2sN6;aA{x(U(#0UG79XJQ^j>W&b=6>M*7j1O;3sl5avyKYs=#>uMa9%VZ6_XXm3JlJ=R4dQy5{hFO+Ca9mwHm*lt(4ComO z2A0=Ibnh|A#+bn^8}?A#@2I)e43q)xSR9;~@?Bqnd=x9*C%%kSrTo z7%yVk+*)K)JC3+nZwUSvaU);${DOBonei!XF z{Qj~xukkAyw9rugQA+BspHK=L0oxV(zc0O4pERcmvH4A>-Y?)%*@jlr9SWn##Z8m(eWIleg0H4@BAsKgk>4uqZ6I%t5%mz^Dhv zFpljnMBV3t1txdb1T)YLGKLcU;Y}=+CHsBY?l;bH`glGd`kvtUjIGzgvx;!pJa9_u zMEy`G=tIy{$4z)c8to~lP4ym1u+^ObH;hm6Hilk};w63f`|`hv3yLSN%Q&M*vHcqM z6VK9`L;EJ>EGh#3#5M2M{DxLc{fYUbXJ}fm*i#i3=PlLfRpX%0?UObT(OmQI#emuI zV#WRSs(w$XGUBP`ba~5#f7?uA$AW)*%lP23=Q)rPnSk#}`|a4%)1MaR@GNyZdAGYo zUP|#7C1ObG$IGpRs`IZ2HMl-QCkCv$uTPOg!Tzp3tJlwm!}Is2d5e;866bF@xs{w$ z;9nEgnEOK`iDWL>VkJv5l6??7}I{{o}&q*tD z%Izf(@)U5OXbj!};s&06sXi0@x5c5p|0#C|P#x!%?#Fg`PW{&(?~q6|nDDSRAL*9>^uHAr;D8bb5OxginGtW# zt#Hk*Uk_g9x__p&FyeE;;+a#ru;H2;Yo_ElXPLiZg8I{f0`E^cVvbc+(*0Vy?WoK9P>`K(iRCnAh`I&!> z%(~Hx0S$oe4DHEmjqioTB1#^lE&rbvz|7ux6n-J*jjXMo?vNGtMVe$?FZ0eNOh*3o zhIhF~G#GECX%gpO4{z)s}#d$&V1^sost?@E_{)wgfZDWS1O4~Tz6p3#B%={jHe$mPJ zNClGVEJsdh*1QvGHV1p6*_oJl<9VMBlQzgqmREA!r{u>Dr}_+JB3_{F*={?jrG6Bu z$IKE^m~BCF+|cJbq{V$jG?G&l%I1yl9IolkYO$HK9fA%A{M%h>eT?iAx_Id|@eZnuI@PirD&Ys>xQe%%r6~$YvEF{LqRjY|`A> z`g-I{Dxd641WlrJhVn(dskNFOA_og#ZjI0G>v~ndT}yF1PDT`Rj}K_+{Nj^i_CM?m zF#aCF%etXr*)FR5x|^(%fDw0o{rxPL@cvbNOrBE*PTy5w?9YouesW;hU(Ar<;*2Vd zpH1rHTFkWG@hidr0;tXX+kBlmMw?&`j?IK0cYz*C#y0rZpwt??8 z#zZicIo7Wz@KT6?x9&F&4&bj*M*9_zw_G7n4Po5`IvCFWm^TTnp! zLyB>ABDEG$FBr+y0Tjz`TC=_3l1Vy>48OJ&=6^Fs$~Zj=PPMh0+Ej&4*Y4}VF=mQ7 zGash6fFFkaypLR7Tvz6uYr!X@TY-K@TpckUZ!krLy#xuY5F-{S!o_^^<~oopoe?Pv z+$&F5hXQ3>wN2HpswI8(leS~{2qBYJW{a`rAI-S02F>9vwcZspp5VjCWTmZ;1~+41 z&-GOU0E;LLHm9{yL}rg=&6pMlRHza0~u6?C&Od;7zCVC03URf26G@V2i zKa=tDjtuzsDd8MB_)He4cPf{C=;WQpj@pZ>lo#W?e{7ELs!!X;6P_0vQWQvCDO|4q zp>cM%zSO6`0+93MQs)1u)!wfs>*xQ$(7o<}1QxG_wk^G?q5sllti>-$gN_%1;t~S3 z>7HIrU&R4*dT{VpnbZGLc&vkVt?zQz?&Hz9B0)R9p0tDycfU9Ea z9iV4GLjAZn+zMc^rEtz(ZhP|cpO^AW3^;f*m3&_A_k2&<_N>y+C%wDB-gfSZ1w72< z?`j8MYv2DzZKm=+;#SEO9#jO{;yvqo-^=ng0T3j0{>xR_{h;xa43K$r>bKBg)1(K4 zHNrutpJ%9d9s#iU{lxl{a?p-;Q24}z^4ewI?HR!IcH0>>blUizj>b7q!~Z`GI(Y|| zQ*ZNp%uvBWUmH-s?V^nFTe?(>OBf}gKqtRI0=4y*reHNP+~u_=hd&P2z6T2KhBH}1 z?F&~p2vaRbskVj&!KdcGn!SLA&}j@j$km3A@@M$3oZq^4Ik#X^H{M%;e#)(#p{zgO zocayEQm>ur8te^n}^X>gQ zzrk$!6X#tXIe}^r=l##%yP^Q6yTagbN&_(K!OGRBHdpv3L2I=_U_0zfxI>S;&nOLt z9=Ntp!dx(2C<(EMrVnHNeOTC|;F%`W-0#an!fvMYx?t7MVJ;`ZK1w*0Ib3M=M~-Rf5Cy45 zmP}X>rGmd385xqNJOT^5??ycGGZgvN?h#DO@_M-|z91d)Sf9^#7=IinV`9SN#`iCV zJs-hoe#cvDdrEFq8Zu{DW$O5OB4{mtH{>v8t9@$&78X1wT8j&^_A@f4KW{rN%-f2X zf@l%D^>$o}*1n7R_v0H}f*3*Rgc+5Nx^vjgMgq6msbC1WDYB=TkW9JQevd07vn=fT zDgfQr1Yb}qHkr_A@&X3FJFZ6OnZPQ`9`bgy7gKUUal-dQwwf zi>*O4shJr~(zjlgufk5kSYA6}pXCu*8`TZ$g`irR6j>Ek2|+kTHX@dxoj#6Tb?*SQk)%z7bVD zxuyA|sL|BV(_5BNpsD@))Qg`#YZ#5dmkSQr8ZSzEa<_-ua8O1#s{AnYHZ0IdkO+Q- zPfRTQc{zH!(E8x723!??uApUwCXO0^(v`add#<2)15WZHGX=@4GH-h{+ik#FGX)8D zf)REYOF_Ec5_Tz239-Ubxy#Yo#kDKFp=amxlV2Mo z6pidT=Q#_PX$rnqko^|@5N=EJgi~uYMs|G?0vqBocV^FkEA6OAo_312=t$sIG|#Ei zN3~Vf2zk7WyD=vCLD5$i z{PJmj5oxgsRK~VcN4K7|r!Z0{eQX1rf{W~kp@>S@sauOD5JDS`2|#H3v>#&@0ELCY z?sTYb%f>4FlToUVn0U&VPM9JbWzyc~u_)-r2x=+e$=H6HxacXtWO73JB5)2eDP);9 zE<+fnxIJ%{{aHm(nHv`DiCKWz^WM=-zrREjY#9Z^aPGuHfs5g9Yi zVjwkBA#J3#2(T1n8d(y~Rl?Z&EGna_Xq#f>OFvRVc}HIK=+g1A`K^Vq-2)phn{u@p zWEz$>N1TIsK~2ky=^RE6X^Mj?#&l_;B}>HXPD(r7TE^m?)D3rfuU^JS&2~dbv(t6TPCNG&E<>SLOC|?%Umj|vqa_D z&@t`n-!aPWd6j7QVWx&o+m4U+$(Mun=I@X1>{xd%)8(KViuTFwcI?~Zej!uF$y@PS zJ7fH>kHlnGW@GC7n{&p8#>k+cDLN6TX41NkR^6x2RXlG@5Rg7$yptrS_w*y0I3Od44Vo(;cHrsnqlgs1G!jRM{)-IMZet1Qyl19 zeAt)DQI48UMkf!>#^XpAt&P!olh7+`a6-_!q9C}KG>G(Nw&@*To6MG74!YYE+VKSS}W$tiNxAETC0D>(CR2hQ41*gJZ&i zTJZgTsswe(2cr8YODf2>Os3XIy4XeUtEb)rA&D%Vi2qGkSznWbp zP3A}hC~$r?*OCz6`gTPwt$k=Csld2z;KM;U@288&5qnmHgMaL4TW)?E`+kTq^y_zq9n z%GglM!+u{Tqj-^3=SG^5jvf|Z7zD{D!! zyc8%>thl>76qn#GMS{B(cXuzv-QA13!#;h#-I<-;9}hExOfpHBT=$XdoQy66bA{)Z z9RKTNVzf+LzT;lgq15kCC%4a&7ClSfoz}0_iOuC10u(vAqZ#92c;Hy{8Z!7Xt+#_2 zW0aL@S|~g=_qq9;5yW7U|AJ@WBiI6DQDjRX(ut6axsnON-`mpI9CXeKGFI7Pa<`p$ z6R0m-MeQwGrpNe~kr1UK7&D{tztwc<9wBDbwiF$rFfWAAhaO`LT2#gu$CP6DtLYHY z5?6*tpIeFK;zu|hFSA{?XbivVrBi2U&_8U1^QW-H?mj3o0!bUhRoDPj445j%6Ni(Q z6pAsoTzsN7?NX+mbr1~a{{=Kq^2IE%;vv=-VHBSv?>VKvz4%XaB}8?^>qs$ycr zi&M#mCmQ9W|GCtv(L=B-j)z>Q4|3tihL8FDsfD-;2ey7D!_aOi2CCI#95|BYk50=0 zQukM9mLY-$Rswlp{k`R-6g!HYO?JlT-k+2Ro4q(vH3$tqhM(uFWN>*9HjRW1MiIZE zcNa>IA3;YW5+^V77vFOY(y`1t%byYibUPMiDkE?=pp5O=$*{-mF}^0+=}%XwKb1^C z!`}>oM>;a{$3SOn2Ua3G4nlbXjXESI85)3=z^o3B_^~wJ!xjZI`)$kujT4~Ap`aH+ z5I?GYz|U{~B_;VnK!IH8UOjd`28P!n*ePr@Nr{7MhI%LRH(& zZ`ExL_HefPlm^e@c+3J;XiS0)glu1eRoP*&yc=r*WntQty&3rxSYxv z%;lzm2BXC^v=f!|+aPIROM?{-c_yRb^Cn6NMF+Jwzr-97*Fq%Zc#jpnVmMa`PS_-c z=&#$Rp+_2c>}c8_;LlS(&2sY4-RPxGt8%8AWf48Q0-WL8*d@rY9s3Y1f=dYx>8s%w z3|MKK`_O|W^hc{h34{Ce9AKp4#ba0>xT*s#VZ&mur5AEzXizd-Nm2tWbf-R@hebqK zkPse_%q5Vz`VQB){yNMEZJ@H~K$!D6)KiI{izeYwO61*IULe`~AyEPsNKvonfUS-l zjDmklk{cjRnUhtc_{$%0?^4qXtC|PkygCiWo!L^UK_A&o!igh@j9yOl;#g^6Xlfwg z%B}>(Dn7r)FGf`Stgq4Xw}6F1`KjVo>0c^}%jop6E89|{l6)9jlbT0dTg9ZCPj$CO za-%TwZ&C)4zP_BkpPYUIm-)r)F)zV$v>uiG!s+0GQDm{uVO>h^>&u4kTa53)ZTi`9 zgZHDm)0!!1WeBkv)swXR31pW!P!MjZEkl2kxZQW9VRA(?^j1(%%f8MK{MIO&Te&$S|+wM{d>l0vN3x0Ff0R0$g3!l zqPB;z&@9}y-z2*`lJzLzl>4Dlp8bj?yN?ct2{n#f!jgxD$D~NAo1A? zRlO(F8Q7Bd85-YvHOUWUyK22n^Xi znr!y}|W)l17&%-$Tt4Ydt$0J&AH0_dNTl1_5>xh*{QUk|8Lzb27MuU|Sld}Pu zu1tXmMX8p-s6c|5D(Oq(g&s6MB#A^(w6x&uhf%qb>~ht;>XC`$FZ-@Odxt@_7I2D& z65VQSt)CmU3z`ccZ~(*Kjof}BKKa0=k-hXzy`?FlMob)5a-o%(N>ja#KC#vlIvP^&#t|<~iJ>?F8d&!^F1P@I1@f zZwy-jm-e0Q+LyFFd;@gs4rABd!Crr$-L|7n^LXC|=vVeA2g7U`CnIFAzcMUZFo=n6 zUspF6eLb;tX!!iqD3d9#$TZ? zCOzac73C*&BXkqF-qnNL2AlH|MCFNZagyR4d(Jh3k3RiG6h63~o}?9q4S58`^6@o{ z5lT!&O@ZH*&Z2vaD7Bobta_e`P~yGU(60@hGluUL;vLs2;4JpWS(dM|ng-Nntzw>apMYJd}heP|8aRHz$q^SK!fzY54t z%G6=P)py`bk0SrX(6U~ZWPxl)hO@5n4|DTA-O?K$9gn2TMKdkm#>SJ&+fsc z-ciT8H(VE==DPfX?gyvwE>H~yZ+F8a*=Hp&b$CG6bha!JA zui@&>S&E*`1`GpJjw8;3W{l)-l#d_xsYWnF66*kbM@=(XO$b|#i#+$ao3Dv(H@BK! z`eo;#9O@+7-2FlUlJwAdy+2vtksk>=SFKuH-s%0m_0kK06i)iCVf`LenfY|HZ!$@t?#}l)qoU8&Z&nElvP~v7reyn zCamv7-D;&=R*8~ASHPZXHR8bDWF;NB4Jt#bD@9<4-yX{##$*f~rH@y^Fpr>4Kt8`g zuVmDr3#G=m&e2qbf@28QQ<57*QdN_aMEb6V{1+We&LqkKnu2gq{Rtl-$7rLOz%W3q zX7ZEr1CDgg*Q8y4-JIVXDZ3GimaF{^vqJ8LS!x?|f>$9@?pG@tqlJ;l5C5iF>jK`) z0yQtKvH!x@ak+M(L)VmTS0)J>>FBMV+?MZAq<*Wp^-f^x`h6|Rxr<#g0sy{ZR~Noq zj1WKslIN(fU`Sv{$8+E#Lp=0^&I6a)r|jt*}5FM3}Woe`Oq7 zd3o~)Il;TLWD4N@-+u4=D8Bp5+!6l!_g&LlI*gr1tz;_<7r)K?Cv?Yu*`C)nHoDGu ztkpIgV%W_X(_DqW(uoV~Jd1y&T5A(Gd|5=>T2rjo;=M79Lx&pZSr3 zp*HS)Hiqtj_-JLok_YtG+j;qHTnlaVot?4ZvFe%F+sAfv2)VksA@;@TRk^KsEG#T| zyj%_emIA@&le)SceV|mbe!d+jB0T`g=2=Bv`b6Zi4qm3nUNL}9^nB%#3!s!S-8{=9 zFbvP&1t1q(UG$+{hx$E)y4~Ju z{Worpm{0&);6DNU-{#Z*#_yzIEmKcTTu{EwoZL{`?HJX}qp7#jr>FC;v&8&zperZ+o-y8>p!kLhx(#RE3=7%+9%sUTjgb zfbKbwt>1+K(R=6As$EC=*uJ${p*QzF0O2io(!K9jx+10A-OV=Kh3xuP#-i`J{SHLj zGwc?KY>~5Hj}@FuRRCB{K9ll?Wq9sAYQ#7jaULc;)%#NwG3*Lp=M6U>wXq z@^d^_Q3?#T_Dn8_+G-n@t@U7 z@d(a5bHBCslsz(D$4Q%r9(;q3Q`z9y9LPS)aQ0NWx} zbmw-Sq>tq=DsvA`crnwmb4bp#D!f`uER!qpoHb?%Q-}D-m8yRnR2kE&_{bks_-YkF zd{V9XN<>Wh6gehCJgs1*^Own5N0f4>&DA56MPZ1e7QSx71?CU1#k__G-2qN&Ir-^e zAguRd^8!fo`EZ9OO5bz&ZL#a@3@>={w0q8|i*?n-OtfTmVl3UkL3h&wOvIb371#jx zK)NdEWG1@TvsF{5><=V|KiWNRmU6z4knSx1;UE;aUg*JTnuu)V^o#z?x0vkSxpz4G zi73NqMU}C79z7_xaE50bRUN;(^7N~qg2VI#{c}KrsWcyu`WaHDjadaVBs4aM609DO zASS;Qx*uV}#dGu7Jm9*3X%r;f$&vAm<8DDv5Y~JqF+QFPOk;S$Njd;b?Ryg$M4wJ_@F}@Q$zT(CJM`b4{%6Q2C6rk|=0SY$Ju} zuTl;c9N!7LTt!Oe7rkthJ6#@DLSZt^ zg*##yKjYo{<+z1V8?BJob7~dNT}5NFz4yhn`e1*4iurrW2GfwOIDcGyn%ycqRdXW^ zK@^IVZF6f0zI=q^M&dZ`(nL$`))u^-uZ||`a$g4HH#9$G{7pjAte_dg{Xr4*jNoy& zgXehdov1Y&vWeu3Z_0OIbK`6v-3;4~baXiwQIUQt%5UH)6;V-o-5(e30?)wJFu~B`y@9x|2RDblW>eWAy=O;!nG7>UMaRjCfYrb z8dtEl8QITor6clnpS$vdbd) zn+lN>&}U>vH{mqPqqFkE>~}(z>-+s50;(#zmV@~G#;rd^CVY)9z$t|&{%z8zz|aTf zzH8%3v2)KQrEcTqVlbH5Wz4N{(r{3(ukSu7ovchau%r(5tP*B50uzefQU#}pmfk=NP^?8bV-iCXs0Hwej!-zgA5L0XNK+ zL_*U#~YYUAJ(O|hai zH`)4NWHGC5D>TEi_aQ&dYt5#W=Ss=TbsFf+fn;d=CRkyMAFP$P=k+^67O$PFL+?)T z?T=c2#s1!#mTetBF1p>dD1ktzaNftqMiMuIvC1u6O?{@CgD#&W5PI~4HvQi0c^};L zPp`+a0$Z|K!Yt@k>4=?W{P)z7f zv-G&e`siEd1Ym7ZEf$<)2GgJpygXhhMhEa>dA;a zw2z|moT|{o))vM3)OIqr0Sr`$7b<&b4%PgUV75|<^tAo)UIl^M@ISw4&F10W>e~uk zH&k_4tU$CK*{is>k}y(>fe)l*ftxDyR?PE*t@EV^h!54$> z&z0`YydeiVR>SholUkj#))5DUo;syAT-bHovaHQ~j$PZXy9Q1U(kFz64&G)&959m< z=b}G!+aLH)7wem#K73n&Svl_vdw;$2V}j^%(~o$6t>fQ3*z5^qpW?4owm7O6$p7Pn z6)&vj^;N{_Xa5`SZ|OLL(~IY`M+S4_DK0Yi^<;hVV8LvjVeMw?g6O-W z_TAjfwvwK-0lIiUc4U;TVA2Ff!mlenWNn#j=J}?Vp`r^CSX7oXzCg%_@~dl+uB$jG zi-NMafOe?_uD|h9vkp9COZvB$iMwhU)o%Qx&3aCt3BJM;X*EVvD5M!mQa<*Kq14Ej z%$@+*9%6_#WJup)_s!F^NJ8P*Iw*ud*Np1#%sXS-{?;s{&FKX;IFlN@!x4>4c}64G zzZNSZ1n%V1CU*Rvmn5)H$T{6VR};D;JL%T@grp8)RiDr|bzqmn2=^JK<7^n`p`^m< zfBrbZPq5FGt)jy`$KREO4t8o>x8oBG4t%AIcq+%Yrsr!nrBBY8!bT1S%MXoG8N_;~ zS+8I!@GqV(gL}UR19P!pER+ zGxL`Iijv6Kbxj6G;ne7cp$enb1%`ER)bgYb$|v<|wL4%5a7C3@VOi;qS_K3`e&VUt zQKP#B-ZQW{*AMNM5H)5Mt`t8d>&(L-oXOXx9zPc^RRtmbD%ZR+0+}^^Go5i8A6rHJ z%H_u1{U{;mAo2ras=_GiVSpIlT6``ciu0Sm2*0#5p?)G)S9{R=cvKa#)A}nb*Q>vT zM>E|9Bpu3_83vwifMlOUMB8tJo~_gl2r2uq{a}HQI%^mb-p%`e8YAB_Gtm;cGF(W| z7s&`>o*hhe9Y2i%dnC`y1H*Lr1uzw=!$-|2@Z74vKBSE1I4yx!8L3R`V@=cc3>i_Y z(zxE5Ih$kd-B_A>cb*sq%E>siOt0n?DNUNT1oFiawW&3Ij*uhVaGmt$GC~Jp+zWjS z*wu2l{+4~0c*Sd+=-MH^ISbTGGujYy99~Yh z){+!alCMV(a?D8fy23WM8R z$n`>=Bk7^8SHz+gXOktj4ro3w3$OGqLApZb*rW92Bqz~!qNs){Z#;}A#|^N7X#t~4 zSKpuSbS)r7uMuQFkxLGaSK^%0aNUvLK1aV$?!5kW%U{~;IQP0Sg)F^qT@MS}RBrjw z;te^35=w=KQ-&=tBK-a=<=V_H_Xv#jiKZjTwD+B1;R#n`V3>% z?+Wc~`{8(lHuHjSV`w~&>gPIpsjj2ZhMzWymTaaqw8huju-77uPt_uZnn~ndp1U@- zj`i&w_x{A8d2e2Di;T}Gh>V@Tzn#wRhIOyK^SIT@P&~+`q z8gL7^{SiB#=BhAEVvezmU^xQr@8iC&;3MzH9P9;r`ckJzPJhBySkUBs`pQ1 z?+-(dWnE8Y$uJNi?~fDLL|vCeRjt|o9(4R3um%3d3;<39eR2dS-^XOX)PGchYunh= z6u<+5!C*Vt6HQG`iV=<|_M2y)AoST|JV{9kn6k1mw1OoUrAT0OuSYdNK;Zpfqx{Fl zUu!o=2=fLA$aCA%bL<*iGYF2YW)gm)oJw*P6%dF!2(g-D&jjBgZ(}P8MCKx@e>;eR zU47O2!I?8>D3}7>po|R?73jd~B*ZWpO9gA9$5JQ&w@#qrf_GU{?1iv;<^m`Oig0Q@Mda@8`+rdxXU^s(A+@ zUWON(sA;nHK9882ABi`4>!2eDHb2Jg!O;@%Rm*n;kvLp@3#hm^KpC%3zO9yyDz6Nb zn>0jAH~;17oW)uuCDatfiLoC@x-JvBw4{mV`8y{F8LAxnPz((taWxiw_mzc5_L8uo zR|cVVVaU3%nobVacnGUq?E{4hBvgp|F-lN0`)5PDf#0{SoUcnT&cb50%={J#bfcCb z%cX|FFdQe+0jniO!!=3)rw6~+Fx6-lOM32@ovH$8+`u^q{W!rt<481Ba9(J_>BzgM zRkv*Tro|xl%Eqlsg0w4j6Udn_`#FyIiO8qL{PqY{)QAxlI}oF-QDYMSIC;+0I+7y@ zjvRgaJ%|c}{YMO>4Uc-2z64=j)V-4qmPz72baTPFLxZ3R6F>Yxj7=xhtO*fNn{#46 zo+FB8w+hnwrl?T9o&`c6+D7#v@)xhJ@@|j1;y|@1Izn1pP@mgq36y zuZVw5rB3NC)nxppN%Ibo(;Q-zZaHvuU?8S0L(DLU$eiEjbQJX67Jom)OqzX|i^|sG ziFAJ7r8a|&7iQvXns4eZ5$Tb3@#+mH1MH~B^(Y5nPlN7Oxvh`6-}TD}&K$Dt%a*{7 zm-xVr%5j6L#{EAbj%z zdLI@q2%HeXASU}z3 zJjhOco;mm?gbGNdMsQG8$PQQUh=jhW7o4PTZIoBX^r0WY*3SWN-P6Ls)?NW`4)b8* zEX^nArnmhPW*dK0C?@y-wGjd;+0KFn7QUl>ouy8;V7(HiO<; zjp3si45xah>7Lz{fm86iG-MtKvf>AMPEBPd(J{p5KxoJh59fk1C9p_=JsN#hOU7xI zfKyREqgL}85vz%~D9tXTMon#YBtkE7Dw5NRCY&AYYeVOOiDHmL`1Sr_TA8tjx+!r4 z6`Pm_PMeuxWF(~yzo8}y!}#VArbS6Sm#vuHsSZxfNCC6ob&Mb+mJ=SPQ;U%t*V$zl z3E+7kO$}jJ8OuSovL5Pe?MJ@HS%vNNN9)xpJTR|#Oi3uie2r1|q8{JSB@CQpC$SX+ z9W4+O$z_?cAnZ}%A?cw1Abe%^@Pver(Oi5->PeVVv_hJm&8zE0#Sa|rF8eTuVe&n) ziRmkCcWsWJ4Th=zTz5P$md8@7!{;Q>HsFZ0>lF4I4?{i zG$(Z0=8sin`qCYwlZ%=9GHn|Rw8^%PRR?(eXX;(&ZUH^Aw{0t@>vhH+9pxcaje0Kw zBazlqXNAYJ$=YrKelwO|uqEi|FB6UEEyZ)2fa0jmDQ#d%yIG3g&`D0P!l9%{}zub&AI8^wawR zTW{M!=N@R$l7T%24hJldc7a!VmPs-+0LTA0-_$t(IP;hxfC-&yp0)MddH%e(v2j4O z@c^e~4J`E|21Fht1A@RdAMJ#5(G0z^Or?I;_<_hdB}-wVPMhng#H${Fje*(PA^iUg z*;~RiLNd?Iyn+I7~V` zr5@QpNF5p7s7FN+_AWt!Y)9>(DMJ5)xiI0rhC^y(gq4$m_&YLX8u z&!-plcrd+LAssK4bDPhDeK*SRE0duh(G)%j-hYn8a&!ySw>$tghV`958@fAw_M?y@ zFrao5c&5DI1=7JUwkD?ei%k&vxmHAnzapcl)rt-s;9jMf0@^_ku(j3Dt{A?E7>SVK z(wqh8VL7{J2_I7|qO@#Vo)P@d?iHhZ;phtLpn0^u=2pA2a5T?-K?+Al@)4G7AOw)x zV9Fi7y)jN8nzG?Ira62(hBDG<1wumu43A^Zre(xxsnNcoLBwi>fek9dK-NABrN&n# zLgz%od!L}ml&=Z*$bTbxlS5u6w^e(pK12l^{?4kP^Ts8G4nM>mVvJocSG`UP%RWZ8dgRy5;onQ|l{lMQ0OS4YiE&Ewx!9PWueti2 z1pBUwEvQet=>$h{vq#ncyl<<9^Lfk|q+oBa&H&(wiffgann zSx6&a477I5yUW6yY#hmE9X%@n#cCXPI>^A$NhI&~Rk6UaZsRl}+7{Yb-12SeVavCC zg=1~*6K$+c?4kDa(8x!ZkpXDN;li5GeC_eKBEgZ%QKUou#j;<#3V+B5pigt-H;} z`0^P94tzWrH=BP#jQHj=kTW3dxOg&9xt^KHSm|uytXV2=ZB(NC$PX^7vd;7T?$wCV zpSIaujd|@EdzQS3dMbt`1TQ3RSThvNrn*oORy3W^Hzii9ibQ_wcPphi3y&>UCh^5$ z_HvoGX%&%tjEdJ3blEnjlL5HuEh>w|z+M>5v~+S_Mi!{nHdjZo!S#{9#1>c4-JMp{nY2VS}N@XqOkie(4$_Qad> z;K%m{=xFmIkwP7vhs@KSZl}cou|V-iF>$Q z3k$1+N2ZF##RgtAc2c|t^2L$uMYci_3ZaFHP>dAfZM;)IPW%t(O|4X~@AnqR(Qw zGsX}1=Ye6DU`}euKlH3%n^1j_9e3d4hi;)|hpS!HglK@53}Dh6#aGr5bV?J){d%Jz z`q#gB6_4kJ2p*yn1DJo8CHD0s=e5jd(LsajzkR!ul$u$K&u}r2+iAsLUqgtxv^(a* z4CrYZ3YSS7y8uMiF6*#p|MnXW;{C4(F@~ub>YHv%88dwk6%o#Q$M>z+&ecNBAAi2n zz>@hLb1>2j==(5cRO!>xtI0%IHT1seMOrm@#=d`YtE%$r7*KfW=XJlCGVXjBSmWJg z*O#@mx3BBy7`vVj5rN+ZCXqbY)S?0~h9Sd2uRo5vT>(sST+w*Z!*8lsHhdr~kfL4P zw4zY2>U-JT{&Au*a;SJO8+DAa-DJzbimWuw-Hfz4%ZtyrIw(D%@6(}tzZ%=1@!3$AoP z`|o@_;q^FMIv{Q4)zFvaPD3f3`)j-LXMJUZCSsdcLWF1xF81YG>R-;!FEvJ&HlZxf zD|+CvjERkjjk?ZHcANoYTf~k!>8>wt z8p_?>z5DqyX`ymO=U?G<%{t-06u%262isWBxr3ig<&_;b z#g~88NyI~`k9|=RqT=>&&@nZ&2F!9JXK`4N&?yv0v{_gy*)Ep23SPjmxqVa+a(08~;2;ed5G0 z(M2a>p=3SRib4-Fg@nqB8Q8$CyD`~DP2>qq;E@cF9;&UUnf%OV1&tZ7-MNE0+qBxs z6(9yb-zX}L@4A}Z)P7<|=8{u$x_pW4X=`B@m>6KUGQI2yN{XAb{h+l1a$2D<9DaSY zY%(++@((#}tdpAi@U>96~$Z1GM6Ynvp^5+a~&zX!d)nLrYXs1Rs!2*z8MqSGZ1;$NY zMs!*%`edZjQ;k{v{!FY>YfT&TFmp#r?(B`LIUSL)fTx_yJ6)|D61@^M9Ttfl_cs>6lDYk8Eo5Mo)K(KbQHhb?RqPoSWsQcQCPna z%ru%ft59Ym^GuT55^6BOL9x)53zT)_RK) zev^Ym=&EIBBS6)sHj=v4n(Mm5njV)AOg9^_=ZYq!W+1F_|vm zvymK49{#a`usTn&cLDm%cGQ^G=2?34Z*}^}XSG+O)iuwa@>9_o-;B0X*qek%S60W# zEbIW^v|2rS4C_AfVGC6m>cN~u6aI^%A$sMnVDH#}Qn{nEQJh)1I#hv!bD^fw5XUIj zv1#_K1^{5|u-X2&Ox@`U@Nz+CE7`5${YWGq{ji6nAvVE53DxNxn3I*YVz_n!XzvdYFmvfNdE^OODX_{mi4>o2Vy4K*iN2O;CL5(lpN$o_#l-AfmC z-;@E>c<>XEe%-b+hrFc<@r#?FJVJp<;r34}@jT|N08eQpR(eWX#p%p40ml#rg?j`g z2;2eZSe!Zp13YM(h{Mg=j}c+|=1_iVby!5l2 zm`3m~&y<+KN-qtV#(Z`n%)stOX4gKUkLitG!V6eZ+o`40yikAQvNTM-lc&cQ*#ATk z1B0Z+DrKe-ifq}kM9UFs!wo#o1|_J_WucU?6konj{jPtOZU{VAJ|*wqf^MK?1JeD* z|0J6RFu{UhE&qy2v{6e_0=)8c$ur51?sDmEL<_1(fATX84u!ab9PxV{+wWgP|Ke+ZkED#QWH-`LVtd+FY9f7+Rw-LuBp{LvxYvN}|p<^31scxUZz z;S)-Gk+J9DR_K3U^$Vw$1MuBpZsxbGLcqWX&kM6^_;l`eZR$&KdF4fP?}e;yH}QOj**XrpzsVGd+z<}Ot?`f;NsL{(Tp9{hXn zRDZs+6ItEr;?emxvs;B*MUN}&+tbZiQ6R`9(8k^u zfn+9Z_~;TC|2EIMt{A&MH)svq`v~9UqFwrM4s#ZRiO$_JT~Y*b8A)L{-fDbn{zO-8VUInz(ETZ_ zW!l}pIy!gka@g^>E;G_BED!BBr@UHDj<}0 zQgY*}LimT*e1%a}h}Ts7ybgy1PWqxPYeB5LY9~H-=;nek7(lmXC1FS@qPcr&`dv(q$^e4k#3zigYdj6^gcaD7V4D%tHmC z-{e7IGePu5L*bs{p#Nf+pBVH*#YH+CBB+pI%N8J-;|S+QWvNKSH}QZ(f;JY*S8b1JW=qksYE=HAWfK4H0GH-)}ANr+YcIpkQV}N4TulWIgs%C zW@+&shod74$0}%eLp(Kq63CV^XJJPve=Ga@(?Xm%u74Tb8sM(Q!f@$4;`iby;{v43 zE(*x|YIVSgvT+)Linvrv4W%@kXU*;1Mu}oDA*`V*)N{0+*p%g=OsZ`8?4^2A8sP-; zag3<_)qV6%729;JzS~*v7>mA9I%O1bi+TYzDv_=cHsBhp$kW2GA816HK{#QhXa~&; zSgPTcfttx0hQlkk9V}v^t|OESG;&ODAzwmq^LxNF_0&_j5?nN&U^5ZEh{q42ZsRcq zFu_s5JYt*Zl7nfOK5VmFWFWFH1ehSVV3DoIwpPP4JG_-P41wzn|NDaLvoQezqW;PrLTo(s{?L5CHFf zsg+gz+Ncv&E5-Q-6M>1ZKa}r#iX$<_7$QRE`9SfuB;pselMjG#H+^q|!Hd25J>iKb z4+0n)uJr4BJG*tht&59C{)gfMrb;Q@4(pE5_ZvHSoR{B8gd&#?nc3beNI-D{j_>Xt z%=d$t@vrKv^rUT_qiA-jk2_U&cF@p}F}+c8eLD-uj|;Komy6neZ=7P^9jN)+KNMeh zLV-3Z{fcKmjOvo!4}BBYZ}()=Hj>`YE7mVPWbMxqD_zPE7ky-JZ2twj0l6^yBLAdi z>G&YPcK*cUyq($5)iv=iyA8<1n{f2@9$i`@C{zyrrzQizv)Q}0_FhDOmw0|X+3%0p zK!gm$eX4x^)Mh@}E1k%_v&c}}`Yp>p+j_jnV}gjs@Z+-j@Ly`<(ym@({#iWdGu5CcM`Bq(q*S{`v6pMV_cSZwgs|QX>xH15AW} z1DNc&hHR&1h!lFW$@jQvf2#LCZsFF-3KF981=H{9qo2{gb@;a=vZMdF_WulOImiDt z;s3?n>DBvsc|8jgj{zpN?Wd-$$Mh;Bi1s?Oi;a_eO2UVRg{`HOeCOy3vzl(zg*z() zZna{Koq9w8Yj&@1ukp`m62C|PiiO2{G~CMU7?Bn{WSpz9;#@yl894&rU;pf&>~uqR zZqL`PZS5K0SqNHQJ!5-LYRqmW2kh4-4r%cQX1%9cPMzP6$oL3ge=ozOV5b+WkUqf- zZ~3_%j0p~WIdHc|GyI0+5y4IG@y;Jm;b!~;Y2Z;+EyCvzxeTj4sVv3h@Gc)~l0GR^ zMB3>Z(IyLmUGq5|Mq4B-39&cZs18}x-ryQJz0IdAX};a|8o6P)f4}lumcbRaeZwB< zN7)+7h^Bd$Q^5ffdf)uu;qPC+H~G{Bk73H;8qUB}&GpjK(?+rZZuGfs6L#8kqZ#am zmhENffMFe#oNrDxiN^8B4XS-+7_`IHfU-^BwvvEPWZiEE`i5y^Vqk^gManb3$R{BO z*wQ{r67o0v@(Cx??4Qjm0#D=kX9c8cob)TVF#P-;nW?qguiVB^jb&gpWjykS8xl)a z*uTNL8)iD3hTy||rI;|JKw|;c$P>4JszyA!4T&gEi2I2Vs0odnu#d~-xDjpj$pRV3 zg^z_*vIrONS%;Jx0t}=jt=ZBD34p;1Y0atPuP<%x%6Y?a-6=V7PtT8g0pzVG$SBEx zso%lkxse}8gY8z1)nWRKUID|JPY+#v)aRa_ z^>UOX4wXLv4mJexn+8pbL%$_pV?zR_7M1U4Og9=rb2tAMQDk(m|=gPQQqeC=37Ft%(dpJHkQu%0_y=J~{IbNoA_)tZR- z=4otWi%jr#={j|KR|E%X(%?GM2RWcX+fvKls1)V9ttD)PGzQ}8&DxV=C1ODiHB3nZ zm(PGUBjlqt=37nn)nP0_h&X-_I8aEb-tlyjgSdrnaSI)eYNSDT*kIGHtyQ;Ps&b7C zNzz!HA004gi&@Zl#m9dnh+z(#bSm6q&(H|TCA!|4i^n1+B0{RakP24FA;%m9*(k|}#OYBEvN zqtVt=cZL1QY%;5>SHT7u);xbY(?v?^B**vrJcmDya_=x@4?%=#%9n*fW?Aekw@5-} zfgJ5tiHCm}W@FjFMO1X}oGb^q`F)uo(|`+%T-*@TZ@%lECfm&O53Th1F;B`Ki+qN* z^|!J>r2ghPpll`J4c!yExs~Q9^sJMGb{P{!@d`F@(%->99vS%m03VS0*|08S@sd4J zAQz{tg-ke<(tAMZBf?PtePqZVL*DwUweJb!Py$N~&G~agey9nR8|3dh3lFo+LpnxB zNZFB(pxnkopB1GV(kn6nxe0SYB}M!6GFd?EabhCiO^2enC~z1Qra%Wcl(V&w%P!o> z!FZw(tpO@du$(r>DXBRxK%#_FLf1{Gh$t>>O?3I^jV!Y+WsCub1sJ7Qvn zQY?d(H3q+6jZ#b4%^GAF6(Kt1M}!wGN=K|R7#Cr7TBE=mWXaQ4fCGW!+d(Gl=1 z5kQzJjuDFqVL!z}_?;9eLvX9?FI;IFtuNhRwpTapWu}b-yI8))GOwp~TO-&Q8Cog* z*wRz@l2e*f3Z)w8ZSd37p8!ATBRb^65C3n>Uw;dn-3vl3{x7<|GN`S#?Uq0YAy{yC zEgFhL(4s9AsNfQyP~3}Ku;S3t;#vx{#i6(*6e&f5LyLvdA`k8kC(rl3-}!aU4+dt> zo+LwN)_v`@*0omTER6}7QIr{N7L6;2ukO1&G9Il?XHNNtAkl;_>n$pp4h}6a-)m&4 zEg_<-QWYbi=gw2H@{6?-;h`h$fAE6p$;$$|4@uwg)t~iuAt+xO*YOcm{G2!8a#0?c zt}wQq+`|4mnTiVNB%+_?uQ~m-9cJy)@vAK)`Ec=rZMX5&`IA={W-JzkORk|E4Q!#y zCC#1TNAGJw-mA*2{qzVqk>1!Ft)F?jl^I5{_x@SK&p(JEWR{JezF(mJm!C-+enMwg zFuXI36WkN3aYTt#O*#*;&fAVZH|AAzomLc2Lv+@Yzr24>dk8Ol5bs~%&@kvJ+fnfb zssdK6nEtTn-fi`|73bLgr~AXNxt1S$H%oUx-4v_OpLbf7n^lcw_LYZU@iyOV58MVT zh2T{0KY@?SCj3zUzjtuBQO?ofGYKj*;+pJ zFH){t0K&kyFQS;eRow`U>l!>}y@fVsn>C@CLFdKnvyZ-hDAO0Uo~O#K&&22w|2)FdiuXs+G}Z%K=ByRIrwKhT zFMrVXSMw)p&HXWnxU%)%$e7+!$)?g;HAHZK-|gtOie(}#mR`KeiN3cD1N=#3&cY2D5Mm@~>THN&aR?~*)(#_)lu~?!8A*&4z`21lISvHL@E3Ga%^28_CG*P=myA##`M&cz zI1suP+c^KhCX^@5bSPm@j>Odc+%HdjM_c*>p3m?0&~3(-8N$B{F$%*2J`RM>s74dd z9eG986%E*?GFLjnZ9;Q3BS%ph%39f_5>un30)+Vo!yvgtBGKR0iJy#}co*v&e5QSl zY;)=w|LJdMZq3@ruJWkZ<$QB=@M_*s+9k{;ddk(}zS`(2vLwX)GFJm1^J{CGsy>d$ zss`BGKbH7Z`pf8XIV8$X+3To^PTxd=u6pRvkIBVDY46hyS<>KV7OcuHS~&nlCS{_rezfzZZkv zYUsEpP)$2Ot+#2Jc4ppv9ahVp6dRUxMXybfQIHHG{o2k!z=W4e#aqVn_AReq;`2be zHt|BIy`9${g>kv2*)Qq@D-Mk~l{nJYdwo}5)R9@ZbS41^*KKLct>5xrwN zq=`Qo{Msm28PB$@7I$vcS(6WhT~;H{A$A7OqdUW8~Aa zEbg;e>Cy-UT{>EIzu8n0kGV&9fJI9PTZzj13eHu@+OCR7g0EE`cnM*%In}8Vvh+Q# zk)F=qmG{4Y=6seWNqc(~Q|3Ej;3@Yk8+sYJ$NYornWlg-fIo5%GHnL*#mS%XdS2 z;k-?C1vjCe_LsHT!+P284(>*9f2h|eytp5DIx!Rj^<3(vORJo8_j!fWWn@3@8-&!k z{=($%oZg1qgGbi}r(X6A9TZ6rp8@3@oqRl733&^^HD+e4#pDl;qHCn9$fFU`6e+>WBBX+T6tE-LWL0M>l#QDDh;d{Y~-E=H})) z1b-=$!prLYauDnM&63P=@Xo!}St&6>z}??wMqjEWd3}=+CEI)p>IA~F&y3cToH)13 z-mUq!I3-G$W*5lj%aUls;Y@0 zI9f9Dw$e3bxmtWj=^wTrHqt5J{$;DW=bYd%|H0W@l`#(`ED4-6_v!}?Kai%rcubLGrc zIkGJzq9Yh7h>S=S_Z6jG`i64;c!3bFWx4lkj!gh8%Z?swWXp7;0m54yGJ$jiKkOls zhS+N}&bCc~2ufVTI8(8TofIv+4LJlRUP{6WM!qg#w(PD(cfawx;ou9>3c5gZRHxG7 zzXOArO42gws3y_dSTvDw(6vLme%Fjaks3UQNLrJDJlc(pVZ@eC+E8U5ZJ!S@@*HED zdqD|SkYFDoNX_(*sC_@LiZrFg1&>Og(z9?`%vqJRr*%e0C}~3hej&w4-J?RaVS+QR z;}bQi^ZTNhdN8@P-Y|j7Z~u%;1&-}jch*K- z%D4WN0*7bLbBp8OhfNFi5ik9V(5x&0{1g^@5|BtHLc(?kV1^O9EeieT#yvcH=IU|# zprp{M(!}p3;X1D4iRgK71QYjgqBBwIXrkhRoEXiea0tT6D6jG9nnvT024?6XrwX_5 z!vUSAHgg)o1oUVvs3ba});lGcf~A}obC{5Q6pd$%nZF)fHVWD5CU=#FTq}0aNi*Y) z=HnA_G{eRjExDA@%JNG};f!`CY|Hh&8H~@Nbc^(2@n{%-mOoaH3|c639V|ftmz7D% zWV4fGhnodf0zs_Q=x(4YgBYu^g2~t4{|MNa2PKgm&&Q6}|Mt%EY!H>(;}7{NAh%U2 zOVjUTS;%TjS#0#SY~FECWEA2^d0H^kJ<1iZyYa~s~*jimeblOv-_ZS zN4vGE)T>^L6Ixsdlp)QXcq6A(!7G_N<|qJKOo(#Uq!oDxxbTdakaYpZjI|PR6X&WS2`S$Q~m3F03Bd3kdvS;a=w30{TSFhli<|~ zq*tei@G%I)&KXn|fB9VuG=@Cq{ca#BW1;q{qMO-)Bbvok|E@o_YAr^HQjb(dO4UL- z+7=;TZ16lX7gC)Ig&<>8LlSt1-!k=@^h&}^@g>uQRYRz~VHJGtU({`bE{A}b+)e2F zQH7$p+CD1FUB7mp>EBqeV7sr^?+*K|hil<91Gu?#65pM9A3mPXfn+J!lfH;3EP4dqY>GeW4kl zH@ni0`6n^Jl`u-5vpO>D`08tTfahRQ?%_@iyTt9ry`fh+K?fos?gUL+|LXUuh_kY9Elb>7RVV6dCR=;!Nqy2M$9~NY7=;1 zC38Eo8`gIw50Jf*#moN?^^}bRfz75u&&FJBpbHK$%fkMMqMC$GRwyS8Z&)Mx^ff}I z7n_M&X%`12ia~nre>+X#a&#mfa+4%v6d>tQ(^KK&iC&;y3;YT+?djkcW?5^gLM`IL zM~~G%r^gcs`wB0qWC5?U`*Ok8diW~~P|_@2boZa0jo16>DssegB#lQj)cagnj^q}p z1S5|C+%(K{DFinzme$E=l8>P!eod6eHOEo6t|W<$1T+MRbxTuz?6h1O;4ucN>k&=Q zpsLyxSK&NOYD67!P{7km1d8r%2x$Fv>rcsvI!MMR>jdy9Fc%dVMTLJu*8T)(avQc_ zcB_zlhAvn~s?*qNCj75$@SJ@w2?QC5)n`@D_UE$Omul#$+CZcF+DZT0UD^Sxka_pMz{RAPI-O0+xo zN|QkLU*4Bhd<`8*>n>jA&nO`-_r(@R@nytV8b17it64XXgN*}fGEhcQTtGUFJ}05l zeN_?UNHmonG)vT&r91-;%oz3grEMaA#{!nE$-8}gj#7R}JN^A|BT6)}^w(VVlF@2z z9VE=HX&e+#eAd`g2nkGazhPtObO|*FR$~Z>dp2f#Ld*7-0#;g-((?}vE`@)w8$;ly z3bBK2YS19Pp%;H?tacdq<{>UqhtkOrMjp);<{UyvDl$x*$tpFUo0L>Hq<&v$Y{&>t zc1UaIDAN3@)%A%XuqS#W?aMxLR)iIMZo4U1xWya@OPH@F6~T ztX0m&%~A@UqoEgFjs6*uhSJ6mcQ7#hQG$v223obTf?EU>HPw+A$5^0=5vLhYBpz&D z&i8;A$pv&5!iYUeEDsm!xXC5AquCBVS3!5b?Te};=fz|r7RBRgB0qI)WvcK??W5W1%CHRfl zx#^KWC^uRL5kb+{8RKn#Y}59~Km4{u5aW~UGvdFGntZIb2|rqRW5Vf=bTWDq z2Xiz9=_$JYh=?=Oc9CHB|B_Vkq)NG>r%q6@s`t0yWL{5fnprUf`6Cci72OMtA#rB% zMfR$7+Yee6&BL4lUv2yyWu&f@h6Hm)A~I2Jhmz(3``L0KW8K7PP~?HHyut4cU)qPd z%xQ8MiiX#fYlKZQc%)%vbxPkIr7#rt6mdf!QSOmr(^3O#DSoiEsQ zEuq7Py<-TXI6HnoWSac2MMeL^pBHI8CkP2>yIEVm{Jos~en^fiR2w3Y?_*cu)HQjcgJzA{Gmg zB5A8Oa8S!eZh@zb1R^F#VqVufc`|znc`gDyM0kk*&<#?5v?;dXq|kmJ@hA18 zvAsE2eukeAobS*f#$|skzdq@DHq>-5bPUkzES#OcT$1T7HbU)P8^hsr1veY|CY2<* zE}tT-w;Vl))Y0vk^MJzLoe10Ak1^~~S)pbv;!_kA?_0i|R-+Zb#I`X8!<6CpCc6I| z{B-ufr`i8$=AlKU7i|A|>vP!LZ~VD&(A0aRIf5&tva>q*sGQ5*_NGEEr%04hBgCgE3I`?|hdRL2d`8 z$;CdO(=1z`uUcO{!L%pf*_80N^X$XaA_AlF^|?_p%r0!QxBjr?@_0%I?if4y&=@HP z?w`o8bY=#vr$u$axFf-&X0MVYX~2^e)4aG{tTJ*7BD~X$zH)|+?H-|C8O<^1wK6fI zySFmeky`C6m1@YwzaEkmN2m{DkIAA<2?73_*qEFy;J5Rcii5p{wD+nuMUDiOZk{te z0iTUjxO-k~(q1#0xz;y_F_x?~R}?RP3k$6X#8&ncsmuzmA;p56bT2ijE!@H@R;pYn z$d$S+x+Ezq9@sUuKH3RuoUWR)ENi;md5fyLguh>VsgY&eNCsVd9~rI|S7c1!LOS%r z>sL}B*0~T;jTRdL37zu;6qOno#49c4e*R8S2*j2iU56UgXEXdN0iEvs5}r&r{w|Ra zh|L!{{C#or4dU$HPUTAV`(PVyoK--Ugc6^&KM{(?WF<7gwjuNIwNeE&qv-sbx>$6z z-&i>xve_QNbc8bfyg&1o!`^)3fWGtDNGK&}ByavFXT!s)H}s33z`y=jYdX$WE9cX| z&8ek9V2OeC`e@j=8-lDo`fH4W3c|u&W-#9_W9ueAxMpaFui3tF-eb+almp>X2-r0# zSwk5mh&yDaNVg~XMym-8=t$UG&2v{3?-!K%;~Hs&Cq>N9!md(WXbM z;_c%{o&Z61*)4Mxq+mcwJ7j+C{d$WVW0P<;36Cb1uV5VUi{}C4cq~;yGo{>koY0Z* zF?WU#vb&fFl3HOFJt3A?R1fz)hako#u02)=bnuUQyu@p1mb|7UTm@hA04jST(7<0J z45u-Ae-8v?v)&`EhQ@YORupYJ@wZ1*Dp~PPh;`CF2IK@ z&1MLq2O);obs^mB#VO>^he~^{4TAtin<7+m^rQf6CurGgw^+s9FSMR?RS{g#Ix%wb zMkuG~J39O@yM?tEB&1OdM3y`$%98)vO4?viYvXpNzm&6e^*a}2aPd;M9Q!h zsdGbvD9>5!W#krpe!_oa3yGc|im>g1AzSLj%()~Kn>CcsXV|INQ`#P>gj^y@Q|1N~+ zw)1?+f$U%S9_`HV-QL{1=b;!Df_L}tOpgO`4_|UTEPvs@^v!?gdgFhu*z6u%ui(P; zO2#)xE=-A_`zNW95pINlOewI53k}@1U5o+X0^JW|1T0JHo&@rHTfe`kLVl4s;T+wP zUhRZ1w5PH^2{nW6cfANx-sx~{x4w?p8R|+F8@1d&+FhOZxb5%8`iE_0p3m>yh@Zcm z5Zs_k;N84v-tXgLx(?HpyWOJSj;L7QiBJgeY-u=;;razI9w%?ff0A;S@SWothD%^tmM(prq-|=#q<1o;&2BHV_-&G0CRoK#Wi)doTgcCtXrFxsqY}y_`nZ>$! z;?(e{sHE;Rw4uT_jWZvuE65mnI#A^85Q(_n6SktC%bw=8v8<)@k>e-SBb0WE!z|tz z&TIif(en=_kRJlEir`NMMS09r1Ynw{ST%qu<;d-?EIiTXwA5m+&wOatq#OX@6K+>N zZr>yp z>t7wOne}M?FddhmU6@YG^#~|L?fCq@U}sPM-hO>;d;pG`;c}cBj%tV?VIQGny z%BEX_Fk$L4)@*quW$-@k1M@u^Au#9G<>tufwb&M==tv2~X2b^~MtUK^4TZE>4!f=J z{Y86o=D+n1i|cUFsGK$Jf!N{CBOV?EQ}*$j%SVsxUPdXn$cQt<;3?!pRz0n2hkL%H zAS!5Nj$>HU7}R+r5_>e^HS<{9)>c${4PmD_(=WO0^wcdbal$9>7Z@V{n2A^u2lze< z+R!PZrY~?+?6(hGtmQ0scA2Wi0h+B6iYaB{Cqm-_fyHIt51x_vM=2#au-V1f=vPIQ zm@6&^>@w<|C@s^$QZ8oQHfeX|C0@M8FE%cxbNMDpX1R_OdmZmkQo=c5qNi=WbBKaO znU#FT4i(%k>-ue4mz=#4>r1d{i-#6fsG`ASn&(eN-UJnxTHPO<`XxJLyW3pRx*XJ< zrBQ;AX&gSxa)0dBv9~wJJFiy>Zn(coBt_cR0MK+C)8Y`1pXFB*6Bj32Fev(3NduOw zZ@{Mm(7oR!hzAe-XgCS_PVh%*OtNP|&YOb%v;74Hac7P3aq7y?5jMOqX)cFQYdrkD zKi@q5v5z0H{`BUUPpP1?A(ZOefywVDc6^vyli}F+F2Ivh8@8ankDJ-Y7Y?xS$a0c_ zD2b>zn5lfVzDTYbaw2RVmT(n^S7P7S_lA&|@|NTo+bB^+q3A<1Jpl`>bcG{NkJqf{ zLgOFw8##S$+Dq1Q)8__goNv##t-O znoRQ$o*b(dc#{&D6LUs`wt1p=?l=Fz(;1(iKuQ)wJx7BK8%Sd)hK%j0G2%;;eKki8 z6J9EIl8ZZYRPM{-H?3UUDoYNw&&Gk>TT#cclvCD-Agxcd2AnFu1@F&8f$_N&09l&W zuzSTnf0_ewMXp1tj8rJEcY=tnaOr6#J+6szDL7zHk=x|pGy~|HN56{T(AENT-?XzU z`DU&1Jz@CxMm;{1gN65;w1=TXJh}>7g>8snX0Xuz6cp>s`YF-?^eJQGP6sN;|IF%6 zq@u;D{{i8&fdI*;-^JU^f+a@XUtGMhvEnTmeQt!y_0dw!M_W>F-Xni->EJ68&R6c{|D58aHU=~(|&^;XioDdR^op~i2e&ShFZj*zr_lvlX5=0 zo+P5az2&#N-3dPvVN(n{&Qsl~kQ56ZIj{$Q3!9mmpWFRv?c{#_@m~xVb6@3O)VF@G z+2sL!;kFD{e2#}Lp-}!!ad)O{+h`%qKx%bi<&e`9;CD1Ri+?-ay1e3fo?Wx`A2!}6 z3nNd2x1Wvy;KBdH-LR|){d)y=7I@oych26uUl@o7u)c#6;foqUzbJ4NUCDy8eg*^Z zmt@8^Uh#P^KU+JS9DXUay4ZYmK%cGOwrIWP7V@*h(dv^(nuq-Cb)bG{=OrNb7jxK= zOxXJ))gK%D`V3$3g=W81DUG>$;BtPu75q?4mn0W&XB4_C{8aFO%^?qu(A{n6bYW=n zIe5?#IRj}NFC(1m87&n)x-{DPGZgWR=3<9cfdkZSX)_PG;MC+qopKZ`LYssLsVC`* z_*9^}C5;kK5>9;80pRdIk>?IsU?XaA?T+omB0Sl%|fQ+g{kL827 zw4zREhXA;Rm1u%QO163c=}M)F0uz!~Phr>ENTq zl#}yyA2g)t1+&e4NS>t-%6J{gTNcgFEt@*45YMM#`}TYdRL!=5VNS-%<3|Qd6d~NO z4m|LH@1sE39CgH45zH7EpegPGXK=i21c9pJjhcm|ZWp)lRAZ?9HN}M5w;IGLEMD3* zz?oJ>fpy3OQo@ePHDo#vq}Yho%Sa&_XOc0M8~M(ZRV`GVGJPmxDkMC&$55855Qw0s z!DHrAV5l4=z%&K#dl;GDCT%~h|D1!RxqdYLPs`9v|6lq;)G2Quw*6FDYS@WwuE=1{ zt$M9F(eF_Mnv%3#6Opjfn<7)-Cvf&}YHRMyeQaeLIaErNnnXpjv5P?|! zTD1N|w8mf4exCgwfppKYEu#dPDP2;+`Rj!ZZ%>j}ww-cMAZ16WzvkOTqT=GTuE$FA zFLIn&k7L~YWbT-3y5(tEBx)jIIYcpQJiaqppmR>JctFl6tI}N#tJA^%R$vCI(XX;{@6vyr z>K?`Ppo;HPjlRhI4~ZOw>c_$*r4LAtnLrfhMd62VPbJ9^Pjhc2$#>|d=P0LT?*$ne zPS{VQkMU*RRWS!`J!XC?heaaCzhbTCYrQUg;HMN(jy?jW+aC0`q%Mn=0gt! zBO|q~#F328WWS=K(1F~1HV*m(#0 z@n#apVt~umDCPJDddv8o?7lWJ<2f8!i9QqVayf9}MC`kuUk5nypFauuo zgj#rc70Z#{USdU858Q@Rfg=c01)eJp8U(#?xGQR~rdV@<(x%A=~3R z(?O$D1u4k=zEWiO#_(QwHsb zN}uxz3ii>H6kShZ-x%|LR(1ehXD&O8>6}m3kl|#2ckj0l!I@C_D=`?&qqq62V+N1! zcJ2IBngbG?$ZR!@VO1+WeyGbJGwZ9u53JB@2TiF9K+~C2DKq%oK2|3+?OAx(ccUyL zYrQZoOg5hC{!d7^sf|LTVlB#JHme|Pj{OH!x9P5!-HS}{Om7Y6ln#QRhyyX9(3%ch zvb}<6a2d_MhLAm>iPlJw+eK)D1IJEEM7c6xV&DdOS^?PeC=SK=P|MUjX&M7bC?6o) z{eVw^hG8T^RptJte&nACEHFWbg8_XU&0(O+(JBcn0ijN0)xicP$uv~k)}O__}CPDePt7{DUJS|DpG)%re-}l z20i=2p!{B4S6v8m#o!O7nLtlkjK4X7P0o!J=yJy~HZc(4@-us-5_!<$q&f42c#Ln% zg}F(N5;O_l$LWlLALT4!&@@~*ZbFqdFHdtdp`J}u9}Yx#{cT=`S2R>RlfJvTf7o-t z`?BUcf%%FZZblCzymppA)L{r_>12h(ugvCGemvYkdR=^-MyW{ReIa%?ozcNMhPy~g zx>*Ji_83s-IYgYm`JE!g`S6j>#1`^3fe3aJIgEaN!cOl5i;Uy-rxE$j-=CBl4GMkZ zdqCz%-@}&}hz$zQ(mWsP$|53%cSyETjM5xaQHyx4`(vw_j&rV9p`WrHna}dU07#My zxr-Dh+;sD>$juLGTw|Z@D!4eC)7CMh;_*l{IC)X2WPsUW{xF8e*DZcwk0iaaBRwt5 zrgc6}1u>{m&WN74&%|4iMU>(<$OIC3v`x;CY^2g4qsC(Gx?W~R2m zC_)7^PmNScu6n;Yl2+k(ge%=zseR$HXqmt{K=eFmfnEux=Wc5@?upQM>*VF>ig*) zpa09<k=O8mq1CnJ6`gjZ32+ zhs-UR1DHkBthhMQUzyG?Kt2;GSnCwIe^hI6|AXMEm|u{91-?pEd~KmVmPYWSR2C^4 z!=CsUE+{0;2EUb~m7^0>mfrIV#UKSDBFKMN8+q;qxbA;23C-I;lN2Wq@kc*Fq)|O2 zh(Qi>NIws#SyZ{7=p+*X{0W(OjG)8L37*eNYUiMOD^@VlTvM4Gt*XD=zLWAf_005= z)*^m=c7K#@`#`G!CCcdvY+kU<9cY<;J-18fe(`i7{mirZj{Wpc?z8mnVy^?%ADhc> ztU_{6UWbn~U5FkPD%o_Jg>CxO6@nOoX`w`C)R7^U1`DCF9LgB6{zW42Vc(gL^Zwo- zMFAqI80Y0Ytlv7x>9a-pq?D{Mt{#*V;jt?R`Tk%2(R8*|*k#2Yw;ZLf(6^&EX{lI}$=V-x@0YfIUm-QvY_`JjEz~>G3yU#)utfg!4 z0o_UeBKG9qyTKPfYHlu@{Rcw#j|sZ&GMDduxN>(~o*hh@aqO*zyyZDr9FU37N@e#B z3hMcfQtES*8b0W4xjWefc0U13pARnmb0)4(WT=2`Z)7znR&EX$CqI|L{bWQ&j&Q5B zPHhq2GuiKBIiwM15PR81x`D#t_1{wXgA0cU6$BY7y!%uewFmu*g2lBUee_^r^DqB9%AM(^NUP zh?D5gQBJtRU9f}}3fczpm^xj@ocIwE*g!U8dV;6v61-3r0vnmB1gfah<2%kmm6A~+ zW|QP%>hz`xuedEWSp5(I5%<4LxP$-t`0Z@+Y4^N1iyx=T7|1LY1jZbH z9bF!h0~wG7JJOL>#=&D1N^WqnxcD*M>dob?!~oU?N02TJxPh4TN}#uS-=ffkEr4aj zQ->-`IFHREdT?Uv;xVZyqb=K_5^?$5w9P=PCEsa>VcZ;8b6d|J_D zqZaV%zUbPz#&JC~`e=9P2!&&pP5-upjE%$jdhCrbaKVc1-IZA*mq)T~` z=Y5$@ev`6tcTt{Team}#g|Z(e(2sJ6vewp0EtdicCVAkTK^uL4!N`>L96*;6&ifJe zGK5(yzo)o7c5vd}_AA@$O4gFnb!W$)bTomSLw95~&F_ zC?0bT4~f2Wn14HHboSb*10yC+R%TiXbq79726sySRE?O~RzC91MCYRTjqhBT@>^R*;grF!NX=QUD|Xk^l^SAmRlf%wckn%c?5Hl&{^bNUS~ zRMw2e~exaq~&@1Q@1LD zebHGyr0&Fm#Z;+7M2?;B`snM2Y;bw#Bg1>(fQ1GcQG*thwi%pbFz6PmNRl4&N#!gZeV=)K{2-hklLc7ojiAsj@N z8}+o`@h7Cx?tS_`YA1$c*F!7mDO~rU@4@WjfHB#qEuURjjfr+qNr_%B> z>JO5hlaXn1YMyZnH{Jz0;0sb6g>zRm?`yW{^BTvzJHft&?vGvWWVj% z!ijyWNlT#$3;a(0VzR3`h%&AnmoDlbe$`&+#B42v3y-VpW;xU7Pzs}lzUT}+p_l7E z>+Hs2?v63y{bO4vRu{K_f;t_fa}8Fo-o>p&$ut%f7v(u_?)u) zWPZ8x42Sy)CpT8zjJF#HB{fs0i}~$W&Yj7xytg_%y8LUD5SL$%bi&w`ACX@w4VO12 zemXH|KI!xbdr%dzd_j*BKQ)yv0Ew^a2mpFMaXXf(o*46+uG_s&8Typb-rfV`48Zgz zuf%eH*9bl<%-`Ff2!l$;(3|BII%UE_Ji@?j1EX#qJGRj(P)vuXS*rqi(TSe+e>|Z8M)f^Ga zLi)KZBDyy>^3Fsg&6E&WjwE?A?b^rE-rN(I&v&OUGlf-92ig^3&N!$;!NX{%Tlh2& zLUc;_HPRd3n==4V=yW=3wS9y_gPY1Z5Yjjl2b*wL4j`9GvFax3CDtW1nU=|jfYJfl zdByXW+%y5+tb61YD6A+w{H-JC8O-B8d7c)`K^~&3*<%XdljK8g!S^>nqBSS-9-5x7 zs!+d21o$G^H5vBGMhUi@_-s5tEZ@G#Q?PIr%2QNwAik2!%%ECatHx4^=fTb;&ohPwkx;Mivd| z+ltCo&|J1L@i{{~a*38&vSRID5`O(eJIYkNT&vrh~X6J_Dm?;-m92PBF#MF`)iaXhQFT54fPwq zGd5@QC=;iEL*2_hJ+G$7h2vCO8oKBE`Xe7!1F@IA2x^>lbI)UhU|HuuVed0fiwwl> zAEZs&z19TH?}JSVL$E=?YLNdCDyUGmzVpPx=v$$hu9jBAi|W9Q;S1J3nZ`KxjuyvQ z4>`^BvB!u0Zg9kCJrh1|MwaqdDf-10k8(^OzFItVGu*)%E)wCI$@JDrzkz+Lrl0u= z@z(Wx@U9db=noV%yJudWS|cjJz$fsoxf-q+T@h<9NrLmRJTC4cx@_-$bY~VI4S{#e z44`ty+4ei)VFwP(RpGNA#tJ&^$R)>WMv$48&7~lGDG@eK8){o43)Pj}bJ@Ch#)B>D zZ}KlQiP$jQ>c6BGhNYNqR;IiHUC%vtTV%zrkLJ9TB=guAm9pMTGOKOU@I0nm} zBAe%eS;CISB?%a5h@Mn~$^fssI1go?^60f1-B87wN0B!ht`tAB!jG!h6!j5YCS zey>pJ<{oZl%XQQY7^ANLF}VY7NG@57Md0rkp|Vw=sob@~a3`h>U;L`FH2R2>VNEv!e@L#(|0@QtT!;S) zZD7-N!50~c^=O`386SlRjL>n`OhM*9 z;bKn+krCbJC%W$iu8mF9HldR}%hhlGBpFo0MmUQXxTsJcqn#6-j`z)D@P-b~oGfnm z{xv9ePXc1n)MxjWS#O=x^l2c^G=s)+Ft09B5q^3 z`^v2O!2XDj^Lr3;dHUvhTXIbfhB>mbdGGj{@}Ik%M_4&3Qg^?x^CHw0g-OuWo4Butt1pU&6ZIejZZo zhdQACaX{T!fPhumMOxc#i=zQcRA2hYFR4-X6SaxX^1TP9FQbiw*Zt< zx1tn*=F(D&RJSwAlH2wQe#u4JOz4dhSgLqn067=O3$ZBJ!8u8kOk^SG%V#Z7(s+PO z%pWxx8c72^f>X8Q4s$}lB$%*T3qr`JXo=y2wcsbEx!G}@|JZ(uLaPYXzfU|+qUc~y zq_`dVUEfPuQ|)rvJW7yANkx*Li~8Gmdp*bi-8fM$0J076c!o3Rxyg9mMC3E>Uvlyo z&AAekyxGU94u4JALxtKg=tWjPvgrC16%GlF=R>ZxnGwWnfuoblw(Ilf;hqwS_r|gU zLIW5_JdYgXscq`_lRRio$KjrH^FVs%SP5d?HRo6y4-Yq0s7|TGw;adE(cbJ82ktrd zaAfh*ZmDgVL_S$P{Hqq0r`7YJYyoYZBni*`5!LHQDBSsgV|N-b1URd9qThq3=ss2z z7|t!wT&tPvLElbVo7k^nWA!et+5GC6X9M!P&>^Ze3Qq%vzJxJ1ImBvnj5xP@hSd>D zLl>VS9Y{|@W6_EVdEuDy)J)mEL62pA$|ec6fgYi8|8U`!+ZX!xNqSAmJ$R++1U<(X z5&fYW+xcTA`JUn{cG)JI5#3&rdg)IM|{9SWwf? z2=$9Ja9poWocY?8O}6G#1+li;HTm;p1V+I*G0)-eD2rV3)ptoDaZSDO=8L6cnPew~ zP)}t`dQ3IWLBz2ch_f&%&IqUnnLlgisil4NjY<0btg;z?esBG&wt_1a=jest(Wj4E zrAWI>CzO#dG1!#{gl7fG*cEd8%Jdbgs)%|8{d}sLOc_%wpOs%HnK*@OfHZM?$Z>{=cqJVK!qqYz`O!bRC)y_lPs1~jR%Z_gJO7J6uN+(1BW5&*PD_(RATt4~xP{rXwe7bem1kbiwOPlCpWt`<%o0eseLpFtQjtUMDIC z$S&h#MDlAX2%b@nXokZ>0mVv|vhfE^_@#Z?L^wJfDae6_*0b~wyI%sDf{_?^@ha|p zUUa7R1m8Pz*E<~lP@{thPj)^Iok+CqtMW+G%!Ch_wu-*o*)GLcTRR+vrMJ#8eZmhV z`@F~Au@pE7{WG{p+&;qpFVt!H2Jw*H5-8{K{`)JXVL+?4f^Nwqmw+f{)KR zQKDy8qi1NiX1?zBB_ub#8x^M4`DTNhS;V;V}Yt9;r z3OfI2u}NVwL1T}xr@XUXXCcOJodx@EC&lLXm#qY}ZtCX`b=J{QL?4|VW+>ie*(a@B zUgqrhC7#{3PJ*HUII}z))7sLaqV8wZS5m?)Dkdf;FaKeA?`a0_^XH2G7r0cf>gwu^ zvn$fq-xgOkHsbzz>wv}Pf8WG`Z^8;+Q?Psc`W`O?kKTYW^PXwN_VGjcFY(xO^wUvvauOpyG*>*XKqF(e%-R{ES`67m&)-untOIc^LW-gsD+Lv z;WI+NfQO%c1Qg``IZrZ}UKjK2{C?o2s3_mJta$TBH*?5BEZjSx=6Lw>$qBMEX2>IGJwyRPHc_Fm&hxL;Yb{6SPD;sRQU!hVLIpkk#feWMSqpDt>{(FLN z#_H(LY2D*TOtBOb!t0uWbiD@;qL+U3J!Aje(xe8_7;$ocf2JLG!xnGHiPW6v@z)W^ zQlN~e*veuJ@sI|hF1ioD>y%uWK4_tR50WT1Oh4xIpqy7Y1KG#26l#8azx{6j>!W}( zk`~GkyNmEz&(87V|*o$mAqnOo|BJ}+;VUmGwVVxG^Uo*<2gpU#&Y@L|C z)%ylrSf$$=)(tCC{675R+m>fs3BkOo8T{gjyFJQX!m8=FYI9$Gr3qci*5kzInZouH6tPSEw2N?8xS zN}+)-zIjr=y-SCf*MG{^3}hBOf4*7oQ~5}X62CmY6zutyscXg^+V$qh*tFl{Mg~^+ zErc;(y%=V_adS6nx8esl(!l0x_3Xe!l_iJWV=nIRpT4(|Hg3n78{a7h@6mA&zFOZ5 zUC)c_u>K;rWwl-Q-9bi!%%iPJ0As=(C^?ftXeVxhi5duFxSEDxLl3NKn`U9x2-IAR z8$(#r0KvA29Rl`i5$UJ(*1qz!MIEnUhonxOj`UT}?w5||R@@TYzgd*8^qy661LEZw83W_x4c|1^bQP|(ly8uUQ0y`Vacg-X28r(bcNXVkRu8_XCYQ;0|4HU5 zm-;_+ePvWs0o&~a4FV$Fiqa|FAky8PN=SFd3@Jz$l!TPT&>d0(2uO#d)X+$G$34F9 z_pNn*-1}pGoU_)Mb>_!8d-k*Uvv=69&je5D?ET*;FY2$H_aJ0Tn9I20ajxJ z>!?fekfyxfx?+tL!ux%fr{x869-aZN{&S=I%Bq(Lr`5VZ*Sz(aQYrz5v;ldRbp9^S zjrWX|W>c{R@tSMQWPFpk1wd$tT)dUqCjycyso;&+XWTL8^xbwm^!6N_ESqa@AMco_ z;k-^Q;8xC?&eq!s)y4|Tc9Z0ZR#dap`I|-(?Ec_(4 zIr41xtx9D*d3qg&Gm&Ls^}O1h$WHpqUvjcI9;)=lzvNVLSd@>(`+jk`STGnm3rtnj zfW5_f9Lp`4puZ@vNW5RZTIWN<5v9#(P=eeB3{?GLwlbEPFruB?&)XK(;rKbE#e<^< zoqyh=YEu*n&y^#=^Cr)8rxZ+;&enj>V;aHXrz?bY6r6UXJELb}22sj1#h=4wV$iw0 zi>zSj`BvnE5rp|$auj6wMMzX+6)cooDla4CHlKRmH?)7#m3LJ7{fCTOnJ`>>o+5+g z0(@$_SB{QVny>$Sv+7rWOxFrSWOk}z60V^mscDG#XkWZDrJoN@YrG;V_>qwQi2ft1 zmZ->c$G~q+7i_e4Yx~=0CAYV}OEqr~s$dCgURMiidBG#@l8&oo?p&LvzLf zLs>iXjlp5&w=3u(d-&__UrqMUL*5AL-z{(uhNK7A)e zk5|S&U17di@o-(yK`lUFS>ZST7_Q)>4|Zi$ zQ!5#(b<<|6w^t_<_WVGlcW^?WL;?>+*;({X``!86?WFk~N#2-U+b+R9ihwyuDexd* zDS&|QID#t>zH~dZ^j(MbKPhCTb^pT3T8{hKR2ZLp^V^{K7JU6KmIqCmJA`xS_;`Tp z1c*V~N}g-(XDul`*0c$@k-k5Yyg!iq8+8N++D0~)mW1dg4m)#{;B~0wRmIM3dtsj4akLTUzV%Do#U>BiCGC@&cQxM^SOlpi z%x>3}J#H3;nwlaD$Ls=GH*WOiQfHs+3tZe}aJjr8mc324eHgk~>@i;75Po>>@F|5O z&yZxYbp|+*EQjQhR4gMt{MqI8CrY2Z-~~=$yP}8$+UfkZU<1^@1Xz8CK|RgbMNcS~ zF+*(o@V7X^@~sC@Y>j^jGv`2gZZ&VlEyHo9G;*HIExirrRN%-yPD1`LFrFYuh}!zB zKj;U9w@hmo4Y9%MDzK7Ips|AJp`_Xt){hcXk9J+d%O^EC(X1=Go=ST?iXgu=35h{W z-U`_5(!Z)8(^Sggo-vC>q}&}yvxcv`$E6!=8F?~b_QZUWXVKwF^lE0ok7IKvO;)mK zE|dOnH{wMnmtpa^4TNGo)Hq z5%#)i(}J}2F6_({t`MJY1!PbDKy7pq&p7m{zq8Y;O^@&S_KLzzFq8b={_CCkHaw{U zQ%**>Twj@^q>t73A}GmLyXv6Ke9U0b3G?2+EPV*ZVUAszGnxFuB5z$J zAOOdSc(t$d*e15(WU$oC$>kV_c&I#YHffG`z@|~k(e-A|Xuoi0ttutIyhi+&y=6D3 zar&d1ZDREt_es@QjMDI>Kg!dLV4lK|2jf}^mH9&l$49P>)_`LY%J!mO06nS2^0Sc0 zm()F_ctyue3@ISA8cw1$=ihLKjPVn9wKgMQKS#cCVJlsO#IL^I&oe*?#jn>V@4#`J zt{OiP{O$fqqP7jcsWO1vROQp%_@kcZr^IQ0z=)CKRVdXV#tbecd68!=4}FE+HQ~;p zL@r1&cPI9@`RUzEwO>ES*JosU$R-MR{oMq48m4+dhDfPd^S4>tJ(?BF@jrswIiin- z$Pp@WHlvi^cLnjrCdO#<7pYlR7alS2cXcJU{&=cXYVa`iNORXtUW-I5+FHWLzQam_ z?dg}9{)|lsBO-G|8i;caj5}%BpPmMdJc2Khrha8=h!J)nJ{_oQz`AZ4>CxiJ_zJZy zZ;1JDn?fsBD_I>!%Z!Jt}QH6{=8@@B- z=*SB`T2;-(pMtalM+JIec`~G{472F={4XMr>-{Lxs+3`;Tz}0+j;D$rEcED{s=eyF zmD2Xu;V5)g>uzruxBR5a)||$vT4MK@ zA%4|ewBfm;zJt8kCs34;ZjGMq1X~PqRjQOlb60ST0AxK!`W<|~R8p9oxpyP2=el?i ztyj(z)IUQ7p5D^-mcf9JZ`YoXM&QH}<o6HS-6BFrd>60)N*kA90NklN>I7j{$=l- z;xx}7`^>NO2ey>3eHeiGYJu8rdw+I}pJx^5aijM$M(Nmz)A&q-hm5c34<@#eI5H}A z;rJd~^ieVVgM9YI78aT!QE4nXRm}D6R*GhYDpH#tMwNMzSYx|E3U51DJ%tm}8DAk| zwRF_*LhNz+H#B(Zv0LEWu-8{g`-E7oQ_D8kFBi zQsW)5+YX7RAC+UMa!=|p=ieh^G-LITo@NZJLEr9Hj!avFTPFjO6SnXEv~s&GmCToO zo_9H4+||Z4^tYy-+yqg%q+IZBn%`VcZ)EMf?Piw}aX7{>buC?swU}L@y zG-Jmn6tqnovUvnk!g`p*Jq&4w4q@NQ6AX;_$XVUqsMEpCJy9Wnvf1qu9S1a6+`i(W zw)Loz^h2)l&WGDHsgQ(;?Bp>0`1R2`Z5WVfeK-+mBI$LwN(Fghb2TDCP)B$_h6^E} zRYge#Vi{>S^0lnn%=0L*{KF_tGqEND@vF5jy9WnPdU;Z~%)fOx03cZbL{|Sx#|C)& zaHeQfU9#X(;1ifUT~H!G>49_>I*j-e^L3ZHK^sL6ok~(Gqg_9)w_zdK?jw)OKvbpUSX4Qnp}RT>$&O2 zL2J1{=;L}2RvLMpV!pYm?&v`gfx%%fw=M`Ei^Y_ezZ0#IMPoC*1eZQ1n9CQU#NLI0 zsRY+Ge(iMGm7?o;moHa?(@%_@R^^X;CHjok=A?`1u=_5td}wW*9)+zcHr*a z{_9LXK&nhIbHwm8Pm-xCBI*b^gn?$9uxb+|_1MRZ$+=BMLo#T^ z+cQU^;sQMau`it#imNHNTp*q}2f|~mor#XR&4}7&lrg8+%|RY1aLPN6#77-Rco~59 z*upf6GIUN0@^WA>is#&vxuaWwimVv&GP`!~5mTCIjnd&-l$l()i5>WI$JRk+NXfY@ z%PH3EOjvL$BEttGpJZQ1Zh9a%fWJH?TM(z3qlP$MTZiGbCB0VTDp~^ts@i67tGPn6A!ZS6Zrs`-X1nMEiT{^6AFHddpN*;|8HiDZb;rU5NY_!x#sG#^vjR~1! zERocxJ~~|;`uW`46z%OB{QJ5edQ#lx1db5dvfR``G`u+nyC(LM_xz*V!skJs1Olg5YOQuAXY0<{zW?}6X0{tPQ z%;Dtu6qoBpEEoV}v%NS&Hhui+aSF5NISfIqo7 zr-9UKJRlw7QGcD>8u@f|l+xf_;B9bv(15eJ6qRg1YGs2nx7-+Q0WP6uqEbYqjTwR1 zQPSwkhrfYhL+24nzxdodP!+t28#fBJX@fb)VZNSh=FPWlby_;F7`)ooTcSW@t8WPI ztu_7@RJ`9;dn53{uK=;?%P5t-tLz>C*E+Su&KaBNglRauDq|*>@nNKAVMdE0rFY^O zosb!-{OG#BR2|zBpC>aTsu9~8pT{6{xY{Mt-2sm6Rd{sRwo>$W!(z$OIQ~stj8u@4 zpWP^Q=&X39Xnn&Kr8zg$F`8HZ#zkJLEw6qT>W@uCqmC+am|cpngD}F3bc@3;8c15J z0;`R(@V}ooeCwr+*O-J1va8Vi(0Y{; zqt&I1^(2aw7`>-UVedc)T-ZHI#s)tvmeolOdwugI)F6ilJ^B@yQqfl;dW{GzToo*B z_`}3Rj=Qi)NMt#g#pi5yi~^QejvpFwJ7PEpk*PHvX~W`hFHKroN~vOvCJpv5ktk)f zNKeJky#$RWRbqUqI;`SCg+CRKoh7BmgCA)xcB=&xRmO6bVv{!>`F%bw0bX@)FsC(| zDEq@t{e$WkdwZkl{<$CpxxFjsf8F>2XiM;N({?0t9Z{II_Gi+e<#K@R;Kr#%*O`Bl zDh?xG>s@f04pGSlK>i?-LHmX6q_+dx!Al1Rt9l>{guz=MpA>)7_>lyi<&cmk&X?(J zVxdb5DL6|h3CleVf(}2i-qN|?=%k7#yBrMM%{vmcXm@h|G*SkTFPiBay&@3+p*)y( zZAWn~s0<*j^JH9^YY5&iPwN*xG^9G5C8?fPZ~*>Kuk)L-^*F&rq;T)i5f1=m|5z-a zs^4a&&%bsmo}R-gW0zJgHZ$_b4DkTcd}6MaLr7Q$j8FAl!`ytMTUc=Wh-+gueaR$i zp?X%qg0qLGr>8R3fne~eAP|!f+xw=zzTWp{uR&dh)WykZ%#N?odylef`QwqVO3iGB zJ~3^B-_Z2jqdlGV{)CdCKym39^kV1m;p%`C2I+Wp|iCtOhpXWF?v0Cde&zd!nqNPb3 zgJFKP;^JCa{?4pTDuhplY};eiZ27c7p;xdmpN3FYq(yGtKO)=P z-V!tRX6yEkq9|%JILgy^!T3hxdl*~lxPX>A8EThMls4M{6Yn_`e%L7{!~+d|6@f0b zoSQQP7RTCJq2Q#9kyT(ZA;M)&oqc#2kR63)BKBmfLW_)0{oSrF3=!@0YlvvqA{J3T zaAu3h0FtvQ=IJ|WMn)Y-xSh?O6yc&L^4?hEsQ@g!*{G)pq@%R4%oY7`&h(6_M*q4ZT1>n-_a*c zrPv}lwi>c)OEi@%+KMr^3Lc-jR6o3Pd61ErmVx!NIlbDn14HV? z=!^Jk(?*>+rI6mg)4_2j1$DW47lh_ds=$=8CF?VDDNEf#pS^e;EIj&-Cms82ri-mI zjSLoVg^anvTD?y@F&g%y%lED3w?naM>WYyPW#8Vo81D;09}-Vs*>Hc^v3+Ah7j51+ z>z27u@;tjo?9H?o4rhDRr`xelV&V3RV-$uzGzW*PNy;g6HLakfSj^L3zwai7y+Cpq zbJ{d24UcB_xEtEIpU@i!EV8brGI~4XWjtr;1w?%%dZh5{tq$qEIJhi9^bk?~2lU$U zlXW?Vs-C3dt^Bh%Eoyaih|YTs=Ne{iE0^SILo6Pn5ozf%k}x6bt}ghUkhM78Xuk}s z>En#_QWre?z19GI9W$z*Pr3nmUY<;WN5XaA?|zP3O+e%4>q*@)HhxQIeG~h5Af22c z$8WcT`;jWaJqz*Bw>K4*-0-|f_1UG*XU1WPtsE}#)CIdv?4b76I?%cpmJz{d&sa1m zp#_r?DIw~)WdrH2TXnQsZRS5;-by^|F^Dv*{`_n;r0 zLr>WZYEHbUmy$gAb3o92OZ|L-bN#DPZdhkV$nnM30KRHHSv(kI z^H|KWe{ZT-X*YzHe7F?m;eo0j{A)=?faagR#u>{5`LKV$j4zrTMk5=7)|?*WW1O5B zxpMrdcPfohF^9L3Z#zbaB)}}Me5QzvF&gRn+kn+;N4MK|gB!z>Ubo{9J4!N1Iz*`S z^1)SVI|Bq8{v@;&r;Q_PP$9F+9_=;Z5M#)S(MkW&={IFRx-4IWJN6G5`KmQ$(j1L` zm9XTW9rW&KIe8|et4q%@Y;#QXej*sm35~yuA79Epxtu1;k5R((bL2Z5+4Cbf2*bgh zIg*;f#%&w}X&+;>kA1##ndsFKV-}*uLc^LF1DPhT1WYt10m$1gcYQto)&0z(8i4=5wTV^3Q6m_7rEoxATnx0qmwote)aF* z5s+*Lf_0g5!>C2rFSTiD)~vtw<*CqGyW3@kk-wKt!Fl;jIB~4V3cmnh5Mj$A5(ZM% zg%f(=mwjklM9aq^bf{&`4y%SmYDcMgFlWktCCra)cw%p2j}EGpO0$Z3{KGfq^wOy_ zvoLzDB6py<@f}@;Y>JP9zsr+y$yeiknHG1{-ht0OQcFIaE>Yb@y-`%t-)h__Z_%}=YtMP-g zNxO8J-c229$&T-b!_Ja>G8l<>J2yWs2Bv8ljj(h-_76FvH`(fN5C?*_}VNV+e0IBR6DP(kZv#+=yJeVEV(_%h_*MP zS!_OVQ*`M++%cv7cAffIR7ePQHf_$Ns=a+CVt&=Hf7z!V+&Nog`)`~Z1{c#0x*9Ow zxV%jDS@gqn;IJL}2He9pVUI|9tbcH{d0|_&4pcl@iew&dq`SCp41Og*1BqX(urCRI>iKR@u!v+1JAsi0z-^c`y22f%%a7K+sJpNClk}_}1un?t zbzEPIOqZLcPh%9m>j&-wJJg~rIN7MI=PR$R9tZ`@W8KZ)qJtKL{(JBb37`J#atR` z3=bLLZ$A*cV8im|Vs$-8On8FRZ0cMd)#`t?-Fuur(QEo4BgoK$3p7lSo?t(Gu*pT1 z(yk$@NpPFr>zDm_wB;6OGSu3R?PsRodt+~hG}1-6i26%A8)VK|y;$g>o-y^#c-vtp?*x7Z!^ zv7Hxu7=mu@!DX>p7}M$4SdDswgp~}guwv$=BnQnnF*^jBw^P)@OQAgl2H}JHx*0N2 ztsDd^&WX3fpZ>3T;F6Y4aF;) zWW*2MGhKZ)mODoWOF{=Mkw=~gTHj<}5YL)WJde_dLs+*E*=WKO_-&wg`lGQgub|@Y&^9iqTaaGKQr`2XX9bjnYCS%lp0Sdub1U$EbM{K^9nWOJ~Ka=F{m( z0J=*{%)XIoBwB&FueO>`X+hzVa_m`n6iDkrYkO$xl02Hl=$L}D7RzW$?Dqy>eU2Q6 zCtr%?w%rRA`=vSQy|_yXcf~WuMM5)!z_ID~soDJ0wAE<$)=A6pT?})c^BZt_C*^eg}M*L_waGcyM4w#~wupSoS$9pcp}(FG@hPm+O?G z~%$+D#Ai7E-|mhVD`u^mMsmH zU=ik+q(+0Nst6tS5Jr6xe@5L#%h)M^%!Ww?k04&X_~no!)boN=P?=u!C&aGgd+W~D zI4MqC<{9@SbbL`1jmlOrYI-!n%R~%=D(}P2_d6dfK{|%NE%Aumm6fN%JzJe30`{70 zL5Cw^60sye0BZLF2ilck_)7Jj*?m-NoLm^D8qHzGgKh7KR`tavf(#LmkmiLkGx4u= z_lB0mDD;Qww;&V(llI>zt~oFWH`v3t6t+M?3?SOvXaYJ4mtRaT%H^Qrs(u2^*6%yc z!#&I89Kow$B;Y$?%ez?Y?b7u{{CXslA5J*nj}90WKLe9TpzjbwjDt=aa_eU1 z|Mvw@ItWw`b&+=gt;!=^1d_2H@jKHM0ADj+x+eX{!!p${H|GOD$Qs*`+`4a2n3028 zmc-B(b%{P;$obb(Bm+P(pu8}a#}Q~}Zf+jf-{*{Y1@EwM?fo$?6hAvNgHkrXCIadY zH?cxt%dWn;Q-aFC-1YSD?*?=bfP(|~_Yx!G7t{bP9u`~NVFH~=*PZLiFuypANZ4m+P6mDkbvml7TPS zU_fxVYfK2{---NLBz{l&0hJsD5mhzEZsF2EX+H73czSr4Fr`rzpi!|7mNq8{MD1Cu z+F3&RJPy^rtKdoj59$Xci;X1YpJ^yA{Z_@arRD7oJDz1(c{e#c%t&0mrkNWm&|KND z>;S_A-qgz6GjAC+mi8kt(RdFDR0E!$Hz22>2YzfOJ{j3@Fsp@kDz?w*Eqp$Y9?{QC z6hP3EWq9g25}1yt(Y_R0P|&H963&)w!`XnZO3JYOYy?JYRo(Yx1wzfPh#5G%s6wnO4$=vF0KJg zgf#bS9>?4=F(?}2%RO?$Hdg8ne5x}X0_6fv=DwH z&62BP3yzb8|LAHZ)omv7*=+@wU}JIl5+;u&N&}-_tw-X~3-kEG(cR>Y4LQ+Pz$WG_ zf{L*!{eWOkb7d#@(H?WYxXMf!W^JCqHoW9%CUg43$KmJS{(&|HVevcpzImM4uRrZ1 zQ!@X4e(K5^DOLA2fDfliDp{uX^PO`u^GQ;fO&avwMb^v*@`AUilD@~<=lL?W|qhfFAslJ`GDjG zd>^FZ1wD+j&q-DTjxYRXPB)}bMNLIuiNScX#cQ9BvrmoV!_wJ9tk8`4UW=`-zUv!E^Of({KFLxm)NU&ZTJX^<@%A_^;n8Sh zur#gKQ$9}(n6DfL+7Dj=^WJW4L#DwgFb(I_SW^oKuGHt-ScF}l2af^?SD8q4@JkIe zZb)}5!m_L5#c8cr9cJ9Z5fh5WK|I*Kq(mQBbX|FwMopVy)4$t6=J{mFK5V^uY|7j* zle?RXF_Re6i2adLr&zP?UO(Tc82&~hn*1h}WkN+UsiMDQq61H*Je+D!L*R82Ax-j6 zks{^B4m9neJXJ8+i$><|aNWd#995NpSt6k z%Iv|J=8sFWy5k9?-+8tv{b_&I7@S-i5}kcdC}1DvQDhS5=^5sF_jvqX)P44Qm{!_Q z{{mI{{wd|Tvw3^SRCeQ>^haQTnQy>)yuxLEJ1Ff2>el*%sV2_-(A%ok+@-B9*~fG@ zJJ{Mk^f1$ecW>?0-Y{Ut2UvGQm=C!I?iX3?Cs$12As}P)OH6fSmO0!uz1q?KY2k7+ z0g{aBP*7mmMI0o^csNpy^Ce?lMHST9O7xngMLgW$jbFU+aF=cs<Ewo)x(i0%;3D zzyINPF*m<+wsA-&)iAgI!Tk1_Ch?e~z}0w4+s`;E!N%Y_kvgL|?LxJqKMoZ~s4#-# zf7QCXH6t%G`%fmyKuDu9xhjLT350gwS&8|2iTNF?OZ%O`=15kr(Ez}sX6EMdjLNF( z>i8uM9sDj9d=Bi;sS|oln%pA*2-Pmr^E>Wi@>_{!0=zdsL9k5?I{MWP2)T4!wzSfp z#0E$WfcCeQmv9USh{KX4i}Ukq^GzONz+H%)&%6n|+cDn+j{nJgEvMtk2UYmx|B?6B zgZqJgzyFuk7bSW7R9;@*z(JC?a{iyzCyWjG@q%#F7@R~7PQsD8vPac-2nU#l!RY=A zZ^hAfLaeSKrV{o*q+s38g#kd(>xjE>ka+*-C^(AhfUyA$+?F>=C;R@)0EtY~+3)7b*0iJ@Z9Mwu$(I--Rpu701KO!>z-Hw6 z>#Cs9)bz}EAsvD_vux*#WtD6ZC8Oe`O5fgrHJ4>k%%7+?vxt|^S4{n$rc$uGR2RgM zaPUvYyZ6a;Yej421m&jZkE&`uGVhyqYb?hE*L8ZadmF#0Lk0of7#9Z!0eX*<#+(&~ z${+j^;{NHA__=sjb=z5zHzif66Amb%fpy?Tb=mz`zQB#i{1MF;xu9Q%B5l1cu zQWn`ZzsDS-?*`sZcHH1NQ4bZ|mgVRr_iswXqkP<@iUj$B%yLw=+d-A){wN{eFd{0u246Odt5OAgH^ zGN9*1SgOvHV^|%2_#8pu`dJtKMr5|X6I58^kLn9xgKw_B>(n~}uJH&!eb#j~yAW+c z&^GFP^s+HbD%C-EA?+5JNq@n#13v-Fy+dGf{#xC?s?r3iekcuJxISB*5e8(%RN-EF zFUK{A6(&Fwp=`2TiqahuBIPPXD+S9aqpyn^_8C6v1A#kI_TPIy?H<&{q|)>9TJSw4 zJVYKaoLo%>XU&{Xjt2Fb$;5u-APBSH>rFQr43e3}tbJ7)vV*aA+Cn=+&U3d{?gzC< z9D2~wtvs1*Cov}x@7oxhR@8TYjYtw%ieb-^fqi*RFDf|u9Mf!h;)CHTSXnxugi1E zQdXpgj;9BJFGuq9wiUXV&>?B7jL@&_l_psYKN)(vd?Ck0or@j#Ivyn-twOS&4|P59 zji?o5Pzu>qFT)~R_iQIcDaJvNI-vQZ5zmp6OGna9d>MwL0BSrg(S(+Ahg+F?OvTY} z$E(|)2J!G{&C}PhReUn1w(FfaIJRQrj324icTjH-PAnhV04itc%=q$WiMUgYI)S~p z*?noUSPHh|;Oeil92$KijVW#Qq^L%a*t;&aRh9deV8Jh5 zKM7}SE%65}9>o4ypi1Dv@6dM%x~~hVQ5si}`Z_-aob6=C-5|^kAmSb$b8uMe1`}NbG3w^SXA%DCG$JBzyBXoS2WHHEL!K z*{<)N@s(?#klidoRZrPSa@|SB-M(b|OZ{ozg}2qWB=+el_C}#iV*bQyyyq4GT)kAL zOhuW`_RJYMGHu!?9u&-a7x8|A19yDdun)fioa}9A4r*rO!Ljbue^Y(rS0MF;AFu3{&R|X@YjDIz@aj) z`@;3}b80%e6JXf*&)~_MskV9EHju(KGTr-S;Ag-|phQV6z ze@#P}AW+sgoYu!0)^f-j0<@NC{&u?Obn>dZOuF!!9d{t8{08jYk{+09w01+{+%h-s zDAO`oAMyv))7*E=gO7r1WAaf_iFx{`xCHM#b~d?W!%q+LlrBC~vD_2zMuzmxfl0i_ zU(lFzB-U>xw|Kh7efP4&zvGw#*Lcl4N-Zz9EB*-~a|C%S1g`3;EPDvqy1t_meY{1m zc@XgO)Ek-KkNPYH_b|3-VogFSS@tr(A&~tysN?wZM+@P!&_wFgLI> z_jx6(;m*&P-Y)e;<2{~fMRsi0d7-P=7bOe4dP!LXNcY#kxwp0phDj=9QV$gu1Foeh z{?uz9-vfw5jf{Y3z64s!hB6AWf!92@LLrB%jFGP~h6@M%dio1}*4 zHHW;D{xE^D1%J41-1w-2^kn*hzv@A;_B27PMV&hlIv*M%2XF^t+qGcWoro2P7e0Y;aDese_iiY5W_x^YkmIa_oo8hc zngE7TmkvD-M_olvQNF*$fb$UH3$456W@j|4fo;n;9h?JSjZ)rY!tBpV24%!aEm3#5 z;hEJ@*U3&W+WqnC4Sx%Bnhz_!pR4P12wH;D{ZZ(bz|=WRR@{}JX|+_Kk&MZ%j3p}a zTg5#`l$<>*DVN;N-;EV;lsGmu+;HeV#K>wOd!<)qeql0Od^8YnhbZ9?GVcs#x_>ka8vC4TIme+mT5Q)Hq#d4y1f%kO%`wAK-ZHO@zj%#DAmP>PVS9iaAgH~9F2TbWk`0T zTP>h$3nOqAqq+*H$+r2sEeCRHCn9k#nd& z7U{{1{H2}U{Xp#f;iriI8~L0yg|fUVFrsEqtG7pF?U-AY`YbK)cgoGn94S~AVgkD% zo+bkDV8)E0^*s3%QO%*a&7JdW<+`hTwF;kA7yQ7e%}k2UR||r#HtExm*zshpte}yU zfAX%#Q$Z)81n?>8=e9#H6bzB>>HdLviU~oz0A#P`S)8pD-U_PWF2|S?3=7fS04$Bn zB0M!rXs8m6;Mb>w7HYMTQ_DnSRB2i?HuzQqkYO#83=1V)&z#T??B#+OWVvP1n*)u^ za>5MP3yQJTMvQE_MLNq`@OuTR7lg$2gre^|9@*L@$#1e1Q8coonivurYqOC`QRR+< zoMO0DHKb`x*_R8n&Dk8sq`~>GGzE=Z-9pa`WK)b1v7f5CPDNi&i|jf^ey~#6lb-*M z$tg>+Ju~+BN42s@Aer``S1fVL&pa)kh>E;UX;6p~s(Wva)p`)F^_yQOA@IVqM9k&AfA#}GWc^`BTuA4W31uJuL&JAz$4w(a@#c5i`n5)7!YV$1)!%{}#dW{J<-1om z-RSw3XzyGR=NJGbVED*s)^gdl$(u6pIC8ngTTqb*@Ld8!!?H4ta+9W)4<=V?Ak=Sl z$)TPej3$$KfM5a5>4-^tG-)Y`tj+O!Wnj4=Z!8;dob3xDLz6M#;cxu=1)!bag~TJ!Cgzab8(^9X(A;Om3;Tmk#O9Z` zUDS?tX({G8l4-eOmzy?F9D+N}zlWxXW2cAyIj}nPD~+pfCw|e1mkVYs(=M#3jH&Xs zgc8fjc?qs)_HST#JdCelLlY799GOo+|8W)+j>q)FpI>2929L^DD~;tG)jwtU%uyD;E#)hUc{Zd1H>NCn z`b}!yTZ^ugJMB#Rcv}2wffW<)J;yYZu5UzXC@e%Cf@kCP%}BbnoLoNM=E?ba5=D^z{wr9wbrV)@vjU&2FZG4cbr|fR%*KQuF>6XXic120(=f5fKtyLYidTG&gafvcG#AQa~xaQw3nlj-;QYNCf2QoWzSgjKAJdd0q9Cfvk4*Kp#$dabpf zyOwcYh{w?Yl__V`NyX&&V;Zcif5e$dvpQ1GdHi;6G&~4fbKLBaW{J$^zzrlS#&w4fSl3`m>Y6<~8pb!!lhp zhNg{J&VBqts{qC2Bv=#y_@CRTC zx4xo-x|}s3haQmVS;I~b^mRiG{!8^^b{ecn`^`?~-{dXKE&`6?K9p8ed>L4G_G=Bm zz6S#Z8EaXC9qsHsxS;z?E-8-i_6raAg>#Zd*XqvU5Y6T0G)mv>9zhcLMxN6_jZ_1b z$1i-Bdvgy$KCJK<40K3dUiJAe6MQ-H9Rv&**2R;o2W>Z;fHaggcgdQB6A%!vyT5-7 zjPkx+QniqPunv2uT;|W)hBJg^$RiJ^K&3jYx92Vo0#sB~fWPp~{blu!Wo|sblOe%P zjm1n5(j{oe_@A-jKd$`Cl@A`c%Z>u8fa?*pA}c)gHtV7FX1^I=S8{oejU2xDZ?p8Q z@+>%Cgx9$Ou6w{taiIfc-WZ5%6@RtNeE88-i=iPgkk69ga5x&j4wv zo#7+udqgUj1khgWg;|?%{@L$ijWo{BItI>=HFn^83IcS2^YFjF24PmvaA)N{1KiZ# z&LRThI=|nEBf6aQrN zHY&&kJN6lW1=`fV?eOF0vtD#tz;<}RNv2^!sgDnI0Zkg47_31^L)rK3BgHDkrzhjX zR1Pvj?c9&g6>{px7FA;P&3qj+ADazz^62^IjJ`^itF}_Wk3vDeD?k?F%KLp52U`w2 zS}rrwzfNvpP)b3!B9F;5H4Bg3cwH7sOXY*lf+!>N;;tOH&uyd#y7Ai#Z&--BAJ?1p1xOqot8W(V5JxXNcpnIOwd?>fBD*bnuNRjzSQ%vI};7p?CX zobrHC?#;#~YjVfF=|#Q)VQ2nPqk$iW@<8Q@rnXeIVe;>aCc&E7KmpTVWGVoaDm=;%W$N-(__3^n>5nbe$uKA=i6ZZGDYQqT;_LCksYkd z)C1CXzJeSE$?-Pi$ZzXgXQ9!8_bg@P{!i$Qxw$DLQ_?rXJMvA;0yH$-+dqTb8keVc z#41qSPmyFUEkRGY_USDTR~%ZxPl7L`2UZ<);d60RAU%!_RY zLVwv}Oh8Sm61TVC^33#42@GU9;g*j!D4+wc7adl&_E`K);k!R*wmh?cM|xxaaZ)_0 zH$HBg4VTkKPUU*8k#0YdH52O8Kz7j+qg*SP4w{|dUlMMPuRycI7Q1$QB&0>t*$o7i zMOcugg;G#$-mFgIRP@u){wf|gL!Z<%kVx@xN?=ZUIbw*+?ZodF&RWoI%$1r{WA44E zFa&$mM2-LYQOC42r|&MJG*vJw!@`_0_GiD@j4i@c&gzOIoK>?f(g2)kRN)msuukpG z(^VUgSi>UStjzQEmp6{fZwDWi9tO|m2QfLWH1QHuX_VwS^;oA)N`iig@;Z}g7KrV zAsI&znRj9M#*OT+_^)Rsr5u6%E0TKGcj5NuRY#x&u>!hyMAS9n0q>@0i6x7Pc{j{v zF7l!wHDONAE@@Onl|N38QeT6 zgxudPH?(y>Tp!#o@E=yBF@Zr3g%wDusKb!kuv`9Y^QD%!@uBtMw8LgHSINkbhv5y+ z&5@fzCf6|{(4iXU{hY@yCHO6EBn}-W=suwx!{u~&B$#t9Xg4Glq5BEXA_a|8uTn|E^Ltwow@Sn4>;(ohg z5gI+X>0#!#PSRh!c6|IfEG*0cM6ZA-TsrXB9Hxovda6lWR?!Xx`P8H@h$+`VL0N&` zAe6H=aJXwDnDu)W3~Tly-Q3>Z{y%hmXEf15Ehib%Y#Y+++N=w#`-V@O`B~c?=X8}*j*x_5 z==)x-&?u!sf0WrJ)m&cy?8~PhHR;6$ED`v;rxr;aI{Ofo$-f3fG=~RW;QSxr!soTrbzmwffB478T54^Li;DL151AVfz8c&e5h>T9`du%wI zXR+%Ila~3tv5VF3gCG^oDSa4{ENB_NDppa3&`W2jngT(xe4AYLSrLBe{zXXX$Tg%} zpq16VQPH!}B$}!k@b$iHhBxwXkq$fnU-!2PomR}r=mH3ZPqzV!D!oKc(x30cAFZlG z!eh3QPOQQd1=Cv98NGQvr%cBA3OjOUXo4QnPIdEV7-{&$A(l1}6#3R&S9ecv+s3de z@ibbQ6}!ZECh;UZ(-i4nZ(5^ zY=)BctUmBDx1;GPn`^jBJiR^7Z_8OJw$K{ESM6lXNhC#?J%fp-P$l(Dv!)5Sx-D{Q811-f9O(=oDiW_R~#1H8(O}3Lx<*XC6?+CU==H|@7K>VV+|8}-X zOPeq~&dWj^=(*d}#9U-%>YPPYf$f5YN7OKa=oy{8ew|1O<%s}YR#^H=>yvJ&49}j0 zayI!CHr-ULpX#_BlJeghD4EJ>v-Oh=Od|4va$X325S%+?|E=cUt-|RbJcm;G=G|GO z-&=9riO<_k!8ZQdmB`8Z{)A*1xLr5dnWBKjj}wDWXae;iw{9p+k7RZ7K^dtMHAgq? zDKSMl*DJXs4BKH03j>hNk6^RvsuD|Sn!+s zo({_F5ucEau@vcg+wwVC%kXWfyf~wUp@~|4s4Bj(Zce(hagw&82jVv^p^u|Tm2&si zsxK@j(;&#FOsZ3N!|CT zCEna_iFW**8}=u`xGZ2qcQF_Ql@puEEVQ+|;oQ%fh*y#!T^V{fZ$S6Y2-Zzlj|27^ zW7jTRx@5$YrtfYgkH#L0g(+bM^Ioh5H9c1BTJg@lIhH*+s|?Dl3!%&- zX>Dz7(Pw7&XTmtH(%C2f6c&Js$OpfRKPG~^0Xi5*=LZY^o1A9N=jVX@fpmcX;&3Hs z-;*i|Qac|F__~<}-Flh^oV{*Y;*mkG5nnA|biCspya9TSquC8@>Cec2N3%oaOG*XV zqUp7NJ}6L`OU!oD!)F*w-&giJkHUB-4lgR_N#FfXi?Ou_dQJSN>uH(WR~JygnC;eR^_oGQPSDv?PI*`@4&)b(yPp;(&HOg38;^XerIJ zh@!pQZTl7JVV~`;kXAj&P@R@6nRVK+^kXj8*Db?Y=@!|$fsBpY^xU#;r$=g1X3(d#4TPNF! z%xd)cQC%iov8Da#V%xr^rnbGL^Izv`=K+vVnUXS#J)SeF!0J842wzWEuWp&8% z-_VfLRE)4akty&xr)v`ENo1cRSdzlz+-`l8d)2q{xc%n-_Yk?B&D>9luC8IR^dT>& zaL$)%s5k9I=cc`df{1wJ|j<#ZndEKl$<9zM%#$VPV>4ylWQ8x<-jppM)8N&hm zH%gz2njZCR(RAH?!2l^>`>4R-??(mMUW(rzy{JfkIw!@vbKzzX4v;NL=CQ=pS1-rL zEk_0!MbzE;@RDtIrg?ax+>{Zjc&GLYW-^FEM0me7F3+Gg6`^t3Y8+{DVKE&uPeavP z5~||#+_t06x*d@n%ALf=`r;u}Cs^G;Gb!IyHLB7pz zPl3z#?rT-518dF-E%2}SeQQx#Tu2^<`EECNBW)fAdvMV^CNmhlY(sGELX9bRuf|V1 z*_L2$BC2;x25i5-Pdc$1s_QGndgnHI(osI(dW@;MA$4^bCRsD80Ono(;>`U>e`F2+ z9r?+3{_LJi$w<3DA8aCRUXAEZ5{Ms)jND$IM@3%IZ+*$|+JgZig?jy=z&_A#SXw2J!<=x*+Ww?!4bV!JA3;X z@-wZ$11<($MyT5354uT4O3bz2`OOSWcc3GbB&qdeL*a zyj}q_371oc=LX6N`YvxBxoYCrIGZQS9~309aX0VG=)XzwY4P;cb)PJGP*7ktYb|Lo zs9-b`)t2KTBn;5+og!&$+$A*XOLoo1y6_nXl1)fd*=pO;n=jkX4Y~|kWfQiZ`*a!9 z_DjVNXEf|RHyC@wDQ+LmRTDB{=U`a<-TEdsgpCuY{*hK>%I$CN|7rmgOi4Htimd~5 z@C_(gquMr#ZS)gktqt6D@bxJzi%}8b)&@0PT+I~vd>#|T1iT_xr^7V&;>wo?_q2tA zDWjX-nznHP?E$a&GhMTZrkmH#!)yc+hugdx3_9W8Qpd=r3pV>+^*HUOC?-*95KK2) zQX050Ku5M>cc=c!$(YlM+o%qV_I%#$Chbc~hceeTyiuG}7uBH+&60`Z~ zyPNWqRn%A5MtM-GesMp1WXe6DZM%g2CQ5@1Rko35VwIIt^XEruQJDW&%o7#7vD%{bbeDd}H+TVo1=M0%NDF>P;9`3&R2D)W{dz zV2iyEWSHra&iZ8=S9SBBdk^7Ux}Ad~ZeEZ0&fr|l%b{2^UY$bk>J}osH|>PXC8$<^ z8S;}pNqrNg^h%k!(vnRGeR#he6zcMD_`>NvfZ>%=Y71J*T=4Ds_eu}rFTVk&YNMejCjSRgxTa z7!5DKAGGNws7Od9boY<;$P;iTPoGn?OXK80tpDM-z}s5Z`6VvdpL@l=SQO!LbAB>5K;GjpfV14LJa+A6V1cnly5Y!(eqGCGVnFQWJISN|BZN|8#389`SjN( zjST5sslAKQPc519_pJ+a_gv_*k*BveC$&eCBerLvA(|d55AQN}C0DL^R&F&{+HJi3 ze!Ma0cW?H0SY7G7o@u*{KYvG|{!xwOCKAt8yi>XOwb{_NT2LeRPG!)ss3$N!FP zGm0=&Oz>;Uxh=~goL|K-C$%URmdMagPGEl^;?ixVeA|sN(cro*?a17UtH}q|FEI#? zob9}(9gj0uTOW(xsF!xE?HWb7c?#yF6@KPKTlq?O5e?W-SBfGmFKS2``($A_2%k2)QPSnM39v4=|Zv83e-di8O zxb>2>r)B2zLAi{}5dL)(q_7o=U45gVs&)Y*2vV`y<}cI>V2t+P9}TvPN-x?8r5u7Z z^ zmwznWg9z>0u9|9a7_%_3r}X)0#E9AhN{6tZv~hF%w7P{bYCRuw!hB9@Z$a}!+h?tx z7w8Cj_kJ$CDzhAzunmrJGk%r;tsw2{H@f2)qcD7J1LMOaP)sK;<1afw_OpdQ=11B; zPUbfxF#3fwui?icD)I`*oE)(PDO5i8S?%g|3$$Y)lz3-Me}e*Ez?YG13 z_$5&aE+4hz{2Jci+Dp1~f>i7gV;5T(!+Pf!2aUzokQA;7p(ei{Gz2rY!j; zj(i!TX%H*B!67<;@$xIXP4mSDVj(UXI1O6VBto-veO8A==Dt~R#GBW~YQJV|3ZIO$ ze?qf5VpwRvylcjp^Gmx{(I!ByN&9hQx)fZ;urrC^NQze+2WzYE32|FhQgIdidxR8K z4h{uZ*(Q~8mqU(t>Q8n{%u5Xy=Vwn&pAb9MZ6G$^8mx%DvO8#CB(4!bz|2EG2DLQ^ z_oT*Wz?I^<`q^3-szJ2*I}H}(2GJ#PQ+JoM!uhX1icC1Ohey3+gof7xtRZ#zhBsZz z-2JcD*!nX=MPD@~EZ_U`&KZP$FrixjW<*A2HgmcU+&%#gNb0w+rdz95_;O^Jjk2!9ncr zSzq5lZne5gIEYDHvDzQ@`*>alu5eAr0KQC5ZSsbt2cW;-DJW^pjNI zuQ|kezgYN33#Ac0vohpvLFTjPE>qc{R~g8fUUoHC7JubxjX|fpRs&<5tK!9EeZx~~ zhE23{$F*c<&*qZqAQslQ8HIF_1c=C37kf468eCc_O^l>-KYQ6evpgMzIZ^{^C6HS$JP9wr-NegXqLcBDm4KSA2#vd@c9U~TB5NYc~ zM|Gm-WL)(WFKpQ6sXIK8^n9(2{D+Y=g%=?(ub5k)))V6u zK8TULk9Pmd!=@k|80CK%5V9PF!!}2*RaO18*;KPc*yYY6vJVTc#bZfMYf^djeicN= zJE@)x<~de>M9qEP`O}h+sKt0pltG!I)t{55j9g@#Q1(6NdZci?fv_ zn$*ZkbMyTQ*%BYoezz$0VT1F(&w}3O6aRnlH zeeDTEg7*8FWV<@)Wv@J08YR8oXD3>Gg2IQX&~xQgq3y4`mFW~9OpZRGQHV`x zSRA40Qv^h9|2^hOTS6UQqz_M3wj8oE@Nuu5dP4Fkop3g0Qa#Wg#M-i;*jr&32t`NA z8FzibjhSjT20vNYE|}c^b7Jpfd1vY=w0-<*Ez*e1dZE)qs9a^ghWnJQ3gbhoCO7QR z5+iwp8@8S_F}*E-eqIQdk}EQTV?2f@wh{4*<+&3q??7RUv~i09(OkCe!A(`sl}>r*+{CPEXUN3(jsaq&@+S!?N@#tuI~p$`R;wnL!u zdOuOO7nt)dt>xc*xe88L4WJ6U-?`}-IF999f&`Ke!i5!d#eAO)-ajdUjpmoEpFXcv z*}Q8sj4N^x>P!1&_g#9%p@#S5MFrLS!li+NH zpDm0UwQR4}m$GjOOb(fr472e>UUTTnYUlNkMeYV@nY>jWzBtk- z(K17_UMXMJku?nXD1O6gJlh(2DeY5`ct8>MHKHDo2mGoy%7zd0t0BKO<^F^|z^}rS zF>CJr`*^2IA@FU33`~pz+MJRzaGeW11?zgTl)$S2Fe(@*2Slew98(pqD_3EU*1O)ve*&aw8xczhOhA|NlbodR~DH?S2 z#LzKqbjzx;)tD!BeET6C8tbyhH6TjnE?>si5@49dK^W+=?YrBX#rB)`?W^PFbu(qU zoPdA<@JX7qt1~^UY5AW6!N&iGnbF<80r0SayYZ26GMwVXZtB`QR&yvwI&&WN0|Mr1 zj1Km~2MZmbn9MD+sKI4h%S(QXt$v5oOVyh2h6Bs>$&}W2hsV>|=+kC!_p+<>NR;3> zs>Airihclnu!25_2-nGu2)Ji4wew42`mTfs`WaQId2{D1#_ zdi;fg=s(&7D=a%p#}g}AqPIR68urE_MSrJ6+4J8?v0YkWLfRQ7eq6X+(VMKC@Vyts zTfRGNfOTb?Q(f?l;wNY~J?j4tWrLR)>^n%hM6#pF?#Y0sgQq8pFswWXZdoF`$(jP) z*7xzeC!H973&zv=dBxz$_rp9HKjcrx+-=QEo|Oe9i>gUdNlpHCMqn}AmaSZin;$AL zjD!>`nlSa+BbHsuUxm0B<`C1>XyB(L6t8QIAgt!iW@q$WiRuQ@Ub6E=`tM9Uwanw} zx4eJ#ly(~->yfwNOZz)F1?%s*Oc8}_Q3yEK58F>=zzjmvu%Z%cme z0zSS7*dk%5{_ugXOMk7qe&0O}|AVlGT<@Ff=En_Km z_M}O$xdJ032a6ad%XdAy5#*5nLSTT6LtG~5AcoQs>xUx0ss7jvcDY3xmzd;dp$$9j z$e5~4=fGtgQBw*>5d zegLN<7a9@3ge>IRWF=FV+e5<*OyN4oH&Pcsobb?6$S&@?(N7DlX`qVXr~o( ziI;`t^fpl@vWhh&C#7g32PK{1k%t{7N1UCHJ~fx_x#f`HRDocPGd&-vnd>WJTZ5v< z!02fl9N$UN6eNFinamxZp+3(yE5^i(t1~+Tc%ZqKhTjn{3D)Yj)qSSV0~*He9aK3K z(QzTurXOrPfa=d53)xqVbPwR_cSFofl+YkBB$@k-Fk^JzqCnY-23_7?9`IO>k+)@% zkEo~yBYhE#_lZOT+ibz+E0eb>{g*0SxkDdtkB&eS%Xr>AE3?afXWOn4Xm+$Fknt*ko|`?~t2kL6e*OYS-TBaPGQ0hNvss zpMQ&Sb-^dEl;7!jbxd3J@g7PTs#hNp4#0l^A_L|@Ff9?NuPZC%diiYTWkKJs*@K}I zg+~0$SQh{M#GXgy7Nxj=qs9~+p+bHx7|aEplawMyt-g73-of-U%U51;zx=Gz1>)rE z9mKl&Fp&Z<(R}g@23RxLPs$S7s=lSpTQI@IG|Cj_E24AO$qySAFisjC$2NE})AfRh zc9Wi?IKPLsW%+q32F3egzUQgsq71=FYE_&nYZn; zTcXLj*Uj=%?g*ya6~u##jz_KW#y&oP`+S`D`{I5r7!sNc#@o-T%tgkgO*ld{(I=a> zn0*1HT654*Tl=1cEX}D8m&)=P58q{lKlm#egc7ZM%?QNK9Bn%uRZj0pogaD(Z^jM2 zIsW0^8H9GdBLvc1M5U+B?)gE%n(HTb%43$*=6uv`+s@GYga6PT5$OyVm;Y-0KRO;D zJ6f+Y#)trDr&dBwPtX6p6P;XCQw~&moP8Kl)BL=}(=qcyZtVSH^=eF&$Nqb00V1Wpk=Mo_B$jd>r@E%(^e4R9atuacZ$v#{n$)CNtKZfDDO0k5&i{&WGS#_&% z2ul)zKv;siK2qNv^NT@R9wRkG!dIWGN{fa6{H`st^d=|~Q3y|bj-`N7vxvzMeJD5Z z^rbBpKbFH|R4TBT8vbz{i_`TF8C_0HtVm|$(98x8Jbr%o6upc z|JXM3Q!F!M1jkFk2j{a4yHzdpjavusx%E-MD*#ESbZ2Wh5}J z8cQp@r2t$rpR~QnQk4@M;y$sA$BR9VyX9jt+(yV#7ASBk413D~I975}_5h?5@%xQw zQPV?GillWTm&}hd0LX;EYDB>J<**eA5LC9uXJRSe|5lcL*$%*zRT3QT`$&J%^~2qb z3$?cBKDpw{r2|`StC71N=t3~_T}r{L5Q>~k@Yi@dB|jyIGbm%VGdz9~DXVar+ZAn< ze-VFrKwBbX>Ir$G;*F`KqaSXdj7eRfZ8%8)@>zyxMNUv>yyS8pn3qwnG?JqLtdaCn zrEjQ?$F=e~2fm2jIU8Xr>CwH~L1tI1jN^H4mgo3dLCSbM*0Jr%n`p&&TrLj?M6h86 z5Olx=sf#Ic=?3nFeIlMg&mQOB08N3FRj&M`>8l=Vm%%$1=8Z{i)- zl+D3$gwN@5>1qVeQh^gJBqGs&QP-pI}#2f?Pr$z+wn?9i$itBj%tddQui@k5(WP-sJ5+@JS3DOrY|2COP_dP36S`t93SfLQ?CA;ebc)k5 zZjW;De)eYfJrQ>qeOpZp24%4?{%eElNK(CxoO+BPl|g5UFj%lpERh^0TR9fl&^X30 zP6Vcr3eg-8AsVh~nc(Rd%2bf(ye-c2^D`Z$kTdp7WU82%#knbx2lz(_LRg+!b?2KE zq_in`pHcuL$Am?M0Hg2c$<;{kbnC~MKM#O=+Nc!PJ z){C3ss{x$#{4kzupz-$1xA%P2_GPkIjs=u%+X zcRQ*2d6b`W)Ua)^bfLK(mOAdcl6_u{<~y-JxUnU?dnWY>glXoxOVsZ5-I138ein7F zRyR_T*|wJ}qd>E?6mr)~WcTaoCk%*LU*Q84_T$M<%jpls9zyW$cs9`{aLl<6=q}>P zaw;S(+asr%Q+O~eFh?Y{-McywN4M$GK%eT{R?fmsZ-fc=WM-Dk%G37?mTYyy5U=Kh z=X}_$`Zy$W#rX+c3aW6-!pXSdak6aiOwBDDrC`pKIhRXT9$h-XuEA7gs`!8k|G<9<0&ulGeD97^1;@)6RB zj%*VS{*3xl2?~$qSGGzX30dOpXRw!%2E)bQpU*!b-X{=h0f982RfoAnsg3u-zAqkm zGtp?Z;cD62or9BT2Nc0FM8q1XU^B^r5+JhiBx5%rvXD+^y*mm)QA)7!4})pY(=;Xx~gIrM?!_ zh47&YqkegA#fepWLwDu{A>dr%!yas5q!ygtj0{m;qrQ?Vo8(&@!uq6Z2_hgs>6G#F znYwHu^Z*EhX{gQDYJzm~*sw_)BCzloSb=;!nCv|fur4z^0`y!x3_3Ck2A z!%5Uty*7aM?v*ksg_e+A9zM^R=+ck9fdgoKl+`F-4M9@gX%;^wzBH zP3CC^iec8T4Y@4Ko^vM5P?xi3rVP+pz|1$qEA0$x^4}6-j#mKlq9GHk4%RIh|#6;@%C_|-zLBia6jABM8yCQeNziLS&m5TFemHaD)n*z zQ*!4$(#@-)$xoAM%xpQa&E<={Hqy=Pi%qOlXb;wlSKfRi=7;8HZdJsky}2<`ygXK} zFBGyaFt+e}TeiW!9P4}YQohn|1!|CO&Nc@awYC3!-?*;Qz|O|K&Ft- zjNF~9M*0!y^Q^7HU~&jt2<;E-H0NgZsQkJ}FQw@4Fepa6joyh7hs0wP5gBJ5@5M;jUjC7sOUM1T9q~;RZeWOu?`9C`;w9o^ zx-E#jv)cCj(lQ@j)0-IfHC&x3*i`$4Zqo>oT}O+IiLY$EhP+IE)(9m$loQgj5pe>_ z=-#9m`T>JfWs>oz7!&Z!78?@lm1*U&1SOWprXofsEy$7;;pL}d|J4E%_e+Z~;uDD7 z@vlvCE|Xkx^qtziziDL8_bbjpsP+f{ZsWg$-K^B&MLl!oT$0{|$3QRdM}yc~e+>gs}q1PyNW3MC8e?w}dCwu`c^jyOkZE zb~Ai-fFOt7wL>znw3j6>%jull1cCZD^Szf(_xZ#PTdR7Fs+;&LrK<*kZh{l{E> z_t>{om=K4tBf!q&WT!05PTTA%G&&{(K_ZcpP<2;If~s2j+F8@>k4s$fCzDMEe`Jvo z)Dh_k#rYVUpyvIry$les0{F*#YNP#+lqut(fw|*oo5!oq*U0Dek)5m01v;x6@zP>{ zP{%X>7zgVsEB>p*DjMF>?`KMkc@1!J=1$;dLW?ZHwfZB$5w^h(1Xpuqct38gcXY=5 z)nycmF_1^tQ4@%sSFXWeNR9_m^vK;ALpo(pr6s?=i80fY4(F3ucs!{oDou=hK=7}nswUGaBDy$8_{K6YLVy(px*{XprdO<}5?F|zvwDW#+~JGL zldA22b`40j^CqHR7v#l#Kntd;^k?+eoT~VTRGY#q8P*Fl?;S*%&B|FHER;BBn#${y zn0K0DA$;SZy1=`RJw8SPve@zKnUU*L4ZD;=@u8>oMfNEocA*03723h)XGaPChA=ucUNF;UHh$&ki zob%;uz)YFL*Kg_K6TT}(^eb14Mf?|dtqpQdnp5t^&OyKBg6CZ11x+cb*QYz(n#W}B zE$Kb>$t8wL`XJMF<_XDSOtrC!=62NTA7QO*VX|vd#m)$(3AS?ObjX3|%O}ZkI5J{X zN3LG%BFHzmuUxUB0chNxN9%9{?^=4^XcG~k7dx5w`xN+bdN}+3hG7I!;COqoqo(os z?{ageLx+cBxK9CYlH&CIO@Nzx7B3GpmQJ+y{W~A_ahi)iJ@X}Rg2uyAS+1gpXyRY5rzB_!-VG6|Jrof6^`A%~F(RHi9@vBwh14QGN7FdzMs!2=Fkenm6H{ zhXSTT?6=0vY)~XYL7o2n9-&iOUPio7RbpE;-d>X$>Gz+3RtGI)2ScROcKAqr${oXD z+hBZ50!P9tvEhfZTppJBn^ zKl==y2!W-(e+vx{?{p!RJyTA+YoQHj4U zTJsZ|mJUyBd{UaEr~HlhQjo9q!1 zPTz0Sw)oh!m4wN$p9BU;(w6qp>oeYX;x#wk(-3arlwnI4jvyXK{58*xVP=#)c%B~( z3#upM56op|lshDth_qu{!1V)Mqp&B=yz1uRSa)pPyQ>_;QVdR{UB8L~iN_(mG{g*K z#2^Q(_}t@pvpzcvYX0~3u4u{gWI6%}NMM;jj9w?H6NT!6` zoCrFpgE`I%`;9=b&!GkUJ@s zz%r8fX3i18?3fsx_EG8~8{+o-)}w0!j|e@xw*kCsJI&FNan_&yF6-4=3F=>?#h2AG}e$O zm1cDoaU?u~#N-@R5Dq&z%G?l2p7eYNXD6xtQx}W;8!!~m zf&_L|W<6u{`gX^>3vgxQI@lMXTRka%vo=>$rH24~VVL&rnD_3uSv*No;-`%1>rTIC z1b6Lbf8I443#6)jui3X+`80HWF$(xZS-GOt{x7;Pjsj-gr`i9f1kaCdzx}sql~ptk z=rcqlNse{_AKY?4qhV%*naQo~NHUS510#nn((P_zgV91}WyPeD*-r?dvxE-Wg}_Mr z&FWtH&rR(cpxQ=U+^#=y&n}{x`xfwNJw>l zZY2}fp>w?lzn%sq;#WmcPm3Ql$b`lurIbIfO1Iv*ZFmz{I~BADI1eP{=rA=~l$#sl z@fDM^g{E5G--X1ih*?KhVja}knN$@ELeys!4^(!HRFb}s z9Avqrv+EP$oB@`C(>xX(0Aj_Pallpo61i`>S50m-6Bsz2omHE_a-2Igi9<3Tzfc)?_#b7&EGR;EAQs~q$ZSAGTVMASn zEEf4PWiyp|v=uo%%eQ(|5TySkxe&wpj@pv-MK8Xa7-I2y%B(Pid4D1bOZeAS1)0Yhm zAijL93oEGH24>yYjK=)G#<27pv%%8s!J7{8P}4q_OlaT{((Mnz3I+aNtAT8eC%fE~ zJeKBs{=*9(*KR(4jb(Y2qBYf7pJv&-NR4rE4xU1Jf{~g zj=|nPj7sGlUpvx5cK#iCFawqN9C9zeyvigf+WFPm-Y;t*X=C~96@H%fi zNkKI!nMOQ112Ccrwl0yrtbu;K4=;DBVq>;igPf}PNm?KDNZqASS6NtDghoJ}K0&!CLuIL1MqYTcs5Tfb z?fo&TG#W4S&#VnXYs{1{>?Ik#RNZr#70vsdWt5ou+NYF*^JJ??dPRs*gFkg}-Hpgv z7Qz~Y3keoNl!a16PH&38q2Va|*vB`FmVORNF0{lVP+8ugiY#x^=_!19Tl$vihJgbk zeVB@%o0La&xar5o|d6N#SRU%l0jU;mZEF&rMoBT+{&Ha=fs21%X_l`AVKGEMeASF<9V~K=g$12Ci(5R@aU0zEFi%XL*xC`{@2h~(iu!@`5EC-Y z38LB}GREj_dJ|leE=EA23OQ;!)?15IS@p3#%2j^B{;Uy;qX6y`nW-^Bn7U$(>ms2z zyLo4lX8Dv%&8jc`zJG4;4H2m2FL;xn#W>me)1#2BZ=!^>`)u8HX_jbyO3~=aQekpT z9muRPd}QW|3q-bG4iV|w7lr&BMldShaq6D807@$-fo z@y9@>#2eNR-iJ}}h?Nl%fu2^G@939s=DnDt(T{buQ^PSaBX*4RT`jlFsBL8atmhi1 z>g+N&k-l+SX!#zc?$3JU0Nam&w{pG=TS&Lr7lK5h6f6$}fk3KEMP*Y%zvqEA+P@J~Eh$Vf2pf}0hAlf{u(StrK@xk&aIC>f&D1LbC7Spj z{E^&LaRh{R1vqtC>DsbiR@rDmAvVo`VF6v}t4MeA4gFrDd%zAPrr$2+XQcLTw%be^ zUH0%Bt%aW+bCsK@dg5~nYt4Qz${XE{L5as~8#V&gr9F7nUa znpbWWWUNc3Goa}=Gwfi%&(HF)Q=_&2mB2m&@SPAjViwKKhf$45HoPM@;9*+cD#Y+O zh^4;I(~pjwE}2uC)wQsGjnS^mvS3rNHbr3|`qXLCm?hb$c*Z>GLjdovbt(#_RpGtE zN5RIYoI4xQ{;ZGdK@(rvNA4<_;Bx0abEXBPJK@ZXg;0`pY=110ZAuN{mGBL4+S2`# zuS1o?*J#PC#;w1ObILD$dLZ*%rB+dd&fWj#+7xcjU$x+8W^1h%cQ+}LWjT;_$p0y?3r7$iw*Ph&>7ii#Zrj(xqqqg1u zdT*7Z@B7jdEg3X3q=-J89g5y%ue_0>1#k&d3Us>K6W69c7v&iDk^iSY|M>xYN;m%B z@@yOTR$f9J84%}#>H4z59(-Dl9J8^s z;DEsbteDI(2QtKb(BB8+Me#pyezV{;ZaQkn`s^cUF4iPM@~$*9!8@Oieo=aLrQSUs z6<7)s>Jekdr6{rw??^A-dE)tf{}}%iW6LW>_t^%*Z>H(A(d>Xy*EXa!ZR+*Jg zMY|bwh<^(GdTTqV#B1pg#sJS%Y-;m0$zP?%d!BFnq4qK6*%0@4`4Ey+rMbdX`qDi7bYUq`L zi%RBEG1eKwvq}ucn`?7x^B>|u!GsGS5T$2V)EV+N7DE>0HDin%qaR{YAffg(7?!{db zC{VmDTAWhc9f~BlySBKyyPw_v^FA~0hco8`Av?+5Gmx2k?R#C?b~9E zmx57a%tSj?LFoMKRMJv8-3%%u>IX>2?F-SSu|&|DQR>aTV)P^^LvtE`0qTJ)rAQIZ zIdTvbm5kyE{Ch^jE&hyTm_x276=()jz3CoAzVLcWt2=%l%tHRCIW1f&+J#40lkLJ+ zMafN#YC701$2I#qfGbqEETDT<(|IPD(fsNZv@F*mNL{njP>2k7Vl<1>K|l32D!?}2 zRA2<=ZVFW*dAfDv9>m)RDh;qHED|P1xN4#;j3_LG)JuA4B1{%Glt1mTS4v@B%6kgc85qDPH0K)%wHlDqtq2Vmx6*f$VQ8&FIYeQTRw=;T)$DO&pg^q99+sx} zQ@b{D3_F|L@NMu1_;Go?T}XSD8$U-aqQ$m4c9zh^Q$6LdQ1pvCJXHIxtk`K9~e zh}(u=s0X3lU0L^r43Xqovig0+bHk=z$Z?hip$BMNoxc|W+N^xenA_(5<*fi3;Crs1 zzgKx!AHEw%!G9q2Vh1`Oq~g`=i)mDP*?;PvAaAFZ(_i9#OwwN+uFwhesLrH9wz5_~ zFH2Z^2r01ZDjO;g7OltUR4ntmwe4+OoVW1t=`&J(I(*KbhXv`s@qSwn$D4vyR^K!^ zsSbeR=`JoVX8!yUat>Qf`eXMxL&Nr8Zt3NM4<~@IW$TY-vo$vl_CVau7nhcfZM&BG zWK7z``y4hWGGKoB`Oap`uZ`;;_o3;s`H&G4f*#cRZ8q`W?fw6hkC>aYJc)hr<1nSB z3)$ZTJpF7{z{A|wb&cUI|3TwnOQJrauI}=+XtH^Nmnrb-qnrQ!bih3xyXljJ#*ZIi zaE3<`9no^Fjq~+R1t|_axnDfJYOQLUrsjo$)C&5J>97xiwc@KCA+OX(*-)&AaI%-poh*!?x;fO*LX7(R8 z(Mu*Q{?sQZ=V<-Dydvy_Wj$Y87gp;AI!APc+~>hu)Rf&BvycyYz{4M%nBCb5+E2|!4(TQMI!Z%zIxW0HroA^E>vfIgXzualQ2 zRJoJC)5ntQ+i|LEVb4x=^~$piXxrk?7HKhE6MdxCAsoD3meyzjW$!5-weGo*lLt8~P{6 zkLClCj|?Cfz)(XC`YJrsZ@F(zA@kDWmMN*?sTMQdEeQc zPmJ#cdB$nPZ7t_P%(_dQ)7dx6JjG%z4V_&DJMSy&P9LB zMMrscU-}XZ`(DfSn5KRhnPitx0&)mORC{+Tv65(LsnoQyi`Y-L;WHp6G1r`EmTB_^ zwpg15vk(PS?z>>~f{m!>YJ@QE`ah`H?HK_j*^@Ljs7US98VGZO?|s?eXwFWPeUd0? zkWq4GN|DJ0?^BMjwJ=BjKlpmzS65(mSCHRLQTQxI@(?16Cmc#D!VL6?x8>e-uvlOT zOY2a)khDG-MGKtd1y-c0u%!F%Sh;TG*K3UL{bGtw`C7X~dVfDg8ST!m1v#8VM?EP? zhH^*T?g!8Na|^6`UTE}0(PXgEjgySe1G%f+tH8d-d|nDjd30&<6vZ>S^8wIA+ipG+ zyXTsyk1u1fR*$c8MWZq3eZM|F$Ogm#PmXfg4rNX`A3BFC5sz)GidDM7kK1D9y6}G9 znWDCU-=GYCgQdnwIDs89W*&zWPX+%+&~Otb;_%0!4k(5uD8Lf}d32Z}e|eO`iPXH6 zJv>|%`=R*i>IWijo%9b|`{N1nDa{P_@+Ai{uf@sr^u`8Ds=r&}f&T#UST3Eb*5~zb z&HvCI;K?cHe8spO74;>?Z%=3_eg9ZCz?D2k%>9Nm@%~@p(A`YTJw?2{xxYR*^r4OO z4iY1FK{2I+*u(R`>kdc-62$!&&T>AtZ9u7V(-u@Z(PYAd#dp!SyvdQtU z7&k50Ib^ID-WNUY@B34fv6g7qKI9OA&ify4-SX~-7jK6>uO`GmX4)6w$gA^8KG1(> z0d<@~sk_tKZv(fF5h@0Y%UnD0s)L8`y*%VOOhLNeWU-bIy{7H5tu zFk{Alq<>0Jekv*@UjLUyU)NQ* z5uDTyt(=1e=4Z}jf}CZtmY>@iZYp`zx7BzE;GLo&|I&g38GcvE=llh zVGb5~H)89?MfP29FQ5o7j;Fr$y?6|Zc?HUaivxa~x3R!G<&;){9&}FQ-Tc;`rgXPl z7u}XdF=$t4t~Nd9w6uNC%9;HfX#@B!uNH%7gU7?`aWvr8@`LNYo_Cc&+pAY8+_Gw) zyS1(2PvAr>;i7-inkQZT15D&l0@>eID56IRP(GS!()-%e1TN{i)tLq2af7l|WgQiV zu=%p-kP_2SAn^N1aX#w8`DFHf^aP46%I&A?hRUBwLp1w-Zoh=J*aD*6HM63Kd5uu_ zOHCbQjUn79bc;aPKvaNF=u2n;{uFSDg_GB1;MXRPA}zazd7MVW@*iy^J3;v)R>D$D z=SVoh|D!3cYga=VwuY-8qhnF-_6KL-?9_P;sKfX1w2i$IDvKXE0yTT3=mX9QW%(Gd zM^eo8_F2nc8qkvXI?RL-9o~0i!8?n4DIB@%B5s1u|^A_kv^dLH{mK%Y%}!)NCG0^-R*#2;5zpY z2wO}MY0H|?axzjT#-=LB4JpXUn9+{U{fv9&7Cj+}9#^yX$b?@A2YD9+L2Yfaa_Lal zdaB_X?_Fg1M_h^wO=v%uzDu2fnqrt|J29K!z%d|EQ_Sq~2q6ecpM_5CWGq`ZM1|kf z(K*DLx$>0@N@f&EY;AT0(*@G_c7({goM5oI2xxVdVO;Px`#GR@q=2U{?<_vqbTs8ft(=(uNgx@}szQtETF%i(RH%6=(N38AjRF+^4I!BE3uI^eV(=Yu3<{BQ!37_#f z#jS4bdh#2`y%UFDuxyVw%S3y=VgeS+lg8iHhFaJW2Q1tO}@=x07JB0!Iu)2KI%b!a6-qHYW+-D%i&F^8WoOZ)E{f;bJx zk_gw*PGb*=7>@EDiTrm(BUP^~^Olq@jZ>RfYzBx!gd`qT0|tkNJ}=%4-d;s5dXgL7 ztyrfA_(xqL9*IOmh||4oa7t(wk7+rNfm+93I2kF3U+>${Du8IX3GYV$$>)wk$3U*# z_+4Yb<>A$&;k~-}{kGESwo*XyKZevPr?F;{ddqDiA|;g0`-|bjy5YvjdjF}p?@&^ z{!`>9Rc+7YZp#6@eD=Jd=^M!~6IbZ+!tD~uoDEZyfkSC&5~L!Ft;K$^Sbncgcsfws z(3&>f4dLx``QXr)QKIqg_HMkokV}O+6i`3UYyXw9Q2Z>!0q?K0NBMGRpe??xuE*kr zl$C6aq4~i?&)F7Cs>kytxQO`;`0_hS+$^f4GGk~I)0T|_35EQsue76z5F6oA+hNNy zEyW?*;xZ726@dV4Hnpms9yBnw;@Og9vN6+h@O@lYR9*{_=Lf~L7z-=D-+Ey4@^;Ls zvA3^Kx|TzD&vZWQz)eG`JGN?m&-s5{x*=;e_=Zqg{5h>)lq!1BB3+g!dF#ED-foX3 zXn1Q|S99mbHxe`wS&z|L3-HrWoe1P-|LIiybZ0n`CV$-kpB0_w40`0x zHQUe#ZzF&LPtKpwg~?EF01KdnU)r$4P4R_+0E`i1#7DJ2mKDt3wB1AL(9pDKQ`^Jx zi@HYTCv(TjnXh>`cHntW_I#K}P{S3wo$l&E^0)e4b|ncWRP-eepFEakN`+Mk^k6}d zhwE)`)pOP*LzVL#R(Q?NNww88mXzWGX;A8X!Ba3V$bPgVM4Y({GKyG?T?QjACT&cT2n)i94v5K#zxrc#~r)~QRQsOjJu6#RmALY+(5&SzPrY7)0j^8$i~|B)4Dl1X`!Y!oai z%b&fSBUA*xK+AEa)a{n1C?`T+TlhMSjiQRN%EmO34ESWxLvZscrS{Agn~OV<6jaY8 zYF_rC^|Vx3 ze;-01PyX_uL(6}@a{*u5wD9-|qd>r*k^nH1KUEP7DXA^qH%1b&if!-dmz1MZ zcB-5q6;DR0B+0zxR~x&`+2 ziMr!I4uYX6*>S#Lq;|m(nzAt(?Q5rA+??r(SW5Q^43?kTu0LoH!RmTDtq8t&zmQB^ zYu_t$C1C%Sb-#MNBja%Iq5*xYUn)mhKIll{W!I&PUV=gU3EvAUPPuHsc;bX=jdlWB zhsJB%b6ad3^MsCpg^P!}hjQy(cP=I5ow01|&ED2O;Op@ucpF)+JE+bg8Hoeq8+&es zv-;V~RX-Fv?j@bhRpl@z4$%Di?YaDO(L=)9w-OV^aj@9@jkB(K((AclZX*>;%;^M` zNijWBqiEiFx4AxDU>8Sg8s+I?sT=1~*9wl-KYKvN?foz}T@(Ou2TTIaB+KVT?z26b~Cv zd+J~1nn9-O+Ffj+X@wMD9uFPbUc@dwnmsauW-ymsI3*XSF%W|A0B3T&q&5M2<*uuk zhtX*vpW1H32Mi$3Yyivpug{c%W%oR-C1%})T?o8Pbtt6 z0E7xsZZNR$e15&qL`y2($0QMn}7JeLG z=DUtL2XsAs0|B@^P+I(B$PEN-T<&@^?&N^5@rQ6FznzZ*7QE@6D_G)ZSp-fy6R#fD zlpf6NY5u475Ch%_2ho3m+yA&F4o3b7a|dfp!0fRu7Kp79klOq=7&4=*G}zmXKf6%Q z*nv@t;n?_+$kJA!+Yl&HWRlQ>olu#@Cp!7%K{bg*J0x1z=|oV4uW@zie6OKux>~@% zZ*0rGW5dV1^lpC!EtJ-+G z7_IDhG{;U~r6=$RC=EQ`3?(sPFvBYdE@yJ^}bA?3zc01YM0#coOD0`*D}{o?$rkX_TyO>(d}U%WR_Wg53;*+N@#f<3K)?^R5;a zE*ZsUg0i*qW|EddK7Z862rdc_V`k=P_{cPxZO*7pSUlITTyYYl6H{kzID)&Jh{7yJ z^@(=(fMhR)ybcaUKFJ^#!$>ksK1PVO#i+covRc$jCle5jt^zw|KB~!M1Z^A&_=!T- z2qwy#=jB<){U7CR%vGrJI(W2rLYygpZD91OQ3Cf>E$T$u1+?|oKJ#JEP2{Wz8XjNd zZ1hI@GtKZ;@rnD_#^nL^0F;uv7#93Wt+&=_l_C__nO^OAD=S+|dn{IL!;#Sf4`@`s zHO(SJ?pYyNN-rz*De!`K3nz_DsfRKWGdNp7#?k`;ybkxey5z(e_-2iS6rDSTCOM2R zp{u&F;4V|9xg>{}w1`!?Ot=`gE{tq7pL9abKjekm z=+|l%QHKY?iLZX+4)Rk(qa9F3!J!Eyd=pd<_FRqPAY&<`)j6C49@e97D=ld}kJ1JQ z$CCTZPQO%MkA2k|Kltfs(%Z1kVHrQy208Fpl!5OP($`>CGKAer(ixUt(!NQ?3Gm1&xUEcv`T^-Yk`@wMz z%9KK56zan1^A}PTVoO9)FQZg|HYn?{Ipmz2LZV*QQ_Q_LWqQI<0_YDpn!gTa+C7Df zmrvd%n0De~YP5Vb3g1y>x)h^NY?|bJrX>=gz%=8E`?}NoBd}p|+}28Wv~=pc|Mf9& za(rTpT(FAAq=DMDv^^@wxAM`s zaUsA1JDmbIR)6}kYVx0A!4PbyF-Z-v;hlM%Y)RF zwqP>O=80b#{emtVOCcbnN7E|pKlIbpYK-Bf*n~~ZRmWt z!2?5##DgG!I|TBGZUJ~kOe~Yq$@Or6e@p6rHAaM60d&;$&y)9`Jx_ZBA296cZRkEN zBSpQ_KmkRtNg`9|!C-}Y(Vyy7xS<~_z`_owY9^>^ETHo)D6$A%KTCVlXi!)~HK`LH z73IcZP=A$d8)kp5S2lFDFKT^au{K#~OzzUCb6o1tc3aaT;ebJSG$`ohDQ5b<$Y2F< zcQl-x(Q_rg*y_Wc4teM}(-c1~hXycL9!$RzQF>CX7^s@m_tzIFH)iQO^8~TCUSrpy zc}QzlbG*dJ(Hwq9e37bpyDz0-gTv;)U9$Xkd*4#woV}%K#p9&T!bM`wSrnPhtCQZh zc5pW^+G#HZ$*DY4hYZ1h*@I2a&v`iOwY(OdhJv|cOHPH(vUhZ~t;%dN zRO(2O~2{t=gFkBR8U0A zFzoy9t2Ic*dj>ziy9EEz7GU5HJY~zrd;3l6A$tE+WT4_S?HgY@vI(7BYmb~84=Ry{ zPqH|_X5zh#va{w5K^V8H{C`i%jV!kWYw>_|(4g#dqz^SZvGDKg)Mj@0fbgmw2=O~t zq<0$^jb`tI^KVmDnBhhTdOaE8rp6xJ77qO!n>tS#G-ZOz1`HU+-O3v=0_e6c$4iUu zQZ^nD@=XA3R$}EGxtILN4~7KABz)~(gWfVgO{+uE`zdM!HE3Q?>Z*I; z2E8!NW`nMB5wm7ag;#_=qFYCwycAOw#E)UuP=G`Av31~CY42#Ac)9p|n-7@#xm#K^ zUv+X-QRIwbSF2hv_LowMm2H)vhlF#hL8Llk&F~56etz-mbd1x@og%U-xQ^d3mO5Z? zi-xjxHDn(|eb%v6-R&{*r~l#7LDuJgZ?d_e(aKy0;kxNAt=75);+pL6e>FVk;=)%o zuo>bK;rTEIca#Nn*5l>S27fex6z{Rb(bqMlIn0FY0O;Lt72QHx)(?NkmOf=-+=g0= zEVSquo==lQjRFu{pXqeK+T{>oCJp4Ee!c6c6bxl%j(E$#kD8+iL@iR@f>ovUgeiK` z&5IzqTXlS1N1bmP^-ikY^BF_>N617J6Xaq2;>a=q%Qw*nC4(nay;)L@TOr4!z5!b} z4tvQP=ePdy%t&~z+QaMhWC5@}PQD-=&Y7km8f_pJ+6|7vNj)z{E-njdWD>fYw*5!! zm!>^$D9#JFMu)!n1!?{z_?__7E=NVuQi{qOs@)k`g*_zX&``A`Sd7ilS20fcdrq+W z0nM#p0UMMbgk4WUs^;`s-&0n&Jj`z3bcXuWIqp@zQ?hEkFS4G}T{xiY4* z!;4lemd1!)FzT69WMjD}8!#c64lRj@GcJp98$H<zNMi$m}@pc^IdEdYALnO2uNOjA*rc>rlSy|Hsl-U>x%_{c$j^P%p>_-$->{Z zKG|Sh#&!Qk=uC6KWx7qYy=dbHpf?Ojd?jEtA7s#5Mf zg~pL#mM;)Jr`KVD?XohHm=(-`sc}Y@%mS_7l~klfR;+U8);x1ZsC>3B&Z?F%E{`pk z%Z(h6csEjnS70CMGRGxZ#)nEpGo*~VK$D-D5kU~b3jJR%0HrdkGP=jt%vuN>)rV}_ zWh;uP!5uIi8`UH|99cl~TF+^`hM(+N6$j3wKt{g~b>LHYGjnZwAIYLny`;_G4-c~) zJFjIi#1h^1-0Gf25g|C+LObH*;?baDDFM2S%`k``WBF^Y6c+CmbV0738S2*GpTJ-o z6r(znS)WklrD%kBx}=XG3mnIGsbbaS*2aUTi&=-g0zy}TKGY3}WPhho6r#%S>@LYZ z!R*EL^A5RW#%+4e(^`;$Dl6TMMvz}Dp0aFa^DT84Hd|NTMy4e5S?#FN@gXz)-r1?9 z)T)=WDQhO^6RHGFjTXvQ-m9r;q(R3(xhRrh`JDY8*%zKGaQfAtcO-`Q2FQG+GNPn^ zOWCa5<(}QqIuNrf+bum0pj&;HcKt0I%C1Thll0XIe7T5|IBR8h;kOlPj~B771_Zw4 zTy$4dOZz%ulHYmXReFgzf+6_6Vn;GLYj`l{3==95J9K@{P}kU0XNK}Q=DJfBqX?h_ z_8IWrQEUpK2dk(u>f!LIKTj0&SW`4YKEpTjfwO*P)`91m@i7|8ratGd6jB~bW=_0W zL|PRG0SSFV`50hgTW!uzmm^M>ufqAL$<9V!O3n#0yRwpWST~SJqewE)NDsF(J8lJL zb)t5}M`e5x{aDBKv{z2uS?(Ph0=5ci71qqTpZ+AEen{FAN!3980KWTKi)@XpHJwQK z)Zs|q^~q|F<>#x&%bYi!ujA#HCdDWLQ}$_6_{Vox*LGB!eH}$p=03| zIDdh_yzOUpd)`+L7#!Z1j(*fb0Urmvo!H9t3B%1D%xPZ|cRsX8QNkav3Cr`%(<6Z_ zJC26)3o(bK2#dm*66LGb>VUzwN0md>qbymOd_m{~K8 zv87l@wv_=!Byl6{P*y4$8%r^#+WrRfr;e6`k{0KIoRQ%3vN;%A`ZPv13eZMIXNs@m zNWmU($hpwm^G4Iakq@mGO}J$*42hb!-pLH-A%$b%c#gpBNO;tglM$Bj_-1Cj4p_L3 zufMsC$k+uKlWs0ctYb3}8anLViDaNrj7YTD2@4QnGvq@#k+3Qh?#WH8<&DOQDsc|V zph2sV^#Pj>k%I-Vj~AEr{H#VQPjH&-k;gS_-Wo^&pXM@jn#E{N{FXl&$e-!I^Qj;A z4g>7*ANZ-FG)r!qDFb44a}F+byh=bz8fXujx65^gpE>K+f6u&;YnKoOAI`!E?As)S zz=@Ve8600m%X-Av!I+l-X+(9_$4SSo0N=&qV{u>^DyYR$y)d}!t;ut?y}+`#nwq4; zyCL%HlSHMF{i%)V$J2lZlE*80iGB~i=?LFxkLI4l7T4)-*9H;bBY=a%M1S2Qd-ZRn z22}luYjdE#^soD*Q_>Z4*AwHo(t-7Grt}!c>AQ@RD&!LKPasjub3uhP0f1NFO!2mY zk9l8Klga|_cSRrXP6anTua-lvk3uEh1K1(njB8vVK9wNgsvY3lp0?p|mecZ8TZ*PUZxuDQZ`RrPCv&FcYL1*~yko`b z6p1KuVVz+ZP8YcapfM5CzW;xb-wqWJ`9D;dP;L%N!5r2}GDqX%vq2eTBek^M^2` z_6b!~sT!F5t5Ff-DOD)-z=$n>9FAi}JD$mzj(%oq5D-+I1%ru2EHGn1^TQYW2X^6& z_;sX4{AT*0^HV1R(@Wl-BLrh~YuIX1kpWeJ1~h8&5Yedo_X&(^=UIFv)!uvVeL<>5 zRa4;|XbCJ7=pX4e!a`JJGwDm7HWYHyPm|5a0&C{yKEE>&zyO{tXoWL8`c;BGtriN` z!I}673%E^_B2>Pf#qKw3#PjJ!JBxVM>EBHo7%-2fRn97*%MJ&jp`NKDq}|H3^HK3L z=Sj6HCRN{lD??o%O)+Xb9E8b?Zi_^7PM~1OjM{`_mHRP_yM-pWFILoL{a_rS6~3rl z^A|?xUdSy2({1d1+G;Ocatj&_KVa^*k}mqWt?2R|G+6jjk+zxH+(SJQey`o9Se1`D zG-FLt)ADK-uj1hxn>v&JZ~}1Fzqj#=vdDU^#XbQt%%-c?cw>ui3p+O!D?jd^D~un> zzdn<(#UFd0dkJ903zzszi&!j>lF4CULW*AyRJva#XsOylKKjUj<`2QJDok1oLu(!AvN0s(g)8n^1;MARG(V;hqZb;TI#Q#} zxVnvw*FT}{Fwk32VQz|_v-l){zBY}ScU4o1QlG7 zLqyDWd`sPfkeZgPP=w2mnOkho2m(LtL(YzX60$2(;f<07_mDRHOq6Y_vY-jGT4qFN z{V7!R9R^FWd}n#TUrE^$ijj@b5#!^Q&+Qp#M0UIm{HTc$gG#~bNZP5}!jTxf;CrPX zeNPyaQ&_aF(?q|m_CQo8;O}kac@*=Qi8Ec_Ss%{NI9YVHawF6ABTi4F)^f_+y;0A+$d?%IY<4?BDMvmp(i6Ec^XELE@`CC+E} zds<@~HsL-llFpp-Bb8{InoO=HK}f__n2~+@9&{pbdp8rnXRo&yo;t4C_g!Qhk><;^%IZTD5qNb*k zN#a@#pd&nfHN43&T=`>}v0h|&55!~~fiCA<2n?^<$T#|byKWO@Jl<_y&uxl#_w`{D zh@BAz+)oD#wzh)*LFlmBzXqHFiL3vv`ma9}FCR?ce-tDNTmcx$JpE@joA{^%m?VdX z!AJtXEvY%b%lW$@po)!w>i>DUM*&e>Af55QgMaRB537HQ`C?xK9cDi8?AyPtQ3eE6 zwBcjdIxl+m_EXHQwYT}$JI;Y}7?GBYGAhX6Qpkx26{@cou>OPIHc!p5F&t>rtu+4$ zsju^yC&!EL49f*v-8Z_B&Su)zJuAO-%4S#Ff^i%a=C4-d#yUSO+#>eW_F97~)6!AR6I?K~Uim#vcF1_cU! zM+0F(jwLLP9g^Od4`}}*Qb;rO3->sspj(oZTJ|>K5i-_FG_xOR(MkSA+s{H4@0Qcu zsnDU~di=U^`RnvnzW^fLUW_s*26Qg;;rBa@z!1{kkvXwq47yset2|W5+zj!%4Wwr9 zlm?&$or{4VZ)hw0CUpou(B4O%IA;8u{??}?R)*@nw@2INFG9y=<6+jo%3kqE%l%LT z^l1t(#1Eb#nOQQCkc(JvqmsMx#?W#jFl2}ojzevvNjn9)#Ku&HK}|C!)!tUXVBPL_ zu2S6-c+RpjHEfyLp_y^L|pxQb3|4U zK;EBZ1F8yV8Adu#R`MUx3?=$!3PP<)wq;GOfsi&4p7iN^gFLz`hJ@Xi36w-!jN>;o zj%;oS9c%QkBv90p2~Kf5w+`=@@#pbKp5~t!B!osAcz)sM^6vzCXNo^pTfVYg|5~Fe zSa-aRFQcuP$v^o08@4`bA+<%q_feNEPQc=TTYX}oD7L6c9+ZEAq=!ALR4nu+)rwO) zXR(Th0CPOx1{XTi>IH~rHAKs{;BzTz$c!-2E@n*|gm;&jl9!%3yO*|_g^_5}DnY6^ zXdwJg8BxzJ9$Ku<5KcU0Davwmn@sdC6dT#t4^Q{s>DN#4;QOjO&V`%+X8NR>tR~i7 z-3gTJ$vNz;IFprKcv|4MP>@RHC#_Sm;ntR>ym-K&CALJh8f6;3Ju})+40MTj4Rdm5 z5FqMV=LXM(iiRA|;}pn5iCvo=dRi?|+cZ1c>H@TDrI^8yw(JG-C45F_k5!lU+?6jb ze=Kr7<8&))QCoD#OIf32H^&p|kMMj_(;xr#8&M)*4GHR3WZ*=QaVuvC`B%nP@0l87 z@NFe116P8Qiy`_cW;y%2MiR!aI0SOv2uqf~u6#+QRG~?~-9FeU9q21;lDS%@SD(+@ zJR1;7by>Wj3XbfHj2y@>4j(GMo4k}hS>S@I^!ofNUQ?;>)>B&X2}=Gq?T<`9SzA|sjbhZv(5yDh}7h)WrbOXgc5 zOxtW>Z-IAnwd%miCGDj-RfUj4*u(Pe3iej&W85MMlgKIvnnQaw-J1M{L5S1!TLZl5 z_Y`b1_4Z|HKxYp)hzL#e+nY4OhixcS1Owj$FYXny0~KxL?VVEIxceM$L=b2=FaX{` zt+XVzAGF!H?>*!-0*1dtOtO~`sH6)*AWWdli}ks;7-Jglk(3K@Zv9VcN<2Q&HnT(r z;JiBYv^j^v0yb$cG1jrK7*dN5H7?sJ4^{Ry_g!lbJ&0pOw^yewULyGpE^lgf+1S`b z36BVtTmT~z;?W0j*%KH*JpT$bbG97dFB4KE;rURbY+$_99R`DmunS3CO9Z@dT-xU= z{WT3Ru6q9+58rXA0B)S*Ka07C5_Z0))qao4}?Q9>NmZCYGo z=iqP}M1KcccI@H2ALBfZ0ko8Vo~l7t5o3yzA&-_=g+z|yF$K=!UM2tU{|Km_%V>S7 z%>7FKC$ST|ZY@`xoI@bw4~yjOuqj+nlgr?L2iCbiEWF?Fqkt@vw`&-dfH#^g7?$ow zu`mV6WTCphuL>c`E13EB+ju!lq^M2g0x#)8J?F5XZo)%X2J@vo-9f%1)Kx;+l0<(Aep1$^kaD;g@m zK^!H&(};KQvmR-LzDz)XS z92-2R0Rqde?auYrxtT_QSR;p~$T!+s4vgcgNf5i?kgD>`v9j#WSbLM}r$j)92nk1mqUFjVx3|pxV2=sJ!%i?4UflLV_iz zDl2{>9JYm+5bb_p_h({Thr0Neov$1rXdEJ!2q|(>Q76W^#ZYx}*(OB5%9V#B!+1k! zJw!1Rsrw9GgK|HmBn`3Mavzd`C^Q|CK=u^oj`TE<2;e&$Qry8Ju~J%r#~7KC-dStc z1~{6bnc3NP1+Q}z&S*_}>WtD03qVV@m>{U$R5#h*&(R3>SK!kdzM{jm9F2mBO?Fw8$L#MUc*YX(o^v5^B<#>x8 z6%FT9QZ{~@yk~G*4k7>pE~z3!sNAQ*VGrxZzo1SG2_DJIAZMF`;E#O|PVQKK8UOT5 zjK%g9`#>mo9>^-0kql_jSnK*3Uq44nPO1||oH>>U{6%*jRD!BDRAQoqk&zzq-vo^~ z&qTok#jtOrBly1G$CiAER%cH-{ghdy)zl`$q(Asfh&nwh_99{hV#t@Ch4>9;Q(i?D zhAT23Wq{>vtx%~}1LaA%-r@M4MXUZq60Gqa+A70< zU)Onk*cZbd(H~xvXyk-NmXO(Fmiog`Gz@cEym~WB45Q?r0Mm#OmfkA;_#1QSr}Hr) z2kL#QfIs45@0W%KzG{N%p;zgNk9Ye~nu^lve4>oe(chwn<}optn4`V0<3KtxANaS= z1eW!SHy`gBU{+!7=SDZ`!X$gUO_LIJF-`o_Y7uvz4zak;Q{B1Log{qqv0lNVw?g zHR8&U4TFt)F3S1TCz;W{pGV_{kn233K8kgojrcQKc9g)_ue2Ywy7*B^f30tw)ps-a zP_+8A`F0!oN)YVi&_#OWv<)oUdB;7LWxX$#7GE6HjasEPM!k^x@^dR47C=0WFub1W zUU1bVc;kT$dbpIpn+N$HI-o5yra|x|szCGx!4e1vr!y>3urJaNr91>8-8nYR5 zfD5v_Ia+L{Esb(0c?|m`lvw`}R6fdl-H_4vmS(!%Imf5JvZiJ&9R#DMrmh2|<;>`R z&6*CU0UXXI5c2L$^xqx4-1pC%e%lIncf*gO^fx1+_3rzBtD_>wIZsMGnj;+ic6Ifd zz2iNaclCi0&Xa$Oc)L`E&fQ3;c!%!djYiAEdD&?@{lnKwKojOm`OtDvQ}zK-cfV&T z(GOU7{aTKr9GcMiQvX}3zw@Dh4)q?WHGlj&O#c5Kx^*+I&+@JZ@+1by)BW7Be-FC0 z6xaAJ|FL`(ZsP6aeDlmaw{iSJC&iw1wKISM)?03XvL2-}NwGeu;*WFpGVXaCR)aT< zbB$qnMN;KtSm$wb^|*t$i^p)EBhM39Tgx51KLEbLU7yF5vwPRFn}8cF z$mN;etp)$~YP0Y~Ud+Ff2L$Nh;^}$g-TD`|pX%5iPc$>uckZv5XkF=M^JL#+_q{Nv}2cp;rhO=z=Dra+3S2IGY{ zkWqltoGC&V(a0bCI>xG;h-Wj~?n!E6RuIkh5G`Y?;6M2@CG&UqSkN-5f}d=*SpQO` zG-JXP8XDc(#4H!dEZ=vb32THK9L!YWG={Zo2P{1FU18>)m~(DDJdn<*iTchs#HIOFEC0h;$-QsdH+VK-QkXTzCdPk{*kYCZB@|`q~5u=vWDrD zQ$O%U2#ycrR5wX3HYob|q4Q?|~(X zU&>f7WYMV8lwo};Lo$sahp#SVDO1vf;UV`GDP^P>tEuPiQBd29ZnWJJD!69fod%v^ zyJT|JRH4E>pJ|CY(@1!bQtQDG|?_b)1$Sl_KPtPdm#|wucCU%*X#{drMmHw%U6Q6bb5a&i;I{e zT^!DCN_}vYdxdO!vt?QlCo^}?VoRwmlgyo2ZJ``j4avBM#;PX-k67wajjT)vFw2v* z!xWde*;sYpvT7PY!6cIwz}@~V-lcP+4c6f$_cZHL*12B(idI~yWowN}#~k`XC*tsx zyy>elt-?=H8e~3`OAgj?)C4xO;i^*JokRzigsFNJe6{>Cx*>_|CA3lM30vVgRnMVI z$L9TW(a6t1tV`2b3m<6=$VN(P^M&f|uy(^8!55s`ZRis|j;G%RS89C95Bt*S<{Z~G z2>uUUZyDA`*mVmhxVyW%ySqE31sWWRyA-#e#i6)ckrt=8hN8u-K+yojDen5E&-1?D zb$*=lC&^^ynoMlnd#|ZdaOmOV#LujCdLU7EWBdX8dW6fh&TpWmK)vHY$jG#6l zyrsHMmhEINh<`E>oTI?*<`8BKhZ5?YL=UY?rK!CxVgzR#CXFV`l*BBL#at8Rm*s}))})qger}76#c`7bIe5!92r}9BU)U3A~Mlpgf9NUv`jC5jEwWxSNp<^uu{Bl9r)2IqFs(MuOnWbXyU^5I|J0MW zElCd+X5-^rH5WcAB1eRYyhy%2wH{F4z%0G6EGBQoreKePl5#EeIbb*2_O1q2Y-n5H zw_DJ3%W@EMN9wys_vFeQGq-N9Nh6*733|)jw}B0<64u@&XP@4XHj7Lbd%BkL3cQ1& z#jBC57Nf3J5>)iP-oOe@Oe59leO@Es!jdvtZ+m#4@t+%BJ7o*yI?cp?*$z z9=C-Vnr^NBcj@dHe)vJ$16kR4xmg@HGcyZ83E+nvFPZr8-=iM63`;g30*5D|Zi z|8C1)O&2eXt9n<2JjA#YVF|(C3zn|#{_vZ!`?9x}5^JaACP`|r@AGG{=9P^_n=})+AFV;{f57 z(FW@%>DKU{NK1UF=Pl!?iyQLpS9ob#OZ3wlXbT^f_(~gYbsHTw1~OP%MtMtf@6d_+ z66@cEajJU-pzgrd$V5&LAaG2BE^Lef_7{76`=_!#3QgWA1w9WZqOvHehEJoQv>%5s zLg!BwU%#2*4}xq7Zoa3;0w?Avon0s%BwHEozKx>M2g}Gk=4cIWCC+| z)0ksKvabx-!QG$zuNUAmHs?ExvCd@7;!hSIiDzj)@XnK6kYHL+z*03#3j+C4)QKp% z7*6{yOUvQ93}Y>~<|KVQQ4Ebvr))zF<14>Y#rjb|n07*Cc?$KN6`x?@&+QGtIRp=r zARvH;L`ER_U>)%jo!_ykj>0g{Cv#Wja$SsTF@d8KKZMSeSe6zHx}`Nd8aEv6QNCW? zX#cfe?$8($2Kek-ZlZr`6TRwH->w?C<(e zijQX-B~tYzuhT=EVU&HVx@6a0PFs5nyfEO$df9Aam=;mMG)>jt#W0^Uo%v8)f!a(r z$-a;)xK%s$_-v&9 zo)pc>?w-ndWBX8~6dzWgoTU4nmyP|fp#0>9cRsd_<-GZa-o?HxB3M6>`_0KzS*)cY z3fwnV1iMNO*pj$vh-NjCP<9aTA-(v-@essc%LZ3ND(chwrF#FDd{pEBJ$u=wi`e#@ zq=v>C?|nV81B10&6?XZe553iJ)q`y4Xw`xQ3w&Jc5}2>hg!^S=zE7AA>f4Nj14ORs z_!yXMjR-4b+%0cY6o1Js5)2UaBFVx#ePBdt#d`OFHf%DnBp!nakEe}f*@=t4uU zs(-aIG}g~TyO^If36;?MBERodJQL-uyiBH~<0@B!q-zG~r@#2V&OXefSi7ihM(&CA{ixQ~$EsCPWQV=w z+8soAAZi?L(Vu0PtqJ=C$CXd&#WnTsSVId}5(P!o5HD=p_Q=_eKcN?SaP?TTokZ-A z?6e}tVdU~%lP}Q$9qk|Gh4zkF_fHoVPp8`@q`AZbg3#+i5*|guLh35!_BtvaufAMg zdW!`d7lyp7blv%I&pI@t^q;L>Uq~>k;$28cw@&6Cx+A~7O!VGUxBFfG^30U}1#23R zSBvR!=h{QN(}GQH8eV7wetk|i>XX5NK0T|SopUZZ{OmfV?00wPTvW-e^Xv!9*5 zp6Czvm1DnNE8bPa>D7qP(F;*+xTE_9|NQM_M~6$jVOS&{}R1|w>8zqQ0b@W z*By(~A?+_Nt?J+X% zUP>@)>cy5oE+r(U@BuokP4Iy9H-?TCDcslo&$tLcWQ7<;ssLzy6yS)Z_pc13VHJlD zG3%*TRwnx;6F3l~E_2$mLEyLaETMh-5H(%8JhgJrmHWZ<%P`@Sc$K*5P14+X7x|jY zYNyxVPo*L|r(Ex_9s&ksL*Nh})|@qnI`>%9L_3FyaTrFsa4&=x#)yJ%In%8DqI&2139P`6jjOU?t8aXLyR7RMVKU(NiJVHl z>?Rr+mX`#ud~6r}E^~MP7g37}uYKYK-<3aQDr|9*|3xT3C^S}2AGdr(%e&+rsfj+H zp_G8(Z(K}F_|#eihAPh&zUO=hlE=?1%M8Nk1y(`c`Hha{}2?+GGoY_a$HvL?!q! z^P;7dk22;60mKCG$ml|38A_U(ecj!ZgEUfzKqa0}$DBK|2mwZKT;Wi#EY$@f)+Y3z z&~h6bqeSE_G!fQCc{>C(8OVT}#Y8S#usC}GBrL|-_IGNKD#wbtRQM7fiRc-3%fQ!S zB9_A*CNfevGrhStiAq=q8VNFB6W~ipwdHqwzVRx1(Mk4_w}3toeg(guN}WouxsR%% z9-&Y-P%Z8rqdV6Q3ww+w{Z1F%q?!=OWv$B#QaEqsa~ZAp)Bn5D+cb>XuyiGsl)i-I zXZMq>5Kkfpptbc#f(6&rPc?acQV=-QS5Xwn2aOwF9he!9f_6cq)FTtw*Bn^5GE^`2>~Y;HQwf{2To{P#$t>i3e(b z>^%tLuCF4&IgJ(wMq>{@wGT{qOiA$2ia;`B|J=xMMvxv3sB2Q|d6?o9Vr@`OT)xne z52wo5=S-jiJuQ_uLVxweaegbG#=7~QQr1#B&6_ncyGkTdANxUrrja0}th2N}1rU5m z3{l{rG9>aQH~?ILA>el(RFgQzhzS%KilC!huqL#55U?ywZLu!3|Iu_Wk~+DYo2q4K z)f)>obsyYVUV^VVO3#VW$rv07L`@yBZP>-|0LPDK;it|sS2!3~un*0iIQ>gKyVVzyWRZ5j>6d1X$dP+kpD8 zGc3fGl{O=)MZ*#07?%V(ny~Quc@|kqPb!6ETGdbADC?9tart@~)paw4yqSEQe4L5a zFblSPxc3*sbieVB3*4^jy;r!oJpTB5;M$c08WMC_V^7bu4Ub-rbuG-2Y?^lJ+^kP#>;Sy~2n2-k^triql~2{{Znn+D#d>@qFU* z-qbXB;z_IG66eO|pOBJweKn_jnXMf{mTVaNlUQRY3mIu)$4`quFO}Y(%25Fea1r!gi)1CV6Qet-(?j3jsy{aZYmafA9oI&a^A?exDHKpb+ z=lU!7wxPLO@%wM+S^boc>D{E&%;L(yb>j23uf(ZRY7h5~zd$agf4Aa|w=gQp((8Gg z7kTm>`I1CNn@kzc0j^No%(bWvTI3Lse6~TZr|>%Abw0LULM=R5>h;%>G2a@(X|%t> z_4ha?r)Wi`0xh4uo<8%v3&gBW;*2H`exa)C#7xJwj$hpGaAx}^kaE2?5tPd0n@|fy zP_s}%UH+xaIxf=Z=#zh$Y_$G)uVtLKl-AVf;lpPHevRqBqG=U8KXpo?`-z}d(ehm< zU7jSfODys}oh&sp{8_#crgkHayd!=7mHw1vgg0#ixvpXQ$zVw?oj6P&J`$o`q=O%e z#C|vkjh9RV?PkPWUqGK-W8)304rOFTu>?ZMJ6(IlU=+oTts0i^dI}v zZ;W(VYE-a_+L_#otkD_*Tm%`Ar%m5&ISEE>2W6T0tcfKz)-kf(`BD=tL>`b(K(;#C zEGbXN9wxZ#v}ZP2Ib2x+u^%2Y(lKKgC08>Ir>qx;Hi6YHJSHt2#nWVsysN9x37EV= zVj`glnr9M&ePC-Vy%M=w>`ilOAtAzT-eYRWP}Gmhw6sNn0%YXp)Qgv5386*fZu+B9 zx9L`=+Stz3z7%UK#m)OSw!PT7j&3~ljZT^=JM|&QhkkBu2uG6GHJdy_)pd3fW()7l zX6>l4kfN>`v8R5W!|e+RY-2q1$NusIZel4j9-&i#*dMk(H;Yo&Y_f2^|NG#}@~|D7 z?j5S+p7yS~1n!(alJ?Ral2UR{qXyrYTu(O+;?=A$JH`&1tn?_ zjvW`y(yHdrtf@VKFA_CpO(ld66xN8{{t4k66$W+go_RB8l0-+eNZ_x#hqQ~sq=MS~ z#7JKKp?II-&^G3LLHt~p1^RZ3xc#7fk=Ok6L0LfsZ$AaUZg`zY%;S3kfqTPTm?;`62%XsJElaz{B?6j&o2qTI}_^XweQflKnF*xynHsX)iE#Vy|&$c7$u%+ja++yOcq&70}geYV5iVB8jWGyNTYoHjug zP!P6&RStHPl203jKUdYa!95xjb#CQds%05P9ZBQSw@%`Hu_7h!0)Q@gsQUUo5MJH74Ci#&V*cMw*v2PF)-KZ{PJ6R4Qlps@o0F0#BhGjSvQyJz3%hSHg;~BC&eZ8 z5e8N@!w(cM2?Fgd*~WV}*pFS8**Dsd676Ir*(2Hi7uWOhX0-G>*K)xBP^$YY3}yrk7d!DD8AbdA9Z3uBwNURlzoAz zL5(u+GU^@?FZvhC9N~4O3~mw>;I&PFu$Y`aSxHa|A2Y9~mcB@1kayEm46fiM^5q|Y zxVgDW?}xuN(Xo|(vbVj9Nx|pKQmB3&e$GC>L~OMNG=Wa7H*D^_v;vAxrO}?B8ZEz==?o9!kwiy1%k3<6-Aj z;GyPO@BhLQqVBZYfa_i!>hLu`EQmwUYS@Nr*2QOrG!2xuE5IdTFd*fi9TMddRt^-w zqVh_)1dd?Ka~}Z*yL06XH)UN$^C+TR!^4#=0y}*5>Eudv{-#Oa) z!x;||a;>U_+g2V>d2Zi)X^qeT!r*-p(jWpnIf=nHm(anWJIVtN;<}xN#i4tjLsC6T znQ(i<4e7#sd_KIGhqfUo>5r~VqPju1z|njmWT+BNc$8gVjWOy6;IWZrZzgkWc#^Nn zU4mmQcp8ljuLrKVqw;rDC3ucGVyvL%C@>ks?gPm{#^1qE7Qq3l{)G~4fzNhZHIXvL zz|_SKIHd#F)#Z_Hm3%1Gqn{ku(Jm7HJ9?O*0(BF6WndHW`WSWZcMfS41J=SAo;Wqj zP@|7X@B7^K>zAuxu>1WjcAMyD5-2P}zGf&jy8JmB>;8TQD^LuqaKfahI(KX5OVwZU zAvrUG>!EemKCmngzbL2Ug_TLB$TM1e2Ve+Nx8^8q{Gk`?4NWC=r*%T^X?snNimD?` z-+~iiW0%{YcUy^#!;7a3bw&~b7+D2kg4k%L0cm!GSz8%_n zOeP>g^$jc-Mx;iEp80VRA_B;fRPu?KqQA z#^M*faSJq|0PGn+hmtIUQE#~AZGmEO$w{=DMQiB?BZ{v=ARSjWcYwra6!VSf?Vz~5 zxUnK{3R01_xsiU7{TqUJsAb`=%a?fKd5MS&E?(xawxI@&vGC@2vN&>q80hRg5*as` z)5f8FJz48JhzOb^{5(=iGAS4`KIu6#{o@R^1bQxyF9m zzWA?JtRQ<|X}z^%O9B)q~x2nn50+jRy4<&rj%+l8^|bX;{LRuaKT= zg-@Q6OOBot+!>pC<}`@L?AmRFKjC|7&rkI=OSSkM^c2}@p}8y5OR)yZ$#71e^Bq(E zSsU074j0{-QPUD>c{$8->T3r%eOFF#3>X$&mti&qQOMvc<`1i57z_ zbdTa{J;_NfKOz4M<~o?e>s}6PN>hPKDAoxwa*3!H7gG{sStv6)utUm8g?M=yF9MGN zeNl3P$-dA5urxjW4#E%0NK()@1P5_6yf`fmZTpvL&4c8waXojDV5E=@jwU=-bIC4FK=S#3Q z!FSxk3J0nTZh7yVyj>Dr68N{bg8TI@r<4#geJHRcVt|Pz5^iakcPJuzqPLUJ?n-r3 zXcz|XcO8I>QC7fLxtNU!STWqG-YsE2YCkIS3|F#wOyo?pS21*J*4Z;U#0SX7J_LK#fkxCr>Ngg{=Uz@UkW(N6u!QbIXj2RU-li$uttEE|dA$ zw2X1PM-1f-47voXr~A>m%XAwCsXIz()%Sk0l0&eBZBNekIJp-1&^w%%PFQ zLi$w2ua$1`(OTLu#O2oER4Dzi$y zrsMbK!B0HDTlVTpXGGq|bdew{0xIo__)9Nln!VhQ{ec8t3w~Ex5ANQp@T8ADPp`po zRl1*CL{;j>U0BigGdBedj77^}0TXTK#Uis-$S^m4Z8x!z*hpQDOo%ASSG|zK)IZWM zv7Q8ZB3M1>j>AiAveAx3LoCvLA}Gmk@?I)oGz(g#ojMqxEq%L-s3D*jHNoE%$p}8p zgD(nMrsSDACl07}iTxH`38G01ejmGdWO14HP2(B zC)~I4$d7;bSy7gjbe9mk=*B?A1Z=oC^#QW7aPORWW311^=*U5hh7I-XkU~ukKd1N0 zgws3;7S_bE#WLXE1DHIYRi>LwvI~bQ@_>{mZS7SmFmM(Ue!_(;e~=IaHC`BX664_5*B@@cSF9LLPf z5BMO?P>JL$hE@x09#^ z0*~8)Xs_?lFPlRhRYwCki|`-5SS#w2i4{-PSCSARVosGF1k6inzWsD*ZcK1zC!xLi z%7hgfZJ$`+8!sB(5a|yE$cQ5X*d2eek2ou?5W}z#4j>c=##uD___^^*x#Z`@fyEpV z?t@?O5@jTR7+JE=CF3K}`gK9m7z`clCysL3yj<*iAX{FUefx`V9)Kbl?b60Akj{B? zt8hb%Ckkc7l10oiO8qtlIr)4!wmki%aL_Rev4|T?Mf-(1Z=i=mj(i$pw1I%ol%hDC z@zC-^1gHLBR4DA`pLiw|)=sI2`~KTk@*+k`$d5$2B#s?k4yXP$*8^vEC1H*@a-6l$ z6TB-*1UojCH+I}ASH2lA{cC%Z6;QuJasL2Ej0B{h{)7*m*EmV*ENxE4KsY|)5G&%2 zpuzz?%osxcAE{>k=fF%b09poQ_x$ zZyK_FBa6pZbVCgX_pVwdD)5APBye;VaeeW=-zo8INg>Ta9o&S18-K)~MR{qN&zjM7C)~ZJ8 z_V?6PD0<%G?Z01(r{YMBL=vDKy zKYYQsV$xVVf~{;NLN+awvyaFHq$ZHQ;Z;i@<$mb7Gu;o8Z?$)|uREovmzj}1_B{XE zI+GhFf7pVPwW`vlQn$FhlWDq}o@r_!K_#6<43$!WRvPSI`=9KFUj;O@j))id4dc&E zt=M}6l20%t*o2$9rm$z$x$Rt}M|auY>Ze-W&+8G}3z5TofA^E<8=J6GWm5%&n${`T zEe2F?4zF~(P9078ojwoC+CJXr6ZZrRKT46_{;{bn*)s-iT-Fv^R1w#|ZWA9YSlBHu z1%8^agt=~-L;`;KydeJC7b{}HGAki79dfLJBdZfi;)LzRDjUEY*~PtX4MgDYLSh*W zCuYSm9XLG+o!x(+Fm=R?M}(`SbCQxlMAy038OjpqbMyv8k}`+NAqvV^%ppuy7GbGb z4WV`%Ak|a;uNPoOkrfeSr7YhyNud_wX(*_6wqi0+qhj%y)-*tCKe=Q81HWrh!j7jO zp-e!`34BrCPYde?5s9p3v5g_Q_mD%XAtA>t5MfUG$6WGlY1AxQfbrIZ@Xp6^2o-Uq zsr<4imkj&cmDHBUq71osWTxh&p22FnYW*dtC2K?~U#hfdXdN3{*$6hLKD(DuUR7)l zqubF=v^jyVGa}h%c)MEGKJ=1H%l? z+A(#%KtLQh+TXsJo-MbH#wOa8qf;aO1;Wwr{vgBkRV}0O}8>7SgxAm!%e3FuotDZ!d?jkDCyvUu=8J77yPswb4QVRW$sV#Rr&~ zoMI@dA4W{7rV>Vls~q}L!M3jz4H7x3JYmMpeP%+(II5nCeQfrH-5?3<2UW(80$0k6 zRey16pmxTMvuNi{TP&RC0!{KsrS35cv0D4?X&H7&_P^)U4)a(Y5o@NmMN+*%;3;>e z+Q9rAZD~$Jmxy@w@Y(4rN&ke+{$YLNT z!t$kY5Cb+ESn+}L~ zHFK(`j__wsS$8=Ph_?+mA*dM$4`Pq)XP-9Kzv7k+K#i3%z5q!sy{3qqG!rpc`bZFE zN(I_Y%8G?;lk;iWAwLL;O&{lpAPOz(IOa)6Xq*4|mX=w@f$+kv9)qV36xgL1L)@zR z_#s!890_^a`15lm$A0<1OAagpFS#J}B1o^O@1e7kOGov}A{|L6`Nlpgr;D)lkm(Sq zYEEF66MZ?Jz7}xN`y9N_fm5M_eVkWeD!$QtYIIA7{`n2=<)Da|d8hDye`;i(^bJCN10%^l`aC*T`{kW9ta-_Rp_B5EO`nj)v zJ>h?B(;a&b&AYH3EFtIrQPV*+-f^OXy^jlvlQoZZ+%E#I`I*#$q*f#eNIS@s*o8bP$IJLx#8@VffUD_8-Y zKguEAh12{J?+Mq`2iNEiGj5-WJ8~0O?47<31S7-+)kqDY9?PK;#BvVtgPFqK8s-iG z9?{hs*BPYRS{bl{2T5|R@6;t@0F%R6mJzK@G$$d0DDTjVPAp<^g~n#sovY)JTee{Y zUWWH~g8veDR(o(6*07|+2H=qYE0K&1#o{FTM!AmmUKs?7{;URYN#Mltk?#Zt=|-gykOFk48d~c7$c!X*qiy4 zY`3MlX3yY;&>0Xb(x@;T+by|w=o7f5LP8lwzG37IBhf5FwcB5v#cw5BoqSeAQP%OW ztMk;MKc8S$uRL~hf_`^|1hRQ~5)6W2USmT&47#tK+gsq$l${^3Hav~33UJtXW0Q^C zGXpVYyX+1Hds|>eJYg-y6CX!f8nT%0(A_{82|f&_bI4bVWJ96O$!qR>1-MSbjYN@W z#nei3gY|utXIMJyWh&vOTQKi_4sonGBSMChDM4N;amtBfUO5xWcrsj|o~%@Js6k>D zGX0k%>5QtnGj6zD#mroRAlbFcvt|$M^JhJgJ8W=YJfh>E-xSGFNeE_tiDlV)dTz{Y z-X^#tZyKzKj~n!y>`K;(`}RuKKOIVk>NzUTdkezuJMt>98}Y(nbluy9H-_%7W9sry z`#?-pT~!L+jE)MGgkn+_HF_Ppyi8*k_MX|lMFzP`UJ;}_`^`v9lvb&5heU^MeA7Hj zOQD`fO{$Ta9`hLk&;I>r%{4PAgVbb!#Dvuq=a3AxFgJBsCm8jhY(bBX+vNQPE2XTP zzM+??1@>F1&q5*Mg6!jbmKt}J_vq(qEhpKi_tJ;7Z9u&Ypm)j{H*ihFgTQ(c^mzkE zS+V4EbG!-i1?xj(xP$vXRDwzY4LqwFcit&NFMl{-Mx+QJgY-`}{EHGFW-gv2g$S~Y z9H}}CO8=mo$wU?z#s0zhhNi)Kl)?IeH47)cf`yPkDP<>_IM!I5nvL@$ME5Jle1i9*G8@ab;XzWdQ@x7cgIya|vx;_~Uw1InZiYHy)fKzGpd@<&*4 z;K~*Dqbtd6E(2=+=2^kwNZ{6_Hq!K+2rJW^s}XvjjCF>eASO**9h zTui76oWc0v;C^tZXx7{e#0MEpYGkAuxn^asObUx+BcnQ$;j90vzF22%tUqb5A*z?l_0Lq;L##}|u} z;1>oYLt*_2Kv50fe@iir3(&jv1P$tyXnKa$heuqbqB-%Mbhnx_bT)P9z;PIBxcf;z zJJuM%Xk!$k6t1b~e(WZQ^VPAIfL;Ua*g z=!-)gG>{P$6_p}H)&BVMPTTU%D#wX$##4SFdB+7O*;KrrmH6q~gYhZz)6>(lD>}r) z9WSa*TXk{soWKa4qUcAACPt_fN?AM#%HT+VRR})8+tTp&jBdmpXu59Gy2x{y$=g9V z1N+schFS#9CT=7$vLF^7c;H~X;}JLrlhUfMkY><}UO|=yji!_Jhj8Wln3Wmt<<@ja zhqFr1nfGrr^8<1Xax^0uNRP?zAvghB-ZSirb0&E~c)hblZ<}-FxRDBv1L;uX0S%12 zA>zQn|Bwz@!+?$vSHqG)^WLwBC@u5wKDpEOq++n^>a@2LM&y4ld4@!@FYLTy+llJ= z`>+0(KHQ@b8#ose{X~$wo`>5`0Ar$>s_l0@WaG(LpL~@d7YAx{eOirpPsVAO)tuzo z#79#POeil-#{c6<5e`>@I8i<7l}+kp{}5$UluhMk?}brA zGjRwOtYKL*#a=y~8He;H_?sJ%J2{3L>3US-iKu0-7E`s6GR0>~9LkO=%vhD-Th;5V ztMpm5Q}U(xsJ@X;c6cy}4%WskN0QcJ5sB5x+Ztx|V?1xH%lphi>;9#PYACc%&jBA! zAymfcN5~M#8)uS{_AkrHB%0L;H7}ZijM}(mQDO9~VzDltKYKC+cb!XGG(l%$^}gUV zl_JoZ^PGk@n49G|)AQ!!z4?Gn@cyjL8}#-_3TLJ;|HAW6~>^G zDsRQBkP2|WX!3Asy6BhW5Z$nkqkYh)KHfz%eOdD2!q)BQ5rMa#$a#(jFW{17A>@;& zAOu-KxpOp+%*YIB>ZY+(hjD~B5VF{90Osp(kuFrrjx=l4aE3O75H|Q%A+}IQZ<8QW zK$a4Yq7GSOd2gkaW9XWc5%8D*L5u3cdRTPZw7pEQ!nCtt5zcYXAwdaAi3*M~l1CWH zGzf<&*-n;(d`kfbRW?VCt_UBsq}V5B*gx>86|C3fi6!FEW`;U#R!VDw{%*XtC*tCsEBX^7C7E4?J3 zKGW3ype)nY(H{W)T7e9>fz>W|U(Jqv7x?c!Q3DSq8OUpV1C4njDuC)caGBc?ZWREu zDv#^?6{KreCgkRR_|dx6g|@ zgSFOTf1>V?1l8>F#RqsH`4smnA>l>sCkkR&ie=3!52Jo_Mc8cNRgG{njz}HLNW!g+ zc9TR$93n-?ipsr_v8}Y62vLnl6nnbE8yQ{j}ks2e)&m+Z+YLlQ-V z7T>YIq^wNq;AQ8ztY9*4*c9L^c z6%mAFpGS6A?Xv*?%&&qgDAw8 z-Mz@jXEGur;(WBsLGOLn~iwcxR z^yD$92_`n4f%r9?p3jmum4nAyZEb}(L(1{#ht>97LQ&xyk&dJGwY(+H=rx2DwEXtH zooJz~$aCwKh)&E|S`k_LpIVe!@c+asv|wt@LB~Olg$|@2v}in&g)sTJ-8>eEDm~yT z044T1+1XP~7%o)C*s~oL=1Mr#WE8}C)g1=R)52)Y^3&3={#*0GIkKUY@>}v25YWBH zpcN8Ci}U;IPR)H?evLupIH0l~34#H4EWjy~HFV><+m=k-gai>msGC|wD#fb&jF|OK zmPRt*Shv8$wgTzdDzsj|Um=_qP=&{xhA>PdQUomG>KKwr5dkiW8+c1; zlcd2&O(9ZxEpbCz2-oNCYD2M*+;QwNKs?uFQ{p!srjE&6uUgo=YhZl9o34-XG4 z>1xbDs|PTOZvCaD^?YOffBQcR{)5fHa6h6?0-o!0&f+Nw=tL>iTJw<~~;ejO{^)CZiX4D_&HEXWs@W*kqn5}Q& zY`r0UR;`gow36KXs7ebrd;UZS@pP-3qvh5*!?aqz<-(XyIRy-Bi|~!GoqnLaV=dhV z;6EmN;))J01N%_~h0HZWEj}f7jKoN32!mbn-oaH>^NF;4EYeMu4J)oenGBV^z|+Oa zr76mCKMs^u^cM8crwa<7YnVbc z!I}V{)7p`C(X}DUt_tl7z1^**bt|P3v3svlztRXb%aRREMQ^$BnL`qB%{*u^_kS^z zJi7`r35G|=%O`Hifwmqu<+}p=-vF1ho!x@h<-o!E*sFFq7;sH&tU~>&2LTJk9 zJCIG%H<;VED}R&(r63~z^^)TsFBfJ9dp6M<(K;Q01t)lZ>(h4WVy~j;4aKz}`Ih`? zSWX~iZL7Y+rAJKa&jz|pd&YRFCEGnnMi1(%%%qUsRa66~e?q10|N1AU&Ho@#ULrGZ zfB)Rs4QEIm-bYrCZ$)xNfrr`9Fx1EM>#99g#j!(GO}GJIE<6*TY5cVGBmOVTUgv%D?YBhZPk(*9y#xg201 zj5~zqI>CAZ5l#zy8b_+kMFK_5I@w@2kv!NSoOhJFDkWEwJuo4z(MQd)co7u~pfNQQ zc0^iyg8vjag1zLhR&RZV7FKC*AyJ22lGFDS>{Zlh)60(hW%Om~Lvr!Vjk@EA?NHA# zPLeQ-)3fU$T&N56Ku-;|_vOta^a~<(8T{9XA}mwVCR_$2F-Mw5nixcP6fxwlj+~+P z$aI+HG}E{YcwvS(iph4^Ik6_{dgBA7wovYiNxu%5dd^y$h-HqzFljpA{S`mOHQ zw5d_g5T=^Yz0rWU8qsw$6z#u~r#}yaS88sy!$JVfpubJvkbv8hoe-FbtHRo3Y90m^ z|A|aY3u+F4p%qlu8LeGAuig74aRqk;{}ZLCbMJY)|YZ=zC-idC+pvH)w$M`iw*y57D|lMOZ!E* zv<9dpnbg&OH#Mnv^A(`;^=;)_w!J?~W9fX-t+#uy4Q<~%=CPrv-Zx*}ewIDf*M)x< zeo5dx`TafDvO%V~W3pSi>$WNWW5uz+3%}q^LPL++=~P3(J9lnQE=kU9iT9K9cZG?I zCwf1JPM^<*dop|O=xo@is*={GWT*ml`xKl%Sm1yGw7j};KYr|d`AZ*4^HoZw(OY^F z!i9sEO|6hV#3@LJAXaJdgNRQWMUEyptIc|ECrSoIW1dbr1kwJ8g#?-Mo}mi6=)tz8 zgVmlc4t~i}M|Sx-B@)=Ft>QJUM0EW8h1b3!feq8q^0At!s=Q|5+m~sy@ebJ}ws<~RF9_2Jm{B>5q`YJ@{U7Q z*f}fC8y%C#8CD})GA|3~UpzwAw~ik%hbm-P4c~{yu)3w0f1IdqK}($rb6M2V)S~ELb?aDf(hwW21wHgmipSb;Kh` zYglDbF^sSV(0Ak!0B_+CNf{04fx%HTe47MGJmMGKlF)Z^vh5$8Z;RiU*#+DP;6 zT%Pqkn8lX$_rW#KdR{FesuiQ_V^b)IgdcQecsleJjjC$xQ%cFO8gt1TH`YCqL~nTy zH9SXoehrezPK-YkbT#f@Xcown)r`KfBY;R8EaIEEjpl7`xoHxE4Ex=j{Na(Dm|2m+ z38rIfG^afgzVcoLpedu_S?ymkOt8qRx_v3yR||V<3*8ucpxsl!K*|sLh@U`Tyw8ef z)%soc-jT=73IHy3a`x&m=h0G=7vaFt3{T#-Ar=%#*7VWY2@3)X)6MHpqeR+AR2ILv ziNmLhjzgg>E})4IXA#BuLIN!LL(>7tk&XAav*&piPWsLc^=D3B{O|2|#)2cfV0zm3 z-+N!b;zYa)r%0tiv=A~=IWxdG$zm`@^m#jLEYwCQ8$jBHD@!5&S*8|aA{^>VgrET@ z{^g5fNc0v-1pEYjQ6xk~Hdf{uH7^*Yag^Oc(dcE+4KqZ;)5cL=pv$^KorOpt zyJHj+DWEbGM(fTZTdfqGD6V}c&Yy9B^Z9X<~m&587V3QU~7`4nt7gmZjWN_GKlhu3i{dJ&=6OSWxY zjJMcJDwfmgGe+%TWnebiC%AaptK$<|D4rQfE%z9!9wf6@7$QY%7RdVun}}J)J25`)c0Nd~ z$CU}IJrS4tj*gCQ9C$uRA?9Uw`3h=f${cftf&V$IpgfsDRcmQ4L50E8moW2`-ea(6XA2HZ|10itK)@+{v3bx=rdCxjYJz*l%u2Y4rcw^ESM8|p1g=hwye zsWm+F9zAHu$m9IJnfg;}xTlaxWB^=7HWo~MAIbhHa`aS3U=9`&ouKDAjmkMX|sQcb)-7CUX z*PQB6e(NBhUV7luzQ|7%sPpKW*1yzt#>(%ju)20v2=96~=PdWr39aaJWqynbzM317 zr~L{SwGx`}yFl6O#;YR4G2sLb2o8p-5``%SgP3;8ByTF3NQ3rNi^x3b|{t`ImT|vWJN+olR57$59B&LIr+SPp8;FgiC_D zIfIU|+Z=W?2qKyU(a5O7wvkkFT9m%4QW%I0y4PN%x>!2?=^d1BWKDnpY*h!URyq7J9 zKb!acS(No&h<|exL0~^fv2Vg2ZF}cc1?u~0;iAL)8$E;dMSEGPcXolo*a7v-rKs6> z0_jaUUVi!$){8ecnYr!i+Wohlj1`D)k^#2DyEpa?7!vs>Q)t0J+}$ht9KR z?0R~fml}Hm&H1IK2xec7AxSD=l{XD~m)>r`OHQO?Z^U zKewIM3Ir^h#{`=F7_kkI_cpY)vo4&)-(@CQ)d~BgV_O-(kN=BLq;iySq2Z!?&;b7B z2u(&T@Lwli(C^6+AfBM#x7?#b@a?c8hi504jOy- zY#Lj#C0z!Bpxkxv%)!ElteL69V$1%LB;?7P^6;`h7NhpL*r5zv0_GjEx z3-Pmevd*20>;HKkt$e$0ZvGYn?*CF-?ve&BY$)B42!>Y(sY87Ua7>uTyJ0@o4n`K~y@i_z}PN}d4?wq&nEJCl)_wmD>cvK4AZ+Est^ShRCCGYf)6D<90)htJHs0cX&1 zF>7!GDp?|r?iOdkV81zBeRQB0Tn8C#Ypij_DaK===U4&7+1c>_7h7$dUARXI=M8vk zS4m0wwJ8ESBo5Qb0L6OOOgtV%v`{Auv~}I7D2;|ToKJQL(S8G@@NvSyOLu*D>id3K zqc|=?qcr^W{I3@5uPt0V@SLx*mkB?8FLt;m*NIP?PvbYczta<4iFFo>iQh>_b}Y`s z;U8-?74qSm-}~+Pc!PJSV5c62bQ#6b(>@IoUjqM{F1MPucK zpCuHr=Y$sF(Q8C}#f%-87BK6VMMHkWbAiOak((Ug9z*rHKvO1uzH6Xzn9E3*1ik20 zqQ{}H?Pz-I2Aef&{KIU(OetB1bD&1hWqPPP#zWJ`dZWMsQ6DzIxL&{?c2=51*6I+;o=n7VV>bxruA)iCUu3bTFO!x#20JQY<~I$AzU!pFi|II^<~+uIujiO!|=PqTHrI9O=2Wi|StrRZou zqo=}Yq)6qnSiAPR2+T-7@a9iveVX(^a@8efTLQEZWr_e{t6SfQUob(k6Iy|-A=_w^ zO3~QZY=_-v@qE2S!=Vt6Sc%#O>9$(@Z(eKrzHCh6)6)SEtBmvKb%6ZLE4`~q?3%yK z6?f^8P|W_yJM_(9oIs(9JJ!tyE@)Y)yVigz*Xy!M(wd~7;}!mcMMk#EA+`{Hom1WY zfoLM5SStvPZm_y7Rwa)m%MMSHYor$DUaKa)t-NIPNkOi3G08FEgD5lqNnqmafG##& zn~DdXo>f=u?;p$RX8Xa7!yLW?Jo;|Kq6n|_7ENris_+}=Fb_mE@g1}gi_;T}twVU9 zzr`yeV?9{6W^v>UE#-AHGq@?Qor+xwcsO_@L3A#Atx1yvU-(P)bMEkm8Z!wTQT|j9 zOhKM#nLGn2TOM&g0r8={zysZ1@T~D4a1ny5lx9&_kc+-p45GmA8*t?9lj&W`*o=OR zB5{Y5aO%iR*cqthy$Pmj9O&};Nrjo|CtGJlBhIB@N5*TFbF82*Z{qZOEfxe0MIx&| zpU^`prhDBN#6qY5FJdYC`&mCFk7h0ka+%45jXXwy+=K`g`n&^TX_$h1;=++L!Xb*s zs-zuUG(H-=hCIUN@5AqTH10@Q?i%@tG?3JVh9t&J5eABBA!b~=MH(D?erS2Ed^3EQ5~!2tL`}#hVE#m?y-Vf zyc*T)Jl5{~-i@oHS}g6^ap}P#|GE!xcH6V#G`_LHky2fFVdLiSUmNe1eXk^a4ri;^ z+qisveVHHpGqKN-kM4@Ui(FiSxw#6`^;1(*y?*R}6x!0p3OMS7yEVM_{};$j5i$e! zIDU3;72GNK_;BmG_Rsx#irQe8Tk!bP6cLHUQs@iC^$olhcf7}YS2tXw_;owS`LTCJi5+q*V50{!*Y6in6H@!+_n5bP|47B%Qy%qk&wD-#cVxn z`fzzfyH-aAH2H9PrCSjv)7^soe;(}&D!m!2_f|L* zBHinK;VM%}K2qagrb$tOV))MEP;UD>qnxa)t-s~f+g0uVHo%Jx4WT=I4%XDWekXP0 zH7MS)9!730l+p2U=(q!>l*y}_L--Dmq`4zl{Q=wm%F};PN&5CREIac!>TO357^65; z63P%HL(gUR0-GP+D`!+vXKCXa{4pL zOoOF#g3tCsnEq14`qSz&=;+#tj*UH~embFs1Jj%9+qtIkWnGH%*-zp6hKBzBexz#e z<$c(&?}1%~)Ey8G!vdR^ypO(-m=A5afSSppH4y2)bLi+V4x4CKE8g65#@?K$I23CW zdGgHBH!+Sr^eILjr2d!h{09c5AD!Q~9}4;HrTC$pH!(^uX1$KQS4Y@QZdAK_ zWdN?9L+^8PHR!r9==u&$3YM69JzXsIy(bv875r5k`{tkm3z4hnocnycC%2ERXm40#)6gwAY50W)SFu;q3 z5aAyz+=W7R83yc^z7X9`Een-7!o^#6Ib1D{IO-skOBn=mg!DIvmpsab^jEbn_v}$O z<(e!it>wCq68^?`jfmJpAUwINL)@x|O17B3?lac=`2tB$yCJKDHuYmP3vr$8I!S@d zIV4ln&vK~@m66k)=H%|AS z$8_W;L&oDdEMEeItQo{RyNMLpz>JITAG3&`dxF(bkag<*uIWEx)4D7zsnqv!vd|0& zx-BzhD95a_Z0ypMYsQ@6OzyU`&_4atf& zQF;07>M|bpgVr>E{$IY3?}W|?4`58O#0)llhPI~Ee~Yc?oK(bDjuRAL8< zh6;r#CdIolyheEx)#TZo7hBUHZ(o&74D_G9Wj3u(_guVihH@8?o72ijs|>S-qAa{N zV-Jskvg~ZIsZG`uVf*`9t#u7jgo1=*qw22?v?$9Ag&Ed{ zmU)Vdd26b4mGc341pRq zG@TxiToeWu8Hfi>a?nuou?d^Z7bK`bE*^u}9iPX83SER2Cc$87u0iCnwl~TyLDThjkXwj&5JRn%Y-zW`tS(6!7Th$%8-w!2 zt{B?5EE+D}PJCyuh?t_MZ<-u&pcHwg9_+{&_S=Su!=zP$} z`szWRXU9eGKryyD!k3R4;R93lQLhJ@+y33kp!ZR`_xO9`ma83IeZ!3v>Xo}_lAX;h z3z~y}lI>|}St!3N?j&8V(fa!O;_jY={-3oFwPQyD@kNEd__j7&_s)4=F?A^Y{Kz>k zbyaHJvrg%-l;V56 z;FAI}Z~}6EFRtp%lfvCs?=04TdL`*{8nyO$>jyhE^y;5G0D&f>=5g5X$Es&A?ym>U z4_2ksAR@{(soC$(cJupu&N9xl*(k**ubkm!0$_DxfUh&YTbOg1Gx7wq-hZ8yrP>?j z)ORE^w(g6kjvuEoQq$8nVA*9t6KZI({{GS?_Z!5*>`wk5qRi!D=B?{mH$0W!wZi5$ z4B!zy_qkhKwQ_KX@o4`UN^Cr|yUPOWtO4nqot;vTH#tvf$;r>6c_}2k;=y8!6U>sc zwP0L635n5i;|sQb9cSvDU|M`GV%4|fYW;)nv%1rH_fH(!-g#smy*^XzCpcr9JV@mo z9U6+fay=mI0s_#S_A8qaF3G00QcT9)cHO>-rIP&E`_ZM90#xpF^%{9De?M$qjpYpk zR|I>HM27V-@gs?K-nWL%$l$tQxoQGr*y%r+z#`Am+B)Lys4GXO{5vwSVYkWSmdSfE zcwF$Pk^I(JrBQziv}>+^=l0`m_dMDjAb0%J9f%kLg*_Q~t%t&D*uXcFU1KzU*77Iu zg|437yp@Ab-SC!6(uk$h!``d3=R(OoGp26#&B?Q@(K!mZ|=OPbbwp?x7^+e=JtG-zqC#I>2LG6 zlk~ZcFdDR$%~)}v6ml}MjXA%=Ilxih_etOPX;GO2%60D?2pPuH&YG_NM=tfBW(s_e zP_OFz%LZO$4l~{4dv6e>Z${NG`Nh%0ahi1vOKB%1O5pNO(Vo#{b_gQa&XFOwkGd>d z+DKZpQSfQaKbq9wKK+4GJr4I}Jd-6ic~{o-*RbTx!Y#%9WOCPaL-d0o$&R|HhwN@C zc#KIm5%FX%60WOtd}VdN^LP9_(!xBGeDk->{dk!3zobq70fRVyIRCR@a+`e#hh{m? zr#az$Z#?|s4%B5Md7?oX<-}P!2HH9S6wR-yo0pH1Bs8)tZk{o{AG(xV&W~sqdgx6U zOC_U)Pw*jZ2JdF7rdoE@2`Jq)9-b)^xV48lxhQkTMKapBQi}2fLGa@Xev*xuB1iV4 zsVtPt|1gE-^)%@9k&^W&N5;w}#>SCR$zrHz8jOQRP8vd+%2=(c04H9}#Oc2x$ry?) zyEQKs-sdTX;UVn`QYW}VZr~v}+tv|eM@sBKP>~Mr(t%4)H>w&i)E?0ho`B&hqNx6i zR~6b;+lZ(xzJ@jmjY%CdSCISLziSzj`o9Se3r9{I#m57!%7 z_}l=UgYwuwLlVgqlW11F#UeEabuRQfV_&a?2p5IE5YQ}8kzw~u)|vX@7~+2Uf{odZ zRE7E}yjguwY%PILK)=RqnnyZAa=QfTr?b{t)A2PehsXB|xIG;#-Pf+YtoB#eMJ=sG}9bFL>nf)*|Gcg)VRmVr%XzwjhQ-~^Qu!>S# z(7UK=a*0&9(dk2fXm?fKXYHP8Xx6l$18ZfD&}Gnt@-VIXVMjtxpZU-Dp3FYwUxjPR z_qz3yF+<|`=19pwFW6Oi5Ol=~TmUTX_ zb+-nWh#Nu7@M9$^(ffwxq3!S5QCu-R@K_f#wI014bb?J*UNqe31m^6v@U+p(#FjFo z(bF{8$ixj0YhJeoe$HR}) zP{GTSl{{3`Q))Y1p`a}9Hbh0dVHqsW8KHyqFN8s|%vp)ygf>Q)ZdXCZ-f1L=h6fUC zK(y;;uzx5LB!I$<@aBt~9SWn2t+H9Lz&zC047zg=Zp*iquhK(Glu9^Ba?j|5B8#IM z1ULCRHw>xNaV{L6K`=Noo*@q&*(QfZ)GU{7!WSPZ^X}OI17skGA*cba7Qa9-z6jq8 zIYI6Z65SWHO&SF%O$ZyRI+dH;)vszN<>ChBG3Mr52aliXQiWaB26jqE*H_|xmxyCd zLXVFr?3QfFKR!!c`4(kUJNT|5is#%p{N#7f6yLh8rG8pz&I}9$cO<;`4?9mEzFb}I zfg5+BA*W;Z5tXP<2oRLMtN+)m&6Wk*A4)^*W``%s?<9S1!j+m=g?^W<(lkPhyX?mK zznaH1^`k7D)V8gLXDrU~W;dH;{rSCl*?cfJ{^JZ~JrVDE7x9u}C(_EL?&q@StC}`_ ziS&MwicqQoQLafFKG9|XZ}(if$#PCzS=cgIDg;})0~9UIT8*IAS>~4x|8jrPza(<$R?$7eE>E0bbTTPI6#q2o0?KB(B$j z!ElJ?_1R)KnZHa0?Dy9sGt2L@v`ViP@_(&?`}@|2$s-?>#AW5f&ab(-W_mQ#i9NS# z&^F!uoY<%zjI-g>Q$E;&veht_+y7=HVg85a!&4ul51r#go4M z71zX>pHxRZIU+^Uz#2p769v)Vo9-0;na^hnCxQJfA6gIG4rBqw|fX%z+baT1UYv+wm7FK8p(jGsP|UL)UC| z@KBHapG@AK9KWJkU+w&WN@ucB<5LxSi$QcNujQg_<1M?hXt>L1=_P@1A8wZ#_;&hHLKUL-o$HuEmWAZD_O@Pi>B9H9prpF zK}u-7fmSRLL_xql>xT9+!1z#ROm^GVdj5H}yT+z3 zN!|q1BCk6VKa9kcAs7LZN)aV>i%|3ssvRMkD8n4=XAxx_%frtlXYD4;SV}%!(eI8m zj6x{FFoA>gV(supnQscVy6hSjMuB+=C)ursN(i4eF}Cq*4U(W-hg}ZY4>$;@Wk5bm zz`}^;Bk%f)hmU)xH7q~e)NLimPbr1Q-ijs{k^Pg0zQ|?g@P}Y08f!f?XG9D`eSy(Y zOhe*WivUx9QlgaHsgU^(mrhsdK2_%a1O!&b+r%+F~$yrz!!^?3|G z+b$PbW)wrDOc9D8M`8rKn%2`TLA%a+Yp4lU@Q%e3`-#)GW#i;+GTU@1Tu?XEq+|pNj)=slo==Z zd1AhL3m^Z^F4n)xL*iN(gcD5;D!vW@JEgS@<_xOqtMi@7*LLT3kLi_rlDmD$T!sQj zaZTOHHRVX-lmYFr;?vT_)P812HgkI3Y^6-u zHp1WpxWR8>J9;6)7H3}PzYeFjGFHx+jBh7XT!tA_jsYA>07KP#@X+sO#Ka1yK)}ZA zOL=u?`uaMQ%I8=XMhRw`QgxjEU~j$N_%shxBqjiKwt%;V(={^M`kZsmKz-ef3S(tO z+;(9?7oW$ooK-`sVxW(S;PyNDWaxd^2usl(a5n;w?9p=3V`Pi(yIDe<|NW*{wo>`b z#&(9|HjIe`TTdRW8_*kp>GyQypOf*vEfNNFfllQNR`~#1#V$Ly!?uh7t;3p7ag^ey zEWvUQdOb_J%Apxwl)X(D*}4Yhc=G8*2diB<0)&7#6tG>dpN>~_Jg>6;6 zd4MWi;>8r=e|yCLnQ$;Cj4K~VyxJQ^SCpASep92^Eg*t}6pgnaX-BhmLOl9UM2R~! z3kTu^R)*ucUVkHloW|XbkFGQA?+v)^rO5|A)Y+%XHtB0*$CxkQ-b${V*G-+^t~DLq z$6I!#r`>mAvTWpE#ZOc9WO&t9nkdm>TDtv)V_434{g zpuoXHCjQ0DqaGn@%V{d7JgOOmgKzhwNmidZ-<8yJNV35g-25V!Lf+>$SvS5?{56Um zKcNSDG~%Hp%V8qPAn?E}r$cG@k*he#fT-q2=s+T^ea~@6w{vbA8vU8x)*=3%sCeq8 z_=$w)sk${foimK7navX`3C}T~90CHAQcP`EOQ~bs zU2^a!Y{$R9_Bi(5cP#(YL_u!LUZ0@j;0W04*{Jg!9bysqON3Q-_z2;ZIjh?PpnT-HcDi|Rp&g^GE74!xmG5s|wkagdHjGOXS@JtJz`<;m4 z%pcdFUw9?Ld{e6}1-}CN>}FARKZeo&3^B^bn0rD= zaeBVB3H$3itgWworpEY%VLXyncT*%~vi)xU+3yqi44tf%SW$Fw=_puv5W-HQbW-c6 z7_f+^pT<|(QB^#M&R27GK8)?%xsAJx`@VZ;C0`d3-^~=r@F@U8)oY&GESd--H1|y> zi!p=)?MnoPB_5_=7@H3!t2P!BM7HMiEF7;VWCSx|X-IM;%%YxOoL_v3-}lJXH~T7X zM{WGzfHA{D*!#ns!OTqYs~o@E%+5^7Z#(=s+=bC*jpVi4&j~d#%yYMuEGT+p)M+TN z^|eOjm*>z>F;sJFg=DxV3+hquUZ@Gn6}gfyd~6KlNU5B6th9ofQk<)j>rvGSO>E(e z9n;im>~3+?^8zTUXGQa)OU;ZH1;wf>eU?V zwbfrPbUGcb$oJyx!p$8 za&;Wb8J{MmFf3{S?dpU*Rp|?klo9*ICKyxt_;3gGE~VN)NeU*-Q;q&1CRa~%WAy_4d9lk!>>ruTt2$NK#FGfdzKAf?tT$?unki)m?Tv?(K$jk7LZ zUa1a?O|PrxV9a8gT3Br@FA6HEp1!`=S5+S%OM=x?z|f$i)(RND=Kt+TFPpovz<}NS zKm`m^tUyt^xgJg}wSBqmA_}8g0fp&(RyMs&C^Q**R3qUE$sm^G04{1V%BBfgl%476^AFg`Ei#6 zeh>R5qwBN##dPY!2Ry(# zmwTAZBR-8?e9l$6%g+8`doYzi0G|-o^t71i=(qEU!>z7q!_&_9Xj^q{=_8{P!oybB zoHyMsfl}7w+qWg^&N!Wz%^^NX#2z=Y3BKE??r`cJaggAZy`~46*yOO#}Od&b^ zxBDVnP&>SHU$@3Utx}rZujMZl7QU+x|58CNA>+&o?KPE^5&hCE*cI+G#A3k|nt)$V z@^#?Mx|GK_qVz6em?8pFPa>m3he9Z4$#ZrBz2u%3++~f_CUc!wvu_UTTFaGf#wxW@ zIgoK(iBD_lHuYVhSqQstfJ6Oz#=}F;gKv9=B8*xpD?1xF&=HE@i~Ir=YrcbqA8q+d zo?hrLz3#v*QIZ!$xQxl&<|>TGnr0|T`^nv+AAvKy$kdjofc~RKZoM&XrbN+Hz)S(% zZ|C*BeyrUVB8<#s_$vC;41NJJ^5pLFGahkvSwiO!zj|RD%$;0UkrV z>HSDqr-dM&vv4(pN5&cxO3vddjS<)YjR4npIPg0JZ2>WlIi$7GK@7j2%w7|$R94pcS$q&8ew}@Co zh|_eu4_g%X$^`vH5Q-mS+TU_f$;q(f^=1&^u`fTM)JLTg1M?V5;j`~al~0@&gwTo; zL5r!i=jnc+$y|BCLT$gE#}NMVBiA}h$p6srSKrC0!t{#w6TC}>Dg5?#h@f%JU0moy zx_n_J>X*+p(G5i!33w55MEt~NbvVwi@yG4@LliI}d5sr)A7aQpD+C6TWY#t4bk}v0 z5?+KRwOBzA3JCkd1zeUNcYa^Bda8{2)9@t7q9B-IKBZ02 zyud#U{70s(^0gi1o3*k7!LCqABF%de63BHpRuSDVbywJyJB#Fof zN;IKaSrHqBT*yFA2&lQulgWawbXGD^^jz)Q)Zs$P$J>MNof&jSF;OsF9hV5p;{FyD z>DGAVxOws@DM=iQ823(L#mC3Lsz|@mrDqKDqs-FwW{#^(d)(E$PU}eI9{zr0|8#?Hb_T>=SL*9K*%cn)`tb~d6&}B&(aub@ z)bSF^YNE+avI!In8u@UXlf|xwMMM9Gi;9Yh^M6liIX9%)KBp=$>5I>*^gmsgf)S3` z$PEvs%*@_#?t3kD)^%In_2c(%68{ro{~r1{2|1?EFpVOOr2DF&l=2hhJjUAwbc-|h=h&Ba7jNqFn~Ol zoKa04{=SX-_ync~?5qY-sUm*c3*7)K!+4hG%7^Jek=Q;MKYF+Ny7Q{d-txcA4hF0F<~5B^2tkMl|IZnLQl&-{hnKe^6RJFGla=Acz; z|LEA5OsT8n(DS>+BRhmk7~WTiCK7WyUP<&Zv!zswF$X`Fi1+yl2$g9lpasf6JQs#Kz5xw!syewI3sal} z^M2-YmWV|M?b?v;9wfZB8AWU?x)8bMh25|?wl6XmKoOCQk&A`ITSP^JiiwuTgH0V6 zJX8PyX1QpNcX)CEjy#QMyk8H*s%;b)9XKQKN6Td6SfWF$XL1>NOxeZsfNRSXc>fN3 zkptrq{GUyiC@AmhU@Hfb1>_?7J>%PKQvF>m=S*>zT9vC8y40coWT!GvIhtqFI=PJq z@&q1&pok=8pU&1!{&*fjq)q<1nd@kn+~l1tSTcqnad%p5+;|6@#6fN0fEf16pWXeCSf+ zV3?a^^nS5_pusIyn~>uz^ute{*3P9esEfTX8IuxnEWNHCzdd=qRbO(t`T)N6K3O4B zVNmYEM8z}~!L#R$(2`lf&-975TJ@U3YO%^XK$qIb^E%-=A#Wjql$-rtSrK7z6GLq1OO0mt z{?cVd^4Xc8mbV~D@SlRB)(?>oeFEFyawKeNvw}7J{&YG0^+7WD>5f!;)kF_M z;9o{|Kfi8L%uWj78q%JfeL%q=Erf_+E7CT6!kSD~#9KC$E&7!DJ6xoD7jC0_?96UR zEsdF~HAN|7%AULF8g|p3eHOmcd-A~looWY->-Ps(bCMy~VmY?doJ)gw!Oube?$`c^ zSuuJ~lKj%bJL$WEc za{2v~wLol*i)6~dLgOdtj(=^P7e^odTrPI0v>W*kY`Nh0*r!M~T_5{G9C$B77t-PU zm+CIMG`oqj>x8=V3&|HPnd*?Yhk&GG&|u}12n7Yj3pPn%00%}i);cT- z0iZLqb9S)Ud=!B(x3#sk!Usswb$=0E4x;(`ceuDx*EBFPFnb5@IUc}-9jD3Fe`*J* z%>DcxBixPj^q>Ho?d{pT?|Sfn;mjKEtM_0kGJQ!&@xEx9nwmOTYW)nBj!z>0n&RT( z>cN8xknODZ1@v9GiDmUQ*#SDTw3HQw=KzrMfX(;Ee@Bn8KxhN^mBkDYq%aD#`subh zJmw8sa?5tQ9gG|8L&TMkfgmZoRw&gryZW~b(``!bx&W64Ad~Sb1;O64ONo$jMUoN; z9yau0cEiC~O1S@2DZFvgnx%x&Cj`MR`AKG?dNJ;2-TV3F!76(HL1f~Sud;W8B>MY17D$KW z{~yd*&*n?NRyuqcxeD`kfg_%UHN@xS^n@_<5xcAN@}5-eE54BF-0QkCfEVO|5JX689thwIBt- zSgtgqqfRDQd0!px`zzyk=g~xi%eh@e+dFf*pKF4)Em<4k1v=F1j{S=)i<$*{;M`$= zGkxttau{y{Ls>QLG9lgP=c=Jq)p=oTkq@u%sw>w4LdxR_e6>`%o)nJf7CC1dk@RWw z4_@#0iiU*by2^}x`L~ND3HW5V-< z>_Kq`h8$R<>n^#)P+B>I6HXMdOQv_X)!LDaD<~nO_MQ`a1Ndpxrw~4TJeliJlA@{|SDivRkmZV*HnQ$si4_8E%**?nBIwpK^`SxAMk#wrhG zY7<`=`9Mnbk+_jkd7wANxm3dflO=c)XJ7+Q`jvMQk`#nBfcXT9(Akth%-e zYS<3bh{Z{!1q^!skP4E_T3Gb{T}KmZRWzC@o^pXd*!LktzA}Ej;zbEICipQkm{{*< z#c7Q8NL62URFj$JNHy#X2U~i;ROC07vN*nj3>nFo7#g%|1p&W%R_E#O#r_|&=yjQ8 z^NO{)Npwn4acnHLS6Hq7CMEv~vE4~1RX{EA@Alr)A$-L_BGEQkvw zbd-=sb}*=Wt1i_0?Lx_Ed?<2CJNZR-xWu&euQ8KTjeO(={M}@n0tUXfGTgT$<4Up5 zCO*Lz5zq{}?y3irG8RqfMChI2EgEX{{$pn1OKpWP)%Dv^eH?wxF{nYb+Zs_qN6Ry$ zL4$%kDO@rU6yPFbnvPO>usWeUI96gjD1(ktb8W(#L}wSxW9^ENg1#$4gU3lvq?oYu6l@DdUE;Mq`M&&W=Wi zgb*DJg1+4F@`5IMyzC%5@i(vC4hLHnO=6zTvkC^dn04FYrhgYAh5s9*Tz=kijMzzJ z)cXzBC;92lNO~MObCth8>&0L|M*R(mjcet}_9~pyHZ`K8miix(JzbstpI2GftZ#o9 zHs1YsXL-KTcK8k$L97S5?*6ss%>4a}sejcDZuowOSw|LgRYv396@Ka*U9NfG9w)vH zhTR&X6BDj~#lPR5BG)6aGE_3NokA^2H_+x&ChALor(KP6UfW|LyKqLxx5%OKrD1`4ZDAp!j*bp6HTbL{Qm+9oAI!17A0sU)dJ{dKGi1z&~M0<$r%dB_hPj8<=!jGid)s0gaYtpr)ney2CgFNLqpQAWrJm z8n>byf6%PxEkn(ZDSi z7z^ADOO9a1hQt?K>p=M`QC`k{z^e=(6U-0+yz!uBo?5hw^t5h-YZGR)SiPNXz6SnC z=H6o@>1%`2_O82jK-t0^7DU9v-ql^aVX(;dYM|BmHn-w#^ka*!YM)P7_$qTh48~IO z3;QCPN9ZG2m}F(GR!XR>A$*Ib$ zW5VQ=-Rj$G?d$D&y7DOGL}sx>l9bTww(6Q)BcE|7poI>J=L%T8qz|JE(Wt>FB7%ld zHW1d7MJh4sV~nQLR@nYY?SBn<(?j~KUlXL6fvA=kJx%tKAbuv=TBN48SZTmAIAI*P z)PlUY@CFk}6cM2dGmGsHft{%xvMND9NKHEw&JAD7l(80mR_B24hR$o{))#>m>hS!W zBe3zA1_s9SU5~srdlHq3z?o-uh)F;69|}SO6C0o2q(EIVau)?>QABLu2evGGnjCT| z`c9)v7a2SrqrPz^BP~~%w%Vp;RRB4%jT7u~$Z%B#z{%4>|QfOP}#+I!z2f%qzVFx#FrX^0X)6IpEZKqtmFC-j0b`P{#InHj#lTg5zg#sCs+(ZBfzI1D39 zjbP;VR|cQr<&oRH4L>C$_Y=02CG@ezlWE1^^|6jdDdH5G{-O!f-2ING!V>xZzGE_NAM?#upcmf+e-{& zVT>@BB}CuQfFvWmhJ#|uF-Bk{P6XG`L^Aeg)5v{&i!FATJB2X?Paqy4NA@cb!fs7I z#2$e~7muc?f?e}z0w;uvE=f80xiYF;;IWLRj2pJ|%wVNq(0gvWv;2PSyCan)BgHMn z2yyn3C6>1OXf3In7G5RhJ35{1%hTx<5I^A(fV?qQXuft~9&XR&tvzzlYVp0@Mp)mQj%j`b@J+98ASD&a0k_a(E%^&?$AxJQv3LAKkMiZuJn0cA6%Yawzqme+;z{V^*TPE$H7aU{KS3fJ^MtzpOYPNF|z zi96+@p*_w$-QwN&D4*^SbX+#RI@6MFq+a#BzHBbW^&YL~h4TX=geFVgZ028KMQs& z12r(S{Bf8t%wGT#*uO5-_PQuHd0DBGuT#z|B{c>!8~|&6mU_5RyNB~(;~coB55oKg zfB&+*HFAIEeR+^KW1H8w4YMM`1T@Xd9^^1LgfoRJ$bx~r2%h7qvcgPp^#HEH7F(1k z^i-VY=H`Y#)N!!feuahzf|MU!R?f1oCTtr)R$<59OUI2L?9~A9I=%yZD=^9Zr^K1J zOv!5;xbnR`nC}DOG%bfsi$JTR1pEGyt9@WfpO4?h0P9)p^_?AX*A0sfRV^DBRo^c4 zVKnEz)*UK|@lBZV1Ew^|xfy*2XW-lJH*a6J*yKPCql&!%W!Y*uLLKM$k}df^xHLcl z+zLQNgN2K$^?%5E>!>Khu8nt?p>w3WySt@Jq(Qn{x;tiQq(!vvV_0f*P?-tZ_p4`+Y_pbqq20|Rpa0noz< z-ec<1xwPkEjyg(=pFiTDQ!r2c>CMBoM8YD0+SS%~@7lQN;!ZYoo(%ewVg~}w^aoFE zgcrb*^p}o=GgN=o&)axy21o4$7FJdO8ne-v4xJ*>W=gN+%moIyEK# z-&*>gg8J86ztSC9Qb=qNy{a=?)Hw;JZH?-KiLj;HXI7HQiu_2IZg*Uz)c?(>jqYww ztWZyk;;HkW>~trwoai|ARo{E~^w8sAxubXWKq2zBKrDn<#Ai}J;u11K0LSj7HXd1=t@)F@KwgR$>Os65i9&5 z7&g3ob)0ty2Yd|#t7dHw)zTeGh29=6Ce`G!u2;5x!*lkkaJN~{F&-8-$u}4h3I*Ja zyoo9;amzw#du6EOFh;jpx)q-~d{N*Org|v_9lm&_S8a_XNf%Ec^wSdMnF{bQ3D^7* ztM{qHLK2y3yPw$Vm-?&qrgiAwGn%_1^v2PD>^Wgk8A7t5-2YNj1dN+AG6R4ewbz7S zbdJ2#5>}c`VB))MVC++<{4)AfPVIR^cs#U;khWC}9W83ya))79FUIhOw=PW#&K;qL z?>$}I_A-he84EQBMH^oMGZzgfXP9syTcq7cB?EYKK0JuP9IIiT$UA%FkwpmnIu7J)xXtTU&+tc4F<1SoWh#2`zEPkcu%vtXJw~ zH96F}Kl5@&$kkF<$!oGlP+e&Js@iZ~CdC~Q#p)T?8>TFn`*~&{v^cDtK9|h#aSDN% z(abW9rOG046Ix(tZxi_DE*%nu8gNJ`-@G1~@h#F>0vI*ZXEwykNMZ(j`MxhC-gc6d zl-ESfqGlS?)i&xA10@qHYw1>G)WX7?LWONWMs;J1cyLC^GEvFK@OO+_hE8*2c1eCI zmEi&60|~#5p5PrRBQ_BVz)vgb24Oq*mSi_+njSbd)|#=f*vTOMpp6>Mh$qt`_i_A~ z=nWzNuK!t&I8x{h=Dec47wI~KlZbXCQ5Rmd5wK;$uQLj+!hh3lJXVc;mHDhTK^3pm zU@5LSQZ)-7C|*K33jSTh#FS(*Sa>}@l#+-((OslEd@H%$lQ-KoL}CE{wI&g>swoNj zF0ZjYjhwAW!}r^on0~k_Atxbq$mj%{c}`1v?}pocy2ZXXSr$2Wfh4ZKS8A{+l}8>w z4gA9|y#IsJ@WShc-#?lj7w1>7RpVgOG61tQ3YAL5(NRrf@xH*FmZzkKt|)>jlC=^_ z7GJHT&t<5E4yhm?degw%4~p`G)?&Fv^5QCB{DhxAv5X=4!;(XtA8bhHm zZg`&`;781Lhj#L(Aa>mV53#!5HiI(8Es_}>E;=4QztZJIv3;dBaKLid9qUX?X!=}? zCe0xO=*Us|h;x&ew+{l{xqFZx`RlN|EjmDhQa%;9!cp5EfyL9E`XrR>QJuXAIZH3v z22eD+Pt!JF$`*c}=t0_#BeK%}WTAgLvNSGo0z!=^e?kaQ?ND4+|17Uv3Ii4KNvc_q z=LSaXhW**S9bhY4hU$qh^Y-g6z>96--UAe$UmPG# zPRNL9uW8;vjWS_NRRd zw|UN|%k1H==Hol*+a~EP;2Bp)fIZ=94tO;CI0*n`fF56lQ;TYi{?<&^v`U zd3h~nHxS^(9ffRQSy%$KD1oOpo1?B9ANFK57j+2*=7CS|ieyp}GW*Klsh(#6tQ>-+ z!hr$VCz1_-*zsPt1B?}3TS+2k*IOwxSEo-iz$3rBr(Xia`@Au$2OEYLx+mXbw<)>< zxYxIuitag|M4Z7F!~gmA^}2Toa3?$i>T98c>2869zt;$nL8@wb0H8w+T?hsIhk#i2 zl5A`bI3Z5OloMjD$@|qY>}Zn(k!TXpsS$hOi^TPgZQLw8h`)_AZJk#dk;-v%Rfr=+jlfCfEayV!9xou)Fv+E-k%23U&kJ}?wPmM{_1@hrP zsgu0*j+Dr6*z6*2;vs5>8-#6T_o&Qgd=2X#k%hHk@u6|gZQZa5f}v>HqWx5T`Hn}* z&>K=JOZww_K7rk1I?N^M_QrolH1eJnbaW3zs zfP=%Ue{^xJ5b|fp#Ud$4In_sCgs36PhCu#R5xAie=A;OhUaIRVFBAg5^xyoWc+;{Z zR4v*WbZQ8ISi5wk#lWPtAbSh10poOKyT$!hBK~_Cns_X$B&%cz#+$);1_&2+m+g9> z4c`WQu$x;7{wVo{u_&pr>9Hs^<2ZEh0!t8hkV+}P=+_X1$fYF*?#?@WU=SYyKUrv#>G(> z`v}#xF~W3C%YDHZv1sHthjP(rHTJ34yh&^Qkn^WAKv~nO8#qj?PpKX_6#SXjN*v&~ zl&o84B2&M{>ldWDU>7vw7siZ}(_H+W|7UK@qU+lrs(tmLiTCf#BaI2{nHgIyZnnlX z+Hhvd-Y6;Sx|3BX6JEp=^o0(Wtnmsi#ZZ%V z0lG5g`xVniXPoeZj6T#jL4_sWY;A=lt#LyeE2uN(YekWtJ`CzoOnXYXYO1MTj0Lpx zzf{P3h47Q#5#sQ)>Px;RWk>(us{TnREymP%Gd9;{4xCk>RTixzW*NntE^wVj_l8!G zyhbomJ~uqvB{No^|5VBcU(aH1X^%1g9mUrCZe?3q+9QzV5B!5m<*p2)3 z;x4tm75-)2X=YuQARrlanYZT#c<cgtX zQia`gug`rsoPr0$bqg=J5keoc?*%IXq9IC3OV?=aFSt4 z*hF?mpDsw76^MUeXt6%~O?VB9t+{661C3hJ6TWcg z>se;Tg=(M@1geOnB#T!KGHPG&<&VE4CD7y*YSvb6zgZt>`YqD`Mbd8}#3hjV0e8U^ z9?YJcF8oL=Sui$GxfS4XaBO+IQh6Ed(cQVe1rG-SOP>BmU!A!!i>qL#^M|X)XR)|P z;j%^Ev^RCFJKoOR&zY+AI`uv-&h(IveFNl#VjhToAWc-~{mk#Or9zePf4sLW~VOIe&8J8l)eUhcaH70bxXoawoDz{I|iTkz1hYIXb8 za0y?(yIiGod7swt4C_V_iN8GLIWmELvUlueJyrZdAyKKa!WC7v7NqnDu9e7 z-LF8+j2Sm~`8GE|5f9AR+A2eEYboyNPW?)ph9DZfGMc=~u!`sJ_l6X5(wGIg5au-) zI3D7IFzIK(oNp?G42P0TXuk%>{C>bLxCobS&< z)Rav)=7iB^;`zd0**ZWnfS-+mi3zmc73%slfmw=acZK)*LbY0P7GJ|(dorRg@Dn;9 zHv?xUrC{`q-F~DrKCv@1n-VCy+Y(N4B;bdpGoOd&; zO=60x%eT>ewx>&vbc5vL3|$(@a=^iDEcKQjkrp|(8!2cJ6P#bX3>WIG92sGjWp3&) z345;QHeB$Z?1uRyAc$#Bq`xl+hg>~-RRizxt1WHb8Zy{Tvx4I3DODm?ekNcPVFDRm zBYS3}3Vo6ZHN!oRRZK&7a%U9ES3f0)FTb{@`k}O-+ETt)diK*qIRdu)71vpPXuEjG zn8m)PhKx#!6q#9=b58JAerdiz)H5IX$X$v~c=Y)h8`fh>i2CyUi_kjj8iI6B^a`*(Wc(`usIrmAW%1(*BkWvH%iS$of)3w{d5Pwf&}JJLBGf*Db-3Kwhe&8almeiF8^z9C%Bf@Dxp@tClC@B zW4UEq%<-Uia&9dYjYvm(aQ&83e{XW&uBps5kJWPTK#$$#Hf(B9nJ#vTA~7XxSG2mD zXA=Qi|3?#*=TM?MI1I13qw1n8A|e(ZF2b8J%Oe*bX#Rb&xT`8}-1KaX_*hM6A7 zFR=sxsUN13hcj&~nPZXXa_`~t8z{wU;~_U|6$w35!@a;{#^|ZTn2x2E>15Lp5l;2i zNQ1u1>y{{kAgX_#^)Pi_2ZtlJ-o+Ad6vyIr0V?DxzA!KmPS$s;5+hEUVDE+J1V zry-{Q0?0yYK&|keyWSPz`Y9sp4DWZNV)k3ODTs*%i$ubf?T_v>2rBGF5WQ-1gW(0+ zmp=UF?wv>gY2Xh`e|0eY!k4w)&2dhoxc^_!^OMeB?xWngby$9C@?3C;0NH1I;R%>T zYZDTd8_Dyp>xaTv7d4vmo!rvA!c+G0z4y&rqo!`Q6V zZTK=Cz@~}+XI_N?o~gSrZT-^EPr`!fk=*pvcVdVxU%v=MEh2OsY3zAXBcwg-Bu#62dMxSN`6{8^K^+uziHG-uZ zm3rZcj786yA@WjOjyJiPH0c@`KWb@zk-o$KDZ$qOKP^R}z=2Z8^YO$b(f!PILGAvG zP$Zv6`c0lVJv^G~Sz}etYl+@G`ek8$UpaxS_u=OVG3Fn5xZQ0*A}7@GC>+>ouLwL~ zj48IW-4uW;Cn6X_cGyGE*qO6jQh=FeMpXK;?0R%5mhm9g{Gu6|}7)Nbk@w@zdHs z)J7OJ$P?ZK3>L=pgxM{_AXX5YFi0jc)Emj#vIi{6PyE2a{uvAFArLh!D?3@~{ihB+ zQOpe$4@Lk0nMz9;^~^G=1!T|fr)ELBA{aovrR?`SQBDD0F8@sDB~=ew7`_^i;3vKfs-DcjEQ2Q!pCl(?CV14;e2fgfT$*hxHlZ=vOb z4K->Gr9>yulEM-N%i+wF1if0kd-h!$-Zer}i(*9j{T%)lfeXiNb@xS&qE;uzwsZHr zPfhT70HOLHE%5)X6}zVDG=TgESU>*9j3A~w^FQVUTuqv%#v~>31SKk@v=Kd{(J~&F zPkav!%g(OeC`$i7jv=uw9hV)Pa;LnpLSN0iS`GFPg!hKh+?ci=d9*IqIx;wcsyE z*_Yu5P%)~p!)>};F1tUTlJrH!FJ-eT{E8iLy^xUsNSu!XB`KV*IMK6zqM96Jp&%9f zP%7}4A|y3rP35g8D(+E5^e^?{L#M0tT)x#Emxa<)>I@*8ZK~52*PvZ`DkTidR-$18 zJB&^WIT5*FBrnb)Pz0TqWP%0|TX($t2I1yd(hn>TuDk{44c~IXubpjiZ6}u=@>>TM zxm{m*EX%>^Ii|THUz73AfEQ8IVd1|yG0@Q=GZF2s#jjbvF}4hHo#au_S}yRvb2tpJ z`f8}f(}o02W_mSfu7lC-hN8wYD$P@URgjOu13;(q0p_E|%=ByY3VYzin?zh`nnGg> z+*p|V?N^i6)%L?oz9p$5lp=?*(UWpf9vY2gg$rat4`?li7&H1YerAzAk{>|VPubxF zTNcdf?kmP$Bf^2iyH+<07nvTb1Guvg7O6(cOWY9etqsZs*&c}tv^2ERoDt36Zsr$H=ibH`8jbsxV}GJUIM-d#GK zNk%!FTjEPr1<7FOpl9Z_<{F@Xb$ksOLIG%EtT9^hgwErEicpHXX@nxG^bc%XCiAK< z_KY{fD_MRD$DJFml~4&)(f7@g^kU%M{o3_E665&@&lfyxysU$f@M%7^Vlo z5gOx5prHjQ*)%B-^SyO>pJj4VXV`jMvDOTf3!O!MFEr}G7DUk{fq*3##Z3?F{sHZh za~nu3lyK~e)MYE{GV__2XUyzdaJTBlbqa`Ea4+ep6@vUDrhEtJH0B4I<-2$sqXDj~ zSgvy0a-0`=&zvG|<#!IQ;nak99LFS9@!Sm9pDrYL1^8c(!Q0Caq9qX1=2vz`dY4bnk}+<@;rE zZTT)h%`g>Oeli71UaLeEwp84~cE3Jiw)f-KA*r62bUN9*gHgrHW}EV;8@M)u!c~N% zIBBt*YS5Z{^tQWA_33qn_A(v@(=ccb#aNVUR31th8_|zL&gbVZJ_!t928gH7n14Q! z)=k0C9BDYo>8vq152=Bf(1ZhXGVjNpD_vGXU?4IUvhoG>(eG$!Bngn$>x}O24*#Ds zNz4FP2Y_+K|7|iRzyI$dQC9i1sh|`!MElL_&nhRnIP?+z3bo`%o=iW~ClvCX_pnuJut(imbiY{2;KmZXl<-W^CO120Qa{3{yn64rzdAWUvhu*E0HlJ7=Q!CnQ3R7jf>`nYVPc?>q zIi`Y?xT;Lw01m5Gd-d?$ud>Le_D%99rfCIuOE}Y<48gxDFKgoSP`&aW0+09MhdqI* zOa`IHH)6Znt8E{GKRO?Oa57$nr7BR^GA8=-X2&vM4>V!eG7RL^58;xZH4ZQbAszmssF=p=8^ccb^4C^2v^U1N?XeiG^Syga|`v;RP&5ngEY;3%y56 z>1}}J8S2@L3St^arFsDd$Gl*y@1O2G6ZN`K;&Ym{RN})%asM^~5ope~+C&wFZX#{Z zy$wLXX(6ni*#2tOLrR)!wIDBGvQ;%4rO3#iSUlF><1I#{@`ze`{2SUIM(68kXerp6uLa*g$v2mS=cS519)6p)BL(8q}P-1y6l-Q&wh!r?Cwgj#iXij zoI=zonNi2q+ca;`Fx)y<;90+ZvH2YLKarTlx6FxDcLrZLm`k7vo2B7RZ#)r{SXXke z9BdzDzHIT>*#_Qv(^Af=@J>qbj^U z_k#;#|8Sv+Eb@o8h&MRXLoOK6vb8dL!QT>x?m_eza!h4CxINsbBtA3jpQE6pDW2Czm8a`ZQ69ZaG4R zCNppZiT)6Ti<*cGPKb(Nw=Zx8IEf?J><0s^G5K&SWadbI)M?h5h5`)nEO|i13~DBh z=TwL|Yh+DFkycXTW42HNrW0gnn4e_H@J?;|p?IhYm0aULQyml8c%HSSq*Y7D)?ZvS z6+9TPE0CBs(NH5xA^E*Une!FKyh`}%Q_4v6>F2fbFXgh8+Sn5lC9sV?OW3#2rB=D{NvDM z)Cj})>yP+_Y+~UvZ6??e!053_?5MmP&?J&igcM@Vc=7`ezm-NDLQZ_uVaG3L3uBu& z8igEpBE{e$`@l4D zHB-oeL?xdWYKBOcR`H@pN#u+?5~0#nU= zB>zrs>h@*L@tFWbt+lJHgh)ToAzN8$79MM#$s8jjp0ZrHNe_d1D&E$Q$$my(Xc zwKyC{2}m`gyfk#j#ZKILR3l#omx0 zwP-f&#sYj01KKV^z3`Jf-UdP1jV+$%%Qr}{jx;zxdODUJL`9MK){6mtueA4%Q}|Fq zw4P6%61#qjZ>{$O1SQtyZ!bSTIjmBaZ5JeJ;-TF(SL)z3Ttofgt?a8t6{v)0`(ekz zi8d%OX`JFpOh7gSu4~v25so8xRhQ@78T|8(F!@h8$7?rr;-_TC?r$#T^`oBUVkRfWm(%QGA=38QuI361}QOkIn->3(1HFZ9| z5;I*6Q@t7tD(jVqd9j-IXw$(k^lPX%xNkXR!=f)>wx=?yjKv$JoAlbB&9jf~+CP*H z1*BUJ+}*Pm9|%F+KII_GryIXq)wh8CzgPBuyo-QM*3P1JYgS;j{5B5PA~a zrOQR*-VZ6X3mk$f9#vYYVATEeg;>^w8VO%)A1#Y|EZiNu0tyUC6pYog!6x%Bw&&;E z_6y1Je$@0`e?u4(`>`h@Kuo!o?7ndj7eY~Jeb6YEmR)0&i!c%rWI~NVQSRKB!+Ul*Ww`mV`nu(;XSOoWWUxdvE0A)I0c(%}*2 zoMI`#NYT?G$KMq+tQY=jI`y0ndHf5MQ|_*@6a%gM;|>k zNd9F-@n=F99D@4N8I!DY{+CcR6()966<&*PD%LP$43cdUTYNlzD{T4WQmmA2qeW7r|%jQlAYz|hb zDHmXFJn_hr@_coEvi*=?nf@f9-5n7w|KRD>B+NAeJV{@&30WzB=0E;67ue{cNl0r+ z$kd{=p7$%j4ZeK&ue4&u_rj}?{`hsL{7b2W(jXH6GSN?Em_3{Ch=C=LTjToGbQY>4 zM=DoSb#s-@H(P37QN^|^7;3SX!u2b^Lc)u0NCML4s>vZ)_L&q7yg$sSQ7yn*><#kq zY|y>xVQ6+{sBd?yoyYnbEMlkU-asi_w-eChM2m)%c&r#=3a7C2N{Y? zuw}erRc1k+1r+1v(;yyg7D;!arR46l!?Qs{UTQ-uW`^S8MIx!I1zBpz9#o8LhatxO z`LD&@6J#R&s?TpsS(3wFJlFM3hWl-nHIcpZPYXcg1OcDSd?Z(VB1x|0b5o=P!*B)4 zzjOyBjpPz!ouVtBMw3zZI`~^f)aZk4K#Z+>#?;G{B_G7l85rMa|H9_SNaIy2mPVug z${Lj~`;Xu=`7W}f;E(ew5R7qgQWT{1w!xj#jpmt(t#&zQ6mgEB&ww{Ag3&K@M|4z> zeL*|!?Cm{!bnUM+Swv|}jS|tDh1z4-AV`ln_JT6&O{4Tn;6x;-UYE6Pn+~fP6IdE(W0!;I=J~XHYw7ED>al(gD}(-OZnV3uAD(^g-3Q!j ze@8{k(_G7g_JL~t-Xc%f8alDr}Zn2Q&N#saoC zlu1*@3|wwCm1n%C9R=I(N7_z(mcsT<=-k3jT|fP?C^zH;1ae~kX3Gp-1y8-|nypxM z0*qoHM?rF6xb#vSZRV2r&B(_;p*@tLZO)cK_fn6axtdK}djpar3iCgDFI%_^0`U9k zSK&ueX0sH&`d4*ekG~(4$x`lD!%pT%R)(DzhAy|(-{;1bIMHr^F#he`VY4P7KR-h= zPo^pam8TYK{=7pq_oZrqAqjL=c|7MtIt>+4E###?@atfL)u6dQLt##fF4 zjhqyQhR1PFz+Np3Ag9-rN_yU2#a77?O|zEQZ_#yX`Htbo7>2{RJAd(0sa)JQyxstQ```4dwWxCLxIV_J)M8Vwm1 zS}m{0hS3}Feh}MAeerR{%2AAVRNR)I#{b(5F3WE2H}Sx=+REg8E$b&6iPVR2qlkja z%r%YbMbuUhhV>?a+_iW<>a0|bVo$haJ!+9@zB`P7{Hxn)fj<9w|D>=_tCbsBvvzY^ zbO%#glD_Uj+ou!k<~+HN)eCLd52Q=#3t298vr#v8ywrkiR#rw<*n)YMiKY792QDI3 zfg?!n%j#BkBS)2s5x?wsjT=_+6X8y;8dg>3jJ$kvT@8&QPKSHUjZ`mZA~F=C`QF%5 zWRk4%xwl!_Nmb9lf1yP0vb9Pe0_9pTmn9H(#rjC$;F?~$z#{8Ij^-HE7fq`zoPTEW zSK^JTI9iP}qhm%l5gq6y0?mR>xgBKcjB>%G>0dC@(U9J24ACi66g$gcgibcuAN zNusSSQIos%TP5Cn6FaG_!^voSaw9dnU19wf7!bAZp_4}e=rg{9sR2L7-Z`-zNu76^ zqR>*~zP-r}SQvY^>L5Yg&aY~NCXc4Gb3Po2)GF;G;{~<31@;car#2#e#zTLuvyF*P zA!_A`*bF}9QLdNTEt12;7+fFT#%fv8?|D5lV}Bz`|}=mZK5fzGi75I?-`y(@p%(8DJP28pjGpCm?#xi zp#*W~&r`(O?f$Iz+N0ajau}j3jHNwuIf$;s#8o)Oou4{|jX0s}2#u8xYsG7u7;^-y z+!yrj+g9HCdSuUFuKDB4@sRFn_#-6bQlN+_{ficN7SF%%L|XK{iy-V+`AuLeJm$Uq z`PoAeURWxPirHf=CV&envK2iH>%(LC&!MTjbCW&89#G(#|GSq;tbA|E?Vq_gOcVOs zo22G8Mqb3rV>IdXQ%j;!+1E9T|Nqg7TQgX;zs%y6e9m}~7g$oH;m4pHqb+n-Pni8bIcgBCO2$?bz9%A)Ll zPkp~XU(0dgURS}p5+J$O1FVpncG7o!#6AsSzvb=`H9XxpPTy^Q1SaO=k_|I?-G&oN ztodnK9MJ7fG-F-N^8P}BVmX#x4q^Nh!Be$56Hr-D-nFL;*ga;{vijDc7Kp+~T6{js z==Fp4A$4K}Pv+;yzvnKzGQY+2M(NW_5(F>KaM$wk;UMkF(65A*%c`^kI>lS+t8SJtxL^*HhPX^pEGJy3;R##i4 zf6$5p2`P)Rf6i6THQtO>i;UI4EU*&e;+FueW#|_nyUOb9mvf7+*_YI<-0;vv`#xy} zgJcW(!&K$V_s736b8-$jZi5DX*+rjLK#L>KTJzpy5c$o|Q~z}0r5^Ib(tjKDt+o9k zBl2G+$%`EcbS;Vzzh$wRR~&EbO(^f$iXHt-dw!uPHZi#PuiRp&IwgYWR4hpi*L2F((o*GW!s?}EpHRH7fkb|wUnyNR>*YG=fj9z z{9xVsA*Y&kR6CJ>(#XBbov%>Bt(*#^!q2t^lh6hOhb%?rv2moxhKR)v^jY5Ddm7Le z^QWmy_{9dk%9NL)TYqIFW^S5MU_LQUKBdhu_W7MuycByF}y0wPgWw?g7v^wlWK=iA^qOBxPdN6>)X2fBN=5d)si`~i__-;vhqMCOQ9kkzso8`KRNhjXlw^y7 z)TaWL$dyg(cxuqE%%|c5qyraK5m%m7U|ex#qdKiTQQp zVWwBvoEyFEsyFEQT>!$Gm$5%UvbUmlS(5083Xe)WByK1c?u6@4tO&S+B1$*Y8(wR(Hl6dg6>Hl?@!`v>YN~Ls&4_4kr|9x0ll6K#AO)S+K!9i)42^G-=%cYTui7 zriu%0L@NrW2{51HrIaZ#e6Phh?f7$1vNv$Gqd?8K1Z^=3Gt%6-^JnZO$v&EU?~T%j za_lzB{9oH5kI@gj3cF4uuz!M^{`hgnlvO;zsKe=&G7m=5(Ny`Mm4m7qobIKdO=i*J z`UjoO5)Y`nK6c#&z+f_-b{;?OaUyVH(Q ztC&qU9^Ff5tdRze5^jN{DunG29BL9xzVos1~Wh0Y*g7d3{C;kQh zRU=Crxn$1Hp;rz3tdLrmQpnYDt0%GmK><_AiZmjO-V?|#mr{tet!gAr1jeEMHngru zZH&AeZ1sLTPo&>RFNHTM0rN3V(PAE#$hP8VHF2S&Em13_asZ#ob716ia_(R;O1Wa& z{f5}D{ZfhY4N>@g=78g#+t3Prswl*|ST9;*X4aWg4CGl^?Pmt|#~+h+B|LhrwZZ6l zlV@Q+kK{qe<}PC8Nye|#(8JY5i}2HRbn9w7{>n}0i0$Go;W3>z81aQqB+p^xv30rD ztp?Rb8V)89=|4)Y@2*-AclA7Pfgl+WQ;II^GoIrJ`g0amR=qO)TPLi=Hsm+o*sSSU z$~H0Oq#?+4YwrVo#5ng=wB;%x+Of}PSYyQJC(Ev3V{QN(%zo0N=TRXVB}u%v$TcW- zpeD438E~%IwdULF)k1f+Z6dx1qL;O_!`3-9Vo=^@?oyHT=mIOXmVHx@v)u_pTVF@6 zeg1oCV$A737&j5#q?9Of!VdAA0Y)XJF|>qo5<)Qqjbe&~>9B~&je0{E50%Nra0T85 zw4g{CT>k)yn~uheP`c|$4v*aSE|RxKd&mg^|6+zBex7<`K8(umB8&Q>D6r`XYf4gD z5{SrP$Q{-f$-v3Uuqh8?y?j5!dpm~5RSQ9-hcEwS?_;+ZNL=7~|JIxAuhwRXHQv#$hDdax*Uj5n;wf(_nRR7fOm-01H-5H_ zm@{HTrB4`cfILn^$0ko_BckXQ$o&GAIv#y#{Am%66!m*9WD>ti5_}I4j1`S)E5VfR zJ4OrI1W;ftD!`tOM)eB-o0(U*Xr_NP&pFm#$BD|@pWcv{1kO4x)a%`UKn*=d;SXsh z5AtG+>%b@Rt{zV9FZ4z}y7q`GiOjSv7XDm}oBl@~9VBtm-xe5^&6 zmpW!f|JwxWG|vFTvT6xIYX9l}R@dtO&z0xT%V`k;ENEcjOBif}8p^vufOA*?0Xxz5 z($gX?cCh_xA>)GNB%%ja-+vw*2O)1R)d<(<=k3yT{Oa_7gkeFfHAQfboo37XJxGGD z!)sa|t2-}Dt7u#V_bClcwx?Coj>h_4xRVwlJq}9UBxQAcUQdt9iBdoIe40y| z0K-L$2cLA8n^l&kpaw$5NNF9rF1t%SU{AY$qy$8I0?YXTJOrO9tse!AZs~LyNw!>| zxQNX_+gKvDM|%?#6T!+zje9aKga*aEg^g}w#(%X8pFh%!ApM=fJG;mTUQo7~zL88- z0BaT?p)tG{k)0yWcQzDJqm@Zg^XRwi$yNX>?**-Olm$lkSpV!z>?&#*DOhhD{UHp26RZ6R2?^GuhE)fU%*w(NXI3VnK!FXbOn2+R;MQJ$y!W7)1?~@zB|Hf-p49PF| z&5hm3n4CmB+T7>}WQt`nq6QhPxAbj&tuO)>Pk|5=573nKXkv3P1)I19*6f=;00CeF zN3ABU-Fx|attR!|KK2E_ytm*z-kWd}#Oo?ODyXAm)hoh>VK|H0L^U_c) z|B;vi7nO6H@YY^%tj)&DNRbrlsF$fIHb`B&NL!5_?N^{tiT?LQNL$^ES>Et{#P`jB zd0V-y(r~1YpyNm2#7ykk>J|yfB?Y<{D_M!411$eO)dUS3Vyyg6z zhB2UQL!T04f`p@FpuOR(sK=bbO=x9HmCZs%(%~#L?iAN@ThDAq)WK@0>+`HX3YCb} zrzC0)_a6gP&*GkniS zWOG*>iQjOX?;Y%ZD}(Q{P6k~+jBq>_I2{{W`abUe`Fn?qfBTa~+V@)$4!80j3D~Wy ziUb*nMZ#9e%kQo{y+@LtJ?l6S!1|DBR@z7LpXRW^e%Ca`ac4r?-P&4d#!ggv_jkwS(Is#3CWMOnIC;_F7O3Y#L++nqG7N3)3 zRj`3K>`nLnd12ePySq3y5lzYithrOkmpxLPLI4DL0T#F!;KKkJ zNu8@rQ-Q*HcD}wu<%F_OS}(tkc+`@g@g5L(X8;$}Tqh5R0GeY>%-P$)$&u%2|!ydcs1Ox;CzX~w+ zYMAqyQ5R|G?VSX|fq_&+2Y^;;=nM?Qx(>)}+D}I*fZ)pI`nex&7Tr8j0J!|%-~b3| zY6yP}(>E|M0+2jFEJiwuX5nn@Q=rq`G~PXwUhd;;C*m@Z4|s?A)>gj(@3ywJrwHSx zILo^`$(Ju*cIlRASvolEmX3w+v6TZz*r)I($z8E2x;OMeJ!>cj#0iR-nVE50*|egM zL(M?MWKG-JcyH+K-qo$cY{&14JOFvnfe>3>k-Uv9F+Ny5=$t<=`y29J)mP|0y}f-P zf4XnQbBro0{QXlu|35uE<0k@pz#s3T;I+H*^77-M@9&>l|1EWRfL|vB5lOQWTJXho z^50qJe)T~-L1=POvX(iu-I*mOYr1Adgttxuoi!vC+Cax~f$=fv{IMEia&>EZgTl{( zCiwbU^79aE4?Jy3O7t;mDL-{7^iIOn%gtp!hOmK=JM*cdp6Ofh9^A{`$N5O^3-ZFb zoPA?SG|j8?ATBeAL8p7J+rdijNqW%@zDW;ur)Y`-LFwd>ZI+v2DF(jg3HwLj6R#j; z&9boZx_eRnix3}krqq>qF0Chwd!pk({4$M|w(DAMaFVahRLOE|l8qf( z+di)P=j!DUDC0{+R-F|R;ZS-a-My1cqkH3Qkg)rXLy|0#jO=_s1ewf zepJk%C%4ec=+PMZKUnF#ynQ8c{|4XV0W-!3imQR+flbuJPTu{lGoJ??9cq7~vflb` z+^t^g1p<8$!Y%5*>1V}gL$*tONRiZuLG`Ujk+pe!VW5A{um1JNlr96}frSOFznyYz zANTyCAqQ{VNIK0#>v1I{+Jl03+&^{ntrjMH`L?@y5Q2*-)^_BEH)oLUMIx*(B=Njt zKJtP{v5m(Et-hgj;l+L(7yFXgE_-`x)ick#gE@d=<47*>W=s>^TWI97|Mw9AyAd@- z0aC2{wDNZb*rQq#1CuhJ?TBu$Z3S=@CIbG{efQ|J(Qc28RfV?<_8PUV^TzPvmy!m_ z4+tR8az;hDbY z!PNbTf86{%gJ0X9!i=rtCCaA$*F~xrDdGHLubkB{$)S4O3E0Yr*LtInEtq_wpGUo_ zqXvo!cmrveSeKoCt`rM}u@O326+(^VvEQN;X9+OQLJW;uM-NamN+4tb9s7 zMfXQ4X7XDxKU3)%K|m84M&3HD#AC?dPGmq+Y{O8x3UJbTsnBzr`dTt}5RoV8f01*~ z{mT7k2hha-?$q*HaDRR{08#BEzVn(%+NE=v|4JV2?5);rkR{Q(EWzBFSqt~>n^}A6 zyloA*1HtW|?VCu+rII zrmHL6m$ijDC&3m{6o+5Q0*>(p7(EFJ_aDQsA8v-r+a%H(x_5-ufz%1jM#JnpEj^= zo(z*xCvd!z?*Z+9x z4`dYI&05^gqQH9qKwH>_L3jp`U4gTH1!N6Mp7cYW>@gQcCkUFm0h$vaOv;u7^q&SsyQvj};C5CzzxZnF8=}p0YZm z+}8nUHjvk}z6=M_38Z>f>)&(G z?OIz~>$O|pPfy={UU0l}uYJ|Q4xkU7;+hwy!Y%`Slc}GNKfhWTiYLhO)CQlQp99$( z?p98Nv&UCA)3H)d_|}J}eIQ+9YU>HS07M>dKRH@~l;b_4G2byN|C1T%`x!%L05S`N zVyI^i3GesICqGDl(MZvM+u(qXHVbkN1_26Ph($VZ3kXbHDA_9UpHx2LE@2 z{@+8BPWjR-)lCdY5yFOj>KjJV-)zq8iJ;iuCvnYt z;QC9l@FD67^D%PumBkk_{iym$@g|V&4kJPv7v90k(1~7h)xd=r0=+dEv4lDD#Y;Xc zqECgim7#i4k?gk5TvG|?f;!?z4eTk)^d))8w%;q(5JIV}G^0MF|NIbpVLiw-a5!%( z`O-&@7ed!n(Li?6M%!fpM;qcA;9%`0i@uC1P%r7O&{lE;n!@*(zhu29v z%H!?Yp^weWlWQ&hJSE2q?c_3C038kd-l{#cE9pR41QQ;3czI)jG1(!Nt(JihpHVK8 zMNo!z{!)}I7@Ujk;)Z!ELTHYf><$Dg*>1$Ev+h_`Af>otMixds3X4#Mv^5~*aJm$F zAS{GATne>ZKFJHC<*`I1`Tp9^j|wr*&hyqn>|j{g^p!5hew(Sy|AJ{!8J+Y>Q5a&f zoS8(VD2&C@%5}i;#zm>YS9RqMJKquWmVjk|^yUA<)LTbI!NuF(149fwAl;>ONK2Q9 zNP~dnAl=o7%$g0?x|mG3CsP0$jZRqamKp(4{CFw=gIr^8bkeAWzFvOlzt42+u)N(@cjcE5v} zS`ob`TSB>Ef30}!GZcrkC6q2P*%e}st@E+n_q!an$@})(($${ST^R1ts+=D^r;cn< zj0aY=h%u{cO~m^-;?mb`bgI<}+F32l5u!TS)iK`U6{_U9T*N-&gr~XHEIpCF6NB0B z?=}1T)(d{_<1I5}ac+K?hO1Q{@qR?Syc_7PA1oqpNH|s9$kRr};2M%MpA{?$_#@~D zwO-~(ybvOeB#NBluHP7MxyH zG6TMX3zM(KXc3%bd#*5;TgdA%ayk=YLqKXImAIX-jERP(zI$Bdf!5H25ySIRt{3uh z`4LeYd*_zhTWxkyW>)XCf>d?d4!Y%vw-@a3U(-_*^{_t`@$HRx-f!@s{Sy^(vwqO& zb?6KE7z8Ke{XW;ZC_x|Y;D9QwQ*(HBi(?*xkpb^a)Uv`W|I@Z4kJ7Ng$T2cDCcV>^ ztG@LHjSh@WKh!{~O)|@qk3(PwMCV^@fqQP&jlni}WPx{7IsS_6)zOYlt!enY6S7hM6bpJ`07)JuBmVek+lITY=YoRQd;&thxs3v1n1WC)%8iyqAQTAzX$)K8uZ+o zqwa2Yk2KE$eUQ(z9^5-NyB*elug3d# z-_W0Uv)}_mSEzY+^>N9$c?rDdmIoEl?RV6JebGzN1%gR`9sB(U6~3IU`I|W&xXFF) z0*1Jb^M1Zf02cmvvLh&4r2S^~vU+uW=Dp4}C~*Q^hsVG5yR%R{C{*aUO_;aNir2ge zH!ttsrsmFg5UH2g*eHyuV#lvUJHmWG!2q}XQD|Z3_I(jlQqR#3qL2*H&K)(-Bh>tO zW_C#e_{m#7Cbu9)d>kMw#C(q!Lr!f%yeCDl<&c9ixBu0|Z@G>YUH~*?Nzj%7b_58^E_Ims- z2Sxq@0XsfEogfPQndx5=&;^{M%4BSBh)%A!*Bewg!6pmC#ZbyzJLz*yvj386+uFV^ zt=@VAMr6$q7a%To{C-}uzCBqS2%I9tn(Rj)cJ;X9q?GSIEc`f!6)hO_8>y)FrUS6A zexTx4QFJj;5C!DB^UO@8eEP@9&NM3HNZh6K3`7Y67>LasCF8qcx2yeT4^$EpTgYEF zj_Y@vvtCs~=wkmPtE#6dLCR6{s$j7Y^?9aF^;?U(muNBNlgMcU#1`cB6d}e8J$po! z611809SMOkH#s{wUfkdTL(064&|YC*G|EtN|DnE3Q80twdGanZ`9EV5b=BWdi$wEd zSBH=~g?Dr~60?n@@e-X0c>U`-_PhO_g{L9i#cO3wL1ipMXG%Zzk_^XO1 zCQlQ0x~T@=u+{bHgg!W6V6zXt2kuHUM?^@sHZlwnYDg@Ub*Cw!*MKc#ea5;Z4vzdn z@Of`C@+pSff?q~U0J@Ix)27wOTa|F@Nva<8SKBWMo+Q~?eqtk8@JU9trFPI0tUR>* z%Ny>Kqlm$UX|60uUGR(-SBRb<=?BCl^P>ckYrO3$R%_u0q(=Pb%V2C4>`Ps1+H+CL zmmh@RShQjNBDV9t3;m^g^ zdn{LypFhzSqO(M*VCXR6}NZpL!1ln_-r4^leMz}u9E`$SvEE(Yj;4nI#$P)`!(%s0K#|3!Pn~1wxYfs7VmN4q19Kr^2+*&f$2n!JXn&Nxel0m;0f+Z)0&21{DBR1rrugqMti~ToPg&wq1c>(t<@QO5x;BKxAb^QrS8NI>lJ>+E#ujyQhkG=N5&X#_0 z_$8YJ__O%K|6Wi$er(+QhA#CB`rBowb=^;$j45WX=@P@1Pw+J#8ioTpB8dLKjP3Rv z_kms=6Gzqa8~S@eqEcy1rmFhK!nL9Y6btcJLDv$AI@Nj{q_`9&K4P>}JD$9hJASR= z?!RCz7b~k9YA%5m)Mo+lJKD^lE)~eT3n%P5G)d{md_!;IE}{dZnxJbf?%k1?)1|8auC34Zt?k*)0rNv_p18jM!s_;Reoz2Bbxu~s> zQk)VMeSqWU)8;!6pjroxT2vNX*YyV9^zOeFP>49vR8V8$*5mOmP~cFBYp66DTAAQL zpDyh;;24hv@Q4-IGAd|iD?#F54Frb&T&Sxz{{@1yQ4D(blWnbo&NGx91xx__{g1%} zcn(le6kzHD!?fr{bI6tGcW@9BW1yMc{(X1xgW=X3)P)ul0XX*p1-V+;H61)XJ@q5> z+_DGTFXrpd8rK-$iw!b_5T*zu_bvS=M&k(N@D--6d({NcnSrN& zK2t7@DRy*W#TP)u>`s2-eY7Tr$_xStOVX$hm)r>kg|m4zSOT!xq=y^-ytfDNEYuME z>nFpV7${{=KuXaQhM-i2i)4mEW8P!H#|nE{Hw4he|HT;rHt{HU9gKz(FSh>P=kvp1 z?ghKtN8qXVyNdlf`q77K3x-${jrlLnhmu+TV>`RtZn})Q6J}>;|3u}}fuWQA4y526 zH7sRt&Yl_CVH}lmdHt_&_CNdA@`4%Sqs-}xgwTu6#IA8~QhX6LFmXH)#c%jV5-*w- znTEaYrfAVxPc3T4ysn@Wf47m zFD%W4T<6~%3O40?(7B$r;Rn~8blUGmc|P=+u`@gWGJZ?PHh}5r#=st-FO$=9HySZ@ zzIws7=St&piiKR8&5x%Oo$SZlY7t#njK@&g#UQmSj`bMZdFrs&(ny1|m);B(qZ|i) zr%wv}5t}`mbrE!+SGB=Yu86s!^K48OQ+Z@l^PYzBN2INgYcf*ho|gn1D|wzg>mc=Ik*$C_ftg-WIQ$3v~en-&5o_Fx8Z-FzjPxFzZAsDH8GbUURP4T zBL5Z>bLP-M{3~+p{>R|&nlKFmcZaNnh@SMMXTQBfF@;H090+muoaC%bBG~pEaT94jjjVf=X%5tEYye%+~E+x%Vvv$IwXBT&OJ4^P)q*OauJooKdmOUY-M8+vH%{<z;+|Ic0&CBbKYL2?U4OSM#i<&Vk}P}Y8ULmY+Je`C4KGW&mzmaPV%MuUMyEi}KjGgwS;1gz%DK@ZvGnS`_UHB5& z@+~}&P^ao;P=3pbhkBHrxw}`YjphKH=(6JdiiNU;G=Fmw`lbIpLFLa1R7_c6bgtGI8KfNO3LP6o}Dk64{J2_dK*XQt)^5T)w9s* zr#tb?t=IMuH?gu>?oiZ zDkv60OqTncjf<;3y=rf)CS)}qz@Lr)tv(4*{oFui+7U=~edFHR;oLQ?E)kEyJ)kPz zlkJy{bIaaKPP@+SN4e+l)=d69>QlzMe$Ur)e5vpR&H^Rrp z$Lj%a!*Zq}TfN*5Z2v~)s*Nrx0VeC+@^=tC*GD8X0^-_+QK5Lt%e1KMQ{@LK*MPib z*Mdz{CIi zar=95-8L@*LkDUi6%`fQh{LxR&8V@GhS$N)E(S$x2B^kA*T>^2!yAC9xQ+~irmB<@ z9D0B(+E0Kx;#K|jn`8PJ7_~~YIZz!!*Ken|du(H0aw#F;Q9Vb@ZT)i$>J|NDN(@Q2 zZGhvqY1 zS)J%gH!~ubV?FJm(+W3RU%*=9;#~Y+!`)=FaiD~ zOb@C*(l0pM&Xj1~TpnkAE@5oItoDmfBVT|r(#d(Lr{txYNVzieC=()oS1E~Zhli#; z8dA%?O5IeAH4*?pW!83jf?_;L3D#~RQ&5Roer!`RB^&(D%|Z@k5-MwTJIX|o4kyUo zFg-FAhXQ1jGBCKf))r%{Q%bo$z`Viq2kPSEUwx5yBlkA+YMl0 zVp9lND1={FjSeLhtcZ+?6tmR&FtsWa?&+x>M^wEtpSUt36}O9hrt9^r2PN ze(CvnJrPv%>dPwAbObTF^-1%$*x;yv2x3yPGuwuco$WCFBr2PD`j$XtB4a-Df1AXM zdo;Clip&wt?G@H^m8+0oxzf0mZc`%eex|4v(%#VSn@5oYLKmfhZ#(oKHDu!V zj_{FL#RO+0zoNCkHoxqZ6HGzTh*+c&YkNAB$bfn=t5#di+Fz@>EDWzS-t}#T5?!i% zt8nopfqdlS1_E9~Dl&dK1VW}1jjEAZWdbKvUyk+DwjQyBkN5}a#Jz9wwV!AzeU=+M zDjBDc?~-;T#ci1a25|K9`@a$vrzIw(he7+A>@KAV%gcFN_ud|y?Q&hv%aF;osGIIL zIj5%JL>guH-4SmpZvG1-@@%RHFrd3zL9Dy=j#n2HwG(f*6MX@l=L^cI0PuW%k=myyQ3<3{W7GSFe);nB zznTLuyRln&Mj9r!y?oc`D2ySBC%bxk+B_fTkPA9(?P|S8haJZ)cehs{H16c=>^Qx- z19SKjtgqIA@x3mmi5MXQH25H9)7!i$EDY^q*QGtZ-!J0RgO%aNdDCG)1v<~}zQ|T< zz5r)s;MLM9YM%u|kqF&rqYp#wu6C)nfDHuj22s>`RuUWl0$K%|J``8CV%FX_Z;+zv z2=jJt{5B4?Xx#f&A1yd07I6sBLr=CtM8ASK@U8q1X^?WN-~2`0Vbn(E>cy*9ug*6` zyT2T)v_IO)@jwAE+Aqxp-4?onBv7A-_8;Y_eq4H(4gd;g2Gz=^bHEyKH*Xjeqwk#o zem|lpOx=U#%Z{m^S4P`@1H51`k^qy+laU(Hi}Kefs8c~rO`_RVquEa=!#Sk0vs3bH z*<%^drgllEbK?>c+fEN|`aoeL(+35qu#i(C)8(3bS9R$q;~g179qWfm)!$ z@(@D#|1S<=gG>)$zU%HVj4Jv$*tQZQ0@vIIsPPkVvPcY%%G)x=wZ$Ax#xvlI_KaElkP>$UiFSA^b1vTe|{Zsx};DoMS{Wdr^^44d6J z>KnDAH4O0O2WEdm6h-`DMJGAU+t*O!}IRuZ+m%Z7J z8p*t^5iPA}#uSe6Y=Ib7Qfie2#l}@OBT0R>-4vZGIDs(WrJ2yk@RL}}Pk&o$EFU1P z$CSt%V_5wdj=ip zPa2XHw-IWM#U>!Nm8ccKF4igg<={3339*>Yih3cqf`&$6Z9W`_MhG5W4urZK*C(md z9MxzE@A3;PV8F8MB+#%og{B3QTrukFvvjF(70SqJ4Z|{l>rbfOBfMHr$xfoZ?7pkB zbU5T*_%}>uq=w*<9lk1ZxyWvmhMHuAM_vF;p)dT~;|yxi_z)AAtHA_eoE+KOTDY~R z0sjP>tCSN&MhI7|wqpAWtRZxgSnfe}{HE{oVjeVYmkP*SuW>5J8w*RyMKoO+#M6G^t6bg};Y2BM81UNteKbTsiD?$X5Q)|hce;A z4gp!G`wl`A(+-AM^_^uLn&MakGv+Cu(?y?5PFcrCwx`tB+JItJS`F zt%$zS3V+4kjguZVLp}r}b)1n^i6n(**?dmDv+LEy%p6ntU@j;V97@RV6wv#mImogI zd%vCCi3+oJm-!xtZo8U6HDf(7Mui+8YbjFe!UPl-aB8_5w(dPjBu4k7lrMnyVijub zL+H+JHC}Fc!?|S=1U-58)7V@;6)SD!d<|=8N182guKyZmWtWQ1T~!b86V)51+@3&& z^+J9KR=&%3)J4*q-&!5J`ce%%;ul8(dF1L4f3iXW4-ce$pp~wsj zw@1+zK=07W3%T_}HRynQeu2XJ1g^5Z8)k|uFs%Lv9Rdis_qrb{>AEg|S5i?^ucIQT z6MphPd^qV;C}D_l@d2*HAm80zzT-ZITUV1S2HB7hnItAjR)#^~Q63lPK*s04@P=?Cs5f+9wE7s=-Kt zg6IJ(gX2nD8VE)$o62`BdBZ_zl0T2H-ZHT!gSiFQEeYSG1I^>7*+d~_)Ur($+Fg(A*8Q1<`-4Tv| z!9vedUYS>VGzkjGUqkTQ=f`t0#5UaIoc{CTk=VE9e@C>pRAR9psoFCr!JwB{j!8&Gj%`O_l-d;kVHS{xgcbeq z$Fw<-@BON?4evFi%A|bEYG3h63jv8ZXd)pC4QiyBKR?v=K=?l66sAo%KB+p($u5xKM)20HFE zZH9_nhX_6au3?@CBcf!>#CXzj8qTR^E~{CcU03>ibO@fx$(iqR$YExs{wAVnaB_QG0`u=m8; z#Y@!YnOpEeHJXBi3Uy2|Tsn@>K5eSxuNiu>R0T_NGp^g&up8{2sWW$Y3Q zMx-a7ZM?nk#D10*$PxJa8}SJ19Iw&tLPvH%>#C{v-@~+&4?kEeS0L%mIPI?F=0WuB zt`ET2pd%K0`qw$<$8j4ne~#&Er4m8y}CE zF`~%|f>i%1y&Mc76e2jEe;2Ak6Z{E1Hk!jfr0FGZ6zj4i!Ms|=9P+|KXzzA31q*$T z`)mg{CnZ9ZfR+Ygz+D!`lGY`2^-WAeMrvqAH)@zq#?_JQnB+ez7ZM2prs!+HBIV7$ z{>9c_?TJ{tLmgsy{=YdS$0dG$lD_z&fnIAdNC-^U<3HMXQS_RGjKd$%44WukY3uI~ zm6Wu!7zjYVlRRIGh%{GzuPg7MW@ff3?&ZY$uFuP)VeXgvBi`<7cL1K@B_}7Rq@)zv zbo!`Qx%a&@8$i*+Z1VgzU;jaM>&w6nmO5+&s5C^9M-XrdTY%FTfX!J+05Cm&4J?j+ z0zmjUvApXrPxBE_Fk*mB&uruH?)FeLXwOpMOPanZY80548rN32UFW+EkH9ASI~a03 z2o|#;AUtGnqreVAcMZgLnGTKA&CBk1U;@zak**d_Q^Dl84@QEOC7$7;ni>~6?sM&nHEfw7 z00Tnd*8TSC22uO19)@c)5K;#P9(yp>luNh(%1@TV#~*+*WOhcm+4Pb`X zHez8o3g-DFQegyEH|S)S7H>&vt*!p>>y$&Lpk?`2=S8HL8;O36nPADUT55Y?s>Zec zzNwnVO6sJR9)p`acF(_U#JE%Wcf;QnAz+n%>?Hx zIT*c9(TKO_U8s?9BrS2mNl%_2@(JTe7T#o`MWx6-n40v(2`C69C-1SJAWu|$cZ79s5S4G)a?kJD^~e7|)QQ&{M6YuypCZzh@KC}k^zS^CiDqu`@Q zNoyB3S>LM=zM2y$VTLOZ4{T=2hq`4PPn6!QYKEm_-5MFs!O*mEU*QpBP>u>Vm)Kz^ zF^H95>)~Q~pwCArJ)_~*=$qnHjiYL*O^S9G4u?b&EK~^n^1z}TA%dm8N_+bto2=}) zrro7KX5%Z7oQ$YR%3?cV#h^gdr#y;qD9fVW_-D*Wm@QQ8$Pptbt<~C zvV0ITo1(C-;E&)?eO3Wp-4T{W%wQ~_-FYtEx1FoI!ej5oG-OG6F-^X(WE0wxXWILh zQ(!v69=m`{VD?^5h!Pq1G*!bAbJaXC&S1k|Kc2qHMrb6t?fahI&9m?}W?@;BE$-HRQ5*)Cd%#%)CLI=N*g}=!x+Xh2J3|aPA zE8x{Ukya7t`vFQ%tK_1;Heh_1K<26t>p6%iP)wVCj}i=&-rpE>(}uFw#JLJoc;EY> z2Y;Vq=Q^7I)F8Wm%;|~nWacts3J>U9EYc|Z8Pg}%@{G4V za(3J2?a$;CJMee-C!8q}>$bmbRjkHKKqPQovM=}U!s1DSDEj#%v*e3c*=39ziG;t% zqX|h`#Thu1xN+8V7rfchiTxS#}HuRHFRilUU`%HDImYvsM#B> z;TdmhWK0asnADjuN+eEFW)<6Sm{w*bxd!Ss6WGCE0}$s)St4H~BYvOS(j`D>CoYts z7Vj`7N(P2<;A#T0cr%iT{{VQm9_pL=ZD^q(!Q3Oj&ks_T3zf z8ey2PK;F58)_BjCmTH;}-<%`q=S^Pq9XY4@Iziy~=oKSlxsQhFs@I{y^?W^DR1Ky) z^Yo+XOIFqckGrRu{;xi7KQ`H@QQZQoc$nc;7ejpaeQFtxP7>d{Go~Z8cE;R4WR}*H zbPqH~sm(3uCAtYbX=eG?h^FM5=Q+df%QfPM*`y*JbPHfq!jYM~Q=c@uqTeveF>!~h zP-QAJzO_@FA++7XRkkDks5iO)z`GEVZk39RlFTB9(KIgiQd5JKxE0a9XmVeWEjYaI zp>zP&|EB{8wRQcU3V_9@7*{TbwSAxAp>u>&F@;bY2i)jwWO`zj&g-Xm8 zF|Tx{LD=FM9#eA>=yl7^_wd*WfbLted?!=jXbq(T6ojZCmNYXXmPvh^w2n8+Fq?P` zGH1_)i(%;r)_)lB$1~EqKu*?#x~$t+Xh5;xM3uZ1`GB=hZ&*JJJv9cLPd{LWsCIh{ z20ecqT0kcZ@lHe5Cq3xUSd2?gL!A73zTt{sORatNHsVcSw=737Iz82^@7y!g z)TNlXY83>Q6r33*Gpw|*G+9my$Q*7-=#Oy5_0RYtdL`;j|_t4mp?n zNr2|o{Ft@bEvrz9&P3j;f{uQ6@y-@qGX2kq`Ok7HcFkBV=y!9{rsxx-)|FXtc&%ee z3fS8e>@!`tE9EcQBmQl$NY&cm=$hVZkYyFbC?(Nzkufig964bWl!}}MYyD>irgCM1 zuXV{+PGMPGLy9DsUkjw(6?DB(W`!Fv>b$6Rj1;<}nRU#-nh{o$%EglXHXTbyCZCBV z3%!dftJc84sD3c@l!=5Y^^giSaR!eeHE(>gx33_Yy*X;}Xq!>d!3rYNY<)dq{@UH7 zel`7RB-X4q@zj9`QIW8D>8q6Pq=IwOu{FZ*4K_Dii8*9wyXz~TDN}#ia@Pm@>-3Hi z@qa5}Z1IG~x|Ni|SiBkeX*WuDrV>M+hwA!5*!q0-9A;np2srLq?>O3Q`K0MrDobaA zC2Pl&9ugeitYE31qkFOaVsq>6U#-@)GwG9Fs-W6p2IqiDA!zu;o7R_<{%)GoZa2n6(Xn4J=2Lk{=Nw=xIWcn;#>TDw= zF1uvy2b$;6^>t>xuJf1rR_!9uGA;=}kJe-P!11cf$rOnI&Aa4j29t3>KtN_@rn#Nn z&V7(g%2KKwb8+F<JA8qoS+Vcc|@t&6)rI zcFGAJs9P~WB}ixqa{A}{-&;oelQD%zN zdSp()SBk$m&Bu~WHFmFjPcu6uUGJbH^f^J#Lo$L&cOv@42g^q07 zT8l?D?2RodbuC{%m)Ok?S&n>(uGT4b{PHZFNb+gp50(_DZFAhI!_W*wIV|mK;nH(U zcSxjSd#S=tdBlB>mEAIeXGJ&EV-t^TyI;u`+)%ff^r`&w8N8>kRn#Fq^;@o)X5u4L zPH=BqbOV_{vOFxtSs1=!DoeRvWAvo#N*1PDALdRoW$<44+1&*xC;~^fIP8OHZNM=jw`XzKY_KM9#^+9 z9!`?nIC7~MSQYmDAP}7lwGWK4qg z>67g8-nxw36*aP}8Rl{JT$-k@u3NN*^z;h&u?#dh<%36rzNWp&eb{5KrDIBrpAcq+ zqr$~6KsZHG^$|JI(yHP1jk~;=$e2PeeKar~^Vu-J2w?)|Fc*JU|MK_DCY~O5t@;k; z1p&h0N^8gA7KGLFdJ?sE`l>4A0*t#lqr9Vr2%a=bsqE^g$S;WjGyxU`bQwsuQ)nBb zP*Tw@RmH@=xR>*vke`@j7`OL{PyS7H&SX>bU>If$%2B#%*iljmIK9e!Cbixfu9>2Y zt0Jr>z(Ki9aqgsc7m7S4sG9dvHJ1~?;~^^MrY9FNq>eB6KEp}}Q!t-fc_@o$By5%R z?egnN6Im*Ic)WmP3ymkI%^20TS7Vtdn;ol6&S}G+HNZlX`{SqhDdgt-#H!*F>!;#R z!R$D^Fz2h1rmozAmN@raSfJ(C4rOsingu?GkCoPRnK7r(>b6V`Sg$n!*L1XVKv~#? zx2#=ct}IYvX9WaS!XWiSp5)c&o^Z;enw1At^Rh5Y0jE<1b=-}s*TQ3#`|Y-+qmL_X z4XKXQ#g+PLs0nIS%UCqWMVunO2#MPk8>xY2-L{!HhP5FmGDT68W=I!{i4ID{8Kqo8 zOk7f(B|Jf5{z!>}7DMTd%d)(8vY|x;y(&*oE8cIf%MNNpr21q(xcpw#LC=?byI}G$ zW_BqD#-3RzF@>$nU4<>Ut||ZJ>Y`j^ntc2H$ke#fHz!u6mp=I^|0KNk-H4AqBoIkF zdeQ7vjA|;!dp`fd$W-05x=C;yI0d$vEkE%0Z8dMvuD%GCIN5Xz47ap7bvO9Doj@b5 zn`TLr{Mvcv#Rmxr3d+7EK%Swvi1A9rm6?IU-&#G`?#>u)i04f`Mk`JAa#AE#ufCfI zQKuD;9f#yWDSrJ(-x_67V)EP8Hn#Xkr`8uRVEz$v^@UDRd2t=rD|1N;NN=^&QPaaC z1t?|{VZf5}Zq)lKD!jStoeesRqe7~M`OxGBEm(d^gv)+(l*KX+tr((f)urXfi%;J~ za-rp1HG#>^olY`&Hpj&bYSrx;5AM}^Ib>Q-o3C~ibGgZ!)+HvZKDbz?=pOq0;UZAx z;#bPva%&38XoI@V0PYl`h6MWHb94H@BRSMds&-s_yc_Bs0dUm*@S}fc7W`=5EF?&O zCE(`Y{PBTLcQ%S2DG4}Xq_~)2wN;|sg3A~hrS2zZ!$U)`|KOCHnKr(+7hCi3 zxuD=(j~!kUg35V&8;rtl^0xjW0rwsb|BMKZPdJMBO=o}qj7eb}s*O8-+;V%l+X`MT zz|$Po(U9t2SfE7NlfZ=?6Q_MDo17lh(tTImW>M(aV0fkyD(l!IL#)W4vRn;U!~ znZW#24TY4Z0uB2wzIB z9s-V_0D@Ue<9A9H-qn+@2O?0OL21xCZCPHQPB6!(i`J{p!0@%B4@@gKF5$b%hhj){Gd4=+UFgjkdqc$q3J z+#?;GP?)1`XO#U+-6a+z##yND@{(X-ns6dbL|`7;r1V@evLWdU>Eb+Cx>$iysvj7+ zEgMD&qQ7yPuJ&f%&G8Mt9Yx-&DN- zQhh{8KnN6mdPXxbjttHq?<=x?X^ePLt1Z;*Q$9$zA}x(ITEVJd@n*^Y6Tdj8n3zLq z_Z6Y7Hb)NvthIs*p0Z-(*)S>$h8YuLT@sY&`v|97%>|ibX3>%58H8vp8VgX#RWRu) z{o&$f|Ai4#Qb0$^fzD1o-Z)?C)^AuPw z35?lJ%qQ|04ff+aV7SZh%iTDAKuyPgE+NF5a-*Cne*sV53Oi-mo)=!rhoi5&K_EIe zy)iz#P_Vw#G{xgui9R(l$fWOm6LzOt9jR(XyhGpXPRs;yNG)XBCZ3cDVBJ0|o!oD- z({rqGIe4p1vJs$_R;*+Tg^+NT{G`Nmnfc7d%{BEGYe;u-MgWV6IayvfdomjunadAH zFvowGho?K8QU%lOw_3|kzhVR~F8NbK%aeN#-{p9yJ4ef7~Pl`H7n3Es3 zS}7J`&l)~1!((rboE43?AF=qSR%lxs3e!zL!-x7*rg(X#!Ynx zDJNjKIm^}A@O>!=!}oo$8^GD;`s9i&1~jNXq1dJ@@y9V^*0S4FOXG-_Q$jL4BYa22 z3@gLE*XXUr2NiF=C>6^!8cKa!TdlcEysP^d#x+JG%7+PYK8!G1v@hf1L@qrcGT|NS z>wZ$|C?#Snf?-2MdG5kP39J1jUoavms@hwsu-SA-8w#ay#mzN64cAHKGK|A!99!)UlsVAK0=Gl5wL;(Puh`dgg^cK3N~_Yk=A z9_+oh(1W@=2>h`;$C6-?hPwY(?{jDhZfZcFeJg>-qkD^uvH3T9HYUm+Q*N%#e)`et z8@pl7n+EUzk>Gm6?Dl?paknsio-SuUuuBbXxG#gE!gsMuPXJl&4v|q%P(bC;T!R~f zlGD@E*Qi?^KoSuJj8H~c%VF15%gNL;)LleWJ`NbEesGyx;G*Pp1hUcWBF*earcK^X zxC^+MAAnkIwXfdr;^FPCOdC3&0tk4)oaWrN^8ocSCV8xiy6bX`64N0w_QI!!tK;Ca zzo?0>d>Lmi0GWEkMO-d$(KDod--+*`Nq#y{z+{ z+4_yT(2@!M&mL@sl39DVH6$8I48|b{JV0HWR08;D!Tbw+Fc38PtDx&`Wf z4+tR&o^g6}Z_82zA3`7SdA{pZ_~u#n$uqtXHL!sD&x6b6)ph%?#^dyx4TIa&!otFC zt;l~eicP)e3^Mn#{o2oW&|@;VNc}LbxIKc)2_nlCm4xHD9dZb3hn~FPsH{5j2Wv%L`B%FRovG{h|xO8Q>ld54Uei$)&;*$GEXU8k3^~DwK zulDLRml3D^U#=!5Pv&owd^KuD>kjfo78$;KjYDBJ)MHmPh^&<0yU&189Tt|GuPlKv%CB;uByP^pt_rlNtz1fLqBVeJ`_Qi_b zYDIJqk%XD-6;JW3su*z4?EAB?_EV1(E)q1%%Qt2lMBK2CKW;QKQ0TNBSGeHutc<7K zk!xPGoqv*G$?WtV&HtAH?(E;u1>fG~gUbos*KXLf9H>p^OUhXF`c#+fl*{C1g=Y$FR0@7uSB0p+XN23F*Z9~loe37b z)PfBQ?5S(YsItf-z2c3cbg`!FiqTG)@4FV;e@q;ct+Y>nC_)fV-SXUg@jxI;@A*Up zC4p-_ZsUi{kNTqm53CDb6b1y@52(&_@k>D)Z5^$ZG^_17(`?&{-lt+3*%WBcr4B0* z8GocKbrQ$?5{YPprQFlxeksOawRlH3Mn!gX8^Ny|x*WRJ8kA)$(_maNU%D) zYbdxMRQl;buF!AuC9J_$Y0sfbxaL_mmL(89hna3U$VJD+H)jQBq@?FK#x%Q{2jcyJu`tTpEj=jxKC|*@i(VwZW?NA0glax)b@t9#@*sKf zw8?gPgikO6?jJp%5khkt7CjowY|Er==edCV`e0LGF2uu^Ry_CB5=N=AU&eNDRl{h zBOc2@Id!Q3`i4qHlSNPp7WdU4nrR!JIa1IoB9QzrarTrrrX=%J3VQh>!47s}WP&gZ z;87HCNUsqV*R>@J*WNCOuO-34N+sEEhe^cPUtp9z&*{m0TtVHjmZ1(H=-=BB- zgQ=`-P_c5-XKQj(Dh*|g^o$GS{2grelu#yE-1sa&=xF>bNTqbj&FG!M+10Ax-Eqk6 z!)MQ~%=`y_W_-7OXDTr@b@|EN7y6^pP_OWDT}JQ@mDwO@z1@Kk%B%TB`eT92!2UOj zg@uJ)mn-uE7lC>9jcs<%@>1Xa`0;}!RC=k&jdqKy@6ZBZF2=`Q#PgI{hb#qBhd1;a zuHU72imzZY%nvjo2-BKlM;}W1nD+66#sSH zC;$E>f3a+v?_a&yC_BDA-2Fb@UZw$MgoX1e-nx_guP!`BBlJJk(sDhN|ECm+PH#-u z4nb^%r-?YR7h->i*Sn>LYd!?W8H0uy2h5iR%D*N-}|#aG#jk9Tq`n84Kn}9#Fva7|G3AtF@fKQ3H{2_8cuhK z^&3YrXEGM1GEPgaL8NqLDMQ^ITF@XG9tbGPO0vnB-b#FN=?rqRg*F3T&#A!{RJ9^h$MQW7G4sr^z|K~cd%ROmD^@>Q?1 z?8~W8{}0Y(?;R`^iXD>jNQPcLsB-Wx!zlWQr;bT_qT{)yRnV~RcKCuv2mY!Oz)dO^FF0AWH z{X)Gc|HpzjJ2l3x|~^_xKlg89*i7mXzkP{A5o=&)#`@7 z$B}b;F8GMaz?k1~t#x}V790PX0t0Jcm>|PiYCh^aJrtt1o0V7f;+^i-P(N^JB|`>9 zRMsO|+8_vQbke`@>vAt_$V|hM^`Z;Sc})$4vBtFf=uhFS30r&Zr^g0gO3DnOgTw|+ zWyY_5Fv-fg%{EYkDTaBfEag$83PGKKlwono$k!WoN=^3T)7Jwz`X>cR*6l zI})+MQFZMdzD{4&6{EnvCce#Q5xhtRGeVS(YDf^s;Z>1}ds02)e)up$^7q-$`&+5S zm`C)>=lK}lw+9DuJrnLp43f(DMF`zGrRw9|3R4pVuC99Ky-T6IzBny>t9?ZKI5+aH%d2>REB97Uk2!$oUzKbo>&Q`8BW`VwZDUxIH?a|9^zNWlUYs7Bz|-9EwYEcXyYf2X}W06nA&G0>z<7ad#>1?k+`&mE!LHcJKXe zzP$J6?SzoC6GB3mYt1p{m}4{{_+{LV`?gwd#a&sOI-6!6-G5&EP9(>F)Sy`*Nu8uq z^2)DqV^_nSz5Mi&z3=9bDa896&g<2w!>!6oq9l1Unr!Ar;!p@7n35ARss3m9sdeK^ z052P#m=SlcSINH4`ZH#EEH^usqYT2j%2U1Op}-=Ml2Ug_Z5>|hG?6MS5~NI`npWO- zxlH;HH8lsCN|q4W+*eq!ON7cCtHzR9F}GO6g)jbLm~=sU3C!AfP;ws0J-Yep{3Zo) zDW~ExVk?ydRIK3(bCdk_!;D&71f^2Y?ad^$%D1rYn}KXN&Cu$dQ5%`k@JJdw-o|9M z4O!(8C&%J4QRNQ@-bfkKq=lksYueC4q)e`hdIcaHWyFLqSI(;3bt&WwbJeAhPjf(K z2br#{t7d-T?AwtE!fYd9s&;CIeN8Z4>cN)@eDp7LUvS01K_}R>xcHI^&Jv`IVg>LS zDg}7smh_ipi4R)3Kl4^BA4LypZfPbC*}l!g|pm%{F-M>gBtYL!9|>>4Z$NYgSN$0;B) zq_d``2Bn4$QsI$A?3v>cp-(V>k&*_vT(h!&{(k)lCM2ZxTvCSGxRlhBZKnQ%NH1SH(lzKojKTsSntj=No*(Qi3+fwLxe_k{?$*xsL03T@TweuCxot#5iN7onkTbK#hUJqq9M z;e{MoK1s-3*ibebN@?p!L5N-QeXd6(oByJOnT(6p7At?7-_Jc(VP^iMTt)v0DKuN+ zi+P|)6jRSG#GtQ|O z?2AqNUxkvdZ(3iJ?E|f?L7k<4*)=WD8b5iNho(rhRsgtIWm57a$S%~pKu2>Drt*e# zwT4U}HjwCHT9H7h1ua)RG#hHqWy*7;NT8YMvUBC}4Qx4g;%$rD0B32m$Fn+`pjpwh zT^AHI@Ox!=$k=chAgKanY)+(x$4ZtiXX^?J9H&0ZudV!#D305mnV)YsJiqKZ2mBPQ zIPr%y?tMXt_}MuBD+ zFf3x6{6^zrXeThuF#EZim`^3P&_)ChGc0;~&gny| zf;z0wZ3z@=7ga#d#EQ)Eh`y1@z3$a$T#(*U0^eD3*O(gjO|Y+|o{yW9Phppgr%L@_ zVV9Ie#ynIEIp!el@tPbfVr5n%3&WiK3P8jPnW>`Fl7*CopjDUI$sSHzmd^155XlHq6s^Kva(9IHXIAA0(;}!TXaJ%*=SQxP*df5 z`|>RuXBwe?>dx>$m>36ktK;i3%~O_sGEtw%$tAL`1TEnIea#Ka=x#wodM>_Xm_NQl zhzJNE)Gp`HQjoIC`ODGfglW8h)uM>HZUrSMkJ=%Inft*HKEJq^qq=YHUFPPagA}U~ zbcWm4pWFh0_RY2R(50HM@0RD2!IZ7%0^QT^KQi3zG&KB_NH{`butd=)VU)2*Ksw}9 z3HeL)9Sl({g?%iB-H#?_O>vIAef~{m9wdYWaj}lJBX==X-`vfpR10M;Fc5;tgCIqb z!N}Dahdym>+}sPu9?b8t$p?^V z;P*fH99-d*D+f~!QO?prDu;HU?Rh6Y?c>x2#XGa-DcK~e7KY>$LRtvTwFyEl$sp!} zCHWaO$rNg>psb=5D3Td&yIaB%4oV172~cXsdZi%S)M56Fp-F1V>F`4oVf0eMnU z2Fc|kt@il4ib4`|ox!RftQ?>{js&^S|s`j2-( zPE>Z^(q9~-*Rf4DZf>b2-Ojznu5-Y)`l8()RZV$7T*M2)X2)DonecZ0dJHp-XS zzamj{%-k23#UgPiezxnda56NrIlbY+ZHx&1w6Q3@u99;Q3R`BdLauI~i0>n!jHpD- z;Di-Z-_q{<JXCWR40F(Z+~5`FYF;6x_6?cR`E>#4Pn_qJ$??GZck$A ztQwkg1|h`9d>v^9My%9O=3RNk6Vi~hibd&hCwDbawLA3>u1*tWuucBNAgSO(yVsK= zsesG+A-#C;Clj^YOG88=rl zPmnPx^yZ#?f0BeK55%RsB3XZ%)jcA+@H75(b}PvQ{%lBf82?t|$>^NT+OD;p>RkYQna+feNi`v=QF8@7-P1!mBr{ zFr*1!93L{n&QX8|Qr*`p>uV}5d@aK97WR}xM`<^RS&AlAmsb?8VTlTeN*E9^_-6M3 z))-4-Xzo{LA4p9)4q-R|ce;vE`KO&~0FwNt%3&E@2a`TOS0{|x#6QhhR50|C^&Yfz z%4Fc6eo9gMERZ&T7O3SJwv87uQrjvia<0D{TDnvBTZAAVV3a7j3t@myal3Xf zhgZD(3A^Ip6Lu!$3a1n=(P)A79JZH8 z$m}|!n0acQ9Mn-elx^!59HqOFCjS!uE2`AgG$}f-5~|yC-iQF3i0(R6Z_|q^-Yhh~ zhU>x1Y#I@n=dFupMDjO4JM-Q%xXjGX#wOOP-*x!!e6Vghv)(xGe!3R1^!Icl4?b*!{I4MH@1W8pI7r_H!H7}MM_^{ zJy>=W8RN^nv+MYxq|~B6-&^vOBKza)I*`Z*obI>mqM9UO*<$W3)J4Hr!C^k}rZ|ZX zh$zEh_XfpR%ae8%uvv9SsAVVL5HR4!J>PMbYu9Bb>;`jqm=3DA7c}bPyRj89va}I10YU%qlC745-4o z+m#0;FPDFm_BPg&0(D!V?na(iS`gZ5LfaA=%O}C&tOb9fewOsf-A`VC=3x@UT;~(Q zfJFM`*lks(yB#Yh1YFGWjFI1#?da*R*+sfD7NG@HQ3bIe-Ke3Ka0;25vk`)LXY8YC zG_nIV)sBJ*VxoJua*0=*uucuq^>~5*k8c_~XJa>JN#wPs7TCRU&;mL_wa20jbc@}( zAQU)ztyC4;pgi%3DS7F@G^}wAw3pv8M|P=Xwu@Go zioeZ^bvd1wk*z~j({!+tJ`x~)$)Zpi9~>{lB{A6W21)XqGa-;L9yJ*r_{!KmNLK`n9tEYS z^?iqz|H{R-I~d4u8yHpJdiY|mj`BjfY!C#b1aabfsBgNp-`3G2-0Q&!{1ID$^RUr# z7y_@s-JAKH4YP}smT%to#l}TJY(Bk>+uqRY6gfbELlr_Q=Xfe0gw-Eyl1$7m^fgfh zD_=Td52aK3BY-}i1xoH!kULH}E}po?GNoHb@6GpkHnzU{ELE(ZEna>J zO|26N=18NrJ+eS#T?okXXEXwZEpK2V^k5~1Ct3kc%nIp*Awk}hr}k!`!)MQL#?R>1 zqhgP+LNY2sF%6X$zA;x!zY~WpnXINwy;J+@!*e8`Q|IcTNYtlQbyCZX7L%6aYG@C1 z5{c!j0)f9Epp`b4TyH2e_)__4p^4HU-5`a3OGU^Lx9F-g-VN2MgRlNk!0=F^b&GD8rkr)4fB`zBkk+=hG(%vMDJ3jE z1&<9`Tm)B7s<#0#9HhK_^Z^h2=Z{@1i=73CTlwm5Z8?maPR167AZbQzn~Zd2N`%ll zs;{})nh(%1&UwpWM}_iwm1FEp;jHLotdUG@$XZ51a&v}4Z@1l5W>7swZzT>_M*@CX zSFW0HgsgWH0n+b%?{09nJt$=tQ(fmp5jj*HPdi`m4RVI4gXBq29qF&|PNPn6ZUGuL zw!Jhzf*Dux;kapLkBtu}9nXL^4{>kyo@iOTHSwZEAJtWJxPmCz{ljnldLG;h*B63(sM@ma;FZO;5c{lt}!vISOmBgRv5LuP~p|_qcDYF=V)z;_dofr z=r)+FbiZGQ!R{>ijS*bv+_8=}sFSKu*NYFRWfu+6Ht3*%+mq~C{y2&(Rj zz|`w+xO<<+dut-a#0QV8%&5R=zjI0MHma;K#--2|%3RmC`^cq$Z=?L=zxW~~dgdsM zNIR}h6F{D{_qf6PgPK_Ore;NKzJ-{y4Y9xw$l6%1ae!v-2L$tv9Acw>R@rONeG01 zjB*T20@O2X(?PI9-K#`sFBOVk$ZpAjdF+u+M^{)*uilhI4>ML8wiW6HiXnJArT4R{ zvAK?k4~{qM&wLr+Tk0sbb~593xU+4hG>7dwr6(1o)u4bqZF?cS!HJMZS^r&vUb1s zE>7s%J3IOe9)eqDrUp605ZZ9+Yjq*k2bdnxz)^6iCU%!YnWlM0c6A{LXB=larEO1B zE)j%_i#=(O5s;-_zMBZe3(sf>#=y=Fj*NUJN_d|G<)f*>I3bq(9Kg{PsBLz~S@ZIM zym(+cx~SWlJ5Fn9TP(&+J5U+#TI)?XcfUMwKy&Eult)CC!Z1F}+a%TXVS7G{!J?hB z4|EnR+fjhB#mF6Z19#6e%krgv4rEp|Ey$@%S6yj@9?KO()lfb#*>J#+)u>^(R;%_P zg^n8#;o;zS)8xnj2Z~x4nQ}m)nbj_de*a1z2rfF(TH+(zSflM3!Xcm%g*;U>-4QNV z9+VPF*293D!B198ZtRwa7@&?A=)s%AD>86IywYdyDb9lrc*8kc=vT$fvS2sfuSNDG zCb-XF;nFD=kdC|dxDxR2{Jy=vCAMXsBb|NY=g2bkk;Ll;{V4Y7%kTSVeY+7k7K5$6 z7+gF8f&$&D-_E+5_lLLM9_B*Mmn{44qcA;L|DJhSW{BUytq|$|yAJ>R-spof`bCI2 zC6srPyt?Yt0w(pa+_{%OYCimfnErtP0@TtZUiBIrlU#PFpJUBn_wM?5%zAU?C)b)s z(z{+T(5!O2yby^n3*T>$G|bX{#dwkrfNQ?HklAseNo6&mN%A01Tsp@3E8;{7lk;qs z9~(d@#Qkbl);uxSy&i=v-||C&B(ag1=(}*P@0kaDb613dpR!+abD*=p3gssh%&x>d z5N~p{#ET0x!MDg2X^d_8B{nC}s4^6CZQfUp;`-&d!k&DYV5dN}A45`*)MsWPXeG1X zu)1kQmu*%GBch<>Ik6z2ZC9kH6-QnQgx$a8T2>_9;SLS(iAZMC1^zIFqdWR4;B9!1;tekF3pv(Xmq&E7z}5CAv$#5kvvW=Gltbi2AV9hcb3bvr;^G6(Km@7c$>c$y}MEM zI=ofF2ZzXmPCWj&#Z-_(eBh7fu#~(y_K+B0NTJHEX?D;NuDIa1ba<@nD4q{50&d2T zJ?z0IyK&`heitdH$9i*beCBTGSXlW*tPn^L^!PyNMEktT*LX0$Q7h&6#&{xxff9YB zoOuuNNPsN(%Q`FM4Bi)carQ)rJk4>82PiybW8Y6_6&iA_`3H9rZ^y2=>h+CltUM)- zgkPF_Of#%$F`$=!GO0iC!mX4g?#1@mHPrs0E0k;Pf@UBT90t5P4iHrtvYJYVqK z9@2du(pi1qjw~?uG*>Q$X&HUL7CuVd8N^Y#+0)(>lNGu2Q}!@cH6((AG9F6CZ)fib zO9BCIg7`CnpM7fKzVVK58*5OkPav$hN|=-F0!)&{r|cLmVeJs-m@Qe=eCJMi)(H%V zf-YA@%alFqg?nFkn>uc6r1@g<*9_NWs4w$)nP1Q$H9it#%4=e&C}9uPIvLUXo005k z)DN2{AhOYxghsUiHVtzyWAT2GZ-Z%))SL)Qh4oWqg#`4c<~y5@vvv2Puvps;w9u(9 zF(zAVh^|8;eBeWxgmxpsNIK(k`Q zd9|JHEokBO?N?g2@ABU?m$v`E!ea&suXo4dP>W`J=l3_ClnW;eX4|eb-QD)VR~hft z&7DoB@MHEr_GckUKdX3l?N35>hf|Um--z~$$+tZGL$Ath?`SBuE7)Td$XR=3&g!ga z5B+$mkmKrIMZxe%Pn)C_2-$qdS)SrcRbZ%@QQj#y4I2A8wvIh6+?!TQ6~;lpPBSQSXv-rKBlt{Ncm;` za`H0Z?cq~LwS`6Z?jmP5LCf18ORpqe2`978BjxH53)OY4^Me+GHiw~#K`~8sP?p0l z`H}A%qXt`3*u%psjFpOAYyAvP7)mmbX^;9g>OVPaA!aB z8sOv@X6!8#s&W3}Vi6pthIwhXlWX)e@pn8H7jaXm8cwG@ZPu}Il|wRPo79-orAbb? z7+mOsS2)T(Ss{F-kb`K90QK;u9Bop5L=04Y7T_ZzH^z&s)vD6q7qixr17X%JJVoUM#!6J=H^Khky&M-FjUG>B74`9=l%1eq&_%k&DlB`Oj+8Dly7 zyo?m+K~J-JK)8LRsHFO-;k;f!d?@E_|HkO8+kq5j%qjn=ZZr3NRjH6)@MG?Hto++) zK{QwEvOV=7A1x>K-RxkL3REtPYaTr`H_TUf7eft@P*Px&iXwVa_|B7+QXC8YIddB{Nt>m6B2`CLuM#&WHIsD%cRdgjpc`)BQu7V)o6QLq~ z1C#aoqzsbPC~uo*i@?duiFY0|d;DRKB~dk<Rt}h!M}&o!GO&%{kxxba zs{Nfbqoe&^n+|7|&R32Z_lfOfZojMC9!T$ds|LD#4DK^y0{G6u{!hOL5Ghbwr%6cv zVOIJ0N|OKk{&9~I7m|cA99t_w&GFCM+nD3MZhD&$F88@q)#b)cNb**Amg~ned+N@t z8@tYr=jJ5qGPL&GnWz)oB>Pfp*Xzvzkyn(Em9A$T5(Fan8c;M_+uq{=$ zKJSV?WlkhQ?V71>$$%=wDX*PM*b#srHI-1k3QLVX$nt|cL}G4aR+C6Q2jd+`>Z8$? zdJ)GqL$U)7okye|A?wYVev+)#7LHbhzFFR=yBFKW_U^^l|a2f zp*SmdiQTKIPj4~W2pS#vA@zH2lwq?9 z!SjogDIW#RGjnR1^B(q1{1U(Isn8K})I>P(C?apsP95kJqlRJzI=YIBdnU^%dRQWK z$cX+8Ke@U}+7wE<+U4*;Y%qji1M;LDK!BVov~G3)K91i8qDgBPtkIB35siKI6W{p( zL?u8Z*Gl=xupP+1RDVA+OyW1LTAVp-Gl4QrjD)}&P6QozlcOri(*`Tgy$_X>Lq2sa zym?E~Vqp*FGpdsf)SbC$1fvC7XIoRCu$Uucv7)!@CgxJkO|$yNdSAh88>Z0w?GN2(44 z&j+eZ6>r#&s93V*P{t;Nn71=w<-Xk=Y@{hXCfXIpV4)i4n8cMds{LP_P{ZPM=ty?> zxsD$s1&C!K8Z$s&VhbTG+&WdK^+rJA87!+|oc!9GloPh~E7_P!nG z&j00ltW$A7AZlNgWI-4RHWKzKjC-jtdTf6t|1Tzr5I~36AHVpFVtC%O_d6&~`13^A za7pe#PX*JLjV%gcjlf0vli`agreKy5MCbM$xtY^gJeTb}rPsARyPhNmAsgsGz{c$A=*Ly_hpo0XC#J z;gBE}7Vz#^p46fn1mZr1(le`TfQ6lj31wO=nfaTM#tr*4%?iK+%DYpsd$ZgAm#z)4 zp0nqik)2Hh0jzFFPoJNk&)YXUw0`){m;|vE!t?phf5037=jf<#A^veK{;i{uJ#aC* zhg$dIAVCD&$FndH9E}-3p1?VoTvIxnPkPqiu8<7;tLmSq!~?RI0^3q+S`G`3OCtJP zC27#${c&qLFtn?=JLRi^(Z>#7<;Tnq3?Tuxuqk~enh3rfst*l7%_k2J(OA6(_w`BF zsURz&T6PF00_c>V8l7&2nrzBbyf}u!)|-~@!V$w*6Z%A+O9E=*kI20;f3DiNA%Gdl z-)`$n;0+-SE?8$FFrRs2zpKAW36~#y8tn~LrK;Q?s@;abq$~}l=rcwGQ(gFe6o_O4 zs6=%*xD_$-9V0XozYzXi0J8a~VtEb)btOpjP{p1Bh)puBhmL~W7&lr+l2u5Y4HKlW zobM~=CYfNNx~0u6zs#P2l4+&z%BzQZK_MgTN1U6DcvA68zter+OF@WlJcsEO@47}Oplcd zrm4-;S5OY;WOde&F6n(}Sn}bTJ!+aEa=K_yMa!1)+KWav&}JQy%NU1%G`D=-wK zhl3@%L5f~tsKD~6@aT+ti8~5PB9%i%`Ga#WJsQx)nSv1L_c87{!!85tC2LkdT+TWr z6IH7@AXpQOB0&E3t1^F?DR%Cib(Xelx-g;e#tOGck~z7sOL$8rl(Jt^JK=(r0$usA zkBm-9LQpkBWK|3$2?A;N8%TPIq^LH5PJ(QR2K^ zYdnm#O%&|(oiq3Cr}b!Dt(%j)U9oq}@watMGmac52aCK%O`J>l9+G*Me|YbY;R%>* zzdUJ}W)~0`4|s`xzZ~&!adS(V4tV=-D%@O=oOEc*KPS)*K+OJfAT6?U{o`E_oOsbx zst5Zzvu-5S@(bHa6m85W8c;VK)!!F zQI_7`PmvJt7l7mD1>j+wK#5@V(1$BCpIj60dMr)Zqgpnw8!s|-bVMHjNL)c-tLu3Zl$0b{uD zH%ijv#)QKIPFXR5G|9WTl^={E+h!lyN4Irrp8XOWTC(AAA4&MGUY_^FT5|c;m*i@U zb`qpXwq3g4ea;_Eufg69=gGj!wgSHk(vD`2vB|q$E8O>RtMr5NcFy9$1xjcb@0EGmVa+^c#L*!+c^uktSyA#=cIfPzIdSI=k5 z=Ju}tpqq5oEPWWLE0A8@p_xXnT?D>cYf)qWQMeH-4_X)_vuk#;LHUYt$zu215(^9D z!C8=Ol;$Nfs2WcXXJibNqP4F9Xf#)y792DQFQheSjoVI?w_ia!+-p0y!Yak0&c@$o z4@9*hN)4`@!oOg-6$d(VxvPb%(FDh0Z8WF~pOrP9x3kRAulL)*68-!n$?uUsy)Q z{?+g1_J(yoVO@~WipeL75cE3{n{?123ecF1n$(BMWVgpOO5=hQ^MsL#67!Wq|8mKs z@S1Q>CccN$1@43<;3wQ9G6vNMGpQO4CM@)>M0PZHS(SYaQp6U6+I36#FnnCwWS5Z< z;!eP+{3F6<**Kqi+c_%ek`Dc2h|HbFW*YyWfe~T(uPLA&EJSQ&1WH{D&@0YD34!2c zg3@oU%kv916VHH`mKM$=XSe+|+nbmJXXrgVTa2&eej2SgC^ohyF?FT&aeHJ-V=hai z|guveTf+&tP>7h@M|)G+=p5SkD;Hu)-& zHJ`wX)k2K#gBi#NL06Os(*AL3~_dl^=RSN-Dw}++S;n8c>MfEOLk)aZTa=@x?C5dBINsPyon7&Hyhmh z3tP)kzsFCi+4K16zIgZTcON)Y=yyr#OFNhgQ%vF6K%)!{s|$fOM|vk;9@2!7}KeM_G_4R#b@j^rYaV>tTdH-Hj#RTyih(PTE z9P81BFNtbgDi(M8!jSYkJTJp{g{H-ACIN#+s^HVrV-{xulRiq!vOwEjbDCAmcZr{nOUf+FrZa67!^c^KRDy{(?O zw|CM9`HElwuAI1>5$k0jo<9l0#M`sdBqkn~Y0aCSnNkJ4;`<~!hem$iX_0}XZT&9i zFir(&H!+$Nk2N^dBOf0cLY!^k`{!d(0o0MTRo`141meGndP;d8_mJUtmXeP3{0n0ln3 zvoa9ABC@voWwo+ZR@5$&%YTzm&D}L_rT|`ib+5~01JQZceO*Lw7m&!l?9o_Zf;LAT zGEn6ivc+FW3~^Fbr-sB|#&EzVBtaZU-2GHb*WWU;S)ZK7wbTThB{RWC^-^A`oeJXv z(VyC9)@!lkqGh4^GgE7UE@-Cd!DmKW151DW40fUtkl(L;8{4RBlL=@ifD7JQ;%Cf) z84jyL8SkU#g;`mzO&*KBgsrU6Lxhp^!~eO&^N2p9db=C)fq;eer@AeMt1uyZY1K_E&&PXzgroOv+zGwe;xPbZ%^#d{tiKS@RR8` zUg0Zait>2aE1ry?7fDI+F(>{ls=9FZtV2IV{DOGX%r zPplOi3$`&~K*+|J_T9Xxd#MnPtA`rnaQgEP%o2E7Fi2v&t)1#|hStsZ-W)2wa{55L zn9vqOw)2AZbefwFvxcK?2O=!to1dzG!0&j7J9|OeecXOKB5I1RWk1I`j1T9bnWMcC z!zis84?LC6of=1*8`aN~K)3VUy9DvppXrQxv0?YHpO@0y z<6l|0>xZ%L3%A8Mzt2YPn&>sUs^H6sUwld4rg^psxE^kQW!B865eNVHxxKe^t1-~r z&w6-vwKonD>k&s4l4#!`F50N7uAV!;2Quo#Y=pks15J-%jda5=-(_<=GfyCR_e+zm z;LAn-zkN3f$cqqaWbw8Q=KZN`U}a=CwJdn}*XHJaQJSGC5Zo*B5F(O0e|T{<&aw~w z52sL){=do6e^gwfk5r`pm<4-ksIE;Umthu*F2_$S79YI2tvpf32G=}x-6eXi_opw9 z0V`c4!8e8p`Ds;p935?KyjTwdkL2Lo6+UR?~x-Bg&AKpLTyRO-% z5uAp2yI_!DlimyG56vPWU;vQ|rX8JkAcMr!4K3yER1E-MZnE*?!tOob( zKhNzm*D0u>XcqJRJql~$)RQ9Db;??HvQqy=UmRqyRZb;FXALC zVtft8V|YdqA_lZ_`9>bJFxF*PD9^l@ZarkDKUH!f=u@du9D!3q19z4ckqz3bGMPgb zmQ%K%QGCvRdkJ6rH1W($;>>12B~A`ll(AcwMV7hu&cNcOBj2)*%*nt~In)hBfIIj_ zzdE~O6BHRh-)BgWD@$Ciibm(i0CXdtJvpROxa8?89dhkvEyuKJdTpgvs8ILtCM;xk z2(qYRk9BuY0FWja+00lD@>ZQ+Yb?zvN(KjYDga<-qGc-F+*dMBAKnKiKs*tW2$i28 zwM;|upts3Qt}dT;*~F(m(Nz+J+%_{gAOZy1iqi*m2EzxtSc+j6t~P7ee^rp9HwH3c zyP-OT(hWh!wA>tz4l66Eh0Zn;;%Ggq8tLD|Xwedw75AKKkn9l!Z0eEiB>pzYf`t_=1uGjHyAckX znT3sd2*z^rbXv`NH~CNoTyar;$6%nxfUx-`IS)3h}3*CPzx|+ zJ21B2N7xCK3Wdxh*&FFR&2@4#>IuhDs6;c7B|-_8;22_|%BxW?i7lO}1-3jMOnb|B|Y1Zp-x9gXk)D%kuZvLlgKMH@X3pl-_-5B!v%l~63Mh#u!EgHP! zE^7c%+cn2S?`8bh-{p+veS5MXo=NqVpz!LL_iR*zKq5l**%YbsA@}TFb^k!{udMSi z4cvU^V#-?kWrk!K+1n=bnDcq^CXh330wg2+TNLiW>(6xP8U^qLU=xQy%GJKRyZbLM z;6HAAK&(JzO^sQVxw(1R?d`1!d2W;Y%{{v);c&~DN^Jh-c|&)%QW+(8q3Y2V&#RE5 zz&s83Us9>A%|E9N00dq7y^q}J+I(eO)<8i0wZ8rb$X(c7Z*>7047UH$5sGa8?`Gjz zPJ$UqSR0vTg)375KX%BiZ=59w-h;-;}H744Tix0Sq(rsH;~A4^(RTGzO$jGlX1PGQjctrj-h znfuFD)nTcjkN`|(&52*~SBThIFb}p`>E)ReBmRu0`MFbw*_%*=`R##*WgZ2Kz&~m3 zag###z1Qu~uV8HJF+QpB_qVYvV^o8jDG9uk*mn^4cuuUykz4qbxExCpzvgm9hQHAY za`#^5IkV;VI^7?nNMP9!r-?srL!u6{0YA735kqmz>U+YMUo^Is!nl1= zOr1&_4a~-I1;A88guT@gzW|?$G7Mn}Fb|NYm1jR>0h`!h(qmrnjxhJcFPh9mT;iYD z_V;~6N29SJe=}H1Fh4mTmAv0Dpp6&z!dS=aU(7sEP(i3-r*JO< zH&BX};S*Cs(vMgNq9#JJA(XRzu!?k+Ex27Y#3n$M(ipC}8bv`1}5F|DFS+y1W^%Xs^rJ-{}wwdw8ygOgLTEcpbC{WZh?e^HTK`87?cx zAD-PM?{Rs*c(3Q9jh}m0{?Ml0FOkjIdA?VW(%VbC=h7|Saw)F-;qp#ym_F#9_Q$h9 zUo43zH8ypX9M)f9=6GqQvD5w9t2LxWgG61U`N%L<} zI@I|S@!noK1pt!l-a8f3uz^-KguUINiYSX_I4N%Qv5#8-oa6rbXA)Z_rIM(7k?^HcSTY-E+{kVDtVy}Pa&1;lX_5-lH5au7p-LLx~U?E2odKgfYAD-o|1O6^z0s(b_f9B4e6Pg?f=`sSZ#Y* z3wW(@0hB2NY-+*pcPi-j%yPMeTD}ic+%IVi7j@y3(87FFy8&GRu1~ruls!@^Q`kfL ze8Vyh^S_^KG>s=ha5FDni4xGevs&Al86XY2d>==4<aJN+f3&RqFHVvZ6JphxKzBwXeTo9;Us-2ex zLA#SYXx%EDoPB^nmPQEvHx=P4iU0rN5kTigB4|(5L8#P@*Y(C}xGvxyWR&BxtGjzN-WTF?}Q?9Nkr$fxP=+)X7dN|8L)$qfujc8iZ2c{f(RG=Z_N4Q(Y|76$ zSZ9Boj--YM`vvbif7GHU&!l`*4cH~^R1)xv?N90b-n-{OSb^-XUf5fk6#MSY?eDHm z=i90N&?XaB2K`giYMUceZm$ zS5rmxW%@?H{R`kJKCjziAJd+Y_PSEstmA14tYpg^1vkZPM3c$P#+X;i)(VgveTB>E zvnQa%HttLOU@E_sn@U)jiQ%9NfRg=>i3&0E4OppMR?~^LpU5geXAZiu4EV=7FA8$2 zVReiswJ92)WBI#GT^03u@2y-0@~x?Gd5+F<+LqJ}lrp%XkPQo>tiT%GMG6L4vr$wVg0U(Uef(I=2or6lCr`3Z;`` zUb3q29yMZCgtBT|187v5^s%wF9_F7YrHUjVzRu-A&;nzXN*N{zDRhs$op3)1aXm5KHIkC|92_t!XXlJwb ztXZ>y2s|!4wW0X>dU$Ce0azCPZC;~g75CC1AL5zq z#S!;sNWt~Put6(V^o4ZAMJp8;Wu0*SH~-7i*O7q!r%e)lU=9d+>1BU;wfH-@NoMuE zzN>2rDDuZa7XMx#s0^1`pHxAO*|1{-u*McEn9Vh;xduibXyMxm`$ft5x>Z0(W++>@ zX2l@j3GSZl>9IG4{q_drB?wU+c<>V$`rT?60_NZzes+nJ`mN4kKv*2$mwI^&>h%B= zKj_0w%iOt*z}olDq^?`~T$t=2Cf0 ze_tN21uq9ME30Zq!0at)>t&%Axy9R^MwjQjsKJ0-50QE}?8i2n39X>u{YF5crR>c* zzeTMF<3Sl{Un1pEQK#u+P8l?Wk&$d2R%O||$ z5q8Oy%Fm%APJ{f8Zd%-nYD7ZBl3Wh)RSm>;wu0Yh^n#^C=V35J_|qp@{Kl6 z0Ie~t>q1u%&1p*i>5?+QK)7$?jphF?Y}Ej0@YWOH@$xN!Rg!)~B(`k`AuUM(d>Z}gRp31hoREMaB$cyimeVh$SwF+bgiXeGWSYV=t48^IR0|e zKxQKBfhU^fXkb*uft_}v1054XB{V=anCpbt9NKFSX=06q+=UM^i04(8;^elIjRJe4 z0>`OO(L=X|#4YOK&IX{4QVQ~|TqK~%L1(Ap$M_S>{Y(54jD2?+Ul_HkJD}&UYrP~f zo~SKI5hV&Uvow%>6QFh_=sg(B$bTmUe_VRDZiRv5Rip;df2^t0$K#>1wUc?;{A^Gj z5W=X!s%YX1iwF(gj=@NPyKgqR`?`Rtb?j_Z-P=SozEGL39|GL-D>w*_+HCsS5H+-_ zd0dGnW@=zWWR%dlzAs_bk&e80wE2nT?qU^~rVtkEQ|J9xFAI5ejL#c3o_kLC9M>HW zN13kT=x$DO+L&_eKM;E9OcW?L<2l=Tw$Tr#>7^MJPi3Kus3C}%CDiHV-pA*l?Gh3E zbVH)-N#6%)hsP5k8!iJCo&$@^GmTBB77V}-1WB@+MHxC%RTJ^40)pJ!nUiWXZyS-@ z4g)kIx1$u@?Im=#=Thsm+m5slISVdf_kDoA$GYh|Fn##*SzZ5ub*{uI>)t1=(u;=|@xQ?X6qaRZ7jevscbOQNq(X zsER9Ycm0ZMD1G(?E(Efs`;A{sP3>PFZR-GJhdgC!;QtWth-+%%O8f&WH2L20Y9ZF&r?!*mW^RaMB*z^S?at$rK`1eo8HP_wm z?E%9KH62hgZAj}nOw~Z#eN*&)TLBW1EL|UK2g}vw#!|na zI!6!g#7c60|A@db4emv=bTPF7AEuETuhdv>dnvOFIMq5Lexz?zRW)pz) z77Mq-Gj7JXF-1R?TFC~v4G}FuXOi~jT=sCSOeVX63k+g5>RaRxPd{~7fg?r(iEp?W zi_By17&jDR^ukRQ>V9ZI#n*fZ&M~R|fB5>!s4Uo~Te@39x;v%2LApaix>35jJEWw$ zTS2-}1O%i(y1N^s&c*XS?>g%{>s#j+a>HWzW9FKfJ$v>hzv`|*z9&@CgFT|x%~YY2 z_*#S5_8H)YUYhwrLrR}f%7p&R1qg$2~^#5A!Dl8$MHOVdW*lmI(i6mVSg8H=dAh}`{(3%a<4y+ zs5L=~k7a4>yN&jy2$LKh)zRqF^I?al1JP_?>0L*v4qkIXh+dlWVS}SCc}oz6va0PPX|U{s`l8`cPXNw{+HebUklJ`cbEj znTJ`fj#>wcdWc^(0hbkm3L!6`_1wq)*+VBZ7y>qt46*wpx~z5P z6FmkN&OHKV=9H-9`twK`#rVC0_QWe%LT+eAJC_kk=%v-7*d3D1OJ_^oTkO2uH5sDHl_l*y@8{ z`*r!Xc;9E_F3v*~<_M+MMq6v#eD%>s_ zu~2V`4zvP+M{C!|#}i$13yUzIF&MjG*A@#14rd$vD{eWJHLXzz37A0Zy`hTC>gzkE z&#{3x5X`vIeJ0==@WlyA3r63+s))cts9w#}N@&24(fH~5c%>=V{e5RPGHWx$tn0Y$ z1z0^??7@>5tvo%_4tp~+Gy|#Hhvl~-zfMotj4DEx|I~-4DyvB(k60v#tJqh4S+Ry4 z#$(ZvN7IWw39V;-V&0aVGd17)R5^H8m8_rj&@k0`b{f)e<(jDRJT1B9%X=r5%o93% z74Yd6-aX%RCBjQQk%6nY#}5PRq+3bj=(XJqcQ?7FJ{8Wf_oig|7kbovlnMjt48P#Z zZk!(}>^}l!p_9=nY>Gq!%da%*8?;az1UZ7^5~GaPz7>hS<(EtWPS%e6@>XjYDMLlA z(R6Eh(CC`AYi_A3z2q#TWE1pejl@U1KRC=6P3X&EYAD&!lp0?FDXD1!C3{*VbRnJa zZ_yuy@)qH2D&h`@f;S4{;3BGiSPvD(g;}vmqHU_Oi^ks%ILizTooP^4mzTFuB)Bh$-Bo5NKy z={I7XR2tEAS(GgFrKPbKb}J9E8jC`#xOKf~TgIU3ZU=^>8v0_}AWVy5oVYaxP2B6d zlU+>8XISzWlJRdhV!P=YopA<=df`@){vTl};gIlvU=qQq3$DH~RgVkqSP7a(Crnu) zw|2GSx&bymBwG~uq%jtJe4O<>zo;~n2zz80MP)hdbk|m4#snM8uUpHH@7XvIi7nhE z_3(-o#H7b~Ew&v6@(iH2kbGbvF@6SBv8DWgw9x6q^3aT!#Hclf{4%)iyWz^CpE_W) z@Hx3S!=-U&_roajn}VMRLFO2Va}}u%7}R7K^n)LSl*FI6wIPr>=ZA9;0*GspG$8w} zs&|>p#B5y-C+Ftg*r&_O`!Oy(Z8s__DXB8x(5FNl7(nU8CHbOPOBp{Y=*YPU;?q_R z85}UtKH(t20!cMxe*0=Ia3E4M-zs?94XyQ1U*-AaC2&aByK~bmv(RhpZLwo_W3l#^ z#N#7ejv)6<^Mo|PgQ&=*`C2)mmHXOH;j*`E^*)8iP@FX8r#$e+-|QH|Rwkjf@z!$D ztJ|O4CrcEICatfJ7G}Mw3~FB-BTE!BJ^t>M;>q~k-<((iflDyds#I%fZ;>uf>~R9& zZ{)jmvVWYN`}!w>r>zx>SA&0n(drY_zYygE9elP={{4G>&#jb2-`V#cmg+*6Slhcrz*Z1hsX2?`!gi0uZ#Q9*WXG%u7V}g; z+CQ2Phu)=uH+OwSE$hPy!k3G|etg?a1;ttym1WL3=BDA|drx(m$6Eilj7O~AXG^#6 zq~8b8^9aeQ?FEeT7LgC%OdawgSUhVw}Ma_)Eyu6jok7;%au808*l?MEz z(^&%;D#wNocF6FFE~2INFc%XLODvQ(SEqQ3e`3shq@dHf}g&OsVYWMwu4g&Eh1G^!3x*sa{i^Al_w7W+Z!OF@yU ziu#zzECGdYIaT|LAW4K!_Bc1?x7}{Y6o|Oljj{$jmO9w}GFqJkiL>4cC!>!<`irT} zF`8JNOiDuxBP?Pk$3uVR+hd**gjD&B7$BFHY zmmCcUW#Z6vGL4c~h+h_p9=D<`4*!NEKrErDzda16Sz^V7N(r~ZWrwwbp+Oy+U8NUG z!-PQ!3d6VT_~JggY-Y$si@}vNt`z>;%~ah5x6b}zc#{0$T3H8j$oJ&;3QxxU!Ob5> z;gQyrriIT}Og&tDlP61CafCa{dW>0B$4zZ*nJ)YthwXsfA|%vdbKvysdvi8;e`45h z#`L+qkD6He3Hr8B9#<(7aWy`Ny9v3*)4(6?DVIl?$nplehLdc2`%nJV}k26N2{y1V3RMfM%Q9rky4Um6@|JXO3!Ga_6@8M^@ zxi2c`x>(D=>F~vgT-oDckT!P{I0*{uwFB`+X1zv-qlQ@)kB5N-$_JpWUi5WXWD!=Z z8_12%fhyaw*z2#bdvLG;%vWKDuK~&UZ0W==H8L{NHQnQ%s;VyGv&CpQ{^G&%`^M{^ z%4(ux-uZXB)@jZ>HT(2-b#>MA9pOva{eYc8Vf2a-s>TzovYubZpI)u z>7#wV%IYY{%$CO{ze>%~`$yoghzty^uDl+TKRcgM<2heVYk%G9W!85;@&+is3_YX= z_@CcC0DXR7d5AZx&XCf4J#X7`U(@C>dwo>hUq}Z4fb-~7gLPZOdxF~bzx(vn{dbAT z+pL7YkG3GMPAllMDE~ckB}{RjemuYEGwlXCH8JUqAbe` ziW79%e5H6oF64m9e?6X{>^4*lQ#ktVIP=%)woClt%)(jx!|*WaeF=NB|65xxn^l7K zbnS5yxKb6#Y1rO$DJe*${0KB(7i`f(%7qc%b%;_^y9_j;tQrz$k;^gTfJseBSYaxx zJTxD5E+UWSrQ*%TcsVV zU#NCsLb_6l^N4443jRVLGk~r`GYct)u?valL7Bf8yFzdh&6L(ok%c328^3zJgn&Vb zR)9-+@P>lX!D&^COGA+$PkpkiA^~E9L1j9^h60LabjTjJj6r4mn?0^1&V|Pg>~>>K zfZ@0c^lISF(rW%7ZL4>0vmEEwfkK6n!#ufet zIO@<@LzzWg``=oW%oQJN4#Z1FBK(HsA(Cb1Nq$kCNRofUBS#xKq6=xHf@M4Hu9VL+b zY{+3fD}~;jgg2ZD^QPaXj_$00a_QRjId-_~-u?L%NGsmbp%2PW*cyDnzYGG@;Aphd zNSclAj*edZ)_j1Orcgc37ZC4586~wRP++=!KJuykX+1tZE~dAje^_&S_}qEu?0=ab z?{ol*2f1xu!&vTV81rurI+ynja_prOwR}kkk(p=&kH)S11{$cEqQ5haM0U+jUcy)9 z%8qNWcz}vmSXk(D$7s0rVvLz0w^f7)CywxK=EFi`Z2ZHuz4NrD_8VTdfP)N^h{Ct= zbqB!8bNQyTzegfmS5pSmV1553*TuVhbY|X~n2ofrXO8;)#=z@{H?Dm80Hj5w&j#TN za2L%rtW&anl3i#xeGc3#4LRxnU@tgbvsP zboGxR9qLc%-;-a%hp+NYS<^|Fl92?s^B>YZ)r=`n_ZirNhc63zG1fFN>BkC7`-;8p0?r1SBo+qd4#w0Ybv@WNzM!( zH7Y_S2!=CYb0e-tiECR&22?;T;RWy@`@y#INW2UDQbivpYO1@zzdFX`42!*s!S6+O zN&eyW9qV~_EhtrUL6~P1=9F7o0x|Ejb0B!kS$cKe0b>@m=S(Vyp9u+1{86$v4n{xA zf4@c?ugo;}avj+08A+4xF!`**42^~4tHPL>oGlZ$z@kuX4`WP*;QI;RfgNLtEHQ|; z{3+Tba5jLA^;A625S}_;E%ZqO?@Rd`m){~oj9VH~%_ijo8g=M~@mYhNp5>G^cyxjS z;r*w{o|Lug;rz}Zg}UYZ7vo&3>j7eX7kFb|80(d4Vjn>GcA>q4blCbgmOrCL{U^Mg zSiVrK{xz+R3cxdTdebNQnIG?b>`pk{yMp#ZD2Dz`&dn*j|0%qF`^V#*o9#^d^Ha)r z2Q!ysXm~W0at(*~sf~@?$!afQtM9QE+J2FJVm1_tx8BMkjsOAHO@G=>6qor=aogO4 zelH7oV~Vq}v31AtEOrySFZNL5jmkR7(dXRVjo#e@k~ta){}0fyf(y0>xY>>!Arv&! zz?rE7*XzzZnib%7;(0zui}>APB-*$#-L5|8M^|4~jpUaZ|4v3Q<*G5HC}Bgo3kAzG zywSDo|43?({N#?b=l50FZ6O;bJV)k-2uFN5>NzKRu)8-{TF|ILA zhr~+}Vz>y6dC9gun(5I!IvUvk3qGa(EQDRR&k77i*m+Q+GC`4-v=i25{IO_)8oL`{ zER$8slPSg6*!cTd3-ii;55<4b8?FyOLQsnUb~HKXokK{;JtdSY8w@RrK-uxC1a2E zLzD8dmeW8O$JuyMqh!bms)s<5KOv_60#65)>m^pr>a7#GE93D*)O)N^x*GepH( zE-dw?g>httpfQf~m9s~ha@JWpm~Lsxsv#cCx4#vot#nio)4| zcj8R2m|(mj3+e^{@u@o0mi2?E%5-8v6L|Dg z&ov)8KcItXY-&<3*Z6&7!!!iujlKeqES-luz#9~R3DpoUjSk}vqyWZ#q?ZWb=_mIt(#HpvpwkwM6mOLlRjw6V&up-|3 z^ujlHqZh!AAp48bN&AD7@M$1A_^ldaFpkO4m(L!wUk(|b|EjG0@~nODc{M#d6Z+b% z1Z&X?`x&=>;@9_B@PPNJ-S>m-1_48V%~B!qexS0#jja|Oylm?V!mnJ#qV8@DxSOuF z6x_6qRUX8jIb0WSql?Aj4;$Og(1k5FJDbC_P|fssA_$c7lOsZ;ubq+lBw0`}YGiLI zW#N*ErJMy6auzfd?7W>*x&y=I7=jReHLMb$VzGA%dy80jt@6Z2Wdh5w=WkRy!zU+W zkt)i%B`k;rWGG?bT(g$1i{yCA;cEa6um#Ke=$X7C>J3>ZV!7E9mhk+;h`$``8uL57 z3v)R<36N;M!cdLJq(rO3rK}*ZluWE(bQVA^U!0&Y;!b#!l$vbR$xEDHwVH_tXf26k z7;C^^$F~}`YL$k$Vs}9ieJm?66n`f$$Lvu~GVooL0g=7F;Xy!DH9xuM~ z=aDqqel9E{8e1w6m|-H0S$0ea0k08P4oC+-ScgX68YtccyTs>qf})Ga%T$>FijVs~ zp_~U8KgMQQRS5QzEDjX}$}oZ;21K*4exSiPL1K@CL5uzd*2Ta#Gb{PV3V zSMh27uI;-`$!JZu+@E?7#Vl{Ge2BWZ_zYL1b`CneeD3rfbrU)r-1h@`xibHWO|<{b ziaTj;`}30~;iw58;RFAF!Vz>g|66Qc1ir-PP$Y}xMaa5tWza{bMw==L5&JczrT~YYAmUDcmJF)MXObC%>cyf z#DC?!8TeE+8(nO}4tebrr`}#dql38X;@{&(B=?wYTkfM3esZj7-Dd#Kj7Afv|HLk< zfP3TT7Ls>+-o})X{?R%$6rRk3@RpfJ* zh!c{twf~P2ig!{pnqxA7dqr5h zd%<5j$Vq)$A&aZ9TKT@WCl1S%e6n%vh5_F|#Rss_pd>G&(%Mfk#)(jUqG;I>0VZt0 z*McrWK}4S>cXd&?z$b57?e+tun5Ab-CAG+$KULV2*-T`@C@H?uCaagl&#g zUr~_2rH)xuN$@`OdZYv^t)j%ao-Aud(tMXFaNbcd-%tfV{5N@;P!)YL4FAL~#C+?p z`Cn$m8i`MX5-QUnvQS10wk*{!-6arz;3f;@X(1YKGO$H)sLu_}etwFRg+LK>&bH$j z^tV%5ZA?cptTkbXm4b7CnTMp}{1w1M&{ zwA3R6({C*g{Fpy){R_%)GiX8R^JzhRdzl2ygH2#XU*5|s1Y&;NiIK83XF*uo794_Ee3!U!Yc zJ;ep>2-3LzeY3r_E4I1%BK`R;J0nY17shAZQ`&NpxkY(84quhkrsRG}f$d3O z4Idnm_Xup47$$2#^^2+Dx4W}EvYyMJ>Pv8T(8>~ICBflQp;j;&2>9?B?Jt`9bblk3m zvP=f2p29S<)OZ-I(prsHKwE1}d~_!brLZ69DkOQ0r-I56Ml_I~EV?oUeIOlh?du{W zj#4~k5TG;xQ4U^2X`UDa8O3y)Rm{jL?t?(sf)d9Hf^?h+rm_lYZLT>*C>_}M)0^DL zl6_OqrOrVvO0Pz3)U3t$QJ=n*m?AtBjtN851DFO<4BJYB$?70zV3JPx(?M8SNn}OI zXC8I7J)hV**=JiS*#PhcW@As$TtY!&SgS!cu&3&)=7}fGq#lIPv8@}HEa`^}!*Dq` zVN8*WP@PtkApNO)J*UD;qodM_!C<8jIEm;;g&>g!kwAM&n8#ruI8BdW0T8Pw(fbS) zWCCk3l~-lFsFOh>{bBfs-lL=NJZm3b-U-H(FFQ8gsd|l`#8K7#zpuTrMvsK>Eg7f( zwi4FpIX`pO6IoJ7>YjnukmKKq91B`d?YRGU%Cd!gnX+(m2i}iR#c%T-ND=W*^1plM zy^yI?+Hx9%+zd>GZbvfhEsTsEEx06~(WUwA$nt5v3J;Yj9-YgzR>t3_~)PbxV zB@XavRx?_PdZL9T9c~9G)qrz6xd8r4$0V2TJ2f(6HE4aNg70Cn4~)3uot8EM-z&-yt_fwS9cX`D zj2RP8pivy;J@B_0Q;F__CetjiO4O5lo`WLq9LnYUTQqYOS9Kf(X^Of6YN#mVSwREM z2+YVywySQ?g+^5LmZ!_DHWx%ze!|C8;kfEn(pudX)#7rLQvX9W#zBxCra@4EsOTp; z_Ief@PV5I61>Ge9BI`NX0_-Gw%w?+5kFLB5M23PCh+T_V6*_fi`heJt$lE3$RBY=! z=#~kjIual_vV#V~HQIFST9**K#fT?9mN+$=4(PXm>K=fVhAj%8j4O#`Vy*_ep@Jcu zS8vfyN39Zv&%uHaG4l5o6#)Z=TykDYLp_fui-*M|Y4L~A_LQ<#7JZ*u!hwDBarMuW1|@86SPL=T0&{ zkiv7kP~>r(ROA_7n4HYes+_)EmOwwdviB*x>MsUXxi8LJM@>sVVet%PI;&&pqSA75 zwu@8!2hmCHAWb(mfQ1w{XNI_5AaICEI9h0$9A8EYIJpb<#@XWegb!agfe_>eU0SM4#KIj;vK}34luu6 zi5`8SSwQ^-eI%yWB)ff4N#k3a4)KoFb}^=#kq}X(RT{#jevr_{4=OKB9zv4v4E*$U zcuD81On8Pu8`&hJF|pdm?fJ?886H+BqSIe_MVOE&5ZN*T*f5R=#t;>X7@ig}1CZHN zm_NT_!uY}$5J=|3q)5X+VQypAUaoSo1pcvX-egZp7nIMP56vBHIDc%@J)a$XC%@2! zJv3dKdu;o4rpcX8i3iob!|uc>tBT#bWva`j*z0#+*ZoObyz;XDb49G>*DTxr|5J(i z@>D9lg;}(sWyx%RPs~&`a<%~#)Jt8#V5@a)ry7S`n7z$p{DH>|FvRC0;-&WWFJc_#I-P}R^ z!*3)a%ny3bP;^$ph4RN9Bb8~|FQYe~Bxu1rKAb0n{yv@zev`A6Kthoa^9yca2gI90 zvi&z;rg=+MP$H|zrNLFM2-Q>)$v9#rnpfcfN;lei9SsjtUX`M64I7@eRh>}KUra?k z#Bb=gpZ36fT)j&$`nhD9?a6BeLq--Rn!@!LIzua6mTIA` zM7EyZsp|>{fwK$OIWZ|kYafe_-beMN%w4PyHXhHK@Hzkg;}HL!k{ul&U)=KH@>QxL z?rcx*{IUT(^@}}j?(J>=T%9>G7*>290eYE#;-9Nq-B|Djw37ZnE0(!w$&0aEBMR6r zRvQ$8jrbTFDCcK`vS>uS-7n+z?w{8wa^^j+Ngr0>?=~NA>cOk17Y{Zc^`k=l;FR$P ztD#@|+}zys;^m|T-YgfCz4pGa}Bgwrj$F zdxyHHhR#q%+t6J?!HY()n-?}YX}%x$o&VQ`!(aX}KjN+Xfn_Luwu#)D%qXL2wu1b_ z(f`{=`nXWO^pU8f?{b%PT)4&{YyNl_Yu@#i~zALsbP;Sea?97I8XB zC*glClMRI-f}HacV=Ea`WA}g~po0kbFB2R-Yr5ZyEF;|QU zU75iA9$K<-xk=}8z4PxUv}BO4Z8~~C>{MR9{dZPAL~p;@n9}~l10d#iCTl&3z+^|?~}y?2{4Z@=5l z3^8tA_lzp05U6R%5U^{@Ce}Xbb|iWrTLs3)t39JWVVzH%=CHi<)Gtx^{75U@GcX`? z;5d5mvMcwzO?d0EHLb1u33e2Z5$E}{Nyp53O^L@Bl8}LVW?iOKkA{o0o!8llO`Dxb zrO)a8SyVzQJjLC-?+VyGmM=><{|E;mS?o}w9&-&%Xd1yK?7a;q?=4TG>L$Z{q@aYv zf-Pa^J$K}nlirSgXyNQ;6NSx@g^ux|yl}-)WH(A=+ijeH#G8R;T;Z_}05CeOb%5-A zE|M*8F^f7P(Tsx^ziMFk^}#1c41D;l*>O}#NHug-1AsE>yr7JhlA>F%yJ7J}a)tYt z^B3flm^#Li-MVH#om+Sc+eC7GN>S*G-efZ+Rs~Wi+#Y6Ng;fE*3_9Xv42=+(k$BSa zs~`Q?dj?`Il1WE_8mZj^c`~j@r(!&u<$}$gVigdo(?#c@=CPSv?0GKaY234FCas}> z4x|ei2~kGjEbB@=n;rBg+(R4`arw8X~g3kiCd!;#Z7z^I)+g-S}R|3vlIuG^! zYoU0ajyKUR?(Vr7573}3GvGQyU;P(d{O-sAwJM5Mvl}KxaM06QI&BV2iEc&m%9Kp-tUWbB==__AyW(E#pY{MXlOE1lO%!x(x)g$#Se)0StZB*HQZnUxyQh2m=dX!B(jsIf z)i^Vxm>kShqoAWZ?~ai#dmU82^5Yq`s0S@$A0S$MwOA!U0RwM{2HjYDpNq_gjoD7=!f^=P zPPDH1XU5~!3#H?Z8v{6aI9<~j8?Jw3W(I(!jcsjL=Q>Pp{YZKQ82DHzR$DOEW+o0C zYNRr@%=WU|{NiM`@GIS`$R6!~6g@Lz+_|MyEdQZw+iF6P&b66_WL0_=$oJ!&wLGq5 zaP&oK@@9;f@4f8O5^{iWbn?%+EiEjfXr_ndo`gsuFec2*%rQc-&!M9DsTX(y8afgg)8r{+nHX*#wAL(iX zuK{lYEoBPYcJwVu$#^6JU6|TG9pddN+8xul+Q%@1G(pco6I&b`;1<*8fyz}vbRif(SdWqxfTAYP z7*}Bj5nU}7tPVjehAo=KVPd?CWP<3Zn3lAW5G+$Va&3(mh|GmoULV00%i%}A-)tr8 z&yV@+!Y1!Ed4Gz2+=d=FDHQARWly zpN$1j%#0UZ&|I7+(dgC%p->jCG zO5g7IcW%O{etGx7;h_3nwip{|ED1ywNO5lnvb63}Jnh#$MOEuHsa0!%0gy<QbWbcL`NaVB%HIu5`T?YyeCKMQ5`F*aw7df6C=RzWm7eSYHp2N(k%yx?P7 zMCV_s1a$M` z1nf#X#+Ea5&-`u62?D^tSp9DR!P+CIf9mow z@gj#so*FZ|oQNA34du5TzjMwFcc$*GPMKZvp|;{`a&7V5{N0};y*dB7S}|eCiLhsP z(rPWQy-#YY_w&(YRF1AREk^;#KkCgXpJc;5 z8e?RN6ZVK0T29PDCO9y$Ns6XWb zo8XkN#}eYA+Aox~%o3uIA9o)S6FlIWM=J<+4%c{};v^M4cps1G_6lhU#v&4+J-=<_ z#lsEsaDQVQ-@v4x&6m%Mmr|J=SYy)tSyl+?MHTw#jhCQwtV~Fus;M*rHdOB$MVs!a zr;>ZB*f+6yiJTM|2|t+^+OFKo;DpY)5|zP6hU z4S7|&`Yk?>GM+LiN}i=Hr)PLGXmr?Q+aF%!Vv1vD^TNAPr`_M`m=YYi=soLyU3}9o zZTvLq{d99GZtZpC<6eV%(Ur7aO7vSKPCvRIt@JxsP^_?Ajm|vkGFgV-$EtT53d3)p z-inGm#HaS=6CCo}U_CyyA+PQ9uMygdm91_|t`puE-B9VP2Mx8wa5f*%eW33?(T5O_ zJDrb7FBL(~U9^zwQps*6c}4Ott`61-p@ge*>Mq3Rcb|aP!0g>G?Z#ZTqX~K1mdgoQ zn}(Jyz==Q=eput7!|gCP?;y0}9WG8)IvU5!9*FYz;uex)6DG4kB9}eSR37YjbA>JitX@JpQmo`b7TE+0N}PFHkW+ zUud%534|wE1u3?r{Isdu4A$fx$1OX5I=pYnJ9uAqgLe(z|6LOP%Z1{2hw0$UZg@FI zN3r@4@;xOd#NO_}3kNb&q-!o+hkst6W#f9G#bcpy#=jyiHvZz}zHt}aGTz?aLfzF? zSI4g0FRg4*lHMUKy?6Finzl)?%=L~d&GF25AAe+13>!ryw^qSeyIBV`QhqVktQJ)3 z$(BxTUU;gNW6RMOB}=M?Bqt7*(-U0rvv!>$0p&P!d=al?Qyiqv!T;p~^v7ZLpIO`6 zCQW02m0>aj4CM3!14q+=H_$6pJrJHa+-NJaq4 za+LbMbOb+e$gLnzvWM?=RDA`hWC*!6qnhLjW}xea!jO33WAb}sE6lt&&jCnhJ#S$z z8gVr9ae7i;CTWxw1nq);3YQu3wS0iv|*ISb5I zL^Hfnk-OL-Inr-erD=5HRb!LzWM~tf*z-6r6s?Qk_M%{+jCk{9Z;&aUxTw1kG^{@3 zj06oJC)cWeO&3ApDhg1Ftbit_@l|n?4ML1vV2rTj%*&TwC7#`7Q6P4JaTF_{h_yj5 zSxeg`O%XTKzx)t0fQX z+=74Z?$2a%@lcE7B-QMa!}|kL8slb)m_I<4o_OvaKeamb-z=~r>5oo_1x!{+-TOE^`nQ;mAy^rX;uakK_zFZU?@NsfV z+S{`lKAop}f+OIFjWhrp316g-Iy_#@a&U1;F{G@=2^_BqtlXgi;jtUY+r=H>esGdB z2y_;W|1%qIef*!S;~65*5a)h?!E|^+oG%|NpG-uaw7pKWC(W*R~np6fv7N7801OIF`6uk?;Ik)f_9dx*`Cwis1|JC4YJk$&x@hPn>< zubaY&ACu*%A>4$&W~#E9PCVOOOgip_qLj zCvWQ04yg|ctw_XqNkR(=B`k>tXF2KdTW?K_x0p&I;-O`__{4Bv3Cjz}%G8e3vPg$? z6rof#$zUp#S<90kolg6?w=X7ekqE`{v1}~d3%|6@Y&%odPQHKYX~x1an%aSA{TxN9 zJOYD$N`n|@%E7A@vmh|1iqcy^%%g0>^&1|=PGmq`7lbRGE0d@haaNXMoQi$~Cu)xBU0 zlRZfq6pBD4WEZ1N;jQ2rYYnDPm}P|ob8zB_^&~j4aXlh6s??Dg<5q}{ZDb5GQ$^`D zG+Y%UT$Wd*FujVIQzGRFbJ!th1>_jzD7RR9W+QUpqC(=l*^*n2(to3slb>8Rc z75tnvy5~pB?8l6YTxXlo*RS((l2hCHu+NA03_K zb-%Jd(zNH5@&~_#D?zuz*T%2wO#9Jt{Qg=CjzTN+Z6qlRBc?^IK0W!x5%EoADAV_W z0t^ms7`??_aGG=5*#B|LQ)lrN(9O(*q5>=>2y|Hn&8yqthKd%>Eg_pcNQ_hRx?CEFJ;cw)jQSX$<}Db+jxHZ zcYm(ww+!*dD;DfKGmgg-hJth9tX`9Zlm5s7ORAo}iM*y0V~wM-a+J>{cDzkjZV!|q zdKw~&;T76r6;Uo;nB_K!aPK7L;2WALniHvDX>hvvxz)%hzy&Plc^;ClMseJv`SIH= z_VVL`ax@lNoF9=0uTw1*gua|c3~>P71N~8pmq#A@T4lmQ3Zy9=LIrlwI{ zeZ)3gEHmw3^|`lQ??eAS>{OX=lUimU|K;AXrBSbKFdd|kkMw`Jd=t-iP&-4<)2d|V z{VAw^+;t)>?D_my$(_?zm(Y@r#~xR{6w5_a*7Kg;LmTg~QdF*YTTp)heX7YUgD!BR%ecOv`1S+(_)Wq@3v+txDwQWtRsJLcPXh$k>hURijYbT4GqhwLjd6 ziERL7RHFUie8MqY75l81)i+Y)X+vb&IrpBZ&HZFMKb*v5G)Jh~|BLf`ylO5W;8lJ1 zZ3f(`e>ETaoYKYipN1D~J750s&q&*6qI2=m@Yaz?b~{s}X4eu-^$pjW3+Pm@UtV$= zK85?QRst;xi0X``9JNSg-+lE(w}p>Ii!CCIv9Ymdg`lyf1)8GZb^(v783hgPyw>mJ zrWp{GtnBUWW3_YWFaFfL_jx>6G4k?iO$qvf4Mczxl$7djMtD3yHNP8pE8Gje{OkwT zPYWw|O2XG)^QnIG<|VbAQ}SPGCkbwoH+Uh!9@f_=oR;<3>C!55rqpz#e2 z-pp;-t1kVtr=9DLf#y{y^Isrte4 zCu?q6x|I@fU+D<%@Qyy5Q{Vi1a8Syre3P+J7}mDrVcmSbOQTDI=h5;F&CN!g;^7Mb(`x;C>FS%$-NLW*u&p+%NW&{WF5$ z(a(XVMFO6IN8s`CF*R)W-rgSUvy0_RQVlu%yR7&(%MRcGOr$(hfZ)+tlz%}D#j?C? zsny(}2wt47uH3GN=&n^T2zI+FyxjsMsM{WN|ACr*(j9Q&1BjpR``5w;!x%qEKrPc$`!Ra2VZ4cUL)&J(osMlmiog(Kr5=VUa z=WB58!zS$y$95XPk*IPL-}J&+Q@U||R}1#g_Ni`Hix*vFDXeGbJzy&%65@XwNj>rW zWS%pyLqlPRxiv~NvC0}za-B%hY{BwqKXi0kh&=ghrpM}dHK70ad)Xb5^S%=`DQb0^9UXJc8e*HB5b9d^Nw9pkjUP(v2c3 z8S{C28t|(^4sCg41N(){{2`g4rrwMq1hR9cbh`!;{i2~Tig@iXzCkdTDnS~V$0H?p zL>Yw@CmF%gFB4E0)l7#;3^lI8R)OhB`HUHuH5C!V_S;;QjL6vU17AcuiyXvt#XSnuE@phb-rlBVyFNOo(PyEca;a2DM75p|-=i4c?@8YFLA^ z+wrn$DXCMHk)`bA?XuJI`J%c^83wV$RDn?z zOhoa`aa%Trf0pzsm~Krn#IYUq=}?1Xp_{Deg;G`rk;g|V0-V6Ku^(}wQrk%FzvauU zT^4bl1S4m#>O`f!%VP9li_2e1#@N|N&Lk69h*P%1P^{tK)z*l5f>)yExAl!A|N1}n_cP=^cR9^0QheYTm~r7{uwmwOrQXo!3> z*Q7GXO~Z8zE^AuZe3{c3l z+dGShZim%wug8bvpEG~gyk`X4;*jTCQo}w+&XtF4A?+!ph73{L0SoAoZ9F$uSeU>& zZ|+P~oyMwPwzbS#_bWX9&Yd>~tcH*K0*j9QdlyIn5a8zg<<{?eIqU*BP5(++NG7 z+V%HX&gD7Y6+y()$ghr1S8dNcrMlK;t+ns5Jc6b&lrd2{!f>}8Ip4^bth%kwmp2YH zA#9q-uD&t*NrlKAKcevLJRy~A$X@O@;#d$#Nd;%eQ4H?9+WXuwQ&*(JDM2*w%M@zj zXxgv3;KVFyGg9iKubGb}#GlJs%0p?(BaBK=O_CKSKzS=v80s_U`>qs0%k@(|UEwB( zW2MR?um&oak55oR@OQw13D5~&5S?}|n7}r#7f$IbJbhx>8NZV%PlT4<19AfNM@)zI z$ivZ~je_4W5k%pSP$@xQDUHmMkLE39O8V!RsobcrN!7=mEcL?*Yo882*x!LjCpip+s;bkZ*W4j#AsZB&~!h&q`mlCd=6b( zJtQ-JE3kGaRSx`k$Z34xWJ#Fyhe*Kl-)eguz>I8BU}t&Q({k25+kv;}G>A8vWov&Q zR9h8N6oRLm+tu-g^g33;9!gEyi1>q{nUec;+~dUqM+gOA8=)okou+Vlw`^ksbN;n3}>q{ z;R0wjn{^HqWX-Jq}ql|RXX2?Si4XHk`sY^z)3sc zBwY~4k%|bL-t~MBCc+o&UAkEu;psfv9Z;EfR8a3d)=JF@$8_WS4DkJ@_K&wVC=;iPN@ z-!Iy(*)^0YCZkW|JH}*BBzT)cQ3o_w8Opv%bv9x*-@0M2RB(mO`V%_tbwn3E^Ld1# zmOMD<5uk*l{~xyA0w@b^3mc^r1cjFnknWJ~?nXkoK}iYe?s$>z66r1h5u{rX@TC!u z?(S~5o9~?O-h2M}opDseU}o>V)_T?x5Je)Is!Q}`#}{;z>Aui0@o`uo)i>wioS0)6 zuR+VlqsqurK}m`zpc*ZMCa~l}f!sSYM8R};lyT=2M}gp-B|@AmS^O&$?`896b#?w& z=nf6WzY$?HuRlOi2*RAVkP8|g|I%~L`Mh{lOccqKy+FHnaUE+uqDUklYYwR4zZTpB|9d$Bp~h@W*RBS z_jxUDN_EN`YZ>8(g~Ceh%OzbOk=Q^XA_Naffa|57?(;>LOgJXp6qQg4Eb2fuhR;EK z8MUb_rbzxB%RsA8I1867>Xf!7C^Hmu3W)-NfK0UzhxO%LGM^B1C&wBypA%`i*YEew zxL2VGWG@>>#0zmTBX?;>{1}!F;hS5Tpp-Y$jthG3cY8?f_vL$3?M#x`LA(uSk_8tI zjuBzMdwA!X;srUPf~M9(N)A%5x>h{~|Ngy9PYTR172XfAzH4x9fguhR4J}!#FoPlD zxYg%os?ANLL4QARnN+mJut>9PK*uQ48}P{QR}-8jGP{o>x(@6(McS$+6E8DfD0emr z+U$SwyBVfJ4CFKO_(tkT(#-C7ewA)*tJTR;&WW&8>}R&4T%amJH>1RcNa$^{y2x- z8ZSTUQ}2}ZYHb?k?;b^}5#8)PMEuU7t*x!EhTL3S3_|Ar`KY7IBZ(?T=$Z~LWZoOQ zK)ncO%XCTwc5C8o)9lls`<4-x&XqYooUbWVmk#%D<41;W;}Kc&keGhhF<-(>t~R6N zP|Hlis1K{ruO`Rw*TOfcL*G7(P{7g9(711B-G>1@(qzK4P5pJZ&`jNlK-<~OtkZ?- ze)9_Yqr7!=Zf;;ptq8@tjq)H#o?3b^eF>-m3qkozkf6PqvTpL&m~-R(_CN*}ncKTf z3N$}6+~)fZ9_9~@E=^+MU~89$mkzq+6OqFGwB`aN;oTG~CMzfFZr)7zq=XhWHtBkG zAI+}9*FYrJuby9g9?Pp|`_md`bJs4jP6w{wLsNI#`-6gf!rX(6XV&z%XtN$SJ=%u$ zd``C;*(TysQRvo^CUz_9S~<7u{KXV%LS#>rO7Vy_DT*W^IWMwgL|cNRDXA%T5PK0}^|Re=^ho!b_&_ zjD|ujizh^o)+J0mqMP1AKJ0K)h_s5mDJxEuLjkFXKp}#zkRu?cDhAqPwn~~B(9t_} z8=^>RiUSYAptsDbUVvniPDSC0nG+OB)rhY8`FLPdj`H^Wx`H#z?{`ppM;u?M{s($! zg6IvoLrM6g6WY?Io_mC_w7PJ3!WL~shIk=f4xvS4_B4?MmDg}NR_B|bXv}D9UlGuI zn2PYzB`6Qv3#alcBam)YJ5{8n7mcNIK5o2a^#+>=`a|yQTSQU{GnJ!bqK0^jkk*?; zb|xxUCO+zcb3g??FP$grXF^t-lZT+fy>CjT_S4UQ+61u6TD&NbW8zqx4JpFaQmM69>?II*x)h28n=iJ;~j&Oq3IDbmM6aY5Prme+^!TziobODpUePH?6Q} z;vVhRX8E$UIcrSeAVclUJu zqj66r#QEy+#n$2Icx708A@Z$9E@c{qLf zsP=riK)f5t7bp7-kc#gQMQ)LOPk4NTUNUG7&&e$Q6KYB~5^X zKs#k3*`{6@_q2?*=!XWS%b3O6@%PX)iJKRuxuNzH>SfWVsEdKN<58C>gLQRInyBjK z{G~cF<^v#{Pt?3oR9-#Le7ettGB}+A9#uV0Nx!mAO4Q-J)n4W7X{q7Qt$k?}N`yv( zCkaor%gCW2HYsEi<8Y~VZ$ie~L;WhmwGf^8M9)|I9h2au(xhT!HsfP<6)6)Xsf12H z_{%o-?&Em!in~|H4MpJOPD(kyNkGw7MbV;YB>G?p!5V>}Op1|VS`OtOQVU9sO3(;N zvIod|77jo|WZfZhlzUQGn9uBqQ4~wbDp>2_BnR^mu|Bj*Em9;#9AXXQpsb1Sf+09{ zw4FUwOcsM2OP0l&>X$hb;_nEFvzAAZL64S|SS1(7GY$@Y@*%ABs#qGEc0A&k7GnEU z{R5Q*rz~>nE=>i-(rWT6Os=-T`deY8A%f*F&`j%v{+iE8os;Dzp-JU^;G13bGGV5= zj`@9d%h*bC^S(91OJNRKZHOM+@Q}(Us%Zqb8 zJIVs86j+Aa92rWn`fDeeGKFwIBfn!gToyw?+K;-7JOp^yaFZKLRb1=$8B&*B%hh!= zXovmJPIL!@y>8yA#l$`QDx^M%sv%P~Pi3j__qy(PdRXBl%Ia3DkA=HTN{V$^5;!o@ zxmuV)YTwcigX0xUrwpg6o9FMJbHj*J_$7Gu2REAZ;A!@_BcBg{&v!G8{k8|Bi+Qhj zXZ~gI3{+VRjh>vZfjUSYZ9?L?N$v}R+>&DaZdV>1$sg%SD?KsTJ#2u5BthT(6GNom zLipqr6mr{bbo)dmTEB$_`w>#|22$pf=*vO3);vpZ{_Js$d5t|A4v49s_F1 zLfydO$y~6_v@d>V_#YP+?Fx*9f&kj8f&jdyV{al2lysU(*3K*3_-Y&8ISOvfAfJ@n z&Z-0QLEGI~<;f$Y?98tSL25o8%Q}AKR}gs|v_yXvAntJhE-sHQOOF|Nv$Y=y#Xp~B zsy1}Z``qxJFR=|qW-j%oj=VBaqDhzq>Vp`Od)~T_Gpy%uguuj=R4LMI_v?Mi(r@q=-` z{i9?7CFE+eK3L%*Zv~g%Du;lwUdVbT#z)m!Sc3KRHTcL19C4j}A>#p4YsLp-dviSp zG>t49n2Zb)_>?#H*VNfah6u~dP&F|rVWo<9@^CWi>&`EyFA&pj6DP$<>zYE*^@@Q2 za4Q(_Z<%TiR!(uq4pnku#`GkSnVc8%5El}kpzD2T3sa-Z?WCEu%h3~7%JD}fDE=0$ zwkvg`sQ$KRYlr3>d`7^zkEs#*8qdf8gfBK&I<)kv_nxzKM3h-RN1h3Sx<@ZLFO^|Q zaZJJ=O^%9bfIhADK_n2+nq-|h0?kpL!OOwRg~_5&$|oD!Q}HS=z%z$P$*Y zA{azP9d1}l{*t&M@D7%32+fbMrH9gvoc&EaESKrcbPa#cg|I|cZRt$Sxfg;Er$7$o zk(r%qHgPIQJtPe(Djr7lqzX+wM=y@vBT_=JFtki@HuHyMf!OT)ndC}{Lj+-@=(HQ! z$mY<|wJkXqXAKv6P-GTI(0H~(S0mLfSCKz-a^~jEr@w8nv8qjbF$KEDsX99m(C(R5Pest&kMErEDc;^( zV=I6AIL(*QZJgRidN-2A%I>)P#kRWat}vuHi4Gek#cmQE!@ucM8xR8Rv+`qyY<9O6Ygl?0p^i% zH$vIgS)?`hTogwtGCJDu{QSQ|E9_qn3}e23=GGKS1m;Av5v|{=QZsU3h+Mx5-UOxS zP~>6o;BXNU!x@V=BqRjX*E=mx!=8@I2Xl+EuwHhEXe@ zJ1(LR^GF|Jb8^&(;oqW&QN%6Q&e*OT^^mLp%Yh-wlfy-_M=P~Tps@j8M!HiRbqdU3 zruHMFL1SXe%{dz{uU~WqTHjM?bGrGrJ-11}U!q;Lh-mqUEa+d|!ftpq6e&4;EY_OS zgk|iHi#ChHqPkm=Jy|WMLjIgYfG^2jDZ_E)&88-5|$$=KNRmhc1|4OUK1;m`tmXi6>OVfF+^*b)!l-7;l$P zU2?n^s0hz3RLhqoGo#?3Mi^iNcH`<8N9BS6mbKzzOEt6boZ#il}H#ij~01;Q;P6cQum668op@ z()TAs&O!*2Qj-+v-oNsBC&b@MBT(T&7{(004!@7IS4G(pSA!>EcO8xs{mqE<+nM!G zHqvVpQ2{7zk3(ZEB&s!RvM$N~l!@{}Ls*i^5pqK|&|LA8K*{!%${Mfj#p~Q7H;0I{ zFzJQPof+e0~trDY}zhF{n*k0DK*cSf0s@l~X zd@RtaKX`G)ad%?6(0aGK(3GXmEW@4F@-7Vst#r$|EdcR0jP~+6L3vQe3l|nOcn0~8 z{bd8LHvHk}zn~-!-M?aOnnzqxq3wf!M~ACwAOkKMn(BQ6R_#JlOF}RE0!u3z`R2jF z#{JFy%965oU=$&btEvfz#Q}vTZ`{h^_R<0D+zhS+-=r|+G!=!+XJ#r1sNgtU_L8x* zUQ!6S?Hhmi&`X4k0JPnbor>SUzP}a_2KZ+DKquyLooey-Zrb|s%&K|TmzBXzca}n? znk}&bsaCgT5V(7;WNxwL2rdX`t z!7rtnp?HUuJHeN0WHnCvOsQpF>ER@d=BeEC+34srwfuIt<-XIlR;RHC&&gWq4ov~M zLyNuINR&-e+#HP;FDD(?r64ZOg48cqPZf1^Cpn%0Y|+0e1|8v~zUiIneQx_~jKXx* zAr{Jzb%Y;NdL~7Unb;C_Y#7voDIEuC#?h$C-}Z{GE%-RCzS~g!t<05Tx|C4yH(RQX z?10@Jb{IE-^nKZrUSk5G5pmqnt^)q=0#br1V&_ztd@=6zpL#tYQXfS8Yl372VjYH~ zP~s9dtx)6wWO<9j?c#5V;8j1zHzn}&O`VE7;pbk?+Lh0y4DP2M_I(}ze893JzondJ zzoaC>6U1Aptz#l`W|DL@!xYag75)IR9HM&h3B2Nj9Yb0uagrY}0zzyrWoePcA~o6Q zEHh(XzD5}tpc&Cd6JzO=%l;vatdU+}2GEuI;3#OGUEF5dc>cqg9eBoZ_j9AVl2&-9 zx{D`}_^p;#lOY;Pi>{S4*v&(Q)Q;<7eqs7AEIp4;+{yd-)EY(`j-|1d3Wt(RG8`K$ zE_wh4jmCE7{<%?EDT{yLBI~Au8o2yHSlQUvEPTF~02iX9_x~{tm@WRlp4GKmuw#DD zuICB!PFY+J-@?m{=w9Zl9J06)Md>&;gZ=&HK&e+}vot8M4|F+=O-*6Bq2P8@Po+Bq z@I9B97rJF;*_-WyfoX4b_-#>(DSMv*02Wrj=6QV}ZAj-}1Hg!5LxMl8o7|ktoll9t zvSH|?9TDU3Fq+tAx+bimqQYr{n3Qy*@?qWXatXsv7Dr0UGNyk}Cg}xkJRGu?a>eJy zN6c_NsfNv^U(0Ep-)MCFM8K#Bm!?EzGyjq=we{6AUw+#qS0#vvE**;6*+uAl%}|oer1(oplog z9828q(r}4b`K%NsZm67_r5N%Q*d?yt$xwJ+h($u^q4uDyF~&=kb^U#h$`g!k;=GuK z)2@lOhXIN59ZtTP|Hbr`vLYj${Gxkpg;%I7OkT#pYcjQ~9W0zI(3hB}6*yh->n>>2 zO_0)Y+?bdKrfyd9`auqSg%D|qF3F`d?h-9EEo%)fdxs?)nE#k-_KI5#EL1i@vOcN}=QK zp`jVHab4@^EZ&YIY}(5{WnXcMIB?!T?+cWNFLowRcG~WDz8YElT1FNQ!5}r?s4&=_ zK4X^{>uLiE?UT#AnC}iNznp5FPB&HN`EJpNL>>@;9A<;)s1le*KGKFl+;-os{EAw2 zY|y#kcV9)Z1J+wyNe}Dt75IXJy^Bj?6Xixcl`$b@ObH5e7y#ecsqquK=>CEG!90zD z)-EU{=J57S6Xw=)i8E%bH~SR$^T?xOKWO-Kjr2w4Ft1|K4IL=<^plvs2CGzu;k>zrD_K%XugfYV%I`if@r~p znGwH2gG!SlaY8v&jjN;6SaJ*AsMAvlVWbXXP0D{*=-HxQLC)@e(*Uf z?vreeL{un_dX1lMOHVkkTmFH@^qXUbAyFiU zN8gO-S5zSuHyAL zddG!<;&nRl#?1+&&Vg)`1tMjFP#@^&+j4eW2Y-1VsQ39T`{-J;NQG(iXWi>_i^_e& zLyFlycW@j-l(wcvcJX~x(NR$@SQJG?iVMa13b#9ZdqM||z?ASGpcX6=*J=M-ssEYI zaA7Qr|11(|>J;w5W@K#byX_r6>R!Zmyv9RezKLKmUqyD0j`}H^(S=D+qXo2Uo#_WO z6WkupA*|_g3nr35en01S&?0!gnfKMG?LPf{-upzc_2P7_xz$3si1Boz?U3&&2I*3N z?zMYqkjm>?8DIBA;~d)v*`ink=T<5GibP^SL2uCM5S37++`+VPA=G=o zf%2HCwT0rN_P*6H83x|&eI+@4+AL}kCh{h=P#Xkd=}r7lE=dHRLNik#a)<98hoEbOqlQ#L zdlTWL{a^FU(EB5#DrdZeGYO97RAQcLt?WOi9Kl3)5M5Or4p#_UG!N}B9Kk04UWR7C zlbeyC@CE0m0xmR&`AM(juTvg%b5hATdI?5OI(W=YI_?>lSflo5IlZs{ zEGu&6<4qarH#NjjpnMgC9XdFtFvTS;8r0@OM|F7?}?d+Sxy}TzvN! zqiIhhoCjJC@C7vGpNf!o@jVMl5!kmT4^~umYc!NgJ&_7zz(K=_=(awdub(%`jB-*N z8q8pT&-C*kl_=Pwbh&)CMH za_e*)(ohyveGU^ofgCH5uqda)=dNXeP?$z`WGo^|<)>1uSc4WweX-{=;-_G? zhV|EBm?_KsYk=M+HA&?nj;G2Q0ZMQ}p9C5w0&NN<3Dc74NvJ}+dwygu4LK?#PO_U| zBttx3!Q;IK8YG%K%&$r`4-!z2Kr<3U7u=}FPv=aRS0B)Uv>EXxv7%B>*sMVLKKOopxVNgQWMFxd#I^Vi`j zaTNIIkZ2Qo{RIDFq%Lw+pAHXTO0r|{i_0QA zdkKgZJh|$Rl<-oTCrl72^7U0hT}!AO2)Q^qdk0oDC)fJRdG@Uh*Rw-|!G7R0UUjwU zGxxN&w?CQ8us#|p1la=rIcbbeG5^B{Hnud8Y7g!!$k!imD-8D=5<0ny`7_~-2Vazu zK}bxzG7dZ_h#ERi1Rr-$N7ilEWwSNr1AIHAy!QSFz6V~-Rcu zE#Ugic8;I@l}QAk%DcAR6M#}Jh>St93_8rkdt?%_IMy{P7z5v651izaLKMQyF%kRHlOls0J{7EcpFmIK!U)eJ)D!ZEhYzNNYlw^B} zVB5}%PrA=c3x`5|&)(0@|B&9aib`nQIzgf}lJ2Dj?KXQ03RL1Gh*V;gk|Tm&E)W=u z^K;07M84*LnJ}6{)K5N}yur2;p*s@wK4qcSFGF>C4FFyD?HN0}g`|iELmou}4qZN| z*Kt<};{09X&rlH4_s>1Y*_GVjmw3C9usRjV5_D>uLuXX8Q6&MVy`LQtkE-~{JI*Et|>B=d*!gxS+R(Mcmcqe4f*WKWX1!Q>w$ z6MBTHP05CPO$iJxR0`l|XM(J1AiCKwVWscLP;sA#>_?y%+7FSz7m(;7l;NN%Wz`A}g*!*Ym&5wT{ zJY4kuDaa9K1Zq;E*_4R7KosJXlUR1;p5w~g-L}=wgK2;LWV5O^l4~aTLMj5+;ljWT z*!)P~NXgPq)%l4mcwIl5>hnna(X07@DL~>G3f$B%iR%I zV6QU}cQN0zS-*5G|9-Mm|J3`{LGb6Di(lgSC(h#t)@LHb?!$BO-2ZjHkpM zR>}#SN0LIV&D3;xx6+v~(;3L1lHMNY!CCzHgMpoHHA2}tO} zii)Oi1aeR0)Z@41a0qIelZr*5go^pDZ+{2N1}38{Et@t99B0YF;e14VD-lY6Lx={H zQUMXs)TNk=){t}rs#^H=;Ef|357;F`z~_Rgel_0d2}~b(RgMMIe)3^W2^tBke0~^bpyL-wG04IpC!ddoj#YqR$p8c0aM zTF?Kp;l7QqesPAU*tzcchCH+9(32F(dqs2P!~qq)Y37GUdJiD!ybSin~L4!7-ejU_>;NJaj!`d+RB8p81K zaO9pHFpiAA)S~-*&rkqNg0tcU)-siIbc-7e@HM zTZe5JUBBvtv8%)4bnoN>)hhGyX!y?sax=YosTAt%yh}M2p^)ZKMv1@OYeV^Cy&9>=2tmGAAATHeN&PKA)HOsyg!xY~GeZus z)*b$tif=m4AkQ#}pGuSL+E(J#Kx`3~Jc@^Tr~|wPTe)?Bhb};E4Asj5tj2+`D2(A{ z`o8V5)l1qGi86fk$Z$lCLIr|2xzvx>Op>p|Y`HK?kV>cEhQ!>NJDoa`P-Jqg6l0f( z;J>LkHv1$@MPeQ;;}g?UB7MT7i2KAUUO0-v5_XO#Nim{CZ1doZMMi{#UOFYp5S(zp zJ!;ev9gQ>kM&c_ZIwV{i>O3sV@s!093$7y(@m!CL2($o5zb{lYq7=^Z@^DeY6r3@& zlowAcsQCeM{-D{(5i%{Z(6whEqkjcS-4(Ou(1MxrIIKye1GIh5>}Fhmkwu>v{!n$j zbLZ@pC)XvN(`3?M%4AvzeMpnh++Ex>|AIGP)_M22SDo8n6I|=VEC&DbLNM0DBVS`( z;TF;T{|6aHn7Q6>#@s{W;!Gx+2>+?H{d{+KWtZzb4<~2)zh1@-Z3v9Z!F2%z{f5E0 zOw286mZ1v=oC*#bKfmYHO!Yr;9siu)$Fr>u?IH0wP4D5xv|nP)!h$a{vS09tGRv{f zK)F=uYLlCPSVRQhgI*0`Jb!)&Sdi|UIU)7HY(I}7E_ENe5ROPjl)>CTRw!8D_OS~R7uZz8vt)eXRhX6!0 z-P<%%=IF3s&iNBIju!{J?&d4f;0_W9DlB)U6t#PhQ5NmvX(A zYy*YWx@bfN#>hZz=zv(t_o@FhjjH3q&%ZQg@%-!F*EGWuo!gwO+~6@eti&y;%O2lR zTWdCl2Gm4MN4Czg>}@kO5^dhiUYQ@iX~L92&BYo$i4Eg?eL6D!RH-$zQ%pmicTTD% zcC(kZf;;k(mMGWpRb@{idNhpMd2!_wH|!0yI*bu7Mk~$$h&`~B+(^oC=w7ge$}XFt zhN^%1V1tt?PoXB|JS-`LC5}uxXWb<-B&A^$s*XTTjRY?n06Dg~&VrzP{C)6SAN>{| zlOZvF*k;N3BHIj#P8kYBXpIw+?(|e7uiv8dh=mMJg*U5`k6Ehcg_WvfhH;J#6NqqsqrF#e#v_;2^L@%i~un%ql)5F})sfC=;Rym|!DQ zDG#??U|BK6%e!S~H=ue=Dghcm2Y(1cKBsYZbm|ULJ4|jV<6~?3^}G&BfA=hxPiy)? zi9g;OzGkd-Cy&J~Bk#v0&&|a?Z3@hQ74X{)E7i)z*T1rGpA8wOwlOOGoG|3o4>0+W zs?)-UCp>{Dhm5Y+-o>b7uZ*B+mP6EujQ5$}6Knna{apHMMT?Jkvwxl(Xe@m=>ul)2 zGk*6Dj(&}ANYQ83hTFj)h4p#r=g+(reB?*~y|Lkjb#)c@hezp4fohm;`6t!V zY9)%eO&h1}6LA!P?tyU#Z_f#6OF@)ISlF}IV4o5_`*`A$tN$YX<9w=Z`_|^aaWz^P zX(;vf4J2XyCmOhox|Y&TVMzH37q%kQb_aRa>VZJj|kx9p9voE z_&(FiGr-?3YrBPk^qpK@b0En9%Jqf(GJzpLTf)?}-`I1rpZQql($z*6{uj(V$|5Jv zk2A_?~!bz={@oAoZW&Gvu9d-kY0 z0%nFwKZS4ePEmw@k-L4&Zd^qz?hW}Xn0yr|NBA84EpdLXQ~TlqufCZ9+q7U*UGu3- z3Vxd$AJU>GJYvrFqiIW@m!@9m2ru}>t%LhbhgDF-Li^3%`U1mKN%k;Vnz%kBhw6Ys zedlU;RSGN;Ui4Cx;95G`!esaf{|TCBZ@YV)(TN$-6>y2WH(4cV)HYegWia^<6$y+X zi>JaqQ9s`2`@md*KBo6TWPR zvQo!`i>a&1q4Di8%Y&m#Z`z(82MBDEq3|hD?Ls6?vXs1$2=KIO3DWoX8=Lv&)Vc-Vw5+}P z0l<$GSy_frsmj~7ZqWdVYk<=A!e%N5kU}q*xtl@@-lRBQ?72B?WVpF9cR}Cx5_(-6 z_j3%{FD{Dx#>0Fte-pdCx7U3l2x7GOye|*alm9dk02Tq;!sC_kY#gIBx)n6pbC@qS z$yCbG&VI|t%FR7^`Pbc|BHjC=w@vzn+ur-)WKr|$w*z6(n=-4pUsl`^XF}y=4#WS! zw;Do^az=+qG5l`h#cpt*@`M7gS7=mv59+BNZ@`^bgr&NXV zH8D+ZB*?haN7u03j(( zbcX^{s&-B68tMG%&ECYHPtUSa55 z7M!pt&PCXj^qPGv*osTBDU6dM4$Av>;`LelVm;)NX6>!D^H+Fe<0qq3VyNX} zuYu``E;Tekl1tit)Te8}VRqi7_!q0v(6;NVMJA}leCL*KxF)7}51D~_S)~1F@vm3u z3ZxDuICXAJrLI;=t8ESGZ8RHUSD8>ZKKc-?-`?^v>7LB&T48=Eo&8i(sr02jwGb}0b`2pAK>m&Uf4IIv%E-?Y%|h(Q5n_Q<_(t<7&3#ku!Xxz z93&9_t)WLYh~>r4FGSuhFJ}#*St$eji1e4&x|?rOd#aDdHNH`xwbc>+^3l!+YO8-S z|GHynP~R78@zMClW#8`aw}3}UkWBddKaaZjCjAWDP(d7+qKx0{I&CH~UR-s*an(IfLu~URYi2OGx=61AOG>JsHxt zKN{QH$4Z2ttCXl~*V?=Sq#%~Z-vGPSu8TVu(Ott={f79*%evSOFZ`KWapAEP@i71I zl)8rc2+OTmh5Mr^#x~9#7mYP&E-$Fd7ho-TY|}#_G?+USz&+$Kh4q`&_-i=b)}i?p zF9)HRhf@o`U$uI6d-_xuKV$3s?wz8EggOUPT!DdDtIkZiVySF_DgaVmz>=9(fc@FK z?(mn4dbN?P&-px#sTLkOFfK=8{JiC;b1G;z1ZYtA7LLSuD>eeBsOpc5k3NyyT&-7b z8NaF0-XwY$I`DoG_uElk3Hxr4h@atF4sV=*)@5wtnNo9PFO$>{n%FHVGOGJ3yx}9x z5xeir-&l7tnOMBHZ9LvDEuPtmeaE5xrE-S#`Z#VL%k;bWEHkFUCYBZqa?@LjQe0}5 z@SKil8CVq5+BZcMp4t^ejv0v7ym^Mk6QE!o3Zn*$+ENV}*EN;1*Sc^Y*;oiz$T?nx z8mp1;&P2%;4*Q~Mut>05b~TwJGI8qCLsdVJM^bH4i!xBcDHT41)x!O4-O>*D;uxXm zGFz`NMWsq68iJ6zDUJ**h(^i7gGh#&U*4U&Po4hD?YcLGkw-HRzXt9_A-_0b7TF3<90QX6t}j< zn=dv_{2NRd{j9{O9q_O_Q(Yu4W+-Xd^+WZBuvs(drMj~GOY|85lL63MKoP?)eqmD6)m!t?#-Tt0% z|9xs#>VXEB%wM+p4KB=73q5KnldppQ7b(071)Jn0_7sXmaqNde4xxcfV~WKy$U~tM zJsyev{e%Rews3k?lW0yp_K7h zqGkDJb!J6!H$D0I-vrDX%7nhygYE58WfU=B!v}VGk9X9#s(0ajZec*T(7lxnU{Qd6 zDs*A{NLV+nY6tFTX#0O#^_gip2Jkv8m>UwWtgqdRhEj*xPB|p`f4=oe|MO)C>-ilH zc~Q78`XgAQf|k0)As0~o?7#FilrXEPyu4&Nzp|`MitD~=xxiH4>fOXY9rbLZ%q-qK zi3{RAl%ZV|l&L^;B57aYj~+F=v8t$=U0Q1d!y5*|roNj}UFmuN1GB9K7DyIWOD16{ zwT9HIclND?rE#U(M7tX!q{75-a!i61Hr|SbCbIFX_B!MJz6c{UgIeD+9ppD*hCyE` zx0tUAkV81I;Mg=iaY2F&xfNv6s-49b`EDmE%{cdz8rwK@o0jmdOUCUD#R zVI}`y^>%=OznDCpo|0g~deL*Swm^JAh9SxxtB|san>xS+8qLLCg)oi}NJc(Lb@gHO z+)%w)SuhvZeIwBjFq22f^1uch{H0!apiLwmQGW8$^iPy@-fg%XmQ8fd9Gt9S(uyZ@ zDu$f<$&&u6?whzt3D;(vLK2MNTFw_7FqjeZ80^KtOkLKU*F^$sjhXHq{?E>t)95$h z*N?-8j`r=G*M{)KXVtdyzv-^d9yIE_pW~O zoSawmekLX+88-}?U*Ca{nBBRiI<sT`#9?|X<%Bd1F8hT8ks9wudOU*jDQmtFL3Vw zDil-j)&s#XprM)o8?CXddrmMBCD1B=ciK=IOy@I^dK`vQE&f->oXpn=icm@n1;SuR z#GX@M_iqBFwnJ~Bt~OW>5Hb(>>^q&-NQuDpIDiB~#QyH|N9UYJ^Q%WZU4Cs>qkM~9 zhCgF{H7w!O`Rov^)2qzStTfAYgH=)K6~!lphao+}m;Q*z7>)-*7vF&1>(LFXE5`TM zB-7)3>IwM+yiJ>%fPKYVhdfk!`z@^5GhFZWc!t!r!8Cg=vq3@OTb6Vy^XcPEKth%+ zzozOanT*n({PF?j<8#?_-!|w2MH7$L_T=d(;Zaas_;cKuYhdVp^bs&-)PAE~1jGV- zH1rong0?quspga4p{sD6WjWhsrdsgy#OedRK2+=(i6TX12Ez5D$p}qoo7td?vIhyh zZDFNa4vk)le2e;-#q0qIJ2bBq$;SB9zVJk20>?X4a?MRyF&u0VPZ>r90CRVeTM#vE zX-{NfTzKW3s^hlA=ud_+PbGWQDn*?5CvjGlbo6x1p=rh{V((iI2U`na)ydEE{a;Xv z<|+{)Y&PQgzg3efc`R;qH~X%2(ZY<+{)oL@rjB2RKZLNvl4--Cx@eIs++UWW22;Qx zP{AP#U$DOZ{x&Ho)ksqlH~ehThl!LuO>CKr!;*C%_r!t>vl~YgB97appJaA~-Xq~j zV#plA`dpF>TJte~h3pnH-=H0a{(gd+?1T?0l3$qF4l806=Rz?;VM&oPSHqFOM2uR+MJtzGhD?hieWbNZ1KnLga~Y7HU=};rJVwu-(B}D1gcUO;INM3i%!@ zu1lVu&<#5`k<>kukAHXlRC9%3cJ+rNYW8@2q4vw>R~Cl|5h=<__hmSL4tg54eW{iP zCKjX$Pty7Hdh`eO{NAx0r|a+yxkn~nUmU-wT)eokw6uJ6QPsGwl{XUk>*oN3b!kp- zdotpUrTYYO+V+w+miJS}sP<`HULw+~zvEnon+QqhpIsM2QvTEs^liRseHebB2!Bc1 zv}A)YG0|aHfj9O*Q-5axbWX=>uml1p_S97X%?jR~j)6Oh*S0XUHC7}?)5C+CmX>B| zYr77vzXty!`Co$%fv_IThCOWu; zJhoIx@<&0Ww{WoUe;b@=VJR#dpo?_R)KVhY-P$5g=u2E{qs?>=yt}y=1M;iyW-#F0 z17?4$?DzP)Q`I4AMM_82S$B~iXKIfC=nN>MyNkJMZoxwHkcvM1DXPl ztt72_-#h*QQGb!k;}o4%Z@y3OV+Tz)H#ZmU9yT7*&(7Ld89kzt^EtotvuUl>VYxAM z%)N0rzcVi#G+N2vfH(A6K@n&qMY_sr);I z*_wC+DYECERN`W5c3bffge zlI`zsmM|7y9^==$_u+JYhv0|4LrPVo6#7%Q`ZSTjpI$Q~1xr&9kCrVI6O|HLQaf1% z7IxCSrKKJQ8fQB+A&|o0cEV&hMDk{5EK00yluw83^v%xlVScI9E!U8bpJZGKVI%0UEU+BYW6jSHVXJ-xlJG9uNz9s9s(GC~CPYm*N1N(m=b zW-iLf!xL`7sqI#0UtITec}VT*?cqU6M8Ze&-zxz=>U44T6gAL41w3e4qotqRdu@#tgkjVN0@hxMT9NzhQBQ;W5d|PvwSLSLC2PMv+v!_#>@sFcW;XZ@(%kTv z_1jO>|GeiVG6yNa(Xa z+a5o@D*#JQ{(<&((W`TVCf6#z2Vc;dqQ0$Q_XW3RYj>Bi=<4kB^zavyHZ9cnN_PYkIA=vCK5{J|GbFt983e_R*r$LkVF`=e{+i0`WVWKK2X5?TJf zX~DQ#5@gN*JJ#=>XI8bgbMlIu;U8y+yf=sqJ+I6FYf>ur^QFZXnq;#on<;izz=Hr6 z(-@F*K7W#fgz+<*A++nn68g$&g8#85p1vfoCeVHe6D?u_-jXcH~ zr~17uFUaq9deXe*R*QbH`7|P>C&NuR)L)G}ZkC?Ssg})Px&OmP|LFDg%3X8g14M|A zRJz_Hf79)3VCjodPuJunob)&N%6FwTZO6?s;qmW8IyAD#{LK9LES1L52v?b#^HtZj zwMsk}mYaji?A}QS@&>)?|AIeC+zz8<4Saq63-+8`A*;0e2U_nfnYkimChJjrP`CWM zJVtl|Rk|$}-H0^&uE;;Hby$hILnR%MS3=+7Z#CA3!Ap`ABejW>yf6N37}ky=edwqI zVK#gn#`*&KK5!>ci~QkP&T8ATlqZQaYoN1!(yx>OGH4ji(@~YMpiWZeaDS3TatBP5 z$hY{Q>>!EPmr$9rJ%enK8~m`**V2Gb^G&*@eV&9s_u|KkOi;d(L_f!g z`M~+o;YK&Rk~fTSS$a>iw7;q%Rw@sFycv5joD$R~SYj2@b_0Ja(zJNOuxP#U=i`_Z zh+YP}z^)aC3ZpjRZNZLrvB79~$wNgTh~3%6B}wE29w=}kfUYPe_TU#q)(`*!i%Uw# ziO?6uHac^1$N|9?csJr%PgbnWHaMk=_+zXC)TGsm8Dfl|Wp;{*KL|F^7wN@FP<;qR29 zA|;ymZrG@~U#qmcZJS_mikUxYQ`jw9HD;7PS_#V(ptZ0#6+ zF6sI@lYpre6RT^u=Z=i|+-Z)E<~kT}R`X=1&?`;}ccF9dCs*55fFr@X{Z0m6M1xDb zeIyyVz?_%L2?u=sp}Ou@VxWaV;Yw(_d_z}=PSDu}%SU1MOYV$9Z}ukQm=3M^DQkzq zA_UbL^RIa^`v)Se7*vX+L=)?ZUR{gn_5t!<2R{JiFEa(?mtrZBC}!m1^HUQjrECxU zkXjvbpnI^Odnvz`Cvzv4{TSkFsUcRjKulHz=zCFmMJW`~j0kmv>}v|m`cm`H%iq7D zEn)<&1Z){YDSE}>DRHE~;2Mf)JTy*Gnb&B7JM{Kt`;{QRxehaqCIpJsDfL-cgTcl^ z6cwWCaxC}k69$W!373t=sL_e}ZW?X45=2Ea+{3R;_mzkj-CJ^=M0|Vl;KAYEZq)2{b7zS>zZt9+ zbeLKIVO=~UG+|-M49UA2UJO}8Di2DAFh1|7V}6cIWI^O!hH=jL7GY6=tbj=E^A6BE zv=TDIt%th)hBNz-^>(0HceB(xNwhW{NLl9N?wD)>sEpb|3;1}>0$`) z7xu#^yEL!S$*YqMKEHcGxJN*Z;o(SRwAGXA zJU{{Sea=9D=`vc|4eI z+|0C5lf*1I+~khX0lR>uz80^kDj$L5p`O&SqN{sg(4X@&1V;Z{t*<52Z(Kp9aa`R= zgsT4L?z-McBeme@*NOvpzCOy8hM>2}u+whJU99MRduefaOKjz?B`zSa&2LMVPrwvBj8l^w9t63cVkPOYH+ zUu?H3rnRI$jUxJgS-!wfC441tXIC-No?M?s)!aZMppo za&mN(eV-jQxHGi0$4e^0k6_?-l>wu8D~nj=Wn117M|KPD#AHVdOPQ%CoJ6|`8rgPG zoh|wT$&Wu~?6Qd{+AZ^${l(QoXtr~WkGmf2D&r?d?&+rNI<0nVzmuTikB@iNN5Y@1 z(%#Z9LVh9zbsP_Myn{@-Y;AAn0z9rL%l8X7IZ9c=Q7gQ4&w}pm?m!y>hV1SfiICrQ z;F}s9j_sSLe;)grS;_zHZ~9sP>2H#4HGCfQ%_x?QxT@uxzdTQ2HdsD*SR%dLwGjTP zrYs!BiZoeqcK8?sy`LiiR!XeAyeR%=I=9z6ZSMhhS?~yG-~e(VRbGC}VswRSblZt{ zdBx(}0nVn!dY*E%=USH0MK-r;^!FN0H`b=w!wp%9R=5_rfn~lvpbvYc^I#K~SE|-3U8e4La7w5@ z6s(?9`MzX(K8ZBXeoqlv{Pl{f%8r<2;ug1{-A1G%iL}UmZ(!zi&`FAsn(DjaXV52| zRKw?x;QxoNua2s+{kGktl+ulKH-dDDbfq+6r~q@+PWKyuT0 zpY8Yk?mg#>bN|sX7~Yh&xPv z40T3ZYs|u&dvxvV_(sQ^tAiS$CBv#tHrwWWYX3*g_w0L^smp7o5l1@#pK`AQ$5w+Q__XVoKt>kj7+3>wYUTvfE^cef0$a|EW*8C% zR$!NUZ9Y${b|)4VhQWwtP|6f!0N?Zd4IsJ96!#|^`ZQP?q^Y=eB$&N5{`2P`fSrI< z?QFvcxc+Cs%ro~+5Xgn#up4YtSHq|0?=dSBhKa&w6ZgdiGPXB7Rb02nZ8c8>_o%7SBsfGZZILN0(8**AOM zjd^pI(jJnC*Ta1%8aq0wYT~zH&F?rT&rLw#VXDn|2VlU+tLEloe*n>?n0kj+LvMFa z)XdYz+}}f|v}eecs@E;}f5^rt<2Z6fvQO4??T7yn#Qj>P9ouICX}$W2>oXCcvv}QA zJv7x;n7+L7K34PhHaj>C__tCjzr-)54qL+_roIr-&A!tmDT_yJOz3Deok9xF=;Em* zqhcO?WscMPSaB80bJg?)@>=*UsiXEsbH)g6tPrlK3`H~PokPuFl2wBwERre~)%-Fd zuM#Rc99bVuS3AfmrWx`_v>d9JTP~91HLAlNO&RJv|?|iSF95hkqM**0yGgd z2cQ#ukIAHvpRXi`NY=BP3(AXBzwYnl6$>FiV=JMTcM;%K9V%{kd8@Q_lA?K5e`NH9}9i0mD7Q%~5*XIRnOF zf7XuA4^3Eoh-~$m*aUU}l6VtIw!Kbcn*^Ff8{%z(;N#m3g^S7P!*14DChA?*%L7|o zZQ&K^*>-=CNFt6kr@Kuj#`ZOqg1o%9U{}GC=XDydEr3p#p-bc>B-9xrh|WiAG8Fyh zw^yeCiAu5KgLlqM+EH;H|KS3tW&avZlB%D@hfh zZ|3(ZD=W{54$s5z%Hs{K|&sZ$qcWa2G98=>By6tV`QrzB`!+^wWcG zV9Q(c1Io@%KbB`VVctvP&Ve2G*Bx7fQ|0+p)tMK%c=xP$_k(N80`1SB_dg;i>ozV^ z2li4qEGeTWEmt1kJqU%9NxEG5HfoIGqmIpi6^jen`QsY{iMx4hiFW=lT`Uwo*FPC2UC;n)0f#{Z(n-ijvL-LWE! zQ1H1fPIvdnLT8!r`_FaqV;WL9S=}HV`0o<57o7t5$a0#qDjwpvtJ|!5mcRki)K+JTsZS{RjMDBvJ3O5%J@=f ze&SROj7`VRzQ*^(}<6}pF1Z{EM&qLS2+@*1( z!+VHP{5USQ=1YC_14=Km5J0CT@VZRWz4$rPApTw2;)0l(RO+YxuzZ%{IOfdC#uEU!Yx=A-ljNbjwujK+ zNFhs=Va&2n`vqW`LdH0$F-djCUKx}rHqzgd+UQ@wp0H@+*Fe-P672)U8dHC45$y&p zel+_{ZA`w3Nv+&rP`vS+=vWbt{TI%vu$6du*Xmid}N8C(-HStPrsqBEvj>pW?-DpTID08Ng&$6`KF zmU1z;(XtWJwCmyx>df5Sp#z<8EOHb3{5hm`*>6WHXYJ+^mMQ9e9N+}@MULAQ;c`G! zDL5eZ@JoePZ5%Q8Z>#1;#eq0#Y?Fbe$8pyeN!zD9g`RvS7m>Drt;L~|S~L)hE&h$_ zew+%9$SF@EuT(ZJZywz3AAA8<>$^+f3=Xduy2^Sxz&2mDjvEHJx7#}?S}%Clt|D85 zsr_rO8=zIOP3elY#nLYwbgw_16m;XupUf9Y*Sl((5oL6}U#@sF;Gb=zI>p_!o(Yi&00wwjIKrKl< zgaR!|VQ+@t`m8`SBCa#ThD^fP&3))vYJq4bgOQs^l4s{F#(=Jltc_CR?wBO_TiE(? z?A;GG^zSu?e?+^v<2)&G%bsoW+GF7zzK`JRmfSQtq(x4yqI+}qMG@h|A?b(hg^nW^ zo_XjHSm6gV(?c@{n0OK4_4Kt~z0wf|>4z%C%R1gv52f1crG8>xh)96JK)Pqxw7Ntj zc_nUtH^`2h9lA;OAH!oKo1m?_yyNfJ=jf-G+0G4iMQ6_XvUURcm2NY3noT+2jeab4 zKBPqJ4|rFbJ#UF1Ofmm9*J;K7mRRYR!JxL{pHkrBW!YVDI;u`jBS0utiuu{*D{#LW zd!L%bri-|vbP1=y-`|}ATjXw(R*N<*J~C^!+MPFiM+coPdk1Y-WPKQlO5EFQR;{I=8Db_cs`C>6lR3uR%qyS zzUA(w>Q?DXLjFCg*jk4ON}pBC5>}H*=}otuC%N36+#fFasNdh2%AjzUq3T`G$!`a3 zfeG7Trp2BUj*(#@#2}!+7%~*g%~6o0^(i~+IR<_YRo~DiPEoi!vI(nU;+1-RpDcvs z@u5-3cE8GUXN6%*wM+C*rZ6>zn2x!(GDk1SUr3#6R)wSjVS_{?Wzj{XkekMAlSNlhMiJB}eDel{3Y(*l^v=_Cp zJ9l1Oe@w*TpXnDR%4aZCspsRJXA$d9N<8Z?ccLh=WmYFZP&!^J`$Rxubn0@fyF|i* zLe$qDw+;0UV#_Z2?v`uByI%{GEm*RgNswxiY8c^TABC|ryY@& z0A=PGz}6}d;*e&laPE&mRayPvS!x;LESpt0TVQBJiW;$;VIm|n4_T6hM=A~%J#fMe z=Ph>_SD^djf?ejzF_u6r$YkuWFv(Ng){5vuOe-492J|1)d+Za>9Xm*ow+YJwk*FWn z`|;+|Kd(;Z{QYxf4s9|#WB+m01J7ecBIVNs6KubA<`+E}t$yGHKKm*Ci{q#LV|%*x z7U71iD{m)O(=j(|Q{{6Z2mWcK6#EKuSKxUmoW+==s4~~!u-Kf`akZmc?BGonZR44T zA_*_IhIKzf1YQ1hC6W=lei8)qeB`HIN4 zrMaZM+!D+s^4~)n9NCTzsP5woWsaOa?}ZOAkc<#+TYidSl6isg*N<;}ubC>bKt52f zB5oAvf$iR|cNxi^=rq*<*PvMR#$|KM=+VyI8-+OpO+Hrikr6iYYCZf4`@p1GVxvnQ zjF}})UDT9`duL2Vt5q2+LsPb)SY08QXtUY!6yxdnIIcxAVMezSZo_G<`U;Y2Mzk|Xj)M@ws9wZpy z|C+yG@ciXiq=}sQYHitWp_0P6gF$eTPrt>J19)*=PFhk$TJP*QErZitAZpW7pE7mP!565&Knctv_9GRxu|Ns%XBP z&=I_*;AFf=(!5RY;&=~bU;&y>Ba^HX^F60T>csadiAM|T(sO!*%!nys;QUj@0k+@P&Y08j02d$B89(FSaCR$%& z&maWJ&p#JN2{|lJH+lJ%Tl;A>4jLg#NyFkOb;b8X*SHl0dP;d>^DxO~`Rzx=5Jfo# z6rV>EY!T2$)U_77&JV`uu&5^L<6aY$n?DTA4rX;3SH;J@{XEsoZu(O*psHBWK5Or3 z4Y%9Y{@iD-{qyT7t9a|;pgHaH@;(WWZ2m=Yc}>R=S9)t1J0kuIq&seBg9JyZWN&V= z4g!eh8|u*n<$mw)6t$GM+-!JlKS|>n*b2VT{pbqyTbl#;tAw^93fJx02I;~?9O$u@ zM=}80=2H_zp43~(Bg{JoekK3sNRh-`*)@<^Q)LlyN7IGfRNX2gxMzv%eJ7;4?Tl=| z%5`EWRY9@7G5YAM>y_b~nI<7`KeezUylzGqSsI)2rsxZ@1Fx;oa({_@CgK+pIo!`u zQ}bk7yK&GkxdZ}vzejgilV2*`8zdrH26hg8<&lb}7R!9=2AW{)#i~^;ViABYe7vpKanRPQWA;@wq!O19y?s0#|!ru7faMhk^u@=L1kpZAMHV zds+rf#gLc5C!HLF-m-QfQA|-}-0aRU>Vjr@Z0@8Iy&`&2A}t8$rZH#=@}`~is8OWI z&?aM{bBxDS6mohrH;&~~9+TMJvObUYzcYNm10jS(W%3$_%NMiG6W#n=*zpv_zK3Y< z)pT-Bb*b_Z`(tv32p|47S;c;P(IpAG1Km1vQ|;{jeOuR;FNX^q)2jSkn2xIR^2~?( zRqHPv)EtBoUjQ>;tp?G5noM}{cRh~&55Hkp%l+RnkV@R0c4fil36OCp+>l3(YX-CS ziy8LDD5j^UUkHG<60l|UXD6hnaXLMW!8UT+(d><4iCdNj!XhpdwwgnWw}-DSYGv1s z?pp9{UVt|UGrgg0q4fJ;M<3)kZ`2WxrEBUN4Z2<8-fP=s7v5y#Hyx7&MF|5hf=5sN zd33gF$49du)$QJi*;Y8bKSVQ;NnXDIo&o(8FMEcV-Y0dEMw#JHurS`C>>T~UdKfD) zxMFxf^ve68s7N$;afD5MrH3*kaW_oHA%s#y~HJ7;(o0pZXyZV^3AaIvU%P<8WhQ@`S zypxtRM>)b^(Gg;2=*FNGD^7j%Ti3$svKc8`s{&)cugo;m9aEYlx3WRfakiDKfA=;Z zTG@8-z$&fOpC{w1D3O*vwjWmn6oQ0=q{VvY_}|jeelGsssR=l5=z;kE;hp@yMl75d ze!YFgN07h*ICIi~0=I8ykmAnH&cy`~BFITxX%IEm<6?vYPz;EBnqXVrM}5TJZTZ1Q zoC5oK~|s2vN{XYlL(6n z)Y*TqWNRq(<=KQd)x+5fco6FqZ!mvQW0tzQRIOst#r5Ti5traVj2|d|%-#*$(4ENH zrN+`y@ablMagt6r)saNl>FPx*mc;+AIC;AXZ3sKtFb>g<_?1^AqM61MKEJ0jxZl;| z^Aeuv;W9`QO=5u)!ewXN?eBNX_7k z{7aFdggNfb+SDrWGC-wtZh&p%Kl=aXYk!lC!#}k`Kz_gE%q?h;{^^oz+CQRnM&$of zFW7Ce7(n3T0C0?CI-68ZiHDB7?!y&tg5#u~L0h4!3aXGe=hR|Q$H8qYEA-kk)tQk? z>{kHr3LE5t4gf&%RlE*fXI4m+$YKZRrrJ+#V4^qQpMzmCys`QkO->;UN07YD_6z_y zSW1whNS*nEGUK+W*M|fD`)fG#q}9Q@-?=zQrRiUMA}*YA$@uQ_>nVBb%>)}h-hI(OAbWICuN870i_TGtY+MNn z`3{X)cLV|n$ws2iLAW)p{OnQAUaUcY$$J+J~ZCM3u7ZAw+CbqL4BEbYZFi<*$;Jx#IzFZ3AfD5GUL!zn+h z&YZ_DhS+N95%2pM?GAg)o+$)%G(EcadhM=p_}cqwyZEKO{Tdi#fF1N2y1MYmx%cUm zt^z&YpQSePoU#75NDrKi&qpy^)%22OxJi0lGDV8Msm)yJg5hJ8aSKqB1W5CXJZ#t$ zQwP6ZHzq#Ra?q{>);@tYGTl229#~H=RsOw+{$VKcrd+HMw{x#;#iQv-MF!So>{spM zo>tfD(dBrZt;2RO&++ha^Gu%{_-S*`!>w$*9-OGK9PV_p$cCOhPGf%z5=yVDX-Nz)GXgX)W^YYZfs5WFkaqf84z zCp3-Zhmpso3QrPknu>_^7p5m<-i=O~P#Rj7 z+0|dnfVtfMlLx4%McOy>z~L8qI#sRum);Z}?mx(~0u@0P_;e_Zc@tjm%<%AW8|(N1 zY-lyh@Guy=^K50{WA7Wf2XbpQbf~+#Nqn>8m~0;po2+ZZP>b<*csQP29NXJHD$9{u zhb|Z3-QVr{+8Z_i%OnT&_?1R3IAH#g^BY32mV z+Z8|?Ni9+^_Foi3=LM7vzwOJdIoR)fY1%l~wVd^4fHuY-fGvI$z6W9x+b5|*@A}to zR>CEI?IAt5=#jWUf^Q}PSTgvaEJ(I6b0{n6kbX!HQKU1`T9P6~8d20aYXU&diGS=WRgt zL0D}_b;NY%*Y#VNY*6_Ev2%;4=nVasZyw*K<|oStFfelY^9=xAzaRH?0Gnvmr>b0= z^y3~K0L(LKiVLmI(bWpPZ9D8sVvQcdsbNO;#$NjUxa!uw+H}C1qifZ=)t#_8VMXyv zs%DBcuFhjo^}u)7qx9P8%gLx-R$brr^zh#LQ2D`boc9iD1H7O()6=T2mBn+g=NshO zs%vX;bH?Oot>Pwp@~pl_y{UC>ur0=S{G*KD_IW@onCLo$Tx=;s z&>$zj{A8md0&fW3J?;DL)fSv*7bGuYXw;r(AIO67c4MPu!$Uq1nR)m_ z+4`x2$70=(D>W!lPl-^ZMF+P-`}jJ|-`9WLNGdILe?cQo!d>L zQ*y~@wW$LlRzEgFsX@xB>pe=crl{oHW~r8d1MV*x4ZNTMjwm#7@(}ngfuJsGu*e8V8nFW5vSTmN(dWQL<)cg_kf-F=)g{1b zjD1ajg;)#zF%hQ`2pT{ycKh`W7l?|FF8xHW|I`_^`=tTA`IGai6zC1%R_4FQ^N|q| z;7(K^35F-e17}FL?Fj~xfXfYy!UhIlaRJuP0{i)>#CU9=X6XsXPU-7kzRX%)1#JBa zgZlRk4g3!Co3pi+fG(VzqG4z_lr829Ct5X+t<= z0EkCpd2L6j3k#Z>(%{2fi$08-014e{lMSFqFlzH54D{HYu6;Gb3IDx9O*pIb&62mR zwEa4KnEUx9etkWlExV{@3TgyUDt&HffRBCw<@!BN5Gdr~PYrUkXTJ-4NM`gO(D0wG zVBAlB9Nt57Mg~sO1nUfu*J&WP&bTx-G#uX?+)~1=-s9wv%P$z@T03$8?R3(29d$?- zNSVGyOVi@=J1+F5pFI^l|5Mj`TyA=_)6uR-8~24nrps0zuA~sX9#Bg*JqPIG0lrQRwt@>W`AW9-X0x)+k1PH>rIPkX3@m6nNB78%?`5^oI6v0^N8 zKC0$a(_zgO7AN9@IDc_nr=?wEN*nv|IT+2fuW=IZ)X|&8d@P}?tWgh%eaIsF?TL|2 zjc*2W$;5pDK-g1O>BY6RsXs9vmkyekqv+gLyW`s66lkeZu+Jd)%4#TLmF<``=F&@> z(=N7_F;{ig@&34QT@ms-!w0(!;`?S4RvK<~h1<6Pvp%9Wo_GD|!e1g~(FuSCSC%}1 z-XeE9Zu-`XPGB3IkjhIw@WGMbtPel$<#rasYyjA5A3O6RD|?+ME5ce5!)*O)N-0N~ zx@?(goE$kQVq*RN?2vi6zg2voEOOYRWN)Cdkwcm&n4sP$F@bgPu%tuf9mf_Sd%_hRlOeGKtV+CJXlhp##sT1 zHS~av9C+Z_j!~NU9mz;CtR*40g2j6R?56FRfN=9+#O7btz73!^!r5J2UC)3VPOsjc zP{i|(nVH$&L#EE$3&IGjRCa3`Z7eDZ1Gdx0ch?7#uu?x`l3!aJ z2lUo(Wlk)R>)6ax8UL7`J_aK+J4F& zZY*ID5uiZ;A3Ga7*Tm%Hb5Jk>(zL^JdsZ`G==c~I8p2r;MK6yhl(<#}9|0jAn*{co zD=fJ9#tp!{e@B%6@2GdpgLpwU+ z11$J6yOBINMO4?b{lH7~rMJJPBHa2`p#4&%O1l6N5iUX;1FLo`jO)UHG~*Re6plfU zFxQUamN7@miRRl(@c^qIGXvo? zw^i}`Rj-qN!wz5n)abTkF?Mg)V)1^FJ+yzC$zw>Wb`uH4#?!Z|;TMe_yD#o`%1yK2 z^c*skrz6iU&R->ddBalqx+OC##^mBebCyVJATVQh>ed#Ij%pc49nXv%(onnuRmqd? z7ST9dIcQ#8uJ4&BF*wK{Q6#uIJ&lN61x=6TlI=WysW!%p2e@W8kUNgPZNc2#-60@^ z!pv8^DaS-%Sb%WsZm?GZL>{h(E6)JwhJ=J97hK$+X$41Rvh}JrWrJf%!lB}>lY>J62-@syO4lYMZzBM-S;pkm*As$cKk~kTb^1%^kSq4JR$bKRdwZkg!E1)zq-z|51Vhr%5XyA_vvuYhl6mW6^NzXHC@xMUO!9Nf%9 zhl(XmS<*8yhSp4>PzkuzLOq}k^bRC!aOFdMe0?uZtDz%s(-Po8A1ivpJ^$uUE(?+6 z<);mH(*}w$7>*QBu{-K09OMZ1?Se>$M>{w~Lyb=J%}L953tO|T)|ejk^$@x=}gBR$545*lgb!^TI`Mn(m67&wgTT$AY;)XyzYVJh@E!ts3AM4XYpJeo- ztB1eGda_Y^(BC?pc5RFJ`b;VUTE|HGQ}Cq$)@C4_!}v}%ADAA6-~bYSxlx-4H@9S- zI@qt;$iDsX(IX3eA|O^#XO^bN%PTF7V9N2sV@aYRjh4lgN@VEq6IX-YANsz|Q>RW- z)-=3Xc!~>Js;5uk|2?zopdkJ??UlYeJ4)igihn-0IRV@t-$sj2KfsCy7>DkE%TvjaU-v9~|Ft7n_nv)@L5vC!F zb_FQ0tH+a0aIpi#xi6B~a-Kg={T)~ki+kFiG;gC%1pgrX{Kwy)W7qngzm^nhd@Ct= z-;oTy%bEX94ka5w``a%lAycSWrMUX zML?NUqu3t91v~ILLXTWbO-*6wDKI0Ci}edB(u=a=Q)H&-w!M_6$1~d9UbS)JlDJNR zu7U%K#fZ1T6~*tgH0%W3cLS?=tfea_KxxQKfB~`^d?%VXSXK?Iwas32n9=_WXVh9A zEKa4`#?MdkGI5=1i_f?z+>{qRSp}{>(U-z$PGHa&^`hEDQ7W>JtiPhIvK(DY7oXCy zlt1DZHCjTRHsuYf8Ffh4hrQBW%|LEeN;+BP50Ji)XULycG|Bn3owB#o$sa=SUfMVJsivTOi(q$OP4=i|q{2-I4eZN;vAseO=CdgYtHsui8c{@ik72~f$)65#}ap} zXFR~}@VRsRbk`Ar$EAQ$XR@N~3F8N9K@HjRGD4{+eRFawRPSGLa)3yd2gs11kcMB6 z{{FWmFx|E0*OxG@jZ-`Ur=?%uYqeIu(cbaNQ||;*<{nt9NYxuYMV^|4YeuL5|iNC1XO$fdE3n+JOX&{SoI%N{U3&-9bf)OfIEyxmva;c&(Q+? z(IV}Ndz3F=UqY|W8ZVF30yL|#)0M3?Xyd5kny- zjo*eV5E1fPm^v(ciCYHSV&)qBMNSFVmVq6a_xgx{_ulD@Lb0abNj}xaxEz(a#xAY> zt5*QuVgo{|&BHi4zxxLgD}WDr-ilq6(W20mQQ3ddrdcLX8IT1y^xj;62PbTrIMJnO zc@TS!AKAw!cGjH!E?u@?buohs@lE!|qo_B2V{(_3z0zzkTfsLkELcaaC*#V5v!Zm* z=fT-umS~_CdF;{g->}K_qYFiz&b_gilK0Ewhos+4Fn4!X`crhCPzTbi)S}>=b{PtU zJH;C8xC-z+Sgli9WlG6=6SVzyQU;KD04W^4By-`53(_Rt5c;1tO8glNS*nw>v+}fY zBynZB7VHQ$cw?|bQKyCbV3sLLfu~R7{#L1L1&z9j1D&0aqL-f><~{*37PzKBr*0`; zbwcU^jt=PRNaq_6bQCBsLLm(3j0p;G>jo{Y$#(?Z6HfrA987M(R?9|q22ObQ2pYu? ziiJSF&946`1QggQ%dx~92GZOl(r9nj1wq1NANr`yyf78;9RN>F{{wg$kBWrTnRr(*|rTWi z{J1&$)v+PN8=opBC6BTl2N8ZCZ=#L+_Qj)PlIFjU_+;If?yTq>oI*PGg8Fpw`i!6V z%wz-~swb4K`@=R5_p-GoR`5A$sL>u=<$ev4Ba;03Rytb&)>QaC;VraD6H6o;8JMGX z0Tk@+=5nCgi{SWDR6HjZgmi*Dy`7_@HP{(^-nszZ#l(*vy`ZAyQAq$-c`}FL@9pip zx;i(hA@EK>mH!F&9uaXE^scO|l;k|DHg5R}n*7-sb0jdq#(}T@0A&|gH!Sp#{|!4( z5zJJZ+JYVi$YSs!kb#IQud*`Q>WR?iI$Rf7Yxw}Q?bM5li+p^1AcJ5hqDZRe$lymH zgT|oWWAXS5(LB|uFEG&roqOeSBP-@>)W)i5XPoNazcbE-a7Zi-?0i!YCWEc|@gZs1(KEKZSAIMWWdfs2u@-t5o z?aKYwQkI;6$MWSpRB?LEAAd>UFpP&J%8?tnJ3d;HA8&%*>Ses=PgUWB1LdEpypw6m z=jXRY%aW3XOcmVmrJ<)cT(UNF zU5a%RTq!RvzrI{3e`R_zalKcbSF(+Y;P0`p&#Y17dZ~zksf$nKlfPyPx}TiKqThh3 zr^$UAFV8%WprYZHcG!EEkT8khu~2s<*xd;FH+dx$22s&WP;MoBNc~3c)cR~Zj?Qi3 z?&T-h@*rYwF}}6kexHw-^OipiJ8i6rCdJ1LJ7dn;DFcRW>p%pORPOER*|fAZ7keL* ziHqLw$0>evW6&fXNUsn5eY(dx(Y!D(^>GsYt}FVzbT;i?Kq!tI4et-4JERMfqFqbl z;KR0Eq0eSXj%}%si?)oh1A@k2S@bsy-IXp4*2KcAi^6s}RjiG&FF5o!7_Q+`zYQ5e5eb)mf8beCf)kc3dSa?;G8A4eJe} zHA~(7{5J*(f#bNhw>RhsAJ@$(TUydhO--ea*d!_z4!sg|nqNZo0)TIRlAp%;10zg!CbaV)aiA4|tf#F5h*jVh%joIF)I_8_+HX)CdD0X(sU7vkxMr+Bx__(RPkF;%Z1Gizfb*kZm2;m>zlSIXVgi{+ z=9cwWS^KYky9-xiyc^v(uWAw&2o_H}PjEQ|*R1hHWqd!G$BZ0hE4 z8!{BgqESJ(*!7DLp1luE$ihrg44rdeeEKvAlzMKzztezpE$3iZsvXk|efI1b7_kXS zeb`5S@L+OzSz^<#Y|5ShBUG;Z0)xgz*WDchEP1~dooV4=0Omo+s7uT(nPK z4G)^c7#`MyehP0?%t0%KFvGuf8t}(EmbmwU?PE*tsur&&k7VelWhm)iS})DQP#43-4JGE-^zp zg-lu`;N&8zZPYGFddq^db=7yqL0A6s1H--ajPy&pb%`LhPaexbVdVL=Fy7S`QAu;|4n$Z$H@*j5KSM%ZopbUUo0313s zo-N4369?LAxzqO5dH#%%{MTc4d@h52u_}V`^!70eXVImY%$o6+LUx9;^!}STY5@IubplAPpjCbwv-}%W%jm8X8&I4EoH#N zDUs05);G% z=?!y8s%Zh>$|*q9;onX%{oiPM*Yx>%44O=xi|s~?oXLgoWx)B-pkVA=Mz<(_Qf6W= zK%2k3+%s?&&Z4_`12QXcm2$l}G*=wU1SV0-3+ar|ihICADksRh7NBTf&`Ux?5k3V&@-k z!7Lfao|$@a1?{%)oL;d!&fiA9?|fnXEnzCVV6hsUGdEBj zYU}8XPfdkR*=Ow<<4av|qeE0Pks+brSa~ZV{tcc(R6OJpM|?+g;pM2QyQ#G5;m{Z5 z8{5U%YfHZSG=hR8fnXtlYPN76$d)WDEP3Fy4|l#ZsI&oOTfeROWkzxFrCMNYY}ugq zy<`d$H6O?A?CkA70t~f{$`8nG0wRD8!J-y|gG)J@1(u(IdPqT4(e*~o4&W}fV_EAx zU=gd&2{VA1>z)W?V>}p<&F$B+p}i2uYz&LdEbkn7aVj#u?DpnyR)k{sB#)uaVJpwY zR!s3S+u3wuokxtXrmPKWT(f+?xSG3o*nNejrl#Uc7nZKBE@Tvx=u0E?J9L^&Omqka zh=po;KrzOH5P)N|$@2F{INcfYINuxnje`OcUf%Bv>u%Bt3#U7YUQlDY3%3jVBv!{z z_Sx~N3I^hlkbH}IK)F&YN5#O+jbrJ=Rjih^wpJJ!5)!JZuQ5=lWKDvF8YP>rR2csK zyZZi@ThG^Rr!R<#3IwG{0eYOMtF5lB-Mjjc_QdBlY7A-ELGYVlk5e7)4f&{{0fX;z z5(mzz{3Sr_j@~U1JKWd?x6Wc$$7+#pg&(M4l=;-fvR0OrKVSRr3@~|Ll@^OOh=E7K z`u{%}xdM2yks0b0_xTQ=SDiMZXD(`dehEoQeZ0%pl%P9sXJ-RBY75-TKW1iH9M{1* z>|u~?2lpD66z%QH@)6B}9aEBy4uz0w2=D_P_u2ay740VIn^Zc7)#3eocV-Uj?xBEg zp1u>7OjAqD&%3jQOhH{?(SVaL{S6}cv>tIFN5!`4V$2Zvs1){;raRb8laINmxq_Fe z+OnL6cDJ#)c{~Idtd{fmQtwJXKypE7UV_lXXF~Y*j)VUQjixmX8Nq+v4;|6xiQp=S zd38kUpD#T<-Fj&${lNgj1GNK4ypSK$Q%3-TPg9e)jsgWw{}pK(X>VU&e0K8J^r=_! z^77R5^vLj1sI08~@&-0``Df)B0OxG&66r>!c+$&fPQzA~o$CnGPeavz9PTnJ-y7^; zu2T+aFSE6~-)5CWwCetO+ixisd%aMb&Az3+s~rTTh8J$IjK8O9SQihHDfmxZ!4m)e z2yGRU9_{zM-&3>;4~Kh<1ggdtC8o_Tbj>h<`J~m&yr~AuiDCD`gyo{^&;xVX9R3G2M&H@-{e1uH zm#^&^X=$ZEfq?e*pC>T=U!Fh-{scDpg@sJRHhR4oh-6x%Z`9Rsuos{b0JE&g_o0$> zbmTZ_z2*cHQnp#t`T>kfir8AUhe*8E;WIQ#9&!oscmN*PL8&fl9<=X}2t(G@v4l}z+s4mVZW zTb17ux@<;X`Qv6mwcF6r__0HL`cia%H8b|SHot#-+nsLo?WK(ugVvU3$GXmK!b%Q~ zR1^n4Bw0?f3Blf{Q~1x386o?_2bENryMd1cQYM`r79c-ML9dF@w0bIqq|}}3hEsJS znKO6lQjbT3GJjTF^uRu9l6+>Oa0XIR^3KZn``Df^Yf|XpVL(_|qPyo+Y%@oaqKtt- z`uu?aS#;RWjy*89p%?-sjsmb-17-z9?( z^XGD+(~FBLK>QvN5fKs|j?{p$4OSi1s=Bz;DutfS&gvb*V5Jom1)o0Q)m?sltIkXS zE_yI(P}S2T0j&VI%3_rBcbGA9wup$)zYIdF}Y^(#(*I>?F zFYpInc>RVJR?8=naoy;|#3eyxY*k=+4QeR(?uoHSl)n}(VKJr_-jhe!SX+Zm31Sj{ z^$*YWo;=}w_d`ZFX4!82Xc{9n``7-3><;ag%!p|`I!@oc-aw$D^=A{A+B=ib{izm8F zUt<1wsK0tEJUe4HFPn?89~It$_ssfwJd=#BRUgT=dTW)I@6d|umu!#=TF{jG$MBgd zDYxb5Tkn80$E@9qRY|&=b_~XZV$E`n1t^qMNT@Q#nk+hPX9q3d{+f{UnPgT~EQev) zw{LdECCq6(;lwe`##yTUT+mA;3rovI@w?dji`Yy-m!Q;Cl7Kr{4n8@#5-{5Uy#iQA zN#1%gp)_+Y(*xW^E;2eU$w8!S9~=~e5)5v6(Di`o%c3W^mF~}+?qy}aMk{`MQBD}y zC-w3r3s>6-9(>pjG9I$?0v!r6@^=8t03x3fC_%v3=w|HxQUb(gA?P_lcr8Ki{Q)h) z`s&Kz0lXN24fKljNRPKyB6rQc^~fAdqroj*V{c>!*r z*pL``nNckDA*F2CP$ATEA? z<5p$Vv{tvO%yTafc+Ls`l=pudp+jL%<2OcEIP#ik_aIYq|eI>$n?n`dXpKJq?y?+Z=bE?GX?V)R=W4%E?5+tyaL4 z*cNz}0vju3#>uE?U;c;H0HlCfddb_ghd|A&rW(8JLqD53**chJ$EC$ADY1$AOn6P{ zbUa!>5i2&}nMj$Pzl}Lv${wumF^nd@iF7Wz+ld*sD=4;2#M9QI?gGp3{7w=%v^w32 z9iFvD^BfLal<-PvL{@%W?!jD@CU12iR3`euFiLdxYCqgU?AI=}$N~`=yM3+B;d~sT zx9}IU9+SlXZ~=Z;`;I0fzrze6=6bFmVinpYFu9VfH|sV<#M(+n`9ivrO{b=#>+B*6 zz2Q`8UhV~hyIdtdtkNlqhR;3FxFuQRMFS-8$B##pKEG+_8^H#@Y==Ze05c1Ga-l9HfP#ZX06DhV z-eKp<&>UdZ6`znW2RsnMA3a{%NHJvuuu(WwKq`k}gEJtgV4()j&p5q$wGIY~tzgs4 zYpVNgHK?$~9Nfn?EG&%TTpoHv423sg@U80L4uiwxR5vRR;8Xr3-veAcyl&$+i!y$G zq7v70W6UfptG=LugBwM|JwAb~cztxz4qR*C@}dCbbO5HN^slY0$tx&4D}Q`1=vBA2 zW&vOrrq%$EYXHiVs?7NQ{d*hdu@D?n+kfiee;V$Yc8S$&>iNKuG_S@+lxJ*R^xXnH3it>leuJ3yS*ePQ*28(G`SJa^pZK0yxit#zw<{ z(7?jUVh(nn)I^KCQXnFI`SRq1BqB1}axpyveiZEMT`!NVl^OBD;~KTPqlZeZp6XzI z6_EhR?&QidhDuCaw?!oX&w7JS>txes=xHHQ|KtXR*XLMoFJCiLEWhY}p^Gif-`iv{ z!z7Is1=Y@!=T=Me`&Ez6HkMv{6%NJ6Ybr)6p+9;=DR99AFVZa5(yv#rbp*-|AHRGn zr$xhpmWc5VI}icWZ^<=(?;y?7FsYs7o_u~*7n^X=tl_7@waIpE=!0OLhAj`Q*&u&H zRFcoLtVsMPQU%jz!g`K6$P$i0x6utX%T(nKZ#zZsSCspE%OI~84P+b~u zzL4X0GA<_y8|JOhs|^D2g@p?48H(J`p9vBMLQJZ+E{@iJZEfLGQAyZCoIioo8W9`2 z1#UDqWJpGO`YdqC17kn1Kn^}U$5#`5rm2Ysp`oFv(60-FGqOOKVFgOu9mRr~jRY_s zccS8jl)NZ^T)nOeu0-&WKvQkTM`k=dGBotORJ-{zt*1@(nMl^bp4Qw~FH6Mv+v+y5 zb-Sc}v5`A-L9i72%%$=LuwEwhSSG|k0i}3;gC(k=(q>voZ;3Xm1~WlE^nVeN_)}@xMRWs8a$AJ=Ein)y zSsUR!;l);}7TC3~*NR5D~PujT^WDA$nmx!9vot%FIiQTK|v8` z*>If%udtMtsLG5w8Z2I&&O0^KuRhcW?z6|-n@g+sZrMD(-)Ny{!tr(atoY6EuP|}X z$$IVlkan8+S6`85f8s(XLX=87l6M^={tsQ>0nK&1|E+C=7L}P4g-DrMQPDCgNp=*n zNA?!cKqVn7$%yQ1nIYN9-h^al@8|Wc`~RQ&Jm);;+3os%hccxT$(`s!HPG$_fBGKdHz= zEG%xQiqI4>j_#zSY=B1N!Gqbja7W((^n}15JuBu|? z<9qezj|JF_pMOHLvxQKiUAlD1yi@P>t5@~)^=EBug$N)Tq&7~X3QOFRgkl6?6*9>! z{;yu0$J<7==Sv+!10dJ8!i-vC^(2lqmZL{KfBaCy$%f@jh^T$3ROLrQLm5g+OUWoG zSdSlnJT#++{qU+ld>afhI&FHKJUl(I z*Kl1%qjhW?d-#+-_#S4J;fN09V{CNBN#^9~uUs!-x;_YCjV2P3chtmA30S*#S&4jya zBUy5_6-n)0>C7tyyx|SDRoN$KDPRD&hjWBbM=fRx;p2coJuJ%g%!%2FP!Z_s8@&gP zH7$w>QVD)!ZMu7q=Ya;fc+E=MEYGy3>oUg%Zap_P>1n=CZCXTX1kN*x#A;9n4eR-Jh8f zvU&Yy?ZsX!Ukv=MtQq**CMs-rCbDZpneETINg>lChHj=-=MxzcErC}Ta)%Pe&GdfT zPb9g=WK~x@XkV*6KPBJ3M$S@@)GY1ROf8q$7QfVVpwEQ=r^mUQf^h-Q8MZz>*Y~M= zE@y-#g}Ysev0iAaX>;qkHM%QAsmFU z0FN^-F>^oqCOJ7Oq^Z6~xA*MXPGZ}en8ZK_gDWWo+D8&1w6F3mU50_Cni_+;x;jz9 zL*IfQWLQXp^ovX7lQ-BJ++jqhKOhVI0mOAN0S-z>MZSGY;we>(HzSMo3(V>rD047z zgCu1eec%aIX+R6ub$9@&$S4K~tma#zc!Z5@4?TSqx+yU2Jj$46ip^UF>PM%-SJtpY z$~*PHuNrX~;;PA&JZnl;WcPiFLkWARTWF%YTcf)pFED+$Hg&*lM{D+-EqCtRxvQrK zfb7DJ8+!@3T+D_F1rLGkUb@7kmi>I}=oPj2d8-H3*R4nPcu_GARV5d^%gYOSR=pFK z#=fKz=VPC~ACo$0(`~&2pTu0$6r>q71_Oc$kBZJ{Y8bke(6nbalid9GXwht)9aqxR zAN%+W@)WEYL%vc|1=kK7qcX;^e1V-A%ZbO5&&D>U>KaGZJ<4a(K0KVmlO@7fquA4v zlxWtdm*12dTl2-rm`x?oq1{Nm&dck3npQuDszQpwEKZcdLCor;Upt z5%o+p^ilY+xx@cXbgj}sGrR2Z=``+^VHtg6ma}2BS7}vOG$lMw^bT{WZJ|EWvDtI@ zj1kTD(xm;i<4mueelvKGNT~9cOnW?Pckc}gTj#D~c3#~4;X{~jvdetB)!x?jR>DpK z4S6-vsc%4Z+Lc6nm)6$vb50cCrCJ9al(e)C-M)RB_$~p%;c304xjF`U? zt&_czlatmWu2*PsQ(F@XXlQA#tEz$%BM0{Saqd6D=z5aQTM z7g1E>0>xq{#D;tJ>^XU0CrnJXEgjP&!0Q@kX7scso?sN2PjFt zqg%9f@~`CkZJuUmYC4Q4<5z)!TQXPLaZdxfg39ucuy8O|=jF?nAt%^&2p1BN5nzJY z<+ub7q%hu)kdOdhizH+~(a-UtY3b>N?h(xF0Uv1t0|SMGCho|_4|I@kzI*46&$}g) zIwQD7_gz#Je4J9=BmVzz)xTB0<7)z3oq8fWunoN>$?*NCjPz&uOhHr4=9)Pco;_>p z3kV>5L(DdtS)K!+3YJ-3N@_EKAd{`M9p6U|0kJTOew<3eR?DBF$S=I-{?2RS;C)Z> z$7Xl;hw9F}`lo{95)-0ilWjaUisqks4ZWsqpS6c=+7?K*vP~lal)S!s&%8z5=2}m^ ztA@nK_mvEECl>W2hH535f|ScHYVrmwEGTm5+tUy0OnhiguEl;frXCZW2yT}!rF_!v z*I>jPm=j995;Tr4?jI9s+u0lOX@y3LwC>3tuMHbvzS*|TuGV1>r!*LU%(c6_MAD(= z*D=nV&#%QDv;ON-3hTDaqwP}8vT`}$W|WScj8aWg!<_Z@PW0+6Ji{!dCM~7>^?KGL zjPpZJ4j2qQMBnhR%*Bh|I_f~+^!0yvb9mjbLYoEB zK6}7d1UjFwo2d6txvsJ-?PWCz5? z-E?rrjvZLFfbrxVOOlWQXl5to(4h$ z+bC#v(b5jt7C4EyxVWIIQ+FU=dzYG8 zIZb!_N*bDR7BMkO_4ibsQj)m9vU;rPA)SDa#rX@*5W4$p`#BDjvUld6!q|7`1-ay=<*PxDfpjm1RyQs6 ziB32%JMtwYj~fXLv;NbO_$H4RBj@wn)#_Gb`lE~Nz_Itoxo_wRE4%KmedgFHv^65D zs7x+f;^3#tLY<<^^RrtNzEka{o3gpgsK3@5azEwd0Syi>PPuJrB0G#(3SS)(`u!>K z=i3*?ZWR_wX}%vn3KT4JG^BpaZ5LJ)UnA*ll$Ve_cWw&~{yvZRdO|Vua0m6vH*bE= zn@2SOZXm-bpaa*o)dfpMo`oo2#lEer4eQAK_mAUQ3w&;FZuwIs6kE4%|I=w%cZaY2 zo0v+X5-bQfu8y#?G^8%cZMzXI^DCq7|{UJdH^yTpIZY z!sKM2;sI*vyD@X$)HF6fzw@Z0E^~s&-e8@So1bl3l5Fyoa&9E@nF@rc4^^t?^0dx`4d1-cO6hRAAao1&f*_M$2lU~e>L;qnMN^N-N^ z%N1yMKR@(#(vp7b5ysC2PD<{FyR|-D*0<~`Fn{-`S{MHz8t%SQFSG}~ndh`tE_ko) zr>kuudZ+B+@VvH9=6k2j&H4BQ_UxyxXwa$1{#)ohPP=kX@ut!pK04wOd8~q{eF=%z zx_UF!n(Ie-Hs-T%{I(AUo&ZEnSmGq^1T;0VELp_h=v@yf>jU}fh7@C)j?tJ|@@-A%t7@jN0w^L;o5?PD z{ZPKzroddIM3?br=Q1-(9=p9&a9y)LbbObbe81}5+ijcCq@MEhq-2o5zy)@>dW30K ze*4z1xjv}bnQ4S8cxVZh5o(vkEx>_%2j`VOk$bumZZy=W-FCx_GO8**(xvX(C`8lz zFpudpdRN6;xAKhHSF>DJvd~sdVdUX+JlsHsWE?)I9)N_{aHUUnz}79A=Ava7vC^z+ zdgoLy!-Bq2LQ^Uan?KpZ;FY8O3rjrE807V)Olt!dFfouU)%_dW2{a zw8L<+p?z3f9PmS-ej)n$?p?cjNlBpOu7{NgRf(0Am9Nd;%c z{UaH7nB)&8Z;Q{H_bE8JAD`AZk4x|1)6>eT%3p_MLoQwZbaVRR<*RogL?Do9TnrVt zZ2pfQdQn9xaO7+htSD#evt0IkS^aG1dOx`RBSJwug{v>!M*DW-J~?kIG&eVg-MpKL zN$$!OiWQ0VAk;XuKT;|NJNH^$vUanhNFOLa3C?JJ#rY%E@jjzd1(Ks$VE2G`8Elm?iYN~-#1Iy=v=lr|XddgmVUF4BfHH)$BgFVd_sNx;hAHQRlt(iN>c zGG`>kR_C-A?+7@yZ(TUjrb1PCYm|6mUs`43?l5OaW)E*lFjbUx z`WZOGz$Xuhc@e&b_)2brpb!G$FZNx;?~Er2~BB7IG-}F{qiE35y5Upf7}Xy$p{9TK(6mw3rtT>6R=Lz z;NT4tNq)xKVu_-Gin@?GKj@K$DQEglNS?H5Y3%cJc$xLgfor0cdgafDKc41(x@Ts1 zSKH?s3fA}p`S&s~h?-29nwixbTSbpNw=R?-H9w~tcVczN)aR=$6}j8{94d@9sFd28 zpOU%u-16;|GZ)c+Wp?XuC!L!ae#E0{esQF*UyBbde zs3ZLR*A_`Xvh_(j{c+}{H#$qRjTdI;<14=z45;>SY%9{Lzpl<$9I=uAz=GZ~&7|uL zI)K|)h-muhrWeskEj1-Om+?4HQxIV%>wV1Yn^1E>$GzA!>0ALEjp8f-D-7b}=vkl7 zvg`BQukb+;hUV#SoXKVoYagFvJ_~pN6(Zn25FJ%Iga$n&WmmxEvW3D8r@#vIfp$=$ z;gO^Ei~zWZHm}?`tE(J>>7}JQmx;`<6m{T#__hh%d}F(d9>KGKMgugK3OgLslxWai zy?P}Szv_14qAmD0RKe(stnRz0YHAXwrG!KT-YR`U(`8G`nYgCi<4`$Y0Osf?`iGPw z;0bDM+{MVc0`dSeO{lZK&sfdn#3Q_L&4U}Gal_`EP>fN9RE zM)x$v!$5#yZVZq~O-2_q8|;ooP*`vmja&S=zHf*u<_^6aOq+p*!Ll*ziQ(=q0G z{x5A9L@7d7stdGWx zGPTYh%8Grz=_DA$!)hYConba!)WpH*-*bbwz-==uhiiA!(C};9pT zneBsNIg;8i37`(ZYzA7@(RTr>5BpP%*gLz z3J#$@!{7QX0-82ap0i&kdFN+Dd5>>O$yixio#BZ~{BRWCxvOi#mILTD|7q_kI8uio zDWgWXTC>RH>{mkc6X>`)E%~fG>9$jiZ6l~^I?6Pj`zr&e7emMwl* zMST6rcA|5>PxNWosp!dr-#07&YhJN7G)2DCwJt0f7;3Go*PdUwVXAL+hR)$ainWu- ziuj`bmjQ^1{2`5B?eh|y^)VGHVO{8S5=4=zHQ7z544=haeXDQ`FML>7xb3Ksc7_Tj zlMENh?C|#Sv&f@nvgwclUDR1*GYZjEqdTIuk0u zS%3MLAt6Y}`m3|~jJ6WTrC3WIp}L{Gzllpm{Kn<~(E?!qRNwf|SEk+nobs>*yT@%(j|HOI1wmX=Go=p8sHI!f#ZR8YWL2*nVvVjy9{ zDm&?Yq&4j3ZW7H3Ub@S-P1W5cD)^#dUF9Fo-X7(c8SyZ`L@3H{7`yl}xz3d7h#xHN zkde`F@vB=f7fHXFoZ-{Kv}*WQiMJVEnjuRu#?>u^WM`MPWdqiQ<}C$H= z`0H($X~3MJuAZ(MpjfT>eY0)L=TnHK)6d418f2W=Yzy%%c-p{wXa+#+%@=HluZS;`e%6?54Zr?j z>mkr=swQn$wWT(r;FC#c*u%s`)!V9s!XS`GGv-~|OJX^`evN?>;uj4JIPg6IikdFR zoSoXd$y~+4DR819jbidn8GpL;*-kUhTg|no7S;+zso$8hUu$7o9On9uFDBWqMdPSh z0lhO5?)&R1YM0H-Qdr}}-XOFAjTp8$QwKBADR^-He`T*ySHn;o_NeXH^qFN*uycys zwxE8QA14KBacp7bn+ims3b8f`?znoGRS;_mCWc5%;VE4Hw)-0e8CkJrLNrV>pFZ(H zzIX@DJ0LeQ(eWTPzyZ<((BRDxx*3A_P)fK5L>U6c)tZe(=DT-W%YR@HMc(A+iiG5X z%RO`7TnZRg=}kC>69vOZ!%r#E)Fj^+6v^IwBr{^TD4$ZyS9dW-eD6)Z&oxt{9aGkY zIycus9{&fmT=@UW6=yo4L~Q;*vgmv0ZROpPyQd)a^-_FwOK3CQ!Qc_@J7-r0P8SOw zN`sJ4_a}eMH}N6*$bg-JgN?j5?i_nq>{_h#wxA#!!5XmcprFf)cTwUzr+XT6m!Foo zU;l8V&;DNF+-URey?f887;vCdX3aE&^Jc1&9j=y`PoG|qs&74baO6NPB?;yzr4ZqX zD_xT>U+b<=E29d7Q7RuggW0)-x`f_{u$dLzjxN=To&3VL3T84byKbl@vmW%-S+O!& zi*FeXD_6e+vi*$u&+Oq!$CK?=UE)KJ3-lZ-ZP8J-+|&yS}0h$w_uJP!O*+WzOT zlx6|cC#VV}m`fo-`lIbdm*rUUtIGPvp!VXfJAGg$ z8X%oiWst*G`7SNVs$Rufy;tuarwQbY%Qg~`pUBmtSME(Rwn;S_x&GItzxtGi5LKL` zJ?&{oF?@5%RLDm1tiv|ZVcNI~U#5s#15C0P>^!To#}j=EsdRRib|2K52(z6BrC`t1ix*MUj?dJhH2u-kazjPsGDL31_F^#L5L4en zu)jq_LLk>6fhdvT%mZ(U!g)I24P2Gq`gb5X7Fl?kQk1zEM4Ur4*IHcqn0qIMY=(5E zO!;b?)*s}4O_rUa?u;1CRLah^J7{k?c3N7M;1$-h2|9|ArEV{nL?wmSw=;Vh(epy?4MUC?hz0L9! z0n^`MnnwxX3xm9I9&M>PaRM@>z&UiRXbpZ24W&)QgeZsmpTox|iHT(44wdi&h|J2m z#Yg%f7@C-**VN*xyL2Xf;+1BEXZb^Ccx_DFMn@xC9;e*05536wbLoNH)j20|(X%lv zSt~#6PT|80Px5!$`?e;iw(|?}&!A(&M#tp@pgamr9(R|&PmApz3qOQ2=l``&>^e=z zSWMHf0x65^+NTs69T{w{Ufl^8v^R#|P&vn9(7X9Hc2)-T3u5N4AUXM{lu)rn78jq# z)*UxAuDLbn&wdpUyZ2E?yoa+__UI2mW_QS$||Qc_08#OQum zxP}rPw+!gh2R0pSN5D^kGzKYfjFU4eBg3jSNbyTWg+DARXq15Y&CX^s?aNS+#k~RD z5yZPU)YWSs8HpS4^YJ;#!9ngR#oM16AJ0+YbOqHFzBk-dAb3(#ydq?i22KTE1(cQJ zc=1Z2lK;z>Qg~&^U(m7n1zF;aNK0?WmWK_-98>77EjT3sU`L zcP#nszuJcUxu^CIP4XH~7}2O0gwCQVM3b#OTuQx{hGx(8h)dEdHF!3qOBp(z;=~x~#@={HaL==IyFNbJBbIMX^JYbDVPsk{TZ~F& zrEgMB-ubFQhUdy84=eky^f9?8-WvcPCS3|kj*`YT&ZXYFLUZuo_&%DWmWxv*yjg2D zE(ffs`Q!9sKx!A^P@ z_Xj46#1+CIXJoowQ&JjI9?lsK*BL1Hffa!SPq2sx2o5wCUYW2dtinV#wau=&=_iVp z{3BL90CHF~$_h@e!Ow|G8n_Wyt}#qJ!Aqp zzlDZ^fc&sVifH2;0H?q>YcoawEmin{zpQ(P-{AV?;4nC^aD$XZ_u+p*zAQ19aMsi@ zmDG>U`F_)#mslRX6O?>zs;*Xe*MqTN=6~B%TDjvXgxF(kp{pVwf%w4hk_x(wkNV`i zRpcO}rq%-u#T~i-T$bAayS!O$b`VB4pYhFe8f!$=h-UB2o6E$7-`D3lzF!q4R!jTO zW>ni`hlCui#N9vhC}OhFE<&Vk$5jcgGmUKDhiv1=I@0UB1h;Jxv#Vw|Iy*(v5Bz?n@IyP{*TR&PP{VdpwQc^}Odh9u zuDw}_RHj}!^OY*gbNf>jt!pR8F1m>_s{KwA)4Q_y%eIoIfsyYS(@MZynO)%;%Q2v! z;U-J}Jnz~@yBdDgVL+Pu5?Mz7eMXMf@1SsG`k+ z>hlEQrMji*6ad1LnB3%q=Y-T2;s*%#HFUpF9ue_oN=meT;>*X7C-@VgFu&&PC$a~q znm^tyHBA0YLw zpo36?PU{Y1V!Lq{m*D&+%xR!Ygzf&kubLMy>HLZ%PP|vU0UyEawfT;va>0UP;_vWF zAhaKb4*6c$6PndOfrUR2Akd$@{yRAvt6bQ;e`~C~JPSVuZv3DgfNATuOOHsXUHk(+r17IEX*(V}mMc{l%9&AkN$wo?K$LdE8 zlkMDj2#|6?!Fuuql9NCPzPvwA9JyS{4}$kP?Ao<&ptkH!D1$SSL#9y%6Nqt|84CzO zA|nGmwaCMRG8WhO^sLp|5VlSf5hUu5xT%=Ve8Klu>p8O@3_Sg`C`!06xg94bLce_Z z@;q06H((LevkKR)!B60P5nx?~d}!}r&-&}Ms=%&-W+MVxxiDct_nTfwyzJx;#o8A+ zv>%?{wVSYjakOe_g3Mn`MpqSvM8jrUxzQl`@~P4I+TBGrpgz$x*3kVEB>#HGVY}`; zLn^bWLsKCNsQJkb`MiQKaNf__CR#L_D)jksDK}lcU}D0(F||5Fh*tfKL%v#X|t`!5o2GFSOG zY=T31lSxNdqr%_}6g4m`WvCK4vpL(0j)Mtpc`a^d0Av4`ynJJIwub-CKN7nqMll;+gO!{9FW9MZ2o}#=kOLymoOZGNF)FP zdI*$1Z2$EQ4ZPYNNCLZq_&M4 zQyJG0?(@2`wxaXKxV%#&&4f|rEYl=IuyNyk%Q3Qvq=fmkw5)(|vhL1uC$_p5sqJgh z=g&W*U!8eSMwr0Eo&Q|2u(TA*l*P%hcgBmOB{{KGWo%{Mc2cU%XxV z3#z;yb&Q@Bj>}Kh`wTmE3jN98zx<0n?K4}^i`OH5?EjS1N$L~~)5`ykmb&sU)giIg zC^7vNW8DG%n-nbRu8;Su`+!j|vl9i=|wDKMtj{pMz zG9O301iYs?tbEqf{bjq|g#Ssj@UVd?Lso_*1RwDkpU+!RmSWW+EC3>V1r>w{nKlB2 zP*Q4+W4_LSEWMd6&ycRc$KQ3)=#i%N_VZ&G5O}@3Y+o?|u>%Cs{R0CsU4?L??Ap7xlruTMe|{PgOh6d` zu?Suc?~u3&pq&QM0=}_gP21U7+}zw8&yZNac6K=frK|**f*r04A`t?)Ybq+=KpS2| zqR0{js8V)zFAtBc1*?Cq$dt*zmrVBGwvr&0JzGPWha7g9aj=}UVM+etVGHoF8sU$m zq@-|%n<4&DqbJ=99fypknCUL2-Ez*7Ok|JApt;7|#QulYl+YFLCEuVN7G9<+E`BY)UZOo!?(4I_sAKnnt19ip$b#4N zDU&VRpUv2bGda6j`PMFlCm+3CF`QWEeB=zZsZ|g-D3qH7|aBUv)a!+Ko{$ab$cuAMkw| z?ksj!TYg0j_R31E-}4%SVw?6IW6LfD`Ukn0tn+eXgaxE{M8Ys};wAim`&!o3i1;2#`(31^^g`ay6g@c8ECIViZ+(jS82 ztY8;Tse_7?$xsiEjg9fv)nRu937Uo{FDG}5#~^kAkx)ItR}~faEp%E^6ViJ?)i`XI zYHx1dyqTbqAppWN z2(1@vHz+Ce`}`do@o?9V`8E+ zvyIgug494LKqkq>`aeB!0$0*h$xI#gJdyf(JkQJxRxC-HQzkKPkp~?7!ZsFNlHV%D zBW+ul;6WD~WFA=ic8MEv;oe-D8A@LdckuRmITD{UaH6dtoX@W9wR^ZKJ z#q9jsCc4<2w+bHixz$%X8Z#bv5cZKgP_SxF@q0C6{qOyde$Cf+{&-fbbwF^@hBbcO z*lE=~9P;?@nUJ0JFMAsHB{zyeWn5J@U|?+4d$==#gyL%WH&@GZqE&U&b`C~AY^7Y; zC}(qu-fnd%n{w6krenG|wUt~x!=c34pXJ!s8Hf0&b0WXyPpH;D4|P1sHQ&+0oj2hW zhIC*I<%3qZHOsW;t$_n9!^Z-?-C+@c?J@HHXVk60Vi%U0vo9PJ?@2T*lOgV=z- zMF4?VFjoJgGUvDL*#xnfSzZ^`34Y(y%nUs($=I)7pb6g|U?mF%guSuev*A#0tm(XT zbYpm9m09yxz1B&HAo^B%uftu6I2^B1NyH7HVEJMsVA)%=35q@lVR4pw2zJ|U@hbh7 zrP7ooHra^-VRdztl!~f++?x7~gk@gWr>rd4h@=@EWMymOs`9}vYr3puB&(Za!$3pK zjMa$q7g5;vjf`fUlt030gGK>vmunvsQ64Wzy})eadE=IaVxH)ix6^fbZ6?&Pe99@0 zkh6Tb`!_$~Kj`8Y*~3_leb&^Q?YBr8w;X%|J>AfXpIABc$z=5-gzyb8?rFU`ErF1c z%#M*X>lbfcmf#Y({mTE`y?aMp9OrIQIj!+0(RX%Rzm054sSezt-+l5&@k33`TUF{1 zWf5r}Spvp~!OYr7#^aQG*MGP+Fu($iM-Gnd3mR9Dw}5K!;A!2(cI7Z}%SWgQ8=IOg zK)44?raFlCA!Js%wV{__PD6Atg!~1)gq}Xpc=c?HBB`5Q1bt+T0=%iR39dG*?F{m- z>D##NI998Z%j*TQ&uOaG=+1cf-HE>`lFxLG^QbS)+qv41Tju6uM=u=3#dVmqBI)@N z!uZ!8!m36g5kWy|El*OP5Vc=C{$Z|({1nec$}lIhPc+=~JG;xLmFfa7ZJ}l>c_bwN zHTnKoudZGEqQT^n9IZ;*PMpg$7pvB-a~O|2;pE5c2PXLBo;_!77v!5ap!@m;nZo-aPUEX$ENUa4~a!~@Zdp0MjqRE zNlUBut#v68+_bQ;B4vY@!?o38flPDg3#|&+4D_e!9VQ0F{BFSRR#a*f(T{QNza;05ou6!T-$=StKHM(iV!GYeU7VT7AVT-k1J)=o7z%%2P_N)*r14rK5IdsEGZx{;R<4;o5Y0 zu}#fvQz1iNVs;`km4-(;$B$c2b$h8K0i~xSh{dS>(M5S;}7F2 z$2q9a-v99UcDjnNqfo7l>b=3D%ULbVB%!DEs1V^d40jH3^@?t+&JfR-T6~ctq-H3g zVE^8|59MNKZcaUY{CGNSz)vPpK`XsYdM5=(z-7W@gS?$302Xj3=a~izk{m#0la|)o zn$M#sX~2JVyPgoeh;Vutx9zT9xirJm6Mmd1` zGa8;C5gTqQuZO5%)wmHLb?{-cd0v+?7xESmLyDssRwvk3?%ut7kyL@y{Kmzo`hk#j4WR&0Qh> zGIIQ7vb9`{MMkM1?{`DalVfvMS|ld%USi2DMI^=(FVzH$R3=pgPAXw>P7CL`+B%%Y76&2BA);>g#W zS@f^Mlieo#ycS6oOScKN2-_vP>^S2h{%mD}^Qd5!+v;lTrJjNY{hx&!3mdfnu#RzY zy-!c~C(P=EFC7Q5B^22VR69U?64zss#(fzE8k!5|&Xrnigog>5G7-2FVOIw-`*5=- zU=iq8o(Bg%F4mgrVxpxbnq26ZT8#t<5!AD14Eso)J$)MW@#EMVaT2Hxh^GuZi*O_2 zL?D4wFfuZnniW?VVJU^65c)o-$d=~m5d&gq$SDxw1CbWOlah_OZR4w3nw!zwL%0+f zAO8deljMp#S}=IhZi&sixx4FHKQH+oEr9#>8oa4PxPBps#BJ;SBv+?={N ziN?CJCUZHjb^Yqq1fr)ZV5+;GZwG12a{K)-F&kf$w%3#u&w~mf_uLF#wsGV=%H<;4 zN4FdrN9TTRnSIb<^y5b}Rf7KRg9j^L=8Hm&(Az;|iK9h)$YHZ{r<7~}$?x-5rFTtP zg9GK~J1f#1+9}sWm0UJ8TpiGID?O)X!M0A~rOQ(pd&_4^)5$p>4uTXgnM%gDG(SIo ziLtS{f_eCHqAI&p2mm^^7Wp)-JI7WFcJ^=H&cjKs@P$i_!tPFZZ+FXyTP8L+Vv)rn zhgqa3WVj{Y?s+YJ)<)vN8PQSW;7v9cO5L9JZoj_$XY{v3|NYxV9ff>dUB#JfdquBZ zQxBD3hNy-_SlH+1Prf^;`sF=e4}@cK%9ynX;2w-M+3O1Yl6WlP&dc{TZ2Pt$js5HT z+KSy!u-+o#b-sp+IRr_#h|dhw3`7TNyo-*$7y9`bH&7N#_#+RgDaXVE*srEfAOjSl z1_A>I^0+iwxNb-!YvAM|x`)a987h!YBpCe_G92#UI~?H>j`)ytz{Tj%7Xw|E_8SRw z-1Ms&w}v{k=Gnp1e<3VDZ#toJ>_kt3EVn05$VmWQDW_;{!r-JLoGMBQIWx5)7_0R@ zH;vN729B5OhaF7~=^Jf*Z$06eX++Vo3Ey8L3U=KI~bixM| zDb3@cPJyV~l#7*6_1|Wt)_&-)sF){yE3RO~;NB>uWxQ~Unkd=09GCjX59#EIO_}Z(I5~)`l zG^j#F7owPV!(#cSDIryb>xUp8$>L@MczioQTc4O2syzyyIPL)P_8forekr9S6-gNf z_ME4*>9!4r!9x(_NA$gW1y66b*mrg-RQm)?3g5m>%zb`#JH1{rY5A7MwPKOU{L&Xu zGERw~@GtCgavb&kddwI9BqX;YOQR-G)zYrqhLEE&IWOK(N>Y}*Y;g)#2gTqZ1Xh^1 zavY8%?8xdj{7=7lY$f1DV1r{4X09m0Hpe#JD7dFJm({^f%C8jgrQvF9Z_mYYav8Y= z9cF{xfucro!5<5b8!-py%wV#Od>^+Ju7JCDe+DfC5E|X-ngFJsWE-1A1H^4_>+y(M z{g`oi_&r_YJ(b1@=7O+y0tzd|>qitVI9o5cv#1qLQEhl>r7 zQOLdKDZKhFPqpmh?L^U~yJX0Ndi3owD+sNEp>ZtmAe8Xa9X;#T%DtmDg)59i^+-UZ z8?*8o=Mmm&TCl{1%+x+2d;|y(5reajmR4hC5&>IP`F1moO$Ec%!2_y8Wksmm>}cR;&E_^?+NVSU70A^yx>t;Jm${f92f@qvo!(HF}@&OB-P#*NB#3e%|-?9d0hJXShWSsn&fE z6&l$x3bzZR6(g>)szEwM8mD8X0ZVSizB};M5+=a7cx{mQ#PNXUeBQeXdE|(|i_Xpt zN=o9!c7|=@AxDA(SbALL?=2#BWhtCLe;Bb)g*i>7*=%^(ty|TOBQ|!4Sz3KzhLSo} zpy9@NMq!~#bxTvjzhKnAEE9rbFLU4`XT75zf~m&~$?DW%wiTXA8C`6`fBYKdiUKkJFvnu@dVL3El|FcwTjG#T83S~-8C zcn4ABLQR=4ki}E*6@mSBL#FGGUcK6fI(R5k0Erp+>QF^%r>YQ?T9*KQa}u|dY@|`^ zC#LiqO3HE!InR5^?<; z9|XDdozi`pC$effAEB8$y|^Qs_5o}h{%2xboJWrS710Gjy78lK>OPLlQZQjmN@qHr;f zl)32&JMGctOI+8`kq7S-IgX#; zWQD;2DhGuYg}QfT!oMi(dz-gyl=oZb0VaA6lO$|B*gS;VEl45)v=-3;=4%44GE_>| z?Q`FDEFfH>Emw^@-q3&;TXlcreu06@Nq*-E!N#JBe8H_lVg4PwomTu- z|NGpCUE1w0{=4-zmPTkvY5jZ*4Cb*aQ>ksea)n8EFk@3=9lDo7yMt92eEm8$FoW}WQw{Mvlu3<$+z$D0W z@FRnDF6*ZW%r`c6$J3_EIBZZ^+`V`21$ulq|6IZ7Pysaw6}BvInQt;O$zyQ55?yom zO=lXSB$?dpw$rh)$i z{oscA0#`uiZx;M7%1GN$gvW!o|CPw}m;PpJBXTX^D^2N$ii$EV*8i(9`r`AGagnla)jB5B=J^KK?(l$@e0s~jL35g*Ivh;#j%I;E;B%%QaJ52;} z#Mn*;fS{E^B4IL`jGQ4VLWbFqSiU@YPPg z$Ru9WrQC2qL}`k;NH-mUHT)lRmWKm1UJ_wPozf8P?AO2lLct&Ltt0G*55I6(t?23e zeMik7=p}%A#~x0Nb+2nJYmTMoKFVI*B+AH-$be*fmwzNt%zv_Yr5tB2?lQAKaGX@A z>7gl>^GCH*cgoQg|L4zL(F^9rYQtFC9 zi=}qphC0{;Id5&GdKeGU+xPt9No)u4F<2I@C|_+Vf6w5_qfB&ZB?RdmC{%u*>~T zF#5vx@2_xFpy^=wvF}Oc-CSdLSAzg@?yM!N95t-YPLqY8g@Ydsw_L0MI)b+?#6WfZ z`VHiLO<6bt-tGvmd*Uz9XY;pYPe=ki+q1&}3H0O49 zm`R$hUh0F&my&LWvpQt0WGRWC1JpkE{*iZ5nGcmK<<9SN8N)S+VB0z)>|8Se-11f;De zAJ=@h4SF3HxQ4%0)esNleT@A)rZ`mTMYz-^xGXpFukl)?+4=PtnGF1Tu{vtv)UMET z*5ESvWAn$IIl7cYO$K{$LxY<}vP|@K*esWRMfnMt^^zd#{-y8F-=1%zDpg;K+^-O) zn;f|RzM?YmRLbDEkLY|u=QrV;rV8;rljb2cx|*%_X_`6}282HY7*$7ixA@4NuKz6> z{@#3iEPtQye@dyUUF0T7}-1T~kqY%>HkGTU>6B>EM zC5OuU*ohO-xiOERjKFCIcE>T_5NYajO(!Tey1tRL77f=Wl5VCFoqy4;+CwgAC>PV8 zO3km)N|#h%{71Q1; z)vd9yyX6{(x`)SXeb1zfjFq_tZmGD>Df);(D>oq*C_V#C>%mQ#`^u-v{ z5&#}SC;&t6y&q0+rM-Cm{H%gPeabylm#9nuVvv%NZ7S;NVTQV(=L~dT1aM#A_vFc8 z03mQ-B7SN|*cN1|;D|#Fia`uF&`1#jqjW;Np$G?ArIcV*FSPwTeB;}?zoA-n?ZCZX*JY5$v(20FACH|L>gjmcM&{Vh_;kVO48BiHMEGwMm5j=BMru+~m&) zi-ICDm@y^k6tR`CNN`r5Q)^qRWPkNKU>dW#PqFg8Ku=K{Dspap+ELTYf(x&DY~Pb> zJe}%^ANG+Dr2B^lV^KNREGohLRaz??Hh;Q zO2yWj)TTG>-EHVxl<&GHet0`Kvvq#CYs#F_@q2HZwCkRU$8J96ZxwA#K*#&i3E2r# z>nWBF96u?s&uC3cK{EAV_lHNid3s?N8CUNLoFDD&A50xf^2&-YvZAr$2>4c(Rp=Bh zY?-w6_YVX1fBnaN>oV_@63}TyP18E+%SJW8R!&IrptJrGp$;25 z61HI2#eiH62C54FN%`pOP`?nmzE5G8V}g}+jpOLIBVU?c>iui_|DIfe&$e!g^#f*a zn^7#m1E#BLymd$91O5jyN6y*S2dwYI%w#UnN1X~D9U1vg`=;B#S zUL_t6cX3hdCF}3nO}1go_M@%0=z{!(!V{-^l{xcoQ95xe?;R&w;a@oW;$WKW^Mn0l zluX&Am$uuU+)ewYS1oo}d{mp|42cG}XTLxY&CVWqH~wo=CK>FCi?-y8$9rA&osD8t zk}lDVJ*O@>W*Xi)9j7Q4?)Yb`q$E|hJ?GPz;Zl-|awdAvD9SL@3vTsuKTF3kP7LCA2?Zka95j*$6S9f7$W zQZynzKt`tG?LCx^Aj{r0Jln7g`UZ+@dzim3JF<+BviQBFr2@GlCcR%x7;u$?GW#_# zL1gK*s7IfH1q}{wj1-o1c3wZ?bKToi;Qu}-FX5mJikB=hq+GWX4wLg`5<``w4Z$`* zsi~(C8=E)oPt5j-;TrL4lAPv=oG+C=F3)OQpRfZE0(3(E3%{>v?^-uKPJX z&+-2s&w1R(ec$JGIi30azTeO1{eI1Co;BKgT4$bAQabU|y?3;)$8%bFdout#+ujl? zvyq>1=ICRQmjeR`L$cfT#@z=F92g#%h==~BkW=!L>rsbunwpCEuRW)`S2^YqwG}~7 z@Ob>%G*K|ejcpBC7sH#iNG?=5sj?|mYFkrdIOGpUuJrf?Iyl9ydnOn> z&~w~r*ZRJ7yFDaFS~QuMo5~BSdY@07_ZR=$rV1N#A+WlM{^1i@#5tdPCd)%8A2r(60f;9klJFmCTIjO3t z5ziW|fm2jOQZKPDf>kXZuubz^^B~HbAsQpE%SPxlH;?q zRrQ2iHuUsBN8L#*b+E7Tii)y?*NB>Q;^FHX8WMZWJSp2Xccx`Ja#$-VA+L1&-$K86Kg_?sMAW^#TA<;y z%|#oX=+w`s)njnO03F>avi&BU8>>HQWQcy%b9?qc{)DlGc(-g$t?yY-fU0T2sA{kV zQbzK~!1MQ%VR36Zuck(Le@x%JNz5M+Y);gxf%MFIVr34J#bI^bM{FbWe0Jkluor|> zq$@u&3!vu=`5)Gp8?w4R!hb$vFH(DcwRCX?`{cT?s`3_phP0JVM^iI1`IvJ|+}yQ5 zlydXW%$cj-;l=+l7`V#_dqi-~ z**^p^syqFOBEH!BY2xjPLN?^%;{U-p= zF$&-)p$~!<6^9OZF(PypC_L^^-1#_pf6t`--`-uL1LZ(yjqq$?!o|cwM2*ZksHlwK zLm<>Spb{`70!>Q4-Xd5qlVnARwLy%-`$`lof_uhv4(hnXGE42k1%i6Pp-<>&FlhmE zK>#I0gpXCE7p|7Eize8rT&bJZ}%L5dJGe`e}hR`ueCM&E4X8Ej2B-$Ky*n%9)Q#h ztdwy5M$spj@vyR1;Ah{vZ{IJevoOt{R8g5zFD6`i_!_Z~AY>5A4G4GT5U0?d=+xH%0ExghK@lzP;^M|k0&(xIPL6}HZE?Oo zQ7>Zy@=74D%5|79!miYslY8o<(zg9lq09XXdCQY|!R-Il0!&ry(=UivoBAFC(Pc2A zX297lEG)EK;O#l#*Nq@SXV`YY(jI%II*C6MVL<7&#TX0_I&5homoZ;Y1Gp<(j<)A>pi#ofiS0-m(N{x^7>FV4UR}vccRxy`ZpR-up=5t( z>(i%{?DQyGIH#^FHQH)5N9t(0)s+|LI&Wb@vH-XiloZ70(`LT=E2l(apT3>i!4t7I z|4pj25!k<;=AH~ERK3&xx2o6rla;{pVEeYK4ohQN9}{nG6pK&*>6r zIZ!7Yh3m1W*rznJH;Fy&Nm1=#_KgI+8ZK7n7+%^NjivOW*IrC9c=*+jkpZ#D>kb_R zS|S|_2~ZT8Z{KdDzlH9JMsyU*%a^?FI06Y46ej)L3dHdrCd3D)2N-6&5O~Unh}43D z0=a1>96`A51j7O$9K%z43A}oCb~Z5rLl^JrdK5q?#BZ0=F2eW*IR{Z}2@N6M=kMRY zV{NU1;A|2V1z2vN?68I;b9DAWX%wQ#;-FL_gi;_&ajbkm`mhtCW!*1-2JPB_R!Fe_ z$P}Co;MoEN`&B62!E`=`()>Pzpg@TK6LVZAvlamhD;f00?w;4Tp2FsVgk_>Y9;s4; z)lU_$!^3!l4HRzxa@mWoq>+04dBB$9Z!UM`Ipe*hg~JuoKLl6A&x3Ut##HEI+*TKc zy!cw5ASD-z4df}{$kLrAuV8mkbh`_AU7A(5^k7|7FbrI4t1FPtD1WdmK;!@-2~eAJ z2d53J2MDS)f-|gj%z^kKt*lZemhm(af|}XUHXrsU}d4i0o4ncqO1D;aDVu7AkT+O#tS?aem9(AP){RQY&Kz5Fiz;- z^J{<{7!UVviQ9VaZCKqnV4Lk0wK(S?@3{xC_G5n@qlI_ZkS2q(p{Q`J!V?3|xVCXm zUSdaT5OBsnxqW;9uCwh1t(WH~6E=`_C1%E}H#IGf>#yPmL~JyW@Tp;_Ejc;w))Xmx94_O(p2Bn4OyuAzhe(?hlm7P27lZ>zq1$T0W)4 zFug6=ISRKe;hMi(O5JUN=M&AYoto$C1#q+D$OE0?u0G;-Cm^7QXez?Fip0_`&F!^I zUEK+Vg*=FXKp%w7(V}R6dqaXRkaT{CB?zwEQ%XwEC=v1cARVJ`7#bQv28i8a@$Jma z>@1Pt65b8I9tA7P2w8;x1y?B0dg2Xveik{H7(@`E-`G05R{>GSL|%x*bIY$}21F~b z`|MMp(K)<4QxNutVBIGMkc-4qJ>$hFy|D?=i3n2`GH7dQ@vpqP17{ILU)`%x>Me?^ zN1Sog5J97m=8&muJ0vAVu+XKwM5O_u-Eg(J^L*W~em!b1$bXkrT*e#aHDvsAVj>vg ze1HktK_lT;0ze_Ml!qH)fmsq+%5N_C$j4J;cUnSmkB0ury8L%a??9|nnG2^t3&B}!?;?G0n#I1lk+b}ad z@-_aII9dR1QA*0hA{1>i&O>G8dl$&JsQLYyT`dbBUa-5&l!wA=TA06WWxJJqzPK;} z^__BNTI?Vcv3WRnPOZo9yEEA}W^`SXdXstAvhdzFd+{R^%4_H2<*B47`52Nq8>fju zQ?52M0i@v+wXVy#0j!WB(##82KGA;_w$?9$c88eJ5<-X-AhPQg;r8fMGJN|5Qm^Fh%)RuqjrZ~93);*5sIW2>n6vytD&EIR5bO-`Lr$sLfHpU>&^d>mrQoBNZ=ryhSl`+21D0;|~uUaM2d6RuVynBfc$vHx#L!uB|C>;21a zf`?kA$YoQ4^yXhP{LGOmF5Gt5ezv$l<3sB~CyokjDgE6WC7;l8^hs_nj3eKg@RxkM zm#b<`ti`Ty?t035TJGSsL<+yGUs4{De!wYCo*cfqFqO03(!w6PCnDa;ZNAqZbLz&o z4sqx9%-2|X5OEZ^1tiJV7NXWFk$zl>thma;yQG`XZ|7ieLp6&5W}#? z5iB(onL0l+-r-jBOu3kM;4Sfy<3-2ZA*h>k3}JMbQHW`}%Mn>}FI3h7-tKXTw5B=GEjHM;G(akuRoEX zD&CgY#LM^DD1D<#L7TZKz-nYt<2Qo33m+^tgT=vZaPvU9qEA(dhdw7~_Y?leA}8uv zb-)YIyFe!Z42|y^kGvA~UpI>gfsC+;(4KrNRAzTro!noeD5qh}m+$Ss7hWjWPMuLc z9^1gQb?a>$SsF8PG3TIECDy=;H!8Tm@Bwlu21g(_U2b&1*tq`Mj~&}Z9^`$~!KHyw z9>9@vyWYayfIC6!EZt|)QF}pb?2&cSvB?G8@r{+M6f|gVh>nZ<$Z7<0@GjS0`Q~KZ zs;Pmh^@rGi@5FsCTMx7KiSssTR^fv2fx`iNSgLi4`i=*>v4)(DkgUvf>?;1@@M3+v zM}LWxrdC&+-fF=z$BpG!^_;w^oQH$q!EZ<|!k7Fsj?82(Sscu|$FWRNcf7PRhwMkj zzZC}oKlaP6mkFm6>jswUu&r2qYMwM$_oz=G)9FfQph(~iny0g>TckCh_3sw66 zFfkPcd;Hp|uPzVL&DfX^%B@?sDD|5p09jm@IeLk3Bmh;yIgRH=Pu+LsCj69`vUbBS zhfD3sfu|-`a~EvpR+V1>ih>ys2d?|vH228K-3Kaq*1O*Oidbid+OD_WnpHpS8J@*I zXs61`%v9CWlissu*dZ5z5iou{7SsjcM?|j^5qpTL*V1Y~e9t)gK~UR(?Z)t`7*9Ui zY#q%e@2r#*tNP`cU%%+X>)uR%&Ey}psf zr1qyK^S>UOTLia3(AD+}CUIt@x`fzRAFheQ;7&_pG_gq{ww16LjJAqkL?!SvOv<1z zAKrg*@^wQ%rzN2RduLq7edo;Slc$u8PIaj^ce;yRjuQsB1Ip~RIzJK7=Bjv{p?aGbp_pqv9=;DY`g|&aD=|_5^J>vQGX2hoZ;kQMP$f(nr`>HLeC;EO* z;?slKu47s-MfnvQkVON^D0Ew470lGxC3)bkkLLorVlV|sM~5CFn~GkT?wOuz1Zu^S zOInm94_>LeAS%54*mGC6V|dn%9{XeuvDBtXlbf0oBVLaA-*~g%>n3k-$z>NH1nqzX z47&=EUGh!TO7qNHBBtwuMqTyP@{&xTFWrB`06rlDcCZJ-_%@ z+W`lkFVlzXS0JwM(29YPfbER{Ly_b^kI01tcS;Fla&D{ z91+GCd5OT#*i}Kt+)nro8FQ3jqyC^gKBEPtuS4#0-ZOdXIxJtvAVB_ZF1aFpS# zeG4#HWQk+p^!W%e`$y~n(x!&*JI3A4cN-p&Vj#z>;L8k@ERjJ^Xgpq@aEEivX#~2`HRZYzyI@XULKY|8H zkr-_T5j!lEhIf$Y1Mg*>h`6gBW3vnYX6zxjQ2=MQNr*YOhdLvl0fORYYHb97 zXS;cf=<=caHlfL-CPrhsCFNhoYXadE>o@cEQt%O0+dn^q*&RhcL$HFs1XKX-@8N?7 z#cG~2nnb}s%7wm(A%Cbbs*L(aQVNZbIS4HMOIHKodoz3W?5Ji+@fI`00!2+yrTX~$0II3)R$lEZ4VIo#|N6v?06s=)k2?3 zPIt1)((b^a(NT-J>%wfiw=9Pc3gGQ=52LOYmz@DhvfLpZtIkPEmp1#Q5yPkAIuQuwxO8Cgf1$#9ms#Ps#%!ek7O65cNwy_=j zc=4m{yfr5|xjT}bonO4j5r=7`xtYw?mc6plwB$;|-NFaNt~*&o!H9I-BaqH~s;>UE zAD1(n&^Vv~zI?w)!%Y^AbUIW45rMv|B!3y5=>k4}BsL+|gBT?fIP}IypyG@XdXzWy zSpZulql=X%THoQ&M6}O4T za1DVZG0{MmhllLlyLXu0ads~@qk08D5v=(D*s7!ZlT%Xoz&Iko8E6^u|A70^pgAW- z!T$u80s>osUiHsU_G21AM6NHA3Vt!gcUlrfV#wITQZPI^nm0IIfu#cP1mUs4?}2du z+TJrjelSvFy9W9Q+b*8LO{}b9qbr60#_$(`^k5Ap9uvg!eoQixdI)V8c4igK;@CbS zA|lrRey4_i{>1O?4Ok6>(8r|Kp&NtMTY>HnrUDS|U^9_)stoB5${L=Muu~qzZ~%uQ zP#)ZMfG+GVYU=|bf<6cT1*m0w8g65+`KDJ2m|D*KR=NBqK&tQA?`whW$~r&f;>dBU zkm}sBU$k6Ev2Si}{+QgE+m_`i1HM;teN0ML7`ML<)NlJV1TX>Zs(B)3jt(VJ4&bo_ zlBTA8=IYg5mRTGK4Y+!YGDw<6e+*Fh`So?uD~B*u0Uf(TxOw`%S8BU|+WGFr4d5C| z7RnnllLdn~r9MZ=EZ4JsY&1DkR#8rjhKS!+tRCRs?U2jm8^t5#a1>_RC-Tbh^Dks- zch}1*xJ$YCMAn|A!xDk36qDwy#vjLG&Y`LPj#g|8s`-*MTsx@9_*7?VubbdaiplP1 z$e>*FGdq~Iz)!}I_(;5I=<55PC?vBTIAB}7bee?hlCler{$IrO)3&|22f0X>x!%vX zl=w{FWqR$cY!fLYq%9-qN`HmIK<;(?%mkyK{Vp!?$G7LFs&?h%s#ia2`W&M2n9Lx} zbi;bP+)=o~K@9P0Bc3Zlk?ymX07K#IBrXT6 z#w*X}q|W0}2CWNh%dh-^_+dQRN_fDbSY58^UapD0hA&9+SG@wZLIPK5Fu7XlxAEJJ z7G0!`O?yJ}&6V~%wdFUJaJv^RppowlL3e*A^_K2K!Z^Z%AfrWiRrH4st(pUjl5!=G zE1n0>cIHe~^laA5%nX2a^!T*BH{A?`8!@)$6Lz{VZ`nei;*JH=T!2XbAlshjGD>d0 z_u?{r9y4Zw#sX-#dXQK165@Fn2)u)Wf)XNA@Dg;Vd5maxm%z%>+IkX}UbwiBnnE~Z z-d(Hugtr=NJiIJ$U0K})RQ;cEvDrMU<4tn%ZoK*a+%5rldqH>yt{D85T+`^cn_>lSGP0T%(LgI9k>9*-oQ->$y-CLqLo&L%J$u-C(+-K4Kl1j zTZ#dsiM-M~g4DTt_wMB^#{H*+{s^(IPEwQS@1k{DVuy1}kM^enAoemfnR#-=E=30F zK|zjhDFm@dgZ?}yaiDmvp?Lf_m8Z+f4GD?%%G%1^rYHW{deHd1rhXk-xRly_-*B0& zgJ*DBw_24yl!%epB@_%XlQ1l>MRwZ}7B2HD^+UjuCnj22tDdvtk~u$?YUkF}a?LB> z@wPdY(jkL_Le$`-{6C-M2Fn@~FN^r@&t zh+VkDvqPuCUixmo>XT~7nU~h~*uvaA@3bCo)w_)4Ri=Nah1hncc$pap`hWwa;Yuwb!OAI_ZuyT!_F#b z->*6JfVObs3iq>(F=flIxJ)3ATn}VXk!}! zT1Ezzed(Za>Ya3=rCb-AS)7!qj-;iFS(aQZ=}$rO^vx}t+Y?FzDMI%?_Ua6(KCii0 ze%iQW(=y$9_u%TdpN=usk);jAtL{8XpAY*#hIcR#UQvW`o|YuLOIp2@Kp`N z2&^7~S_#ElSY37Jl>r;z%;*~(wN}3cu^s;MQ=jBmbQ5{1wA>aYRcaV)xf2r-Zem4a zK6gP@Ks7WxPF|Rco;?f4Q`twH2{AF3+xaQZ8ePkIAa8Z>hwG4r7MJ2@Qf7Z+iJWi* zShtQjQB$L&=`su{qpbzc2{+7a?gUEk#0}f2n!YwqrMKws#OG<2WK{On@kH!{Tv2m^ zR+Zf*3%m)!bFTFETS=e&kWfg-%cNJIjFw;0`C$D3IbkcZsize{aj1Co(wXnsv+dwc zA55dG-F2Smim7^;yl?`3jS%%2!K-mpTB&zTUl40cl2i_X{E(=^=_k z2D5*MoNh0BZYJov2K)hFXyYvPE|H_Sf3SYxItd?t18ex-AJysKAC-l&u`84C7BAcE zrTG?5_pO0#N|@J>&vEtCS%#{|g1itBW7WqO)>h~#6Tg9uAe)5Tro%BiQb*M(l6`Pn zI6(BbDDPLUJ`)y*{cv#mykqPev!{|8x%%mCcL8ZlyMVw_kC7hHi+e z^RF6^N4y!jJXiaCSuZ{e@qrH+MW~OPH8chWr+jsD2}(XOFXF?8i9p7YE2S2kB}9f80VbNr|3PX=g_fj8{Ro!he z%!6;|JfAwu^?%OxV}IGb%N{)>KA&)Jum1I(zFM-NFBv=Ho6MX^H))6uqI+T}f3AC| z&|^km*+T}jCDG;4^6{SJO1aP%6dNzJrN69G;S;jj2*Cip1Q1z3uJ?iX!^#7R>QwPf z3bwl^93*Giz-iLEQb@6-)J z8iWHFp{sZVRCRTgkr979UIhREI}tI7Fgr*DhTm)DigC&L%I6&HgE@Z%Z7HjueJEWJyN_Hy%G80rSd6Dk|vaarpVy z4H=>@S#sukh}b{*;{VkGfWD_sX*mO070K7V8@xOUqc9TV9f87$`10Vs#7BI@b(|BD z7NW4BzE$?~@|HYlt78fpV#zB;NkPWm^>eq&&5F%3PP|;~w8yaY=ys+O!;0<}h(%7D z+U&&%iOEo;?zc_gHzpX+cI@9b-4(5x=4}Qhk(g4bdKf8zha;$BTdTBsQo;1GvpMiF)hG|;(t>;%f@QC6uME^EutNG>Xt@wN1SFb47kt3j%FVEvcevcurDjG(v z9LsRMc!iV}j9(-tNu3W)oBT^fMs;#KYZvHPtx@{~rHFh?4{(|nd3noPXZq!Lw2vRY znuibN8H1wYhjl&2CaRQ@oy5=gTRi1_>%jKq%eNAmB}RPrs8lh@XctLoY-`&(Df|=m zdS}bJ$bg`||9t^(eRE!;_@BQ+$nDEECQ42;l>$KGB)nCW$<%A|O>Oe~ujcCsaR<|o z-8*5|SYN4guv4zc`yRgb#{qtY_@eC5{ zPCg1WjQ^0qW{J%r|7@Lm`1n9E4fi%=FRvI3=C#<0A$Aa+KSZK2-J8Dbu}(sg#3ezPlU5*~t8tMwRqkd^9-cYK&r& zlE$>=C*I!HaOOBQd_*j~y)$S~qob!b?vDTF8-`Wi>)pYZ?#x^ov$nr0Fh69QZ7qR` zE8+LVMXWcpBFtN$j5g|dY8?4=+?jZ+c9e9vjO+)lEn)6zYddwQ`oy1yO`CPYIzJ^x zruqR}F`?q(#v- zIfaCBd0-8b8UmODPCyH2FM((RtWEVJ_I;C1&{`m8&1ND_nSil(@$ojaw}1ZeVh18r zk41Hqd;8M8&b`1BIqf8{`sM;ZRz1RrB9$-2rYr)IMCnpf7S=~n6ZGInEX0fiTnI1* zbWwLJZ#7+!OKE9@R<;89nJHavn{zuo8f_GMlkZQu?H{_*l*@5%W;ycn(5lh_)p8;v zRqL7dN9O;)az?om?h`ccGn#@&T3_z@bXY;1@$1p;)}JMv&rC||KO|v*;jT`l0QGoCm2SDLZ-9vbXg1ePwRDP zsA;y6oG=b-prM_(5W-B!sWoE}cdHPT8KACj88$oNCET<1$B$Mn2Am3n>->0>XHdr& z1COTwxghQf92MyEFkCVWCeSMtD@G{cdLZ_Z!h?$&)cW}6%FJDS{utV$8_l4i+Q~#4 z-2kZM?F$5;2Fol^;-jxBtmjl=BAumO?ZmaiJHJrvGOiNJu_g^J_|^LlTd;N@^=(?` zk7rom<7P6YJKlwt$WOVL{P6$2r?rLFs+n5BOM*Euy(Ds9y@1b6DJ!yB(V|s>Vv!e3 zq>~#YMR~qzb}w9*@a}F_a5g5{rL#B)c{j0GI~Tvc`43H=F3o;T{n?KrJ^tCnM`q}~ zPf@IO(iY}WW=(xjkDZ(@+svG()5g*j*R=RL>G1S)R0=x_rIM0;nuYe^v+;i2%SLVU zLWhn&7SgW;Ay0_JfzDM+|0`2>$5EvLGZzxZ{I(WNP8a6StY# zg}bA)mcuHy<<`6tgt0`?8IbD3W*O{tMP&T1?kHwTmn_~GIpX%6mdA5hB<$x;_!Gi^ zZ8JE2jh7iWcpW%iobf%G$x>Rmn%bdbLG-J>t#8c%cZ!_024MN&y< z3QG8?Z)|LQ%*T_=)nQ^VTgr8Z1Yt$qwAa=9>AKa5q2g^_?zc%voF>-Az0C%P3*ry< zzUT5#qw(=*eaK0_l<`X;jbbV(b)O&`yX3bGbazR<^qmkF% zf9UitQEETz>69Q*^^61-kKdeNRVZZ4jH6WWi8`c^?t1q)eN4l=)9S(jrQM8H1=-$r z?l_UL2#$Ua)XyvG57wL-&ux+Ska!+kT`jneMXVy|)$w0lCr$&Zn%}sAjF3nobqNA{ zw67efN&mfR{>KaXXGE*s(1=%ojZIeUCaL>ej6?EIQ}fG`jgUUjkMUF~F?gbK8aE$H z`c{0(K(08^WU*5*xX)VL(q+{|t_Y_!=GJ%Drj6h-R)Jm%XzHWTu<2EvRj&pEqH&Ed zmhy3XM$jN!qpUJy*=7RJy^PGYCbF9WntRtv@%VLx^$a;`cKDKt#W_B6epLlq1{*y4JHjN{LY&?y}C5lXLHWG~hh29T} zKtU%i{cUXY`$p*f*2ow#C>6Y``abfIx&3NjfA}zBdA{Phsa2td?wibJl&wFL8J+*| z!Q=7%bi0Lj>%(gfj4wgtT_RI;{GnFT$DwK6xy5gmSt_sl;LoKc|7&kbuf9M-o}sm$ zypX56$;@c;D^>o6(`4399(a3+jq{l8rdgB6O^Xp~`Dcw7A-TqdvQuL@_i26pr40VC z!ueUcUA(&=_Cl-s=$S*jRx%TvU;@B69d!67w>zL53Wx=1R;YG{Dv zBX7-LroO9-`^Ui9HxIPBOKK=$?T#0JT$iX(m1-6iGozizlBhBAgn5^7?C&w2JiSeF zaN&<9>-qS-XCpF>zIC}g~OrdTm*uHBhObYo$r z#(GOD(lhcNAAyz$eN%?on0(LWkyB?KR8=3^>&^?kOjq;l9CFDI8y#in>svhHBy9Js z1+kU_(CHId=bV{VNIge<4?!nkd?W*KO60pj@z~h5b@X-~LZLyDpm$NFv?B3hn)j0@ zY}itX;C*mp7cvDRlPp;%?Zr6{N+WtRxWcER|0!t!rkT-E^YMZaOVMsu8RQ~SM7Ok6 z-DG4Sp>^qtgFcstLijO=f?;{0z{Q5mI$64~<&cSeify3Gi-Cf^LTIoC+X&ij&M zTLq=DYDz{M_}++Q>3@mMfJP1hnWU+URC4vyQw6NVFA<%W@($YDoKmEyM+2tlFDMRW~x zBiOOAhoL{z4ulpM*U6<70LdUr{ktdl5R?GUCW!M0q>ejq$`I*_0MTwK+}e)VnWBlg zbSRtQlEe%K7y0@%aMWynWmuFYimJ;M)nD|8vijCUrhb~&EQuvlb!(b)^^I66^7P7* z-eIEp4edNxPk(Yi$#?K zw&%6g6fj;Rv(8(8cAlyd?QtrQntcq$%$s;};#*zt7`^3+aCuz&1; zXz`&V_zx+mP@PrK2*7 zyE{7su?)oj!7o|;^+QNRTs+`x0^wH5*F#||G9)J3(W3FzdQem4?lF?Z%OY))B_-C% zp6+`_i|$(m=8c8f{zQw|gkyv(v@K>_c5frC2nump_|oZ;j!6tZB3-H)?mr@V?hCom z{$c-@4EFr2*h5$20#ygijI>cI*Vd{Z*JTEWs|2BQB+oEI;V6G zcWX?A4(&SXb>#b44w~J22A3mbYzs3TR(7-BvPXiZ7u<**ai_&Y#&yqk;)SYM`>sN? z1SK?HPJ4nGRmaq<#3f$J{|B1;oa){g#s zK*d3qs)Xx+(=gpw~Ehu6Q@pU*4z}U6^%4J2lmu9KQrpbI4Ip^2)WSotZ^i}C+MZYM@&KCK{C!Fq-F5ebi zZg#o!<2v)hP0-~&iX7(#(6k;jNo4=r61H1F1*;Q@n9F`Pi;WZ*ufpNY#UaOaB_`y&&iclFiP>s%Vj-nrgk(T zrIEgWRX2@TKgaui_C6NX(}8E8g2M40Eo2hV@ef$}XyWa3DWw5KnW^N_F(j+D_mU11A z*c>sZ(P$aAb;}m+sRJYlfvXioLf0z_BRBI6Zsw8##Kydf_sE;q0Tq_PMq}-}o0Bc# z;uZb7Q=(t&h`e)Wp5&aCwqgzwiBdJ0VsKor^F6Rn7)d}a$8xKwtCzk%?Julw zoE8ND+Jo{;)+V_vYJ7B737rYpVm&2YMK2zn`OXr z^Bug!VK;RP8C4bu-Aeu4#~OewW>3;i0oo8jclQVvZIN4&SE=v$u( z-V?=j3I4%q-^jIiv9WTWWUxHiO*J7VTOlhf`QbCY2z#rv%sj1)bMMi3AM&CWb5e%+ zyavOtde3CB)z99dP;KoNzNmfCDJrE8c^x7>3$}Pga&u*57`O1g zp1Ee8;E#jP3toiYRDBa|B<+cBp(R0zpXNMmM5q(M_G4fn^umSRGFO(m0aYR30LGP# zL^NyJ?ajDSs{_PH#479j{|XpA<=a9@j}YBaN5jKuPuVFs*_Yp`x9#9wMg@Wa?0e?f zYaSYdgD;v)N}9fCb!crR(MPw8KqUM}jaH$Jn$-BfJHx|ImYLeGrmSfk%NZj%Rll4G zHhMQ+WisY*l#`2%-Y*>C%+%D-^xSQAlWku?v)YrDg1LO2`eqH8S1ot57Y)@WddBXB za8lKbcSJFIHU0e9`=MN~#E`gPAf(QlY1ZDvu^Boy*nuV&PW&j{2M`Q?@c)y{bKMNi!~ObKPrFd*zCr zvbk|AMm!z;?0C>-CHD3&_pN_W^EPwj^aMMvUVXpx2NxEx$>Lb1yM1AvF~DS=(Ev7B zv~VlhD{bpjze_~P{B@FjD23K}{Hdv2QA}@qrOAvLsNDj$BXgauLL6e|+oYu@N9G&Xeai&w@!Ww;}EbzVU?|k-32+56l18bG#NX=t^^Q~G6%RBbUU5FVXOir~ONLs)qUWF92Nm#<&T z!qHm=r~d2YH^u#v^hc3W)9Wx3qw(6=qt5PSO_U09Z9_vt-5lnHc{s(H(l&U7j1{PE0I= zSoo+0NMR-(71+}}-x<=N)v>65()vwuP#`nwn?jw6p(xg1w$;GEdsM#O$;rt!H3C~! ziQn+m&)%!yCwnYj$BcOx_b)0Q{8d2Kl5vP(Yf`6`f2^UF&!1w+--vjb&R^r#_7mIW zin5LQy}i`9mf6|ZdPcMDA_}d^$#4wx*+4815y4roTzwEB2;>Aa9=97t*!kc5j`GH$ z)X$Ds1PvAB$ipWJqj=9eCS-uqs2|z{Ms25_aWYl+$IVV0X2XjX>Y0}cR~v3M^JrZk zJ^}{e1pVq(dTM->PYlnV_*3Nh2eJRK`QIVj@&O`Hw~ar&i${m1@C4l|${0=)&=+z{ zi84;ePI`Yd5)s;9sB|68hr7NHB=xQ>B}|CO@P?MR!LD>WCN9qJ&gavR(E95d=CsJP zS<>fqvQb8ijPTUdPlSO~?v?ROT_f9HgS^g%|@D!aVB(znmQY8kmyV7?U&L9*7j3C?3PEim+OIV2({+Hv6YcgS+FcuUR#M$uE_%r zM?x-vLt(=Wc^FZR(}mbn2~#Q=KAE-;mnjl7ldg=lX8<)zuw(4O5#i13X6p>En7R|xzscR4Rtp<%5^xZrq#j%LBoOJ@JA)^gQzGK zD;360DXD!rsbp&A`_8*aAy(3DxsnebqA_5$#>Pe;#C6FC1;Ab5 znLy_fY=RpsVlOk2?(I|zN`eNi-#`9dTH0cg+Man$r+3!RjGeDz_f!|<$oz>gubu1} z&#I~DK53`>fnmFYzV#ocmG3H^nTPdJ#lznFvar?wGQ$_v}^VirrS%&I(^QGotD#2XLX9V%2nq$bxN#Axt2fenE@IDCQrZO%FDyJD7-4-W__1ts z5WhrAi>No8caw(t_)@klFRF@KS2oE9WS{;w8!CSc{_mkk4j-==(q_tp{F;x}n%kJ7 zv$9yp96e>=jR1d*J|2SI{QgD_wXPyoU6OjswT@4so_${OT&7r|;MQ>$Bm~dzu;~-B zM`(lw?&&YD%h#)0yf^_S!Q|wQ#JHNIm;X#t&*R9STh8v1>Xzl24JW@SoRN`?qFQ3_t!X!)Js0nN zL!&i>%H^7H>d?lbF6vg#nE{>m?A)hrRt)+qnsFz0Q57cnPu2De8SNj{qfFS}Gv$4r zf|tQ5mqF`W>Cnu*^7||sJ=NTX`1|+PBeuJId}t0U`-C;ymKB1)kI`4!*9^Hd;X&s z0d*qmqz^rNwKw|rA(MIng{W7JY4pQ0-@hl#c38oAQa}>X&axZ;Be{L=-t}Ja)l3HJ zFMGr9to@<15y4AD7J1!J=@@r!<-syKR85NKa|#}hPdun(JKrpyd`MSiE@bAvS^$W8?N*nap+GfqpDC!d8tde&h3`|JY0{etZSPyKg+rXOZGi0vp z``yGTMwvI>xAU$ZVxwLtVdZz4u3;{n9r!K| zRHDaLcWL2zKa}_X=pYmJ0KWgLMh@wQip(R;hbMde=_VH*nRn~?s&4HW2%|H(e(-)+ zONp9_ZgfVI?D_K>PG9p{UN*`!e`9DMd)#rZMqrJcFv)7xNR+Q)@?Rd%U*)yTaxHs%gTRQVKJ5g+>4CWd;6{mN;i5XX^Y=|yK+@XG36LA{ zOKNIrrN8sTo;>*k2MY$ha2U}e)tg8-ZK2r55h{)L-t)m=^r7nc($!Uqcyg$>6p|jZ z-398j({mc=>woSeT9Nfw;pgZ#+LO0rP>);NSHHDxIVYy^RXDt6*RI_tuLbOJNbIn0 zhabp@Ng&*+*U~4)3g_wGrN3)Ub3f|ieBcBo!)I+ zwZ4%~)MW6xDQfjT^}TOI_G+E#i=ux2*rb;B)yFp|1r~UJrrb*_++?2LLr1B-q-RTA z>T}`-Deo-f@;hpCDd8SQ4eGovG%UI#2?bXMD;2u&qs^ju%#%*`_QxKCcYN+G{c%WC zuY1sOsP;5x(4Jo|R!-U~!9ngzEMRkP7t1k=hWloUQtS?)d3C_64#D6Jc_&MI@uW7=nK^1_IoJ8Yd%vj>g4>8Bmz2cKo+i!6e1h7bZEL48SzAp7LjbG zsF<4bzWfT|fL(z#y>&3knHMebWmk+&fcR zM!+07<#%nG3obVhM$C=^hJ8eUh)GHR+Wq*X=4%#2$L{`Xq}%=A&vl_4Gh4JdX^U9M zEpIEuV9xTRJ<#{>PsE{Jh@J>&I4hp^U4gs9lV5jJ)~mQ!4m3N#3_g0Ss-vR>B^RQG?v1bpg;<#6b`u~)`}mv& zJ>z}7>jILS@BV*Z?c;~6zUr(wdl@8jd+_Y>V%s=RQCzS0$$%`vr=@+R-6ff4=XoBt zU(PAd=Poyru3r!BnbqT&(q`vKT%DULzpcJTVPYcO&}!0G$tN^rwWh(;RbXe#O9t9> zy2mG@cZ^S^mPgc2YpkOG{3cpT)@(YgC7a}aAvVuxjhxEZhlU{*jD5pJT7KkNy!zrVg`GR_sC zBCGQiGJX?0l-(cRqh0{f$7HC;j!#Uy3&t(>+@5oLk~1vM0>uW?1FOskofkd%K5q8`|-2C5!UKDYAZz=ES_%;z_3@};p6y~y#iUwHq}O+@g* zA@)fpN&6cPlTmAvJEgnlk1(1$d-XlMk|U7=e>Rb5mn&*{73&$Rpx*cAj@_?PQ?1+O zVZ8IqpI5M49Mi zL7mpym_5q_C+Ao0YznTdu~3Mgw&|5$4p^eNdEIX7Jt)+PS`(o>(mI)iN)>#?M%@MO z7u417Ew;Bz%;~f0Q9!ALX&YvPk`5w6XMFsl$st0twPy=LrX;yl=7}}{e6ubq!((>@ z`1v8qoq94t1Xtm!C7dZ}9I&1j5)%tki$7}vNjGdW*+_SRk_z?DPa!-aVqxGQfew+V zSVMXXJYU4n`^QO!j%rw8|L6d+A3}&g3fg!%yy6{8B8?3k>$5kRf@?d#6 zKEU&r)KU0CBo1H3R``9No)W}-@K}RoV?c>a;nLVd{f~@YyZJ6Byd8veZ--S4d%;rY z#KT-$UMQ4r-Xw>yUCLr4Y7{h!d>vh2lXsKZ#w;2rtpb1J=GU3+ptPDdSR;S0Wiihh zVTcgsO>0!I-!Cy^Yuv5r&0UZ!&h{;#@ELFJsCQ`+$w?wHjaqU)zJ=gG@VFKfC8pL5Eb*7{)8D0$J;uW&De<(Z%j(z{>8D^^tS2z`(7 zH`^<427?^GxhS2wI&dAfd@ggK)7qI|8(P_XYK*pukYT(@~WwIqxTe ziY{EZa35wSe49=`UWF0LZ6YZT_??*h=DWXbvJ7-&4D|H%ztckGe>YtKSob2?OGvE`i{`m3=en8w7SQnscMarWh zVo#j%aQ?t0fYj9DUfMXN{Va4iWsr^WZQP*H4BAs;YoP$Vilm+=_R;8Bach24v!p96@&KCA-Z__03g;?~JZ~)+9J21ovv_okcx1 z)EeJk?#i_44$_N{1;7sEz$GLiQ9J8#*{x%E6K=|qAy2HD&7yL*!t0-%_MR3JoLo@S zwgslgV^;eg4NS=SnLnYUW#7;I|FfVHo&N_5s&L@Ejh2%%of7-}46g~tfsg$^NS6e3 zwn{}go(bYshJRHQE%Rqzs8Zn@-e}0pv-x0A?ekE!dlbY@Bq8A!&j|5A!EDAA35gf; zzZ$7xHE8pgVHm*jnC3X4hmX~%*OzsEb*``u`JNWfo}CzeE_rMlQxTdK8cc8`_Y%QE z@Pq=3$6JfV7WWhkNxg=EU?3uO%8z|y%IOaS1foB0$Q?&4j$Vo}TcG?n5uc)f4SitX(`$?{LH)zSlSl@UrPX4_KNymB{52%S{T`Ce zSqp3#es)T(=;Vbwj&{{E2+IXd1IYxK88u(uyv2~HbNc$hNTW_6()4994$oP(mr9-AnrAcl({tK zG52qWn7odV*2Xmf*5#t^u#MdlQzb}csi#tT>2r2{RK{KD$WjVkE`w%okCQ)Tb9wy}+;YbC+RAS^5_i(wQ2yhOTKeLYh_ zrba^k*xMUt;}1%%#Z13_^Jcv!75#cHNBmRxqM<$^!r_RpF<6M6o`AJiPcu!J ziB?!#+(|dUh95#?+;Bil&=uG>x3pJC$QVxtusra!xR=m}r1B#Vn`YkMV+cL*E}NP} zU(fOJ`or9A%AdthN2G+mPrUo;%wza2$_JMwhTx~ZprPK--K_%84?y{{XG&1)K8See zjrSQT5QO?9C)2O}8T&)kho`PM@s^+5n$S6^bZ{&5Eq21l`F`}JPZi4=#xcXlqnC;c z5k55izk$rVqaA0wc?$J8%~3^o@1J+dsry(wJda%5$|U=SHgo*2nKyZUy+f?TJloI7 zLnj0MS}d&7mb6Cny%-orEhwpqGmH0Zvn1P>V{p7EGVN$@&|4h%-D@lPA9PwgEH_a4 z(aecjCGXr@Sq=>6oSGqb+PiMnLMQT92Z}sbha|p@cYul`(s+KH(eHzub`aXm-e`S* zJ2=+j8=XTodB=z&qtelF?nX)nURPw95rIsYEMdYRWFS`$_y&W!5`SJBK+}Q&fQ^l< z=;{Hu-VgPOAk+rhETl4lc_Vtsfan3EEJ+H)wU0HH+abAoqGD)z6Z7HX)q2g13=HTa zR0gZU63DAlTz4f6uZ&Yh?NI(e0GTtQ(4b`F=}$Rk=HAhmc;=3Yi6wM*Ow;>$&rn zh}gM67C}6_R6yyBjrn-E#fvJ{;y+kVUirYRxhF#Gz5L}}$6oyGwZDCg$r=`HIEOTI z^~0(TC+jP9Z!nz$`XaBCw3fYYY9FbQ{|S%#O2OOh&T;>Xv9AuRD&PC1LmHKk6ckjD zRvJ{4khJJdkp}75AOa#Kq982>NSAasNU4Z4Y(h4j(sjSfnK_5K&wJnJ?&pl>k8yUa zwSM3H1fHbzGYW#OaI*A93^4E`@d!3Iwo%B-c<|n4LAUx2FU!b;J0ZuNwiB#+Uw`#p&f?Nzikj06Q&X zA`z-+_!&_2MS=<%Jo5;54f<_x_bYU4Isx-pXk3v!8KUMeytCerVF8<*I46KmLXtjN z&08o6EFT1DviSb*rIT)54OD<|0oY53{%F?SPzq{FHQc5^Glb-h^+{rliJaaqyu&2H z!+*j@U(zdKg8b_xf4?fim;OUtu6284U->CXDRKm4LJ5kyDWq=b>Th?=8fw~$H8yQT zC64&j@wKKZ$3WlU=$1T`Jq?8Tidf<9CRl}^I?-R0IZ?izsB-yeg(9BA>wx88Mh>?9 z-bh0veY7qu2Ln1FfF6#s9QqX(uWm>bgD1dH2?a<8f?@$gOJofJy0SrIYWMW?K#^;m zq5AhnUPPB3LaQiPTVCryRT^(U> z!Sop_y&|hV+NfF?5{BNY?VauRHZyD^jCnmzs~5a>ssiGlFifyo3S zE#RtWcq3OeK0aR5eeE3d-N@h!I$}UhKvhVrfrkff4o&0s=naqAnHjp`?EL)I=-kUs zDev7{osPF700+$2*`z;CL2L`amo|nV3~ zoggr|kbFQ-VK?&ptXN#g>C^lBVZtI#)1*>k7rZfnNp?k`3dwou1+WS1GjuMi27K)k zHk~=sasoDdfe!db9PdY#{{<){+8*8Vxu&CY@Je5BdM@H@)k*6CPfpmn0ENKe!2ts> z7T6&?GVU|LRG@KrD}o*t+W+0vpG=CXGXx*Zuu@(Kv-^R?hza{2F837YO_|&P_5*DV zB7V{7&UW<2m_vv1H2$*y<(!$ZGIKqhd$|6o#pm;)0`nJ5JiIYe%aS3x9gn-%YJb*L zfBtx;WtjEc*Y_#5MY_B?Uc$w?8enLU`+!ytNcI398_^pDG1Ag{6c$r>xIKRDYH@9m z=4I=CP2az0&Nm-j6zmG?rIumwPf<|ZE~VIHdHb;pACBUHHM3Jk+ll{c17Pf-uwpkM zOVTz1OmhI+(yzbKv5cuOYo`I^sGXIHN%p+?*~a+n^DmKu^d|G)8Jt_-E~WhiVw^6O zl9PA|mSFq^^2=`XeKoS#>M#ul*7nIWm?MkjF8}vp%U(w{-LrZl+S=KAH*T;t8o%Ic z_6=s56Km`;ZV8T3GUhxfpJ6W0Hf1hQA|M#sq4e=fO4>a*!oi6jIpRwU z1=2;D4NVx>iTUE6zIcJB{WZtdrYd2Kg|Nuw>^1A}m$`@14Fop+ydsBQJn;?bc};+A7o%Q6(%WT~%4#_M5j~Vm<5NjB{b(x_ zo%{@59YOUdHntLJe5_mWhJRkRCMR%sRGjd!TS6rbI2LP`X~r4@wdxk9%w8&5U~+gej_H zhp*nVLN}QgqYZSd82qkXtCRlwJD-<7_5*I+yk6U6`G}H|_3=g0tHr4N_5}MXJ4P=j zARonQHayjUi|Z_{$L?3$fWVnH7>ezi|YU9t2HSfe>?b9O_mq&uyfCC z3-?a#6kRF?R!<t8DeKtaRQ*&((covSJ&#JI@8n04Pne21e1Hjxo@ijS3Hvg!5Wx7t7)_N4&HAGwv zOfoX9KBZ@zr6hV0AMZJ^3S1cy=KXufb&G6b?nUEVMZqw^{BY9VuJmgZ&lFF>M?Q!vXC)HVo+gTCGY_;y^uya{af}z_h ztq28Wrt@@+sp%JOzHgef?_Rt>_qON?_)1^;_DR&TrYH7op1rTy!)KthWMhM!MJ)V< zuND(>SB=lNn|883;64~Z$7tEnK%xL{ic)54H6(A+1~m8w-+X@uR031fo`I|^cl$f2 z=K$uhGaNnivS;=jt#ypv7g@p z##*-t4u70+b3n{+P7WRDTlLnIDUsp$pi{QSsJG0D(aA%LNg5Sn^5<@dNVFTEb6-Az z6T=oFmqc-BBst}tVnZjTLBLyFtJ*zy_F4q)5_#Q{z)GBpA+LEINoO9WQc~{u$x#g~ z7H*t0BRg?gKZ8X7_mZ3IZy8*&pN7R!24Anm@6}rgk$uQe5V0zPUhZpGi8`8SR;FG4`Za{9P%X%KpkFH`alQ@ zoi}5hWw(GC1({{lEdjJJwIURimCe9<0nu%SF`ll=D5BXu{Fhk=2w&dd(YiTRoQn1K zpQpH$`hnJ+>-U`2KiEL%Aumy+v^QSK%_&|g$3IFvQ*oHT*(S_IB%)I>wv@Bvj(_x5 z^qV%>y1h3)R&7JL>M~VNt1jb&w^=lF`amk5adhsf!POf=*jtz(qncu)PjgQyZshSa zkdrN01%1cz`iyrq0BxEqIbC<7Rn>1fA#l!CGm1P}i+BrDhq^MDQg19xS1TORFk3zQ zfC$sR9I^H-B55K`T2I<$Y_3-?OMm3nIe|m{>4RlynMZRMRHdu@1T6&G+DX=D-lz4K z75W(*I$r+v$=`Fy(r9CjN8c+yp--P{A|+_ft*=5`#9OQ}{hk)!U#$lm{jM3lvPc@J z-C0lfLgQNW7yQD(bbajk@k(lWV;Owf^&rLqi3QOa3=9fFw)o5L-JY=Ip9WM)PQs-4~)zdl3cP0A|KLO-*?_J6?A7b#8`> zYz3_su`c`*tl4^=`24x_k0@8n@sEJFq2t=%?^}p}1aLbd0)Mb!7H#3$1`|OxjdwOg zKKG^d1D1PT+`RC)*ZnQ8`BBJH=hb*uE-pvfR=hOGarFw9ysRc{sIg>4G!#KyGa^=M zamqs$&AFl0NAaGxLIAyUz4doLCicyy)pK3%ZHl)QL!kU4zPEY0=es~z=Q4XlLTYAv zP#*&>>t&m#p`lbNNgeOXM8h8b_yB*Fmn+@Az00TUd48y*WMw)&pz_dzD%uR(lYhO6 zaV_+&V8T&SW=i?|Ii}Bm7kI>sSo%KhqRHEh#Fs9KO*3H)gI_Xgl@?W(>$AaixL0!| zu5~syD~q&dtQ*;x0&*Vr8b}@?SUs>3eg9Jo;4ZANFEgd6=`yRXB|e81>l4QO;Q>>>8t{kz`JDL)8tlBi;yDGJ`MVp#DWK*wZ zEwP}n5L8#{y=2X+%UE4*^~hG`{m1iR5#9^uKq*8gYKX;sN(hUP{8XV6Mhi%YNaJ_*6u)Plk|jwaY~els!T)@ugsXWBU&lKsh|@CR^jA z!}lHw3RHVS({>#nDL`1-VBrM4W|ilbu@((%z|4R#2;&k;@*rd* zAQ!=m{}u%CkliP+9H@iw5KGRlDKaqe!ErHM1+CO`u$pj_P=PKI#tTmyjHEzhj8pnY z0XTAk0EauMzC(Q7k)jXepWF;q&(T$Y2@V+<*|6tw)zceiLEJFMb4Bgul*`-yMy_W{ z@8RxU;h%9~hwR~x^3?a5El*cbdA(6vAHYGKKpkzog*QF*>-t=b%w}v88Q$&88 zO|pjEs+OkLxvY!F>{u5_`iTWA#*%PDJ*{p$r_H4O?zo<)i*v0!sgHBlp;(kN{fl3I zB^3+nSW|noX0;KcWNaHP)&m$5lh+iTU0zjC~1Lbsm)Pb|l(cYL-3zI9_u?&D3 z!of|(eZS8}18NTps7md}aR6Bf?IgH|-G-Sj^p+ZuxzAdSLD=M6xk>%H#a2l-_eJU!-F{l5kim0^Y2lTfy9mPvsd5rC>p4V2pY}@k>(-&l} zKQQgzQ&nzL$Cq>=;+yh&SZ{kY&)1CWVoKBXya5N~0mHJ+cxUD7N8q*Ojnco69`!wc_u*FzEcW zxEQNFdLt@M?8~x`hAg-F%Q&&;M%T_w6w|u3)%r4&h=&_pyM6nW+pyuo)+g6eS8;u3Sk^47tV+cQplqTFX@6*yS1@jdNppN z$j1t^o72~k8{+{thTv%K(Y$RudhEUi175I{d=E1`lD#KwgSJa*)V_nxa%~<5x?2(qwM3@j&j7S1yuq zwdlf2&nAnMrz0gT&F5a(lgqcF8a!M3?CR2s2dFnlNfzSYmhPJ*a{8fG#9kBr8n_P_g78<>)WFg&2Wi1(ckdhx4~J zqi?|=^@AuVI|EJw5juj3x7N0Sfs}war~zCi?`deXz+ws^AOKJvA!LAT1Td~&=32Ne z4aZvBF%seNk(%f)dgUTyNKod4xVKa~Ne=N5SkkaHzkVGXT7bf08X79COQ*0-{oTq@ zX}!C|bqO+>NaFg@l@w^@`flK3(<-jmW$X}OTfpX_s2E@mwm^XY)9geSpW@tC#6RcD z8Ll+O5?puaBJz!d{uA zkDj0A;v+?7(fd9}AH4taRJs7AmtxYfZrQQv6rOHn4zy@j%~OVm#%`ORzzMfusW{{Z zSLYx1d(kcxnBFB}>R?Lp?iGzStG9oS0G5|!*ujR?1DBAo*it3U*97z5$Ay($%&uYe z`0hEfqM!7MHJ1=3Y?{2I;Pp4VxY8gdG9Wy<>)NqP%17#!){;|5n0FSJ+@Qfic6U!w zVzsd%_-6B%zvj=52Qzo?$qkfmNFdc{{~HydM>u>!Qy+@1yiQ1HyIwIo%*Ux}9x30y z=)1QkX=)xGBmTH-V*B8ZN$W)X3If*2I_x;@f zg{mp>*du|K2K4)*%?P*1ABWnhLOEtH$1~+Nj=m-D zT))Xk7kYi{BaVHtCb{^!kwFF1l1{9cR7)(jXA;?UH&te@y;oHSIh1&k_NDWKIS$6# zc0BP{i;U^)XVlJ0N=7wU=2mNWa7w!;bbC!-u&cb&8qTB)3A}RcHgWLN>!_Nbduauw zTchS))pVVmmcve}g6!<%3m>p+%ZIuLTnpq%cKXxCRHc0deCF-eN!)13_Ly z+E@+tqkuEca)K;NS~8TFbw-3G_~sMP4+W7ZI29C73jw6Z0h8!j09#zxh?c>y4<@K+ z5Eg}1J>a@Q;X^aJ2|OtVAc;fiEMJV5la+-?pq7k!ghWPCK`I9l2clvICPP}%Gr%Mw z4!8lPOiCF9A`%jzEt6;Ac7fH60HB~Pb>UvZL>*b{fqW|d5o_49*2SC01~KQeAcGXf zXp88PKyb<}d*TbA_coUrWK8t!^Il?ZhZ;vL%vJtM=uG<+%!@v!_fJCo#sACF1%~YF zzoND_!s;<&c{LOwi<6GtD@R>Q$!Qr3!yI0DM59g@=UpmklWYQ)?ubih(m%aVD{Ubgk9mtSG{QR^qh%_zO?08|s$6`0=dW1M7RnJi) zWG%YDx)Im0P7r>ug>i_e_pT7wy+BHVgbqs?^U3BgK!$;QHPA55Ge>|hWrPtO;=2~% zHN_4`3ZyrX9VRsOP&9+yGlV-NYeCF}+doP#{TtbzUc6`o)Rw5?zMnr4(O3XTzzyrU zv>z54`W5tTLCqDW_t5&ZzBJ$eohDtxjM`s~uOf%zqh%<)H_)vK?unllcXl*3FADuh zJzB%nn-NE)tk|{b%{aa$1}!+gCvZj&Q;W+M=jKu?GCjW)?L=4_7o2X zAV8um2D#|u!2=kLaZ4g$hliq_BJ1GbpP^vf)95n+cY7Jm{>xIb&3mM%o>EtZxODvCmC?vKhqi+I$1h^iW z+%CNsTB=x(nkNSLxm;mSdJSX`^y<}WK}ECcVRu%`;TEA(v!|ju4rNFaBBMRAo{sb1 z(vw@{0Yv*$bv#n#Prky%DE{~}zFGhD3d**&OJ*%{Y?1hYvG^0_hvoau>@zrJ1|Io} zHlVQb-?)#!R2|SN>r$JCuyY1eoW94^1NEqNt@hT|%lrPPsI=IQ=kod-*VhEd34y_> z>PXES(|;zO!F4q|pZBVw(aDy+Lqc@Qnj&QWr_$OCx&83HHhYpM?j;Z4lOL2Dz{t$> zqQ}m!7|erT(?4iJhMTQ6a^uh@ z-TCjh?xrmr@&g8*_{OFvl~Q`H8y;AIg=U-__0PUQwg} z{bE8$LG#6=vtb-mOe7dJ!38@Gs@B@u3Js3s`Ciz@_-2jKW7j1rw&QY;ABntdDUP@5 z4*8m-Y3t308EVLHGp3|8eBe%>qQ;T=rTtT;q>~OFcFT=W6Bru{)9<%;c2+HHbJ=Xg zFA0 zH$Ly9qBz~*srUC-$Z_v@S#B$a+<>98#|CjZsUyqNFJg`&F&1*RCoZa-Om1Lpvg~rp z`n7SAV%o1g?APNc`ECO4j?oah{5zpDeCDcz&8=@GS*e0FPYDkDukX`yr;$)QP|s>< z+KyHB{WFg$kvcXupNdX_9^0AgKV>HrzXbkH;WcsSu`l<9m)q9YM{%U_FRCO2`V9&3 zh0V5Tlc(ub<=UTK&ALHdeV-e3CivB3zFNkax^K?R7Cj0H(E$TvHbGb?9YWnm-w8L?~mX=#UfqHm#51dYR_wq5;h;ZMQy3&vTXEsMXq(qHhXOD?SKSGrvUj&?wN8kKNlh;Fn6B<1M~-@7oS!CCF81 zqla+GV~~{*o1$hC#ib`|Lll^LL*)S$`+6pNv_ow^^Gxh`AvwM6g;g1YQ)evP6;3^F z7<@d#6cEU#wC`2_V?A3bpd6bnRIleF{1$G@f1kC7rz%I|t3pLPPvM1fQp22ImnR0c zC1vG<<@3yV2|(0z)!3?hg3{<&5^kCQAko>Gs>C}lAYtmBVCu;v$Q&J~*~7GIYki zm$}}1?s8~k-K^k)p=*)*zyn&PwDcMjZ6S8EK7ub$59ph(5W zm!easJ=|O^u8}KWobxIhT@~H@+`s5C89g#sa@IPC5Ld-hx0`7H1M}Rjk&uxFfrKaj7BcIT+i zGLjqg#xW6?x+e}tjvGPXe_RrL<>Oq^FA~ajuJgrSxT^`q+$9w4llUe}bExK4)~?hj zk$4rfwN)eCLJJ+aN#nbdPkShu!YSHSnKL6axf zd!av$w~zxuLfOW_C!aMZl8WACdqz^$UVP$q^2M-VZOZWQlD+KtWC^*PJ|EKN=9YuQ z`rl3!%5=|_$#<$su-3d+VCsQ^1}4(#{eP!nt<jbKK28_;sgAUn|v|Ixr9i=cExFWhbN)VA%$7alRdhH(3T~-hb;Aa zee!iSL5c|nJ|*h(Sk2K>;-?;pElk4xbgI}{^{N}A{ihzEMMoYSiZVkPf*%yV?N5!R zvsC;W^rBj#Kh{?`F3kBx((TVB95{2#3$V81+PMy3uv_gLl3&-VF&@^0eHA6;EvZ8p zsGWyBd1U6t<3C^HuMJeEe)AJGN_&TRE}}Q|UlM*Ul~iQz1>zqyyD<^a^AOU|s2KQu zY7gcTOBl9mG|^O{B}Rz_f9B>cajhI2rQ?dss>E1lx418fbUAVI5fJhPvD3-m3MLJ$ z;XlhM5BauM5loxaD3EqUT>H(rj+{D4+;3nk7;bUsZ~xbM{@xCIyxZ!x#iBX!N%I(a zsAJtVFIpO&m&be3ctV}JTgRbuOA)D1vaEUcACxf-i__+pT)AavAnsL4w?sPd8k!u@8`((!M`;%aVL7M0(}-ZxR&Uw=Sb`O_$f%GKb~ za26$$rmellt1X&8#}^(3KIXrVFC{4fCc)yYKguL`b4!KH!gQZOcy4Y}9Zmzs!=?qU<8gV}qwp@>*x$8&h$sSAs*pOG5WQFQm2do)df?_8mn2A3k)V$g)F<&{28MF*69y^1Y10V zwp-tvaQ7Yin+B?^8KUMH`+_IQ{6fA^nDva~1T~Ce?2Ti|LuXpI8&4jI*@`WE@d>=n z#@>>%tKq^K{M*_ytLL>flSEj9f&etY!pBf~SytNwMm=7qYNbW+^*D?YhUQ^!P`M7DOc zd~;{Ulue3=bs3$b?g`Z4p@`-^&2|17cgZWwHZkL-`MlwtOmZZFXO9E;AXRBw|MIDi zN~0P>(udx~w8drvbyc`blS3z?na&JHl8EYyxKZ6r%#$P}F!|~_TS)THNbA7w+3WO4 zrv&;u%)l7=a$69Ize~vYWi5LP4vDd>O=N4SajX`i!q&WdT?E(>s`oOt@NuwVI%?K3 zJOi`-d^4+Omvv-5@7qFbu`m8<5=weq;<>1ZFFX>z*02aOx9c#Gd@2r z{~>_J>oR<&0{bsL3o9(On0C(Pd4_=Q8Y2{o{b0+lUG!06td!~l;Zo&o!$>AHuE;1! z_thaA&%!FT|6vl8Hv}$ubW%n2qno;d`_lr+&e<;oDF+Bm_F9W;*gAziYK?9}LU9HC57>ib+lz zx-VK4Rr>HTk$7AV|LHMY6y(rb9R|IFQPbke7+y5*>zlVPsk8b&%-37xP0}fNJ5LE; zV*Y(Gi`35CuLzPBbQ8@Uf7C;qP1pX2ABwz@gdCq2szgW)a;x{?cML(W`M|kC@(3Nf1^Pu6cenR&`h3n!(VTG%~x5>vIs~lr1kzW&3U*(}2i;f35E9gSd%~wVh9&nmLp;zf-(Ol*Wqg6fCl_09;701YI8^$GLPp}b(Rq%N zy(>)Tys#^N*~yaUPZZr${256!JyLlq3($qYuRZ@+Cp{GkP0hC>=une?YG=|Yls)rYp}Ck3Bjp- z_Bx9_x@L_dTNADl@|r$=xXLamUM3QDNrW7gl@3Fm;=L+(%KnbHv|gj}b);K^i#}Fk z&ELK~jeO?+`pxiC-(u6+z@m={zFAuaO60el_FwP&?}fK+)JGa5ijBkiPuBt2{$S2V z)_Pyu#z<_DpQCo^mA0xJ$^B(-1mrBA$&?!v69%hd)PAAyrS^a4hO)cIdcM{tnvWm~ zSW1WJ{DTF+&K+%>^FDESncHH$&9uTmHi$n<53x8s`rm8( z;NG!G(Wk6WXrN(`2=v`0sRtWS)IAw5piR|`p#~gIa^drQu#?>Q@s9XVw46ux(UvD& zVQxdtc8omM$-x7U1I=nI_!J013o8cS=Hg2p{`0NPkAG|Dd_Y>9!0ECDd(l6YF|W9- z@yFVL&z^leQWc(CPr5ztHJXU%JX&QO4JrIc-f;UG8~M+t=;U_)Uy4n)i7DGJpI5I8 z*KE_~E?MT_(f#X6-=ukRY(G&y86inf+wF6>j-TwAjy&s(!uOC1PWz@oAzLK;Q9g@x!$u{!mgbV+#K&s?Yw0pDmt*|k;qrcyNrG+E>Jt^ zYa;nout71ORQT0)3h#-qLN68enZTmiui_`jjOd<6ELX6b?0d$Dy6Y-${m+2DX7BWL z_RmH5^5;So05pIX5P%DKgU`hT53NX)_H}Q)G}8R=p^*qrc6Mo#DlD#tA`XDah}9k7 zIDp8J3OEj!sLs;m_O)j`$ZTzELspmIsVR!lRf4t(#@T=^2L}rGy~Prc{pUP&A|Ff@ zVWA9%M+DR*Dh3o!Qo8msffUU5LI; z`c}x~RghMuGWCaOt=te?5Vh-$oOrr*x|T4c*8QTOD-TYM7@?f!0_M6f^p6aJXQ};t zNir(Xv|(Sb;sJ7CO`9&{OKi;as`#SXgcq(ag@k={L4j@cPUj*iMK`1S_I8V^+WjBh zCsivwzi-+MbvccBE7JuwmDE(34Q{KVcIm8sJ~r0X9;)-dC2{1n^ZBje1))Y6ie7$+ zg(=#aQj@NY99Rt3>{Zm5fF?5RcL6dAlt?ddnR^EgZx4l@w@i+MkuYKbgVkuv@3S61 zwsNqHLiq@r5x@ZdO==skt5)6i*KlpYS3&}~hsYuy;4@}!ZggO^3~rRy*dozWZBejs zR%O6!cz|dlz&?~n?(=K6{?xxARI~CDrVR2S1DLiA zRDD0(EwLNAUddFp643jV(a(F)psw3Kp&pC1}5)awu2R}8}J9q6P`_Pe{)CwcYl$bxruy z?%CGGJXMDI!dvkZ0YSk6YwZ^=Di*fK0s;d4MOL(^ofuS`aP=w~D8srak#EvB~QNzvOjy0&^I!OG04Laf`+D1VI z7Z-Z;oq=wjtFs49V4ZmjXrtjEDIHX3(LLH~HfC?q=dm`W04s5)!Wee861rpQ&NL1& z+AwMeoC4%`?uao3jtbdoC+9X{6cRE2n>dDUN#wo~`3M6nB)pJ3WO%~TJ7j>ZZxhs_ zQ7cfR7m!;^$WGipCN;XbC10Y~#@i<@)sjT>iNUwjtYp)MXlT67w}-h;5Jx&asN9E6 zx&JkGH^q%q%-y0IdhJS^Q)73JcJOAYSEuu}(jc!d6iEmWQrTzo7>JC)RJnu-!655fh7!>?bz zI*X<~(?uQ6Kv~SFg?xo>zDq0W@w zELRww(h*ZLvbA}G+^PjJaWS!HvhR_#qVTAjKOnPfZC5?fwb-?`R0;9%?TAC*B!E!> zt~G_hbc=2IQ%E5|7(}EXb+H0~!vh6oBs?)8s@`+=uqpxK2_)jxSy0#SGe9N68XLs(lh=sfQ>gqJW zYkLR4&-Q|cHZ}mmVu!6WAT8WyQi5Lg?Yz$Q3IOQGlsEklO_=P?I0Z`NqJ$=hJ_Du` z;5e_M2U)xj!!i(QJx5JkY&~!T)}4OWeC5y80}~Fgf6WElpuvZLb5bn2 z@YEp=!9ZG}2YVfe(C{k&iPie$%R3kj1Lg!6YXH=_$wmbV7WLq1_HtY_q6Oi@!Lsx+ zkez^+jKl?%1QG07(1l&`r~@+fHln{}23iEbQ%8_`@pjb;u$Ki1g@xg= zlOT=&fD|mZ#iBmIz8iz+5Q1R=IT8SK9MLaVEK32{$bG2{gSGu5P3n&>9qr_Ql$%<4Rb;w!&ls`wJue1wd9b~1=rdVAIlv4(DTI{ohP?L~&40 zI)(Bpi;J8F<2$C&f!G_Cmb@-czady+@ukw%Si#uOMLP((WoO4I$=hWk6!W~v80;IQ zr$IoA4FOA}XJkw?(HeXJ)~HrM=j>yEoC1ij&B5e)S-#Z zNxVQ&1DzH{5ym8SOWUiUd2R(OCD*<<;3OxJ_!LvQQ$xu5(L^L#!R zsmew*&J0~3yJVpTQGz0%ZKU^&@WJp%E1a?I*LaXsdS?5F;;T_MLj<`Ga{vfPipxeN z?4oyb2mxmf*{;uRMHD!gi2I;k861`4#c*AB*<_`sZ*b~5fFFbi9wIPTW}j`NB(F6E zpeb(GQTSW~F$iG(G-DY8^hPS#?x%ZqqPXyU_4xR>splXdKTH|)f*KqKJh3SuhXD!) zu+CA%au7AZ2&XNI6MIkQn#t=WXj`VIrjVcpcPi>^IRLD#+KnnHC=kOlLrO-*52%}= zMU_$99-%0|rr<5JcbeSMq$K3zpy!A}sMxEj2X|NxLI}MHhVYQ%+85QPGvMX;2Ed?5<~cM0&K}eUtzv2%tmeRX=y; z78jM(6Y(I{v4fEW2(5E2w}FBgd>{}s<*=_s4uu{oL;t|)+)899!QO$IJSghlJ$Au= zx-~9j5JYF@InHp}-lvruD}0tI027zu{+0ajV;Qtac8_oDy|Nzq-zLc7Q^K$Nuwf(C zW09M+J9d9>i?+~6h7bu=N4#b{@raA)*m(PR& z4PMg56GG4Law+OyLoFKS2#djdV8FxeK|sEpr^$l=aerP~8r9`H*?WS(A94fY%mmhj zFNXv{Jo54zY)Ex4`vm?%^fojg=u*x;OD!6yWQxhVZLRRwDM&{}Mn;-mk%Y((u>FXy|Qh*vbpniV|wbUoxlcqC^;{cxac`mMyg#~L+^jI6K>+jDr)1m=G4v!iQ`4D#T{yv{v#59LYFys&df?*NH zJZKrTwESPacD|=6;yc6y7HgpmMyo&xa+}Y_(boQ++R1bx0I0{x>QfbfPzMy9oNge$;Q7}_2mZzW7FiSySHykL6+zkg>G>A zqIFohcU^Q zYede)7RS9$+*;PU7*bc9RIVjEnj??O4Wf5NeV6K}1NXakeKdZE+q%c^2Gn zP5pd#Y=)^@$Uub`s+ZwwuUHoCcz)gR3<1q1i?#8$3;7R0B_RM?B-e?K5Ae)FLa#{K zo-nCAt{4&FEh4Yb&9ei$p6d;$zle;wiM-kQH9py2Y*)ok#t>(IH`Ei`Pi@N~B{Do? zZ$OTxyQ1B)z3JQIqx5^+ERP%CN0X3q&)oKa#HC_<&UPjNMOCG>vE}JD5$t+0I5eoA zd;ZI)Fe#a+rH%4=P76ndp??snwE-mQm8-I61F=&r$6Z>0lUO$&_H7`xzP0uDW;sGU zPu`#6be~I416qPS!54^DQ8u=FdwU?k_yP2yM7xBP;X=8ALTAp57{{4R4yg^v`zX}W zhe!SLfVgnHK0s=SS z>_86H&husS?VAUx!}*=z$<-H0NpK%-zW-+W73dEE5ZDa9Rl+Iy1?uyOKQ6hy%eP7# zY%T*?8tA+ghMEU&cbgltejT@m?tpK(=y_}QF~TdA7N0O1k(*-dXx}&K>u0IVDV{@X*1{dZYcEJW$ZrEOyh8=&QGQ#2dCehy>L1iuYwzCPM&8Af z)fyzXE=FzjZbqPz7XxgxT5%0l)dTMyLgSnvushb?Z zl*c$>5y@78yYcq&qpICU{BYGBq}F5KBlkw!MTm+h6q?xcjm8{lszJbzdnF+S#hT}` z4Tqr9GYx~wNe*403$fxy;pK~9=*_#6Bmout60GBq$C{gF5{h@E$KGG>UWd9JKd7OO z(aH0DU3`h5l3SBYZ9*k~PEsuGQ>J)yy@)n!;=`~{-oHpOEG!J>blWELxjcp3U zE+eU&$`#*rlZ&^e5_*4XN$Sn&wW~PV80C*7| zs3tyAi1Z-SffTJkK{!bs1VIB49oE+m2US4$8V|sg2gtUgZj)r-7%;8tT5!byS{qzk zTxc{9(oF{)Q08F|%B@xK6k0k+G0$$YLCuIjh@sVhzlbz^z{sY*jKTm+bar6@;d-cD zXoRl{r6LEU1`wKvfuv&Pqr$fK?fCeXW~AwQ?T{3n2>1_A=Byfsa%xn%ZJO$2C}w)- z4&prWu=2m@W!@GeFC=EwF?A;Da!~FS%~HCg9WZ!5ut+Mi+(Rbs!(Y@t#)2_=ZdRPT zoe++JsHsn~v2e>TcXW$|MeeyCN+t1V^~=4r6( zEDJ)IuG0Gr(v7wyPP@M?t2eUk5G^18xhJ}go&~4E78XSYBaqQ< z!At_o)h80Ry#FXCA|*WhB}CvFy1eTkX#+Ayh>8UuqO`TOMI0s?L(2kQ!053Iind-h9UfqX7`Km_26Bf=mcuEhzqh#bx{%z|x9( zZUUIw8m3HSpz7%W-xu+8GB@Yg8gXU08XpD{#ty${?!cVa+$%?six5!Xj@v6nAZwjE z9UdBL55ub>ESfTWEq(8e2a~gD$<+fGWW#l<7-+B{!6-TJ;p20tEE4u-_2Tt?aTkNC zUIPCad+g=u5e%sdB(f;@O0AJSxemXj0n zymzS9n!VBqqvEnS=-i8ey8sGx)WMBE#t3bNf*QcJ$jsQ7YFEl2U~0+~z+SHj^{;~y z9a2k6xW5GX4C|{y_surTG`VTuu%@WZWNgBvgWG4|jy?~y58QIkq;^pI6=4jwI;@Cq z4SN}{Q@`GQG}0;6dgN;ju%LK`}BWx2&Mu(ch{3K zv)w44I{>cBwzA>0rZfNbs?8zFuU51quVb)X${^1%#jo*}Eq>Ntxu6APRrcc_v)7|) zPy0U%G~&LnPiTL1u+^P0T%s0eL>cDuS-LgCqedZw>M*|j^^>STBVFfhiqg~-7TvM+ zu$D;{Ez0{hZAp(!9H-cUJ9(va&=76PYM=9QTHCIAgEN=+98oFJ*=zVme^w$iwlJUw z4GSAtFo9~WrFJ285i0e+U&8%8$wv~vYs_QHYx~LB~FFEgvv|%8noBeAmMgxrp3iDc}AP82IxeLllp{ zuL&kY8@D~osqAV!Z4fSRm9!k!xJC88S@m8$$%&(XprPDs$1k#p;`Q2yd_`P8T7w#S zP{ADY9>@1NinWl6bNc5$@OttIKkv_vLjLetP%b8@h6mDl&YWdDRj0-l9U|Lazp z<4eX!hMVKU$bM|6RCB_QEcWYEP%#!=%&=;H!yu{s0D6j#RL(p%a{TE_Q@SwlbzSln zNX!#sl4Y}(!W!RR;5SQGi#vg7ersmEsl~%7E{<1=HvC>`a`zrPFp7FcldfW_e*7Tz z@VqB~Zu-+hGLb|FN5>nar01xD`%`mtxY4UOK~th(GWgp_;+L;4FwZSqL>Qrjz6+x; zIXOabNP=>T-URkZTpBqD`4_?q_$7NZIor_!0TKir)w8t&dS<5}5+Z7l8y?804t7tF z6`j_m+UVCE9UU+Hv5X7=fx3v_9pJ5(k#Pw+(V4k9?H@&89gHM1>R?214vzV|9A35( zmSb1{ueF}-Jw=I?n0dos29K6;iZAF56}O@$($O+&wZ#C7FSRyTa6S2P_2+$sd8XoC zF07>EY$vki8MJm3;g4I`*cd`R|!R zn$VtOnX#^iCsl>=Och=%d*_-rZzLqJs!H}=bI7N^%D~`M;A%$SQl=LS$3KFEFzlDwe@%cm#QThl6TX_<&AdLVB!{akM-E05X5^r23`qu9 zU#r`U7ds*%!Tcl-+8y8u0ckWeA_APGkZG&@p9%!FLKdB{5{F3-TyF=N?idg%hR{k! zYD_oH3r4^nKYTFla?<04%?Fsj)EQESm@U1?c-Goc;70M{*u=_yl9SwWG}30V$EorBb$>yB5G6o0yJ=x zRKnL9Pli?Q&MiD2`t?iZRSX3csaR@`dzF#Y!K|RES=h-CE#3+jqj9?VzAeNtd3vJW zDm|U*(W7z&h2WJhT=TPYw|_;-b=|$!qpYJNwzxR!l(S`l+O&Y$4k=|rVNeI-mThoA z?O-|h#568fC zd9(^te)W6Ku;9mc%EJB#qM@YcCMD6EkLST71QAy4%h4mHpcwlh2y$A{P(=Fdv>OP3 z`Ov*?h?X(!M={EOJ=g#F(^jj>XnQk#_L5i4tf0;|k1|0f{s{@bNMCPn^P#b8q;p~ zgow$>-z@soS+frd+ZHod$K9}yN)94p*u8KmPS1NWzoo0=QTzPrO-q|jG^g}HD=bN$ z-dOLuUB0(;m4M)-sE-$MAiwt~2qV$FEaSC)Y#<~7irRUeTLRR?Bn(%7cbBO{@dfkt z%AM)>&&9z})ay0f4v4}|dr-&*FqTUaSh~0wj zx^a8m&BKiXB;AMH)A$12lw+B>o@>Pjw7eiclUk2b&wLH5RnmsijFsfxM^)BM5)my< z1KlQ2dkk2wkJfyzaG|}zN||W8HRPqx#nWw5eItL?-OjmtbjUKm-nzWNK#pjs!!Nl+RRgQT zsi7v^H~;Gz3WQV7Bqmx)?3m($!vxd4J{HdfQjlw-U9ZKxe6LSjymJ+cOQWl1Y3&z# zmcdwej^4cdxm15`nh?J}29AptzqCH{ob%u|KYz;cMUs>h#sgSiP@6*a3Dix>$;nCD z>85^IjTjaab+xyHqN>#+eQ0sOJ#K%0-@O|whbf{!#;u*VMq*wc2A%MN%Urz@z>Bpq zXqAhw-jKN$Ohv8%2hcEZf@5fzS;~tJ+B#Uiz{bvaW3Ct2YcRDA0fk1$&uSNL!rlbR zWaPGha5RjV1m;PjK<*hv`N)o^fp2DZHYFz~9CH8UV=?#N-{jJyFnu+L&hU=H8@e31 zx8C3J`Td@yQ_CA+zC%@h=MEJZz5_QNsjNLbJ=2;2l~8Ee!vT2#mRgYg?HBs_A(nxT zGmJK&Oht6Hjg6lmQ%?f}RaQzg?A_mj;6-Nd7nY+{7TlG&%v_bC!wruruW7;L6ws@H zeGe4QEI!-gKe|2EF!>;F0Aw@}Y=QRH5#F7e_O?>=>(__@ouiWzIP$=t9287JlVx2> zgDNuQ_{8kbW3on^f0r(f`uF6T$=I0YTBCpo(+jHp?_~rrfR#=xQ;Wr~ zqubBw+!u?vLjPj%2|H~D0nYxtLifcz*V@=S7gU2>J<$Gj0VPL?+;2fNfXjVzz<;6t zTUWJrlUo&(c?l_+!A`!u;s%q*q;0!*4_i0>wb?PCZancC3_`N z$ev|1wM5g*$j%Pgqp~U_Nj7(jN_LWLva%{!89%a;S(45F^{xBdr{{E^b3Om(dd_v7 zI~DQ!eLv&q1+GX6Xcq8Z2;t=)gg4 z9^xZ_a?B2Kz`sFj2fQ#3ttXZT0m^^;XoOIZ=%}ckv0PH6S$3vbJsSp*tXy10))l)M z!Vdp3Nd8&ad9Lbz(Hp86U0V2@#x3TJs*$X#zP;p$ z5$jm_AlyV=e3(_uwV;ibF@Zxyh;~)KTb-r>%g!ri>>nQ+7|pq)js~T77zwSf6yP@Ttx~Up^^yb6CdBcuwR(OKoCOJ#u|RsP3A; z6{EUI}1Z6n%~Xi2iD z*w`QxgP3&@mN7WC+W@5iog)Uy_HuQzvvO+5j-OezQd=IEe5`0R6~URuA@AUawylI# z6o$i){qMsfKqvw%Juw)p1lWNQReyi~&G2wIrW;#WTm|aETrLJbvY%G_L_!0wdKG&I zoHBw}<>rK`si>050>R%w*Mp(R9xOt<24aSdb&rOgcvXDrKC>Vw=10E>w_LLiG1i)KT7cc4Xa~O)?ah!c}-D?KsUmy4SJZ9Q1p;jf2gv z=%|BDAa#9Y>uUAeC0h=dRi_ImDDs#8;d7koJl*Wj)El3-Y(9BRRF%CQ$#utjlyl2w zp7dtd_EwoE`(B~Ru`>`S3Y*bv>dbc91Rw8_W~DpZVMp^iY|GrY8G*)^<}B;i%4f9G zDkKbB`pCq>uWTz@p=U-Kg#VaH>U)eyqxGNttXcfpV5!;QOHR6%&6C%bt5?A}I2X2T*#cI9 zflSYf;}F0-vE2q0eR{`bt9s?l`W?q#aa|o4$W*DDHkk z$uYGjX=5kzL%Opvs62@>vyE~nIoqh;&F~uaGKop@IQ9DLr3)1HnrW^T0rtO7q`CjPv1tLWk$ohe;Niqc(6uY+3WhLWQR3W@p2p&va-wL z3hgzLCDqIZye%4WrL$bT7?+fdm;yD&j^TV`mJL-K%aJ`#qXPnvgK6|yKA9HAx zdEEqVU|9Jc;*&5gM&Hmn^6=$LHr$PQjzcWm+{tJ!;^N{~k8!Tm%lps|Y6y}%62GuA zf4HH&-(>UeHGYU!Dr$Vq9J3%&p4`(6iFIIiiGHYmeThtiX0+O$k-C7S?4?*?TO{&5 z`k~oT61Vie@=v4Jy{XLBPrmcYPcJf_V8kH>QSC7?IZh+VV1NHA5q+fGZxCieW{-l? zkt2TJzFnAK2wy`PN4ZLE(HjGvrcJ#ZH{@z+PN*d&>=Jfv)pPlh*XVVFS>N?CDhqZ0 z0Zb5*KXhWM1$&C^A|eSf<~cgs1qF=&S!+(qi-1aknEUK2PTs{nDmkS!N4zliZ!Ks& zi;ayNkAPG$HN#+>a3ZN1nU+vcP?h80-@4WG#7v>qHb!2?wPCk!zXD|sXq)7?t}s)9 zz9`zP0?aZnZs>K$!xSQhfh<_%K0LOyN07IRPhbjKT`q?4A?v>O77u4^KFD zW=MC?j*m?w7A1()z3EYOyEzizOL5aOa4gSkb@AIj96QY;ODX0uavN#qQxC=K_l>fA z^Y48nrf`;w#om+UNp^3y!fb2H@RLieA3si#az1@JbpQSqo64O0@z3CFTyg2%zLhKY zW*o=EOz~L!SqWPHw_%mfZ8%j`+vMD(d>Ss!OpqG4gesKz%!#h}6HFt-Z=gyem=Bp+ zgl7wH*qY+y>GV0+A>F7q>w_`Ez>N3AjD3FBPjtTS{|=ppyL7OXk87kjTLZPuU)z!+Y=ULeVW2v29^~>halJuP=%;M#~Ah|Y^hcZQ{A4Ul| z9B8IB*^%5M+FBZ^3CjJNs`^P%@x`dSrJ>n|Z%PBXnQq=@G@TmcdTu?Olr0(3s;^tq z);9XtKD=mUX#zH4Gxj8}nJf zHCD%UerglB-7~BsVJ0M? zoFR%!7-1lB;`D*a?rweJC&k&Ahi!+h<8E%Qi^}vXT>S75a+@s04QTzNqs+~f#0Cca z0sJe%(jNN`HLl0Zc>I&^uE4sVY6u}**Sh0*$hB*K5NJ4pyUBo!05u_en&6jl0q6-# zaIoM!`5F(xp5TtAfmgHZ{BW|}cX{;SCSj-@gOC!?_%b0;d1l3*|ChEg_l})sU+lM; zT(1WnN&4HK%Q6)fUHsblM%H_2D35jYJ0+L;XjW-)9ug2R2udzH7l|$w6$|bi+3nKO z5%IfRU@@7Nva`Hj3FsH*(dN1z*wOIf+(&^qd+2*C%&Pd=LK^0x$DDWJ);#{{!~6;L zfYn1Z`&PjhpMfrLh!YO&KzL-QS+9A<^$*?wdDF)wJM_XaG--#9#E9fuA*Xig#*#s( zLXGcMAu>#svOh$K`U(Eq==QIR^U7JfNxOHcY|9i^E1qg{E>oZniY&Bask{P1j2V*8 z%G1|gG^Q+6Z$I%a@i2e7-)$$-*EhBDuEHpj)y5~iW#EcWcp9S!ZD4t8LGe}3tlzpP zP+HpyJ!DaG$u6+)@_rQ;%Rit0^PB(szn<3H7oi^y|LsO1c2wT#-~UlO5C@u*zep7R zhEDpK9{e(0|NC21@A$W*NmVU-Yl3*vrSM@;Kuq~ZT_ z+`ym_q$TtEV`^%|Sw_&!KvjYjBt=8z1?}oc6=!@Nb}ul`-wA9d7E$R zuHI%QNy<-Idvcf)wo~Lb(~efqx~5Wef0AfDlvSR*w#VgqiT7s7Rwlp1oYHIOro56i z78R7y&a5`R`SFtRzDd#4Hy)e&a->+7r`#P!4^b}f+g{K_vC=2ZCvuFhq3>>>&NiW` zFZ3%J@n62=ZJ}3JyclzjSGiHqWhQt;H`h7S_~0(4pwgKlO-ZX|q-NZ@etnNHvr->G zsm1x$6fxRuJ2(d)C$lA0>IhS5q_};`C5aTKkr|#mxdG)B;Wnmp(CDkN2@*-HNkyE+ zBy})40jA(wB&KPg$%3;*c-;)885Ab~nM2qCdeh}L9}O%G#HjpxMf~_E_p!M~l)=j4 zRn}Me0`$wq@=lcJ>=L!#PGr~il<%26FSLK7y-yMA_Yuy(51ZRY{iRvWEbQ&Lh1D+$ z9QpG#&AR)8ae*|OmH*IJps4aZ9!6)NLp~#V*~dnDpZ`jgd-g{XsU_O{aov?-Evo=J z0~_sG^CN#lpf9y&Ue^Y06XoV*aZ=TraxeFsZ!)ib%_hK<-HNV^1%}P4#I~Gi}D^ENoxvUJU*Ra+z(l)rQnvL(R?T(6gH%;9PG`tA@DP z%~#*Y;%9p&NNzDDLvTE?DjcLF%kX>(deBU4Vzq z8&-XKw$U=@R%B%0IhLt_l@i)N5EV&yO!O)vGO6B7_x4oKRnK>iesL!HadcGMd=?lo zE0Pt{UAj?Ky6VBsy6^d6uf9b+BES5}DW5cW)WO-!c52i0V~rju9^bpwg#3&L6Qb3o zKD^qhXW+%Kt?2c59w+B{C+DOu{o(6iOy#1g2e!H-8Jwo;DCkuq8AnH@swkeGmG@9g zmkn-Z|L9AwEGM$(~LYxu<44=?d#^(ACH3-dXE17?bMZD?Y0oJ9kmUN`j|j^+A!->#RAX zeJ^!5{%OlXOHm-=Shz*=?XZstG(qiYPs{4mPQzUFfuV^q1psf6;GeWT?IZPyMBKdG>P+Z(E}_rmqOiFkRlr{iM@DJ#O>#X-0e5U#BID5chTsDVEwHrvATwb4k+ zn=`2qF>Iwqmkr<4RO~6v6clp$s*I9n!?g^M z(vKWDA_rnOmMow&#IE1JKPVd5Y#F~+SWQ3wG)zkw*W#TASLswANJ6e)aEQ}_R@#8Z z6z2~*8q8hsgOFjenh73@Q6>wd3qU5(!w?sF-Y;Plf1SY{XK%1CyHhy%*OT=;2wStL zOYP)W*JBW~QRTk9#rpY5^Rx@DZ#>=fCinlLaMC1T(Y>t6SR!tc+Vtk&B_AdFCFa!3 zWMmCq7E!xooeyAwneFYR+^FQSKDNGRZYWp3X{WKV8ZE`G@GWQ0j)_W3 z@8y$_ylS4wf|+x+bvt3M=xjr6u>b!KV?u??v^0u209F-|PuS3aj(s(HH@*#}eP6_s zly0130i(9@(N&}zR#k?uGcPG%T?vl-L)|8K*m*XcorhdO_TbxRhP2H|x_7b-Db}xd4WZG$YQtk~Q_U zLu)q;;S!OMa=|`KBfXf6Otzq*gTw7C3GUvE_?DJnE9Kc$P_jI2 zi3WGr*ev!Vh_+ik$#R#Ap?VK;NITlGQCDQ_u|nw4s)7D~g6swI%1~qC(9Z$7-i7#@ z>(_XBjZUuqJBQ?7kG8EjQ>FlEPZ7P*3*V5v#IVooi zL19E^XLRa?sjr}8m^fbOuD4#<1&K#DO>fBv^G~p4l>^Ai-@Xkqm4`>n2LuE#nUW5J zw21=qjgR_d;)n4vkf;x zSZGj4_gOAcy^3(5*KR3G3d)MD)nS)~0uz|`{-Q?s@%qC$-WxpieIh(NaqReQsVV(% zpZNt2S?hWkOq>^z(*SQwRX<>CJRJ^GlF<^#3# z3(nSNER)xaKGBt?@2bme9U+jC`FgwSbDcw<=iWuC5muoyolQvL^;7gXa)__aFrkCf zxIOEHFq5xw)g58iv4=+^KRWG{hcj^8%)aNoJ z@Rd!zqLg-9z35!CR!|~KPI;$i*ND(BW>G(?RR?yR2(thvLbEIf3*WBs9Jo2>b-jxt za_BO5Vtk=mDt(*=h!L}?o>MwYYZjkScrr*Tyb#}bl5^4`Y%Yc|xHQq*B4BkXNA3>l z<#ZJ>rY%dkhdzJ)T3yY8;EE5(sl9o;y7Z{1&8wkUwPXAO2e<_#Z^Ppi}_elI9KeAOku8^nmt4VN*byLVkr&basWk6kFkD^9>An4BoCU zZ={cTc(hCxKPvFGv&)}(*_sPlK}uy4Alxn*5O=DpYEk9lMNK~)K^U%VuhcKKe^y)3 zmk_&mB+~b=@o4wEZQX4)amBBHa@H(HkiM4nFN&HY;!%IJ^?MYQ)K>-%4BE@##i**P zdYUY>k2#n1j*L?8;LXJj+mPV1JYoA?Jnb+z1ArTY4{T9bZV`1$zJIYhlf58s@pCS> zxtrxqplzk4r77KZ&b0qhwg0QxHK8+p+p%krTG$fKtMIK%JdE7a+B`~$ZI^NQM4%L$Z!%W%fL(spt07j1zS8N(%TXRBn$o}$H_`BonIP0RElKIHY9+8yjTlbW0II3fQI zqkhxxtt!50SSTTywn_`0IRWYz^2h*Ay(oUv|739a?FS^=yh!r03rXJc%X9qe!^Ca5 zIgu|lo}6DD9smAxr4yA#o7pNquw0``Q*h;q#4d!)1h&Ac6+4&5Z{&;aS`o4m zoLlaqKgU7^rFcxkuNescetV1xl%1{%D9`GSlV*w?%SaCOBWKx`W2NNeu1cSqOiX!x zV&T1{Nxq`wct@&6x97L*-u8{GU+R4<`|qFW=Lh|FGG9@!OWduYw;_Ka zWpvXhFo(4#tF-1E%Z)nyE#-e~tr27MZ*jZ6b->L~J1ej8tQ7_U3Ka_Kx?~@&XwJxI zW!Hbd>g#)W>c-(?AvdGt)jT{t1drt9?YVxva&jRaEehU67n8E#;PCK`Mut4s4!v@| zNPU(Jqdd?O;Fk-V3&Y&lAwW{Ch0Ykpf$)`d|GqEmi`}ZaFy+Op(Bb=N`$+ex{rwse zOf*wIGAlldj#ajuG6L;s!R#=r>fwPf_*lE!vz5T~4aZb9XOFVLOH3A{T&TFL=vFTO z-nhe%ceeIo#;bLOeW-6H-31Ch7zL2&$vpaACTZI9e6JkcPsZ5GI_bX|W4d)#HhX5Z z+2dGbNXfhEb7W2T2$QR^bFljPocHgZ{N`4aNhO%wQzo&PZae!$Udv*<_uqhqS2r2y zlzM#9qv}S-#%LR6#e{8%^Y7&ag%+;vw{}%H(U4I8F+}$DrwR20>6L2&Y+6}-)xbHj zGxq6iMU{iz25JY;R$HEGmm`&rsL-JyYR!3GJAf*GO=6=<`vsg+py=zj>dRi~7^}3+ zl~htH+IIO6L)g&+8yFnoh6^%!Q%rWAoE^_I=zOz;Ynp7TarwamzENky4aC{I#x0*v zzPA74%bDNSaKFrS-P);3VGVFrIW?YeP%!mQ%I*j}T;S4?(!j!?$2OAaX%a=boySJXOS9k<}6kZ82`vx$0> z4>wId-U~8VUs3y+KZe5NI0o=OxJ@@-%pQ-3q(7mrv|sE~)XV2?j-sZfq)hxW1-*^wAD4`7X+j}?EtUNRm1u`Z9 z^-#2(x3bD_uL4|gvo*RQF>O|_#F}F9#I^mr`*|I2SL#u=uxCB_d*}W9pwsEU^RQ~W zfAFwm>DF=ag+$>3Hk$Kkr>)f0tmyGqN`;V%XN4kweAqbkv-VUyv)se3W* zkT=MoTw|7fF0alv8(b>u=e21Uwu3fZJD@W;TjQwjej_hUuWroQI9pHG0~Kid8FtZ& z!;P;jbD;K4Kd;P?=XGpZ{vv0Wi!#$`^1qY5{yIryro$a2N$gRn-c@~O?A@mWS=)ln zo*omi+|9GIYdm-ER-9f!ho`?$)07fRoV=Oa+6QumQbyy^L*g9_#a-pWCw;v7ZYoQr zyBzo**v2zey_q=$U|V6a>?Rh~`&23^<>fb{i(BKLaU+O+?x}dD*_DlBN5vP8of3QU{S$BH3{4U5w`qHK^H(dB~S}=d1zsQXQ-vN zzI|H?vON&Ngtrp8@K^^I1qwpsY4*IjwhzuERSrr+uIRwsZ1e}857g~DE1jHpI%AzIBwYTcD%ecjaa z=}ldp>0^6yk<(^-#Hf_5B#ZT*?qq*bn6bSU-tGN+n@eiMdOy`&@%ZLfU&v&c^{CS- zJ+;5xoIVR+E}F-_>43+NhX)@<%G`?BRAw2k#yUva=ROJ0g(7_mwNV^A4u^tgsI9`dN;!h%{5epUAFKAte zBoQPVfv*CN+Q!f-n7UWIc<}xVyc8fWc+q9s?LM-jvZ|^b3K0AO@|XbxK6TVd)qq9_ zmOO(YvfYLNXoysv%uI2JkcmY{#4KUD1Ul%(wf+QI1#Th&Ag2(?aG*^+t;VqIfo~y>kJ20gAdc3qe_HkZ)7_fHOZ?|J28AvRBXUy!=$MzjyQkQMAl%tbM`yKdH=YswyoqPVQXBi2cuGY zXYySa#!hm1X86B+so*?rjij-lq$J_zw(IIyV(-X+^2p2ays0%Zxc&|g4s<+xR21N} z$=G~0Z5HH)zy7*we*UAQ>*eL|3O(ny#mPOobp85T5XA{PB!)>KmKx=DJbwB#&e0P^ z1bjUJ?(?iSgyyi4i@+E$u7nU1n%-69AUItEQe|PWGqW8#8mJ5z=;lUn??Jcb@cI2? z?bLw6A0vMbMfclxn6e%2H4U5KuK||Tv62ztwgX_5nOj>2LvRJy5@~?jrl+T&_ynU2 zX#q{AcXfk11mBrQsi~&;GytI3&@NpUnKAgs6}=%OrkDqeImojf7vjWe%QmNnYKZ#J zq9U$K3lrciklEwQKtvM*=LH09Ma6jh^o>Kt*!~zxLxv{0Ai0qtulcvl>JVFdq1?dk zQd$NpS)9~{%RVEQZro&DJn9&8W}a?c%$S>~^Dh{W#=6lz)I;aa1kMQ_xsraTe1fUm zg{@Ab#PB&skygOQvM;Q9mzgmtF=|Pl7{Z=4%4StqS!|K7f?3EAvK4+%s>jtThJ&ZR zH6_28YM@(1F0iyz)9GR$bnr%h6DiSioj|lMo(NZHAR05^G)rRn$f$VqD9W+H#Hs^G zGm#;Ui7i?_Ld+Rdf&Pdf>LFtc`~os?Gz6rjFFv`~V`6WAQjWt69Ivvny%_DAQIgrn zu%ADF-o(rd@NYfTS7Z?JVJ8Ain;IS&iM8CNfYcv^Bjx9N2)-Kn0WjdN(O<%qiBMv> zGC@fPq5uI>n41s9Er1vg?uV3+H5SHY5XyiY6Dx~_3ZKWf!OXz2TnvT_<`DJ~5#@-` z0>_Pz-eUz$d5d5(h5WXeax?jMEw-+^NtTcj>!r-%>*Zzd{)%=q?`cM|%kuOOv`Heq zCqdxi8`dlI)aShTwRV_+ICtb0f=&9ahnwfFE@JzC(vK3fXTopY14opN9ekn}(ig6KeX%q7;#%`H6~3$T+aCMg>?;#4Do z!w4egqen!V6?Q0bDDJ)c##94s_r>2AEBnF+ef$MwSLiY;U*JPZS7ocs4) zr|2d)FAjGLC;B^+kMxYP#IYoFZ)sYsmNMrhX7+rO$dOe+tNA5$0BAj$_@Eq1nt)JZ zoS!95WQPSy_QLn1hsS#CUy(b;b=ivT{LH^06Uvsh{9MYQiV`zP`a8EaY{vDnyv(=i z@?1)fo|+g7AB@nPhEIYWlq}e{iIEXJ^CZFVdV-*wfIa}~0l?iMBtsGjD-8{5Kq3hl zGj1Qy4m31c-oIpSgj%%3DASOI3b+<*6(IF%UY6wwg&ip<3$K2}e)t?qoIU~pGrVj- zYeu$FQo~s-t*cGLxMu?Q^X^gLszQ~P-JUc!@2P~(BZ80=-JL$q<7%2)Y0sbf^kQV8 zd!@16{K4Bp_um%jsN7<1uZ%5N#eZ`>+ddxq!`=_;x7JVaZANHd{9xn*d7GH-q_I4K z!ou@09vj{{`s7OONYXw;v6at1<3puugpFGmXi*wgiD4>|x6D?SzT_Na(h>Fz$#hd} zh~6^1uw+e2r(B%+xO7A1K6sRM`RVP}mBUV8PSs)DLtJi`sksoKs0m;$@BHtNIedOz zP%DvU<&BZwgh=y-xMd~MAG%-vJWuawISlkDtBM6vvTZ>;@-eq=3V^xvgi)q6_>3Aozydt>^lMzM?Qi*!7gWASuS0#Hx zk>91JtJ@Jb)6vmEJl+;vJG|lka8ZG!(dDM$IL87+p%dmSxMpF#0$2f~F`V{*+-pp3 z;q#E>654KUhKn2rNWB)AN}1S4_-j01YyzwjV1gWANVX)PX@ks|@JfL{OcKGVLL5tuvD(?&|dP(9F!tZ`vmxGa}pynjR?Yj{H<)cX}_3 z4ZFlZrH#@Cf$${-3(>0lP+e8P!Nm=ddV=-$;zbl_CHL25UiGxMsZBNRNP0Qq73}g$ z;PPJ}a_sTcsx>R*o_C!G3p2NQo-6)R*kKtgA&tl-?3uy1})h*h#mZ@cZJ z!J{>^d+D`Q?d`TJ=$QH~JJYk=E!KL+l5MyCD~G)gtM%lbZB#3Le6;#~!YxR>-9cvk z;eBnqi}QvM9Xa=BS3y+T%OmEp-Y&Bx-9Q~|Ds=>8#m$6r?h3%02~L-FTgGMFuvY1X zl{nndyP&Lv4^_OY#hd^N{aBZZF2{c2x*^@z$G2MC%iQ zOsKB1v8nMGqGMw2VY9-yr@sA`3$7B(Y_j3O0^b}iRsM~jvl9EP^v|;r(Q!H54_il_ zJzlQe%tBsbB2g2tj@=a;U^Ix>0x$*GEoSlHL{()aoUMqYOk%tS(gmIYIc%i}y*Uh9 zI_!$$4aE@B*cW{L(&N*XDgz~_1rOjM<2nTM2Vik@TwMQTZ@FgY2aF__>YjlM^d2RJ zdtoC2$9Xl|0Z7)vVaQBRR79kRF8MEPjrb)jWlYFm?i3aEE>e?Xwg_VfduY9K<&apJ zS6Kg|@mCHpj_8%;oR44jN5ws32#QXB?GD0zr_ag~;mj7vIpUm;@68t$l}ta?fh%;w zj}&Le?%0@^m!mq&9kh*`7Gr~&Ey3)mv)tsFlXq6+-rG<2NEHupz++hz-;>8!98M+M z7+-!|+TTCFZQG-ML?KyW{**Rzg6Tbp=i2||Ok~N?tX>ge)86kq>h8Bfc4bf1 z8NG?L{Bb;&3nz@zr95Rc^SdiL^WPi!`Y^+lL!Kf~vm^h!kmo~)&G+-(olLyi`Rq5Q z3WFOpB+Jb%jE6ux$kRzvJEr@~TlM4ZqG$1k=C$Ab)PD|7h`-I-eBhS28dc-l4WIAs z%)Tw%e)K|=4NZf*vUFYMTNy!#wb}#P5<^krHJkOhl~m5Ch>titsd*-sUOG%t{B3lJ zez-s2o52mQ#Kdm}N94p;mrO+ZM6Kk_2QkVyn1!r+RXL|tt3LZSZ|LxYTYM)E%Xmai zF$*b`bGliPZJC{^F!rfR*;lpAzF$miQ%~4C&c%ye=G$F16(l!4XR#y~{vE)SjZ1!M zFgUmD<@s=sVbzRcRj#IIfWh>{&|FdOyUQgq@&iE?M+>wzr2vpS20E^HIex8 zv1fDAtrKL+&!^3ujzKq3zY-$JJtwYAS{xeXlrL3wUJTF@T-I0qX!?(gE7>@oarbNS z2XtrOy`!$l%$v&|NKER^5B3>z^M7k$(J~vM9pRZX7~ZM-;*XS?GP8-b8Xk8XWSkNV ztyf)g&{R^^Svc4kQH;@ZWy8Jt)A>h-<2d-Dj}*3sx@!OP%e;O0F`4U)-hNw}VgDVT#s*?P za)okxiTRA7xc0l&6bTyE(7Sk%Bpt4Za;_+GlU9x`zU4_2E)2KU9gH*f+2!ij z{rKE?wXW~&8EDbgbi9BshT)ux-{D2s9hMZv?|T8$veMjwt6a_xHmGh z!PDyO?FqlnPY-af1ej#E6OLnUZf>m$+gjs+<-x__ov2d4q95OjfkiVE>p zJ0DdVsZ@)$-tn)H;`FU`=@*N*x}z;E*Td-M(lY;ilFAx^q{*r)j#N|&Nh-60!#@29 zS3*Xs^DkB^O)&rVb~=O$I+Sv!U*Q$_re12E(yOVMk-~ZMQu(TBrCC*Jxq7kaORj4Z zCISp**sM&ndb>BYX;Zb(43{>DDKz~NLf$uIouB#r<=LwOrM8#L%O}I>J|)JvC6Nr) za&HeP-9GyvZ07T^f*BmCQ2RPvyr?&E|Ew(LAh_*-Jowd{ZHYJ{zH{g6<)sC{a1_Bk zB(MW8=i1B^gt7-ZvR*>6V`1@Wr}E{i1&O8|5}7f=v&MaVCu_b<->u%J7PKz=d|GvW zF9ILj;A6g%e||3f)Jot=`@Ca|X={d*ZC$kHXK%|DOEoyg=_Rf#j6QF|JFQEVs?Cv{P;sxypC0k&N=* z`s?KvlxbD>+;wyhF_GCM{)L?(${8rRu`UkczQoiE^z4AZKp26#YEB&5Z|fbcA&{bQ z^iu*0Z%lA@^m}11gH>xSu+4Gg$R@_E>God z)2!;NulMB4X@|~_-A!dPRLBN(r3kDuK=mG>y8EzG##fuUk ziy%dnD3?GCfT0QRsZ)-Tl2XyC!>GLqfeZjF3It4GZ+{c^e(&1b5A%i@f}cZBa^^?U zlUpa}JP8&%jN~AmfSL<3Ey(o#(oUfma)h*x45*We6x&1azwh1S#pgkY7Z=kBh2Vbgu|@X6=kZvX()Nff}9I3`EZ)Qco*sMOr*s*nljfs+14A3Nan?6oSL9Qs! zWjOQE6Hs&C7r4k^wE-^%3{?(l7>dkeu`&=gR-=Rtfb|f>xsX0c;NYFi2rKJE9Zi@} zgUye*X&w6m8Y*AVKOD7ERh)=d0o3pf1feNowt^8xCMJBGQmPM6N>-j_`x<)`?f`h) ze`aNExI~~-karKYVYC9o1~I))KdfA@HtjNa7E!b*^o#5c<$)PI->j#si#;tXM+#l! zWy1Y?XIV&=^8(9!bK7#pCAhYC?crnXTd-NFB;_u#^Q(61YBkDQu83Zb%X=2MFdJIB zFSw#?u{k<A=ygQM?==aX_r5Gpwu z6|`v?N>@O2P(lFQ1%Zv1g%(#`!gehq@oyI#}?cb2$699Sl3ds0VEeIus>cyqBO);uy$+ClsJPd6@pt1^R;S z2;Zm4g(ZOD$6<;K7N4BsAg$r)M#LaKeDr7=CmF5(USQTY4aHu(xj?oiFhm&~a@9K` zdPmR{;p~tUTy=$Ec4T4#?6j5Z33K;Aut0TA%r_X<_B!npkFC!xy9T#NXmhc4s9JOW z<^o_`aeUKm2JPF8qIsdj|EErs_wOobQ@!)8aBpDbozTT7Yh8Xaks#m39qlzkcScRN zNnEcm+1#2C!Bs4k9hF3{JeQzcp8u<9?T;B+^)V6BA3jA??gAlXJrIPurm?>i2<}O& zqB9n6Q>LY`6S8%&Xq%non6%&O`Lym4Tbs+_&AI0JA?n&xi@g%F`&WCWpEnEYwW_g} zk(83!j{$ti#LPy7fKE(+7{k)2u=9GCZPl>TDwXDvpS?F82pZ~}FhjZxh84XBAs1xn{K60 zuV~AV4)?I)KfI^H3T@|;XMl^7AKNC?Eg`xVT95cm8i-OrfHNaq0a$* z-gVJtDOB`6G~u{sp#21C2b#_-I5B-&di;1h6j|FuMUx@U#VUgYF8EGWcz8IWmd?zK z9$*z+a`W_DyuRuZao%B2J=&2=57cl%F1aZ>EyhBke(|A>@SVJ*I?TGT_;>^asPnrL zifnUq2qRkHF;HontNeKa*{HwEJ&%nZtqn;hS%~Q@HdL6&=**y&YIw4Z;uu-AhW6doKp%OxS+^S}`_KFuzD92K%iz& z8=wdzbiy#+gMUSV;dD_R#QM)|yN;lkvA18J-5y*!uqyb7?}Ub61TS1T;rw0IcNe~p zP`Uyu0hba4J2Hf7SHHYCVqs;q1)rm(6{T-%Xt?{_?lAfn$G6>Hc4=CuZ=Q7-X#S09 zQ+@1Fi!q>yqT{=!y0sXKGDx%CHqw=wUiQ>vXSbf8WRF;MzEj#&QJHh<{-m|+tmtV< z&%4yZ{4a7Dxl$$e`s7phXez4gp0w0P;sEA_K(#hHcB}J;ORh3zPLb4euLrm*5&dq4 zj$5e?_XFY211Ga*xw*iIvE#t<05-2C#Wn!Z8~|hB!!SuQ>Uw$c2f>x;#m&B|&}=Y> zxm_?G_H4iOBY7W+zD6jU+Gk8Dc1hNnd2$-?un#)!-ez`sb-`!ozlrH4rcCMv z(>Zz~%pgfUp(J(JE8#35#C;GYz_@Ra}k0MNa!-PqN1W+bRR^kzkAP~t?(T; zFqkmzT>l$)VLy}U-5%0`En!xa~YuBrX{^Ia+mJ0Ly4UZ{{OO?~fZ3qb}}1Nd~{r`(-^jOxMnqE7LNB(Tn}INBaW^ zpAres%L+roWF#bRrM+{>d?*GYLDZM20fOa|s(TQWA3PK!ksIWE_KwtGC~!@}76jTR zI1+TVdis}e#lKi8o$I^Rfsvu`z>p^GgFE&Vj$gCxmg0$5sJqiX=UH&DL@~^L} zzIgi(pPc9Ht>{j(fzUA225 zJf%0I+0G3^dT3y$y`fYJLB@Zd4q zLQQ~0K}6?7#CS{chhIZqW}7#_1X4cE^EhQ6@9ymAdNX3Oh%^21>Fa=j;p)9{Qp*yj-Q=aS)PCol=30!)wQ*?b01oZDv4+Xl*Egp=E{B1<_XbL)+k@oy{A)7 zYifq02*b8HU-Of;nzT@ zpUY47abu^E=hFRhmG!tOJuk321@?xJ-@ivnzEe_qZq|+Z)h&C?Oos0xiB|#`+IoB= z(hdpq z-q`C}!1Pj}XL`9p`IMPia3Hs>S!>#v?C~ACGG$q&Tl~sp$oToK73TUsX!pU}Oa(?Q zm_MuXV*+8Oaxi`|edSE!``ZyV9qunymYG0(1D#>n(ib&Z&&2Zh1k`!NZA)-Xh;SUT zf-jZqxQC|*i*xk!MwxAKR-TJ}+{u_x2qd^(F;DcmLl~!0b9>(OrKWel5CeAt_d;9M zB%G8MI!H+vh{5S%%5&71n~+?ghN;i91@Wm$d08BXJTIJAiF*QuF;heg54`(5FdhfC zP)>OH<3O72C|=Tq#b&7DcNXsD$w08ElJfHxvWn?(h7|q7nd4ydO})%TO--}6L(%Zr zzEGS{E*)TOssvW$U!-uL$!{4aPa*wVXdasAbj4YFDyjBnVZ{EFqz`>m9;ISNym zP7RF=_Rr*NWt&~f%IbOQfzYUcFoxDEQ?<3e{ex=oua37}>F6Bo%Nw$6IflRH!k-0(tm}&{A8zNW0)#G z5p4n@13kUMBpDhI06awVklmf`aAwk%DjUj-t)b zNR=oH|7qVvMCK5|81SS=A-O62#`QYVpOo`EF;XKvv#sLLN!u zw)7z({)@>gQrTa-DCpzJ4JW#Xmw334fP8b(FCK;j=A(-6zSY<7jvGljxg8ZXP%Ez;T%nTk@~D+?ScCVoeaDUp6A5t{nLAv} zYyEKuxGE&LCFv-Hoi%r8ulBZ3|B`x}56P11l#gSO7zS2te&Y2YhdqmT-shl_iO2S@k-%4H71@3K1BhYori6U z3u(v_?QR{5ZGbsX?P2~>>jaNep#po)G;bSf7!cdJb601sjV^ttqH|mo*RF=;rH65f zvH7#*D_#lUTG zZ=X9#Il`X;hg(}43&6HlCKBglVlkXlRZ|m?tg5QQhcC|3Xr5$b2%DiEnf^_^e%50S z{!&Z{!%|m#$n?&+8k2E7y>wCOzC=$9N1yjpTiu*~Aj7I}@;rB>KCI}dN>X?~6nXSz zcR=&(i&T||rMU-5U*jkJb!JVOo&3@kwXf`v&dw$( zX~K~NcLG)sfn36NUJfuED10x@is0XliitVWh!H2+2BYlyl}=*&{6jzezcGqalC8iF zJw54MUu;m)pt9+c?3h>Tu@&ZQJ~o{G zyr*csIX6S=B&H?w7W!nC@OKudMnwcO~wk#vkdo6&=k*BTz6~z z28gz~85eTJ1Iv%LMZ#WJ_ewO{%6-NxQ^mPfm8C~9}pBak8SQQFVYXv zE>^)*nj*d&V8nR~i$4MDoffPJ5-qC6=;iY8of4%)(XK3(5(Mz%c3?kE?bv}jWXtb$ z$SaAbljc@De|Rp;jxO}djj~>9y02o`crKuIVaULaZ`Hx2o*ZAtg!g+IDLFU-n)StE z%@PLGHQCRQuRLM6H6gX+QhG`~bx?i92{`tEgo+B2t+wu&O*}$EuY1e4`jvlQUFCey z)Nxdc!Qa2vtqQ0ETm!2}D@!EUdo12)n3!20e=%@Jm&n6uvbhu~q8CF)eIqm!PJ`Qp zg!*9kLI#6Fz;CP^9C0pV03?XVzdSdDASs2(5{gdP*yGY7tm{CSZ>EAAuWIBgi8BP z(VZjFgBBqOz57Z2p3>PwV}Sy$_vz^mQg@r`Ck;O8TZF zOmejmYXfZ}IZvIGz}(|%KmhNm%h3_5l9Qgk>N8WCt7$4&bl9}C6#c$=-H8+8l{BKK zi>G{dypwEHC@1p!mOqLvUm?sv34?YB1ij~*5>cVU6b62y6bj$o>;tKfFls}NVo85L zAEKV#-J8K&u@4rPt3#ES<>(c^tyfo?<3n83Iq*sryC;^oK&2t`?BBxO3--mZrSE^a zNB=7lAiwst^lZox?_IS$wp+GTK0e|4oPCj5aCOle3Z{*nx|XLYR38}5kS#u`TC=9b z)le_(?fi_R^i<-2&f_#XvNuhA=NufIPk)3DgFLsPDKn8CqF^Yhz-+=bmg zEZ6o2nuvnb?i)^UB@_R)3;&xx(_=({JZRYD^AytFieSdZ83+YX_-kR{9Nl%{`!&9ZlRC zh$uWlICh;jE7PLgxz}+5P2AS#N+ris@=CU&of+oqZ`mnV=l473qgTcHIQe+E;u!x% z@K*6=qn1atYA>fSY>NYJ-*)NX3R?a#r4$QGkhn0|#@5cdhki zlF$nP>$&$fS`=!c@Q8>5hyvoEJ9YZBl$9Pp(}~;Ih3xFcu=KC=M2q)>(PmkxfE&7T zs2mVH#v)(}AzZee4WXvM0v(l@FV&mnf1J7S7*`gEbnldbP)W+j$PCFLKe)KZ-LN1M z?rdm}S=iW&oSeR8Il?9YOiIG?Z=w|LgZL@rI3NYBiwcjA4}l*b3vGjY6#^t*mkmv! z);3>S0!|AaF%lz7%(7vRgzqakhy{pu0gwplBO{quVkUsnF;ff8q~mhe^=j(a-;L?p90`r^3#pQ{jZS-wOJ?OeY@Zg2Fn>Ipq1!Vl zw)lWzULZu=jc#_3txvU-1&w9F8w&M!-}h(MuF}xZAcp?nKA2Hvkim5KD5_+r68IvH zWJ0Y0V7_UFhK42&kSX-jL^unIcjfLyodRK0d--cdsJg5f4>D?H+0h&KpWbJz+rN030iph>FBzf)m!7o$%66AyiZ zobzGK(+J6oJWjFTFX)$$HiZZRWOu>>j*LZ2K^5<^*gsv!i=OI*&H<(tpO&+f^YyJ z5uTW+4zL2_C2{dmG%50KU;Bd{u|gvMVTJqx72IVg7@;d?r%;hDQr~gew|sJn?&{Xw zG@~t}t;(y{ZOJI57IF-J)5A^yh&@o~Tp@i-Ww88A`(?G zK1v>q=EBRCAdsF?SCmfC;b7S`^mAmG1o<`sXS5@xP(~B{aOh4-F;>I7rKiUUmtLF# zn0eed5I^>D;jeK;P=ezL!H9csq#R20;euf%2SGZ=e4C)9=HTMk!_Flboj9q0 z8Wkh|v9S3M=`$&AYSP>o8r1l7d*aM2rWVsIkNeg@uCM5tep#cvqq^D?EAP#AR?`As0fugA4o!CMx$@ z1%-u8nxC8@BrFr%@wN*iGYf9mZwPoK-P>zCal5LIJovgFv+o5Oh-WY>XliRa1Rlq| zdmm%s#~cuwEAKkVgN=iUmWX=-Xd-z3aN1*=9$Q6zpVkx+HE`v_9O9IwW@OquEr2&W zaytn-J=kImlMZ5VNgNCSnW7}mB2@54IO@U@20v$?SA2;eTn^y&1CAF?C1yofV!mx^ zDhI*=jm9}lFIuNvw((BT|8^C2K3INivvZMJrKjP%%wE^OC^wN#P9guI-1t!`2Ui6r z()<^&BIy$8TiM*TVJ{7j5J}n{X>wd-+)JMh&UKNNy4)sWRryuu3ccnYFFC-z$%L5%T0sAjyx3E)rxy1BBBCweinB2 z`w-hk)=CfQFl(m*`*f(TtBYe$12H11o~G&$(}MTV)c2NB9Hk)rphhzb*8aqS>+9)L z1k1U}aRBl{O&&%^_Oic(`|1^CNJvQkz`zL&4H=>L?!!~XOY!8`{qXHp<5~a0`qL@!qJHE0{ePjm*ym>G zkdd*`AKt&`^sm&Hhe|rDtO`_UdLtXkuT_|)kllZ$r>WU`1xR}qnD=wR_L$wv{TvdK z;kYNl@V=( z>wJ21`N055?&rxp{^K{sT@uouMh6)M9ob#TVX*G=%?g?R(mPWNbrE{tLP2B%F-HP7 zFho)xoFBOu%XAcdSe%Q7hW;qTquY#fCggE$z<}#lRby%99dPCLsvEb z!n(Tzffz3su|-`Utr=o(1m6pnsGp@HwFAAy;E)jKQ=IPyhW^%CspL6UvRyb$;f`n2 z&MBM!X^|y_t|jlAYjHfKB5$HZ_WIHCU%`bpae{YbTf&1P8@JFLi*G~4hsVYFOi&L znXLO=_7W(|p?5G+>0fpjwBpY=3{%^Kz#Y)C1jG-q0z6)@Hg@n$7FG6tgv^b6 z4A~UrQEcDxt9?n>Y_RJAWzK8-<5-m`MeT^PV%;5HbcH8c3bM1n!hIAca1CN;v)!;_I-y zXgtOC%;%;*Li~pNB2zSZVxGzz8-y0vKzfC6Km5~|e{I1bT45mv8Zc4vP=E|Q4DV3y zK@%7~bo*REC{96=PbgWtFmDK9!zs{%iEs|A2Q0%=E8Z|%fQ$gQi0?}o1%x_fcXOsdCSkd$O6e(Ah(&Pxrc zGC-71VdVg>2k@4SwtReib*(DGw25Y+hZO{Y8Z!%Xp5Lm#sIu-_dQrb#x%d<7a^=$X zUzeakLITOVUS&cTGY$gUF`GZeVd{cWIC5-gc=*NJ%6W2ZC_|0 z_m3$F1lV{wriTZ%6ia5lA4D~F&#w2yyYIcq+(iD+*e{baQGA&DZhz}jo_eheGAc|m zvD;9XYd(_bVR${ca(aTs)`UnQL8$~m2#^`Vqz<(J%s`ltLz&&w`|(DM8pxbZat%Q( zug}xRK@Ob6q}x%Pf%vi^tre|MKkfqcb?J^1TwRm2od7sG_$(NDPd%Z%8L|ZzvnF?*f6&nt7|P10uakA*F0b z7HaTFgoJp{%o_k9iSQRfZoqSCp^psQ=h@sxI5A)eOhZJ3;LF-UiPtjy2cYkwuUwSb z_A?N7u#-T%8UT>yZ9=BG@3##&$_UAOOn*RjZ-WDdVkHRQ1QBzwp1sJ6^Yj|(epIRe zW;lA(z{uaY$SwsW!N};`-mj_6tChB{hwy7fu$b0fDXCaGT_m|#6CG&a@JDu(0nP-y z{zga=piZWjtg!SFeU?%ug;F$3cpI-u?Lb5`L=kbkl2rH<;_=U)laR~fKcJ9-=7s>N z(UU|_+>TVdWfjiW6TMYcZs$p)V92adg#(uvqE{fVs~BHQNB4s87zfA=nKu^Ax%1~Q z!t@2QFSrUSw-b>l^2$pH#z1RS_V~0H1i3P+td4OEk&$>IOfwF;9h{tX+Tu?Llq1Rl z2r{mBW*Vd*`Ne7nPVO7rU4ZCq_{laypAX7W=b!JyD{ldPbYJ+DiS*$u+>$f+rOWP&=ZB z>z(Q_(LhWHiOeGu2E5&&Kzr3T8}R9B$utzQuz_2wEHB~LR5VfX9pJ)=a0zW8oXw=~ zewry4ba;i&vM(H01YHnf<&e2-Xl)G>c2!181V=PvvtR1vBmXNaI}QYBHB2keSOkrf z*bM~QQf@{*BRaQ(T(bRei@@$Y*$ov$9cy-%I2ss*yrVxGp*>Xxj~3d3Ug@{ z-AEn=V6IhX8EX7&piQqtP|>au$W>x76KQ(M`6KZW8Qx3tux?d` z?BtmpQa?OG3sr?k{>R2@P`>2A_2}V-w<%XM#X~g3fPZ4F+iCO&IVl+IsyM(INmr6* z+UDJ`*8sS|Kz%d1ySp1?b1&NQ3V!+P1Hbx93&@u^jWnQbtLjVTPs5Eg<1lem!2h zo@&P7Uz1HX<$g7QO$`u(V9pfE?7%>T9DFmtwZ>ugLN9qiHGOL$jbA>9p};gUX3Kq9 zw!!!Fr;T3X_n3oQ`|(X_19_-P>{&1`5H%@a$E&%C^5kcd9~7*9*zRlj!YmMo;4w1aU8s{MoHIp5VDXEJQE=g-h?ySW|40WiIPqubBh zNo)Uj^_RzI*_8^ivX21$Ybp#lnPiYsGEDnwZ?rCYtA9OsBT0Mydh+$7|EDJxF8y;1 zy!8S670kl5q~}3vNvnPz%X8n<{Gm~gP!g#rd`IbDGwY+uJY}>VQ*b^Ov}-}eerTh)|8)=h*UyKu_})3 z?IoexiHUyLj!IqJ^(BTesjI&~MEAwza>}nJDS9fu@vSQT?S{R*_8EOEwcE^&+*gM zGK)((#4hA}63THzF?d>*&kBi!~ZcSx}X!n`Kv9aoij2s8^V2fD2^Kpt9 ztajTVHHAxtUh(Tn{j6>FsxD|}((c+OXB%k7HHZ}17W+~pZtTYA?>aTRg&2nD)f`K6 z>G_d|nZFz@=z6ajp)`;hsKc`I?+G1&vCX0At-aKeY4?sab(#W2klYY^HGj&LIh4tf zu2PTun0_esn>Ee9EZT80ycYe^ti~?rh%4m8Wxi0QsSIX#^;xnjk2&w{F>$pmnVzlF z2sW^J(H!hIY8Ia>6tdzy-m`(U`WA2knnQ;aSv~c|vYXEb&Q?n#!e6G{rXro$ivd%(fqBDJdc*|7H%^LY)=jx3f_9PPz zH2*noHjj~~DXv!Lrl$2#3KFJRC71eV(^>GcT{#mPZ@#D0J4@cElJ8PmI;Ovy+Jx3W7m zv#DaX!d1#$jyR;BR*QJ~WnJDM=s{^1Xv=pg3sJUi_#j#}=-Bg=?lo-ap2+$rT9x%I z)kuwdUU?-l<*|>~aLFRMalW%;xvI$Hv};gAXE(PZn;BQY|dlv$xl%ug8Y?lyI27Nrag3p9{0YM z&K&ov(I0vu=~V7=ZNyQl+NF*M9**pwE8#72VjB~p6ep;w%yNf@hB^zExcPnchMB)O z=zD)^t&UW(wO8|Qmu!638JVr(I`B+_ITRr|QFAusnRB7Xl+H#5?a_Cnb$`YKz8e%` zioX-ADde3~!|pL<#ic0tsI2@$DvaEhXj>dY_Rd^-{BqbhG)Gq}XY+LIQMs_7@|KI7 zXA^Fs$u6oP8?B;MM=g$%cBMffswg8yo?bY6a&9JO%iw(lNyq;7EBUv_lT;lI1O+)Q z`7#VsdS7$6Qoj62${@n&qTb?cVv9F>9SBs52W2WY^~jagxOc}?J6{bwE@J<7sX~>W zoUf1;sV0w(x<)WLpKw)-HIja4y{f3AU@AV+m1#w`VRd@FZ>p&PoY8tmsGSZXIIzl#dII zGe#A$xkB6wyM;*!P8Tzhwp}1XzEfTHoA>nZf8VvuxIEc~l#dDyiI>EPFS+T>0iC1I zCN!QnmN$*`Q&-9^Y3oecO*-Tnq&!1;6LKC8!|9HBGX4|ucAEPJ>y?Z$8QFzY3Cni} z)2d&;NU)@=OVDN$!AyQ^K0nMXk-F#>BmhvfIZU zY`_{z>RG%-<4`r@idchyU?nw=hK*&nx6)p!z53v<5xlUIBKahuokoi=cxG=J&Q_o1 zc#X!oj$4m(sLMT_USnAC(vjK1lWBd+uv=xJ^PF|`q2&i_e3#G;s5W|oTN9SYul6&MI4mDLda^|hAie6zoANh)ey`%S0Ygg*v%7f37-fcwL_Oz>_ z(QQk$SxyAU$&?-aQJ*nfuVk`PE((S!BXNfA>ByaV;8+vy87%7K-NQU>9MR_Cq*y#% zj;5Y=$*s}Bxz2yE2l_mh#oshnXPR?l7=rQiYm7x6*VMWvONJSiHOG+vqv*7 z7{aofHU+5ezLlGrnhHLqP?PZB<1#zJ_VE68D~2fqZ!etT z5m;=*5}c_||1*^-{c7y&jpB};9#i%OI6?;&JOY0b${K)XjAFH?sm_-n>iN zMdE$-&j9cHWW8jheME#4bl8AI#5tcI$5!E>|37@9AO@2htx;p1Ki`vdi?qCjm)GLs U`1bl};)fciw7*Y1VRq-g019GolK=n! literal 0 HcmV?d00001 diff --git a/flatpak/io.github.softfever.OrcaSlicer.metainfo.xml b/flatpak/io.github.softfever.OrcaSlicer.metainfo.xml new file mode 100755 index 0000000000..1b2a60d743 --- /dev/null +++ b/flatpak/io.github.softfever.OrcaSlicer.metainfo.xml @@ -0,0 +1,48 @@ + + + io.github.softfever.OrcaSlicer + io.github.softfever.OrcaSlicer.desktop + + io.github.softfever.OrcaSlicer.desktop + + OrcaSlicer + +

Get even more perfect prints! + SoftFever + https://github.com/SoftFever/OrcaSlicer + https://github.com/SoftFever/OrcaSlicer/wiki + https://github.com/SoftFever/OrcaSlicer/issues/ + https://ko-fi.com/SoftFever + 0BSD + AGPL-3.0-only + + + 768 + + + keyboard + pointing + + + + https://raw.githubusercontent.com/powpingdone/com.github.softfever.orcaslicer/master/images/1.png + A model ready to be sliced on a buildplate. + + + https://raw.githubusercontent.com/powpingdone/com.github.softfever.orcaslicer/master/images/2.png + + A calibration test ready to be printed out. + + + +

A 3D printer slicer forked from Bambu Studio, PrusaSlicer, and SuperSlicer with many more printer profiles, helpful calibration prints, and many more features to get your 3D printer printing perfectly!

+
+ + #009688 + + + https://github.com/SoftFever/OrcaSlicer/commit/951fc8e98a0d5ca0ccb254315646ce7889a44836 + + + diff --git a/flatpak/io.github.softfever.OrcaSlicer.yml b/flatpak/io.github.softfever.OrcaSlicer.yml new file mode 100755 index 0000000000..f5a148cda0 --- /dev/null +++ b/flatpak/io.github.softfever.OrcaSlicer.yml @@ -0,0 +1,344 @@ +app-id: io.github.softfever.OrcaSlicer +runtime: org.gnome.Platform +runtime-version: "45" +sdk: org.gnome.Sdk +command: entrypoint +separate-locales: true +rename-icon: OrcaSlicer +finish-args: + - --share=ipc + - --socket=x11 + - --share=network + - --device=all + - --filesystem=home + - --filesystem=xdg-run/gvfs + - --filesystem=/run/media + - --filesystem=/media + # Allow OrcaSlicer to talk to other instances + - --talk-name=io.github.softfever.OrcaSlicer.InstanceCheck.* + - --system-talk-name=org.freedesktop.UDisks2 + # set dark theme + - --env=BAMBU_STUDIO_DARK_THEME=false + +modules: + + # JPEG codec for the liveview + - name: gst-plugins-good + buildsystem: meson + config-opts: + - -Dauto_features=disabled + - -Djpeg=enabled + - -Ddoc=disabled + - -Dexamples=disabled + - -Dtests=disabled + sources: + - type: archive + url: https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.22.8.tar.xz + sha256: e305b9f07f52743ca481da0a4e0c76c35efd60adaf1b0694eb3bb021e2137e39 + + # xprop, xlib is needed to manipulate the X11 window and set _GTK_THEME_VARIANT dark on X11 + # and paint the window dark when PRUSA_SLICER_DARK_THEME is true + # see: entrypoint & set-dark-theme-variant.py (originated from spotify client flatpak) + - name: xprop + sources: + - type: archive + url: http://mirrors.ircam.fr/pub/x.org/individual/app/xprop-1.2.5.tar.gz + sha256: b7bf6b6be6cf23e7966a153fc84d5901c14f01ee952fbd9d930aa48e2385d670 + - name: python-setuptools_scm + buildsystem: simple + build-commands: + - pip3 install --no-deps --no-build-isolation --verbose --prefix=${FLATPAK_DEST} . + sources: + - type: archive + url: https://files.pythonhosted.org/packages/57/38/930b1241372a9f266a7df2b184fb9d4f497c2cef2e016b014f82f541fe7c/setuptools_scm-6.0.1.tar.gz + sha256: d1925a69cb07e9b29416a275b9fadb009a23c148ace905b2fb220649a6c18e92 + - name: python-xlib + buildsystem: simple + build-commands: + - pip3 install --no-deps --no-build-isolation --verbose --prefix=${FLATPAK_DEST} . + sources: + - type: archive + url: https://files.pythonhosted.org/packages/86/f5/8c0653e5bb54e0cbdfe27bf32d41f27bc4e12faa8742778c17f2a71be2c0/python-xlib-0.33.tar.gz + sha256: 55af7906a2c75ce6cb280a584776080602444f75815a7aff4d287bb2d7018b32 + + # For libOSMesa + - name: mesa + buildsystem: meson + config-opts: + - -Dosmesa=classic + - -Ddri-drivers=[] + - -Dgallium-drivers=[] + - -Dvulkan-drivers=[] + - -Dplatforms=[] + build-options: + arch: + aarch64: + config-opts: + - -Dlibunwind=disabled + cleanup: + - /share/drirc.d + - /include + - "*.a" + sources: + - type: archive + url: https://archive.mesa3d.org/mesa-20.2.6.tar.xz + sha256: f12ca3c6c622f11cd79ad66b4220f04514fa96f795062fe92a37339ab19885db + + - name: glu + config-opts: + - --disable-static + sources: + - type: archive + url: https://ftp.osuosl.org/pub/blfs/conglomeration/glu/glu-9.0.2.tar.xz + sha256: 6e7280ff585c6a1d9dfcdf2fca489251634b3377bfc33c29e4002466a38d02d4 + cleanup: + - /include + - /lib/*.a + - /lib/*.la + - /lib/pkgconfig + + - name: kde-extra-cmake-modules + buildsystem: cmake-ninja + sources: + - type: git + url: https://github.com/KDE/extra-cmake-modules + tag: v5.249.0 + cleanup: + - / + + - name: orca_wxwidgets + buildsystem: simple + build-commands: + - | + mkdir builddir && cd builddir + cmake ../ -GNinja \ + -DwxBUILD_PRECOMP=ON \ + -DwxBUILD_TOOLKIT=gtk3 \ + -DwxBUILD_DEBUG_LEVEL=0 \ + -DwxBUILD_SAMPLES=OFF \ + -DwxBUILD_SHARED=ON \ + -DwxUSE_MEDIACTRL=ON \ + -DwxUSE_DETECT_SM=OFF \ + -DwxUSE_UNICODE=ON \ + -DwxUSE_PRIVATE_FONTS=ON \ + -DwxUSE_OPENGL=ON \ + -DwxUSE_WEBREQUEST=ON \ + -DwxUSE_WEBVIEW=ON \ + -DwxUSE_WEBVIEW_EDGE=OFF \ + -DwxUSE_WEBVIEW_IE=OFF \ + -DwxUSE_REGEX=builtin \ + -DwxUSE_LIBSDL=OFF \ + -DwxUSE_XTEST=OFF \ + -DwxUSE_STC=OFF \ + -DwxUSE_AUI=ON \ + -DwxUSE_LIBPNG=sys \ + -DwxUSE_ZLIB=sys \ + -DwxUSE_LIBJPEG=sys \ + -DwxUSE_LIBTIFF=sys \ + -DwxUSE_EXPAT=sys \ + -DBUILD_SHARED_LIBS:BOOL=ON \ + -DCMAKE_INSTALL_PREFIX:STRING=/app \ + -DCMAKE_PREFIX_PATH=/app \ + -DCMAKE_BUILD_TYPE=Release + cmake --build . --target install -j$FLATPAK_BUILDER_N_JOBS + sources: + - type: git + url: https://github.com/SoftFever/Orca-deps-wxWidgets + branch: master + path: ../ + cleanup: + - "*.la" + - "*.a" + - "*.cmake" + - /include + - /app/bin/* + + - name: orca_deps + buildsystem: simple + build-commands: + # start build + - | + mkdir deps/build && cd deps/build + cmake ../ \ + -DDEP_WX_GTK3=ON \ + -DDEP_DOWNLOAD_DIR=/run/build/orca_deps/external-packages \ + -DCMAKE_PREFIX_PATH=/app \ + -DDESTDIR=/app \ + -DCMAKE_INSTALL_LIBDIR=/app/lib \ + -DFLATPAK=ON \ + -DCMAKE_INSTALL_PREFIX=/app + cmake --build . + rm -r /run/build/orca_deps/external-packages + + cleanup: + - /app/include + - "*.a" + - "*.la" + - /app/lib/cmake + + sources: + # - + # Section bellow fetches all OrcaSlicer dependencies before the build process and stores them in external-packages/*/* . + # -DDEP_DOWNLOAD_DIR is set in the build process which has to match with dest. + # + # NOTE: The url, dest folder name and sha256 must match from OrcaSlicer's cmake scripts and folder names in OrcaSlicer/deps/ + # - + + # OrcaSlicer Source Archive + - type: dir + path: ../ + + # Blosc + - type: file + url: https://github.com/tamasmeszaros/c-blosc/archive/refs/heads/v1.17.0_tm.zip + dest: external-packages/Blosc + sha256: dcb48bf43a672fa3de6a4b1de2c4c238709dad5893d1e097b8374ad84b1fc3b3 + + # Cereal + - type: file + url: https://github.com/USCiLab/cereal/archive/refs/tags/v1.3.0.zip + dest: external-packages/Cereal + sha256: 71642cb54658e98c8f07a0f0d08bf9766f1c3771496936f6014169d3726d9657 + + # CGAL + - type: file + url: https://github.com/CGAL/cgal/archive/refs/tags/v5.4.zip + dest: external-packages/CGAL + sha256: d7605e0a5a5ca17da7547592f6f6e4a59430a0bc861948974254d0de43eab4c0 + + # GMP + - type: file + url: https://github.com/SoftFever/OrcaSlicer_deps/releases/download/gmp-6.2.1/gmp-6.2.1.tar.bz2 + dest: external-packages/GMP + sha256: eae9326beb4158c386e39a356818031bd28f3124cf915f8c5b1dc4c7a36b4d7c + + # MPFR + - type: file + url: https://www.mpfr.org/mpfr-current/mpfr-4.2.1.tar.bz2 + dest: external-packages/MPFR + sha256: b9df93635b20e4089c29623b19420c4ac848a1b29df1cfd59f26cab0d2666aa0 + + # NLopt + - type: file + url: https://github.com/stevengj/nlopt/archive/v2.5.0.tar.gz + dest: external-packages/NLopt + sha256: c6dd7a5701fff8ad5ebb45a3dc8e757e61d52658de3918e38bab233e7fd3b4ae + + # OCCT + - type: file + url: https://github.com/Open-Cascade-SAS/OCCT/archive/refs/tags/V7_6_0.zip + dest: external-packages/OCCT + sha256: 28334f0e98f1b1629799783e9b4d21e05349d89e695809d7e6dfa45ea43e1dbc + + # OpenCSG + - type: file + url: https://github.com/floriankirsch/OpenCSG/archive/refs/tags/opencsg-1-4-2-release.zip + dest: external-packages/OpenCSG + sha256: 51afe0db79af8386e2027d56d685177135581e0ee82ade9d7f2caff8deab5ec5 + + # OpenCV + - type: file + url: https://github.com/opencv/opencv/archive/refs/tags/4.6.0.tar.gz + dest: external-packages/OpenCV + sha256: 1ec1cba65f9f20fe5a41fda1586e01c70ea0c9a6d7b67c9e13edf0cfe2239277 + + # OpenEXR + - type: file + url: https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/v2.5.5.zip + dest: external-packages/OpenEXR + sha256: 0307a3d7e1fa1e77e9d84d7e9a8694583fbbbfd50bdc6884e2c96b8ef6b902de + + # OpenVDB + - type: file + url: https://github.com/tamasmeszaros/openvdb/archive/a68fd58d0e2b85f01adeb8b13d7555183ab10aa5.zip + dest: external-packages/OpenVDB + sha256: f353e7b99bd0cbfc27ac9082de51acf32a8bc0b3e21ff9661ecca6f205ec1d81 + + # Qhull + - type: file + url: https://github.com/qhull/qhull/archive/v8.0.1.zip + dest: external-packages/Qhull + sha256: 5287f5edd6a0372588f5d6640799086a4033d89d19711023ef8229dd9301d69b + + # TBB + - type: file + url: https://github.com/oneapi-src/oneTBB/archive/refs/tags/v2021.5.0.zip + dest: external-packages/TBB + sha256: 83ea786c964a384dd72534f9854b419716f412f9d43c0be88d41874763e7bb47 + + # Boost + - type: file + url: https://github.com/boostorg/boost/releases/download/boost-1.84.0/boost-1.84.0.tar.gz + dest: external-packages/Boost + sha256: 4d27e9efed0f6f152dc28db6430b9d3dfb40c0345da7342eaa5a987dde57bd95 + + # GLFW + - type: file + url: https://github.com/glfw/glfw/archive/refs/tags/3.3.7.zip + dest: external-packages/GLFW + sha256: e02d956935e5b9fb4abf90e2c2e07c9a0526d7eacae8ee5353484c69a2a76cd0 + + - name: OrcaSlicer + buildsystem: simple + build-commands: + - | + mkdir -p build && cd build + CXXFLAGS=-std=gnu++20 cmake ../ \ + -DSLIC3R_PCH=OFF \ + -DSLIC3R_FHS=ON \ + -DSLIC3R_GTK=3 \ + -DSLIC3R_STATIC=ON \ + -DSLIC3R_BUILD_TESTS=OFF \ + -DSLIC3R_DESKTOP_INTEGRATION=OFF \ + -DCMAKE_BUILD_TYPE=Release \ + -DFLATPAK=ON \ + -DBBL_RELEASE_TO_PUBLIC=1 \ + -DCMAKE_PREFIX_PATH=/app \ + -DCMAKE_INSTALL_PREFIX=/app + CXXFLAGS=-std=gnu++20 cmake --build . --target install -j$FLATPAK_BUILDER_N_JOBS + + cleanup: + - /include + + post-install: + + - | # Desktop Integration files + install -Dm644 -t /app/share/icons/hicolor/scalable/apps/ resources/images/OrcaSlicer.svg + install -Dm644 ${FLATPAK_ID}.metainfo.xml /app/share/metainfo/${FLATPAK_ID}.metainfo.xml + mv /app/share/applications/OrcaSlicer.desktop /app/share/applications/${FLATPAK_ID}.desktop + desktop-file-edit --set-key=Exec --set-value="entrypoint %U" /app/share/applications/${FLATPAK_ID}.desktop + install -Dm755 set-dark-theme-variant.py /app/bin + install -Dm755 entrypoint /app/bin + install -Dm755 umount /app/bin + + sources: + # - + # Section bellow fetches all OrcaSlicer dependencies before the build process and stores them in external-packages/*/* . + # -DDEP_DOWNLOAD_DIR is set in the build process which has to match with dest. + # + # NOTE: The url, dest folder name and sha256 must match from OrcaSlicer's cmake scripts and folder names in OrcaSlicer/deps/ + # - + + # OrcaSlicer Source Archive + - type: dir + path: ../ + + # AppData metainfo for Gnome Software & Co. + - type: file + path: io.github.softfever.OrcaSlicer.metainfo.xml + + # script to set dark theme variant + - type: file + path: set-dark-theme-variant.py + + # start-up script + # README: workaround for the following issues, also enables dark theme variant: + # SEE: https://github.com/flathub/com.bambulab.BambuStudio/issues/27 + # SEE: https://github.com/flathub/com.bambulab.BambuStudio/issues/3 + # SEE: https://github.com/prusa3d/PrusaSlicer/issues/2365 + - type: file + path: entrypoint + + # umount wrapper used to redirect umount calls to udisk2 + - type: file + path: umount diff --git a/flatpak/set-dark-theme-variant.py b/flatpak/set-dark-theme-variant.py new file mode 100644 index 0000000000..78bbf5d690 --- /dev/null +++ b/flatpak/set-dark-theme-variant.py @@ -0,0 +1,85 @@ +#!/usr/bin/env python3 + +import Xlib +import Xlib.display +import time +import subprocess +import os +import sys + + +disp = Xlib.display.Display() +root = disp.screen().root + +NET_CLIENT_LIST = disp.intern_atom('_NET_CLIENT_LIST') + + +def set_theme_variant_by_window_id(id, variant): + # Use subprocess to call + # xprop and set the variant from id. + try: + s = subprocess.call(['xprop', '-f', '_GTK_THEME_VARIANT', '8u', '-set', '_GTK_THEME_VARIANT', variant, '-id', str(id)], + stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) + if s == 0: + return True + return False + except Exception as ex: + return False + + +def set_theme_variant_from_win_id_collection(win_id_collection, variant): + # Loop though all of the collected + # window ids and set theme variant + for win_id in win_id_collection: + set_theme_variant_by_window_id(win_id, variant) + + +def collection_win_id_from_wm_class_name(win_class_name): + + collect = [] + + # Loop though all of the windows + # and collect id's those that match + # win_class: prusa-slicer + for win_id in root.get_full_property(NET_CLIENT_LIST, Xlib.X.AnyPropertyType).value: + try: + win = disp.create_resource_object('window', win_id) + if not win.get_wm_transient_for(): + win_class = win.get_wm_class() + if win_id and win_class_name in win_class: + collect.append( + win_id) if win_id not in collect else collect + except Xlib.error.BadWindow: + pass + + return collect + + +if __name__ == '__main__': + + if os.environ.get('PRUSA_SLICER_DARK_THEME', 'false') != 'true': + sys.exit(0) + + # Listen for X Property Change events. + root.change_attributes(event_mask=Xlib.X.PropertyChangeMask) + # the class name of the slicer window + win_class_name = 'prusa-slicer' + # the variant to set + variant = 'dark' + + start = time.time() + + while True: + # collect all of the window ids + collect = collection_win_id_from_wm_class_name(win_class_name) + # give PrusaSlicer window 2 secs to + # collect the wanted window ids + # set the theme variant and exit + if time.time() - start <= 2: + # disp.next_event() blocks if no events are + # queued. In combination with while True + # it creates a very simple event loop. + disp.next_event() + set_theme_variant_from_win_id_collection(collect, variant) + else: + break diff --git a/flatpak/umount b/flatpak/umount new file mode 100755 index 0000000000..5cbf32e6b8 --- /dev/null +++ b/flatpak/umount @@ -0,0 +1,10 @@ +#!/usr/bin/env sh +if [ $# -eq 0 ]; then + echo "No arguments supplied" + exit 1 +fi + +DEVICE=$(basename $(findmnt -oSOURCE -n "$@") ) + +exec /usr/bin/gdbus call -y -d org.freedesktop.UDisks2 -o /org/freedesktop/UDisks2/block_devices/$DEVICE -m org.freedesktop.UDisks2.Filesystem.Unmount "{'b': <'false'>}" 1> /dev/null + diff --git a/src/libslic3r/ParameterUtils.cpp b/src/libslic3r/ParameterUtils.cpp index 4e5fed7e6b..adde84d5cd 100644 --- a/src/libslic3r/ParameterUtils.cpp +++ b/src/libslic3r/ParameterUtils.cpp @@ -1,4 +1,5 @@ #include "ParameterUtils.hpp" +#include namespace Slic3r { diff --git a/src/slic3r/CMakeLists.txt b/src/slic3r/CMakeLists.txt index d2242c9fff..e254e3c067 100644 --- a/src/slic3r/CMakeLists.txt +++ b/src/slic3r/CMakeLists.txt @@ -622,7 +622,6 @@ source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES ${SLIC3R_GUI_SOURCES}) encoding_check(libslic3r_gui) target_link_libraries(libslic3r_gui libslic3r cereal::cereal imgui imguizmo minilzo GLEW::GLEW OpenGL::GL hidapi ${wxWidgets_LIBRARIES} glfw libcurl OpenSSL::SSL OpenSSL::Crypto) -#target_link_libraries(libslic3r_gui libslic3r cereal imgui minilzo GLEW::GLEW OpenGL::GL hidapi libcurl OpenSSL::SSL OpenSSL::Crypto ${wxWidgets_LIBRARIES} glfw) if (MSVC) target_link_libraries(libslic3r_gui Setupapi.lib) @@ -666,9 +665,18 @@ endif () # link these libraries. if (UNIX AND NOT APPLE) find_package(GTK${SLIC3R_GTK} REQUIRED) + if (FLATPAK) + # I don't know why this is needed, but for whatever reason slic3r isn't + # linking to X11 and webkit2gtk. force it. + find_package(X11 REQUIRED) + find_package(PkgConfig REQUIRED) + pkg_check_modules(webkit2gtk REQUIRED webkit2gtk-4.1) + target_link_libraries (libslic3r_gui ${X11_LIBRARIES} ${webkit2gtk_LIBRARIES}) + endif() target_include_directories(libslic3r_gui PRIVATE ${GTK${SLIC3R_GTK}_INCLUDE_DIRS}) target_link_libraries(libslic3r_gui ${GTK${SLIC3R_GTK}_LIBRARIES} fontconfig) + # We add GStreamer for bambu:/// support. pkg_check_modules(GSTREAMER REQUIRED gstreamer-1.0) pkg_check_modules(GST_BASE REQUIRED gstreamer-base-1.0) @@ -677,4 +685,4 @@ if (UNIX AND NOT APPLE) endif () # Add a definition so that we can tell we are compiling slic3r. -target_compile_definitions(libslic3r_gui PRIVATE SLIC3R_CURRENTLY_COMPILING_GUI_MODULE) \ No newline at end of file +target_compile_definitions(libslic3r_gui PRIVATE SLIC3R_CURRENTLY_COMPILING_GUI_MODULE) diff --git a/src/slic3r/GUI/Field.hpp b/src/slic3r/GUI/Field.hpp index 8cf36eb54f..79e09ba505 100644 --- a/src/slic3r/GUI/Field.hpp +++ b/src/slic3r/GUI/Field.hpp @@ -11,6 +11,7 @@ #include #include +#include #include #include #include diff --git a/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp b/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp index 1b8fcc3050..fd444f4698 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmosManager.hpp @@ -14,6 +14,7 @@ #include "libslic3r/ObjectID.hpp" +#include #include //BBS: GUI refactor: to support top layout diff --git a/src/slic3r/GUI/HttpServer.hpp b/src/slic3r/GUI/HttpServer.hpp index 1f23fd9d30..5c1547f013 100644 --- a/src/slic3r/GUI/HttpServer.hpp +++ b/src/slic3r/GUI/HttpServer.hpp @@ -11,6 +11,7 @@ #include #include #include +#include #include #define LOCALHOST_PORT 13618 diff --git a/src/slic3r/GUI/Jobs/OAuthJob.cpp b/src/slic3r/GUI/Jobs/OAuthJob.cpp index 0a38fa6e60..fa79c2c999 100644 --- a/src/slic3r/GUI/Jobs/OAuthJob.cpp +++ b/src/slic3r/GUI/Jobs/OAuthJob.cpp @@ -4,7 +4,8 @@ #include "ThreadSafeQueue.hpp" #include "slic3r/GUI/I18N.hpp" #include "nlohmann/json.hpp" - +#include +#include namespace Slic3r { namespace GUI { diff --git a/src/slic3r/GUI/Jobs/OAuthJob.hpp b/src/slic3r/GUI/Jobs/OAuthJob.hpp index dd64e966be..7b58c53b2e 100644 --- a/src/slic3r/GUI/Jobs/OAuthJob.hpp +++ b/src/slic3r/GUI/Jobs/OAuthJob.hpp @@ -3,6 +3,9 @@ #include "Job.hpp" #include "slic3r/GUI/HttpServer.hpp" +#include +#include +#include namespace Slic3r { namespace GUI { diff --git a/src/slic3r/GUI/PrinterWebView.hpp b/src/slic3r/GUI/PrinterWebView.hpp index 5b1908c9ee..070bd4ea97 100644 --- a/src/slic3r/GUI/PrinterWebView.hpp +++ b/src/slic3r/GUI/PrinterWebView.hpp @@ -6,7 +6,7 @@ #include "wx/cmdline.h" #include "wx/notifmsg.h" #include "wx/settings.h" -#include "wx/webview.h" +#include #include #if wxUSE_WEBVIEW_EDGE diff --git a/src/slic3r/GUI/WebViewDialog.hpp b/src/slic3r/GUI/WebViewDialog.hpp index b96b9051fc..feeace8fec 100644 --- a/src/slic3r/GUI/WebViewDialog.hpp +++ b/src/slic3r/GUI/WebViewDialog.hpp @@ -6,7 +6,7 @@ #include "wx/cmdline.h" #include "wx/notifmsg.h" #include "wx/settings.h" -#include "wx/webview.h" +#include #if wxUSE_WEBVIEW_EDGE #include "wx/msw/webview_edge.h" diff --git a/src/slic3r/Utils/SimplyPrint.cpp b/src/slic3r/Utils/SimplyPrint.cpp index 9c5603c7d7..2fc72fb9ef 100644 --- a/src/slic3r/Utils/SimplyPrint.cpp +++ b/src/slic3r/Utils/SimplyPrint.cpp @@ -2,6 +2,8 @@ #include #include +#include +#include #include "nlohmann/json.hpp" #include "libslic3r/Utils.hpp" diff --git a/src/slic3r/Utils/SimplyPrint.hpp b/src/slic3r/Utils/SimplyPrint.hpp index b2c06a04e6..2b56764d7c 100644 --- a/src/slic3r/Utils/SimplyPrint.hpp +++ b/src/slic3r/Utils/SimplyPrint.hpp @@ -42,4 +42,4 @@ public: }; } // namespace Slic3r -#endif \ No newline at end of file +#endif From 093b1631887f636af4bdee47aa024455510761bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olcay=20=C3=96REN?= <33813227+olcayoren@users.noreply.github.com> Date: Sat, 25 May 2024 16:24:48 +0300 Subject: [PATCH 38/66] Update OrcaSlicer_tr.po - TURKISH translation update (#5451) * Update OrcaSlicer_tr.po - TURKISH translation update * Update OrcaSlicer_tr.po Update OrcaSlicer_tr.po - TURKISH translation update * Update OrcaSlicer_tr.po - TURKISH translation update --- localization/i18n/tr/OrcaSlicer_tr.po | 1742 ++++++++++++------------- 1 file changed, 867 insertions(+), 875 deletions(-) diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index a84aeae888..cb68d5d5c3 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-24 23:26+0800\n" -"PO-Revision-Date: 2024-05-02 19:55+0300\n" +"PO-Revision-Date: 2024-05-25 04:32+0300\n" "Last-Translator: Olcay ÖREN\n" "Language-Team: \n" "Language: tr\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.4.4\n" msgid "Supports Painting" msgstr "Destek Boyama" @@ -728,8 +728,8 @@ msgid "" "The text cannot be written using the selected font. Please try choosing a " "different font." msgstr "" -"Metin seçilen yazı tipi kullanılarak yazılamıyor. Lütfen farklı bir yazı " -"tipi seçmeyi deneyin." +"Metin seçilen yazı tipi kullanılarak yazılamıyor. Lütfen farklı bir yazı tipi " +"seçmeyi deneyin." msgid "Embossed text cannot contain only white spaces." msgstr "Kabartmalı metin yalnızca beyaz boşluklardan oluşamaz." @@ -1010,12 +1010,12 @@ msgstr "Metni kameraya doğru yönlendirin." #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Aplication selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font(\"%1%\"). Aplication selected a similar one(\"%2%" +"\"). You have to specify font for enable edit text." msgstr "" -"Tam olarak aynı yazı tipi yüklenemiyor(\"%1%\"). Uygulama benzer bir " -"uygulama seçti(\"%2%\"). Metni düzenlemeyi etkinleştirmek için yazı tipini " -"belirtmeniz gerekir." +"Tam olarak aynı yazı tipi yüklenemiyor(\"%1%\"). Uygulama benzer bir uygulama " +"seçti(\"%2%\"). Metni düzenlemeyi etkinleştirmek için yazı tipini belirtmeniz " +"gerekir." msgid "No symbol" msgstr "Sembol yok" @@ -1467,8 +1467,8 @@ msgstr "Bilgi" msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" -"Please note, application settings will be lost, but printer profiles will " -"not be affected." +"Please note, application settings will be lost, but printer profiles will not " +"be affected." msgstr "" "OrcaSlicer konfigürasyon dosyası bozulmuş olabilir ve ayrıştırılamayabilir.\n" "OrcaSlicer, konfigürasyon dosyasını yeniden oluşturmayı denedi.\n" @@ -1571,6 +1571,8 @@ msgid "" "Could not start URL download. Destination folder is not set. Please choose " "destination folder in Configuration Wizard." msgstr "" +"URL indirme işlemi başlatılamadı. Hedef klasör ayarlanmamış. Lütfen " +"Yapılandırma Sihirbazı’nda hedef klasörü seçin." msgid "Import File" msgstr "Dosya İçe Aktar" @@ -2095,8 +2097,8 @@ msgid "" "This action will break a cut correspondence.\n" "After that model consistency can't be guaranteed .\n" "\n" -"To manipulate with solid parts or negative volumes you have to invalidate " -"cut infornation first." +"To manipulate with solid parts or negative volumes you have to invalidate cut " +"infornation first." msgstr "" "Bu eylem kesilmiş bir yazışmayı bozacaktır.\n" "Bundan sonra model tutarlılığı garanti edilemez.\n" @@ -2159,8 +2161,7 @@ msgstr "İlk seçilen öğe bir nesne ise ikincisi de nesne olmalıdır." msgid "" "If first selected item is a part, the second one should be part in the same " "object." -msgstr "" -"İlk seçilen öğe bir parça ise ikincisi aynı nesnenin parçası olmalıdır." +msgstr "İlk seçilen öğe bir parça ise ikincisi aynı nesnenin parçası olmalıdır." msgid "The type of the last solid object part is not to be changed." msgstr "Son katı nesne parçasının tipi değiştirilNozullidir." @@ -2517,16 +2518,14 @@ msgstr "" msgid "Arranging done." msgstr "Hizalama tamamlandı." -msgid "" -"Arrange failed. Found some exceptions when processing object geometries." +msgid "Arrange failed. Found some exceptions when processing object geometries." msgstr "" "Hizalama başarısız oldu. Nesne geometrilerini işlerken bazı istisnalar " "bulundu." #, c-format, boost-format msgid "" -"Arrangement ignored the following objects which can't fit into a single " -"bed:\n" +"Arrangement ignored the following objects which can't fit into a single bed:\n" "%s" msgstr "" "Hizalama tek tablaya sığmayan aşağıdaki nesneler göz ardı edildi:\n" @@ -2626,8 +2625,7 @@ msgstr "" "deneyin." msgid "Print file not found, Please slice it again and send it for printing." -msgstr "" -"Yazdırma dosyası bulunamadı. Lütfen tekrar dilimleyip baskıya gönderin." +msgstr "Yazdırma dosyası bulunamadı. Lütfen tekrar dilimleyip baskıya gönderin." msgid "" "Failed to upload print file to FTP. Please check the network status and try " @@ -2683,8 +2681,8 @@ msgid "Importing SLA archive" msgstr "SLA arşivi içe aktarılıyor" msgid "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer preset first before importing that SLA archive." +"The SLA archive doesn't contain any presets. Please activate some SLA printer " +"preset first before importing that SLA archive." msgstr "" "SLA arşivi herhangi bir ön ayar içermez. Lütfen SLA arşivini içe aktarmadan " "önce bazı SLA yazıcı ön ayarlarını etkinleştirin." @@ -2696,8 +2694,8 @@ msgid "Importing done." msgstr "İçe aktarma tamamlandı." msgid "" -"The imported SLA archive did not contain any presets. The current SLA " -"presets were used as fallback." +"The imported SLA archive did not contain any presets. The current SLA presets " +"were used as fallback." msgstr "" "İçe aktarılan SLA arşivi herhangi bir ön ayar içermiyordu. Geçerli SLA ön " "ayarları geri dönüş olarak kullanıldı." @@ -2745,7 +2743,7 @@ msgid "GNU Affero General Public License, version 3" msgstr "GNU Affero Genel Kamu Lisansı, sürüm 3" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" -msgstr "" +msgstr "Orca Slicer, PrusaSlicer ve BambuStudio’yu temel alır" msgid "Libraries" msgstr "Kütüphaneler" @@ -2754,8 +2752,8 @@ msgid "" "This software uses open source components whose copyright and other " "proprietary rights belong to their respective owners" msgstr "" -"Bu yazılım, telif hakkı ve diğer mülkiyet hakları ilgili sahiplerine ait " -"olan açık kaynaklı bileşenleri kullanır" +"Bu yazılım, telif hakkı ve diğer mülkiyet hakları ilgili sahiplerine ait olan " +"açık kaynaklı bileşenleri kullanır" #, c-format, boost-format msgid "About %s" @@ -2769,8 +2767,7 @@ msgstr "OrcaSlicer, BambuStudio, PrusaSlicer ve SuperSlicer'ı temel alır." msgid "BambuStudio is originally based on PrusaSlicer by PrusaResearch." msgstr "" -"BambuStudio orijinal olarak PrusaResearch'ün PrusaSlicer'ını temel " -"almaktadır." +"BambuStudio orijinal olarak PrusaResearch'ün PrusaSlicer'ını temel almaktadır." msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci." msgstr "" @@ -2859,9 +2856,9 @@ msgid "Dynamic flow calibration" msgstr "Dinamik akış kalibrasyonu" msgid "" -"The nozzle temp and max volumetric speed will affect the calibration " -"results. Please fill in the same values as the actual printing. They can be " -"auto-filled by selecting a filament preset." +"The nozzle temp and max volumetric speed will affect the calibration results. " +"Please fill in the same values as the actual printing. They can be auto-" +"filled by selecting a filament preset." msgstr "" "Nozul sıcaklığı ve maksimum hacimsel hız kalibrasyon sonuçlarını " "etkileyecektir. Lütfen gerçek yazdırmayla aynı değerleri girin. Bir filament " @@ -2996,8 +2993,7 @@ msgid "" "When the current material run out, the printer will continue to print in the " "following order." msgstr "" -"Mevcut malzeme bittiğinde yazıcı aşağıdaki sırayla yazdırmaya devam " -"edecektir." +"Mevcut malzeme bittiğinde yazıcı aşağıdaki sırayla yazdırmaya devam edecektir." msgid "Group" msgstr "Grup" @@ -3035,8 +3031,8 @@ msgid "Insertion update" msgstr "Ekleme güncellemesi" msgid "" -"The AMS will automatically read the filament information when inserting a " -"new Bambu Lab filament. This takes about 20 seconds." +"The AMS will automatically read the filament information when inserting a new " +"Bambu Lab filament. This takes about 20 seconds." msgstr "" "AMS, yeni bir Bambu Lab filamenti takıldığında filament bilgilerini otomatik " "olarak okuyacaktır. Bu yaklaşık 20 saniye sürer." @@ -3059,17 +3055,16 @@ msgid "Power on update" msgstr "Güncellemeyi aç" msgid "" -"The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"The AMS will automatically read the information of inserted filament on start-" +"up. It will take about 1 minute.The reading process will roll filament spools." msgstr "" "AMS, başlangıçta takılan filamentin bilgilerini otomatik olarak okuyacaktır. " "Yaklaşık 1 dakika sürecektir. Okuma işlemi filament makaralarını saracaktır." msgid "" -"The AMS will not automatically read information from inserted filament " -"during startup and will continue to use the information recorded before the " -"last shutdown." +"The AMS will not automatically read information from inserted filament during " +"startup and will continue to use the information recorded before the last " +"shutdown." msgstr "" "AMS, başlatma sırasında takılan filamentden bilgileri otomatik olarak okumaz " "ve son kapatmadan önce kaydedilen bilgileri kullanmaya devam eder." @@ -3083,8 +3078,8 @@ msgid "" "automatically." msgstr "" "AMS, filament bilgisi güncellendikten sonra Bambu filamentin kalan " -"kapasitesini tahmin edecek. Yazdırma sırasında kalan kapasite otomatik " -"olarak güncellenecektir." +"kapasitesini tahmin edecek. Yazdırma sırasında kalan kapasite otomatik olarak " +"güncellenecektir." msgid "AMS filament backup" msgstr "AMS filament yedeklemesi" @@ -3116,8 +3111,8 @@ msgid "" "Failed to download the plug-in. Please check your firewall settings and vpn " "software, check and retry." msgstr "" -"Eklenti indirilemedi. Lütfen güvenlik duvarı ayarlarınızı ve vpn " -"yazılımınızı kontrol edin, kontrol edip yeniden deneyin." +"Eklenti indirilemedi. Lütfen güvenlik duvarı ayarlarınızı ve vpn yazılımınızı " +"kontrol edin, kontrol edip yeniden deneyin." msgid "" "Failed to install the plug-in. Please check whether it is blocked or deleted " @@ -3205,8 +3200,8 @@ msgid "" "device. The corrupted output G-code is at %1%.tmp." msgstr "" "Geçici G kodunun çıkış G koduna kopyalanması başarısız oldu. Hedef cihazda " -"sorun olabilir, lütfen tekrar dışa aktarmayı veya farklı bir cihaz " -"kullanmayı deneyin. Bozuk çıktı G kodu %1%.tmp konumunda." +"sorun olabilir, lütfen tekrar dışa aktarmayı veya farklı bir cihaz kullanmayı " +"deneyin. Bozuk çıktı G kodu %1%.tmp konumunda." #, boost-format msgid "" @@ -3322,22 +3317,22 @@ msgid "Printing" msgstr "Baskı" msgid "Upgrading" -msgstr "" +msgstr "Yükseltiliyor" msgid "Incompatible" msgstr "Uyumsuz" msgid "syncing" -msgstr "" +msgstr "Senkronize ediliyor" msgid "Printing Finish" -msgstr "" +msgstr "Yazdırma Bitti" msgid "Printing Failed" -msgstr "" +msgstr "Yazdırma Başarısız" msgid "PrintingPause" -msgstr "" +msgstr "Yazdırma Duraklatıldı" msgid "Prepare" msgstr "Hazırlık" @@ -3346,28 +3341,28 @@ msgid "Slicing" msgstr "Dilimleniyor" msgid "Pending" -msgstr "" +msgstr "Askıda" msgid "Sending" -msgstr "" +msgstr "Gönderiliyor" msgid "Sending Finish" -msgstr "" +msgstr "Gönderme Bitti" msgid "Sending Cancel" -msgstr "" +msgstr "Gönderme İptal Oldu" msgid "Sending Failed" -msgstr "" +msgstr "Gönderim Başarısız" msgid "Print Success" -msgstr "" +msgstr "Yazdırma Başarılı" msgid "Print Failed" -msgstr "" +msgstr "Yazdırma Başarısız" msgid "Removed" -msgstr "" +msgstr "Kaldırıldı" msgid "Resume" msgstr "Sürdür" @@ -3430,7 +3425,7 @@ msgid "Timelapse" msgstr "Timelapse" msgid "Flow Dynamic Calibration" -msgstr "" +msgstr "Akış Dinamik Kalibrasyonu" msgid "Send Options" msgstr "Gönderme Seçenekleri" @@ -3439,8 +3434,8 @@ msgid "Send" msgstr "Gönder" msgid "" -"printers at the same time.(It depends on how many devices can undergo " -"heating at the same time.)" +"printers at the same time.(It depends on how many devices can undergo heating " +"at the same time.)" msgstr "" "aynı anda kaç yazıcının ısıtma işleminden geçebileceği, aynı anda " "ısıtılabilecek cihaz sayısına bağlıdır." @@ -3544,8 +3539,8 @@ msgid "" "The recommended minimum temperature is less than 190 degree or the " "recommended maximum temperature is greater than 300 degree.\n" msgstr "" -"Önerilen minimum sıcaklık 190 dereceden azdır veya önerilen maksimum " -"sıcaklık 300 dereceden yüksektir.\n" +"Önerilen minimum sıcaklık 190 dereceden azdır veya önerilen maksimum sıcaklık " +"300 dereceden yüksektir.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " @@ -3582,13 +3577,13 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe temperature," -"it may result in material softening and clogging.The maximum safe " -"temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature,it " +"may result in material softening and clogging.The maximum safe temperature " +"for the material is %d" msgstr "" -"Mevcut hazne sıcaklığı malzemenin güvenli sıcaklığından yüksektir, " -"malzemenin yumuşamasına ve tıkanmasına neden olabilir Malzeme için maksimum " -"güvenli sıcaklık %d'dir" +"Mevcut hazne sıcaklığı malzemenin güvenli sıcaklığından yüksektir, malzemenin " +"yumuşamasına ve tıkanmasına neden olabilir Malzeme için maksimum güvenli " +"sıcaklık %d'dir" msgid "" "Too small layer height.\n" @@ -3642,16 +3637,16 @@ msgstr "" "Değer 0'a sıfırlanacaktır." msgid "" -"Alternate extra wall does't work well when ensure vertical shell thickness " -"is set to All. " +"Alternate extra wall does't work well when ensure vertical shell thickness is " +"set to All. " msgstr "" -"Alternatif ekstra duvar, dikey kabuk kalınlığının Tümü olarak " -"ayarlandığından emin olunduğunda iyi çalışmaz. " +"Alternatif ekstra duvar, dikey kabuk kalınlığının Tümü olarak ayarlandığından " +"emin olunduğunda iyi çalışmaz. " msgid "" "Change these settings automatically? \n" -"Yes - Change ensure vertical shell thickness to Moderate and enable " -"alternate extra wall\n" +"Yes - Change ensure vertical shell thickness to Moderate and enable alternate " +"extra wall\n" "No - Dont use alternate extra wall" msgstr "" "Bu ayarlar otomatik olarak değiştirilsin mi? \n" @@ -3728,8 +3723,7 @@ msgid "" "No - Give up using spiral mode this time" msgstr "" "Bu ayarlar otomatik olarak değiştirilsin mi?\n" -"Evet - Bu ayarları değiştirin ve spiral modunu otomatik olarak " -"etkinleştirin\n" +"Evet - Bu ayarları değiştirin ve spiral modunu otomatik olarak etkinleştirin\n" "Hayır - Bu sefer spiral modunu kullanmaktan vazgeçin" msgid "Auto bed leveling" @@ -3862,9 +3856,9 @@ msgid "Update failed." msgstr "Güncelleme başarısız." msgid "" -"The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" -"TPU) is not allowed to be loaded." +"The current chamber temperature or the target chamber temperature exceeds 45℃." +"In order to avoid extruder clogging,low temperature filament(PLA/PETG/TPU) is " +"not allowed to be loaded." msgstr "" "Mevcut hazne sıcaklığı veya hedef hazne sıcaklığı 45 ° C'yi aşıyor Ekstruder " "tıkanmasını önlemek için düşük sıcaklıkta filament (PLA / PETG / TPU) " @@ -3891,8 +3885,7 @@ msgstr "" msgid "Failed to start printing job" msgstr "Yazdırma işi başlatılamadı" -msgid "" -"This calibration does not support the currently selected nozzle diameter" +msgid "This calibration does not support the currently selected nozzle diameter" msgstr "Bu kalibrasyon, şu anda seçilen nozzle çapını desteklememektedir" msgid "Current flowrate cali param is invalid" @@ -3917,12 +3910,12 @@ msgid "" "Damp PVA will become flexible and get stuck inside AMS,please take care to " "dry it before use." msgstr "" -"Nemli PVA esnekleşecek ve AMS'nin içine sıkışacaktır, lütfen kullanmadan " -"önce kurutmaya dikkat edin." +"Nemli PVA esnekleşecek ve AMS'nin içine sıkışacaktır, lütfen kullanmadan önce " +"kurutmaya dikkat edin." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " -"AMS, please use with caution." +"CF/GF filaments are hard and brittle, It's easy to break or get stuck in AMS, " +"please use with caution." msgstr "" "CF/GF filamentleri sert ve kırılgandır. AMS'de kırılması veya sıkışması " "kolaydır, lütfen dikkatli kullanın." @@ -4650,10 +4643,10 @@ msgid "Load a model" msgstr "Model yükle" msgid "Import Zip Archive" -msgstr "" +msgstr "Zip Arşivini İçe Aktar" msgid "Load models contained within a zip archive" -msgstr "" +msgstr "Zip arşivindeki modelleri yükle" msgid "Import Configs" msgstr "Yapılandırmaları İçe Aktar" @@ -4925,8 +4918,8 @@ msgstr[1] "" msgid "" "\n" -"Hint: Make sure you have added the corresponding printer before importing " -"the configs." +"Hint: Make sure you have added the corresponding printer before importing the " +"configs." msgstr "" "\n" "İpucu: Yapılandırmaları içe aktarmadan önce ilgili yazıcıyı eklediğinizden " @@ -4975,8 +4968,7 @@ msgid "Please confirm if the printer is connected." msgstr "Lütfen yazıcının bağlı olup olmadığını onaylayın." msgid "" -"The printer is currently busy downloading. Please try again after it " -"finishes." +"The printer is currently busy downloading. Please try again after it finishes." msgstr "" "Yazıcı şu anda indirmeyle meşgul. Lütfen bittikten sonra tekrar deneyin." @@ -4987,8 +4979,7 @@ msgid "Problem occured. Please update the printer firmware and try again." msgstr "" "Sorun oluştu. Lütfen yazıcının ürün yazılımını güncelleyin ve tekrar deneyin." -msgid "" -"LAN Only Liveview is off. Please turn on the liveview on printer screen." +msgid "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" "Yalnızca LAN Canlı İzleme kapalı. Lütfen yazıcı ekranındaki canlı " "görüntülemeyi açın." @@ -5003,8 +4994,8 @@ msgid "Connection Failed. Please check the network and try again" msgstr "Bağlantı Başarısız. Lütfen ağı kontrol edip tekrar deneyin" msgid "" -"Please check the network and try again, You can restart or update the " -"printer if the issue persists." +"Please check the network and try again, You can restart or update the printer " +"if the issue persists." msgstr "" "Lütfen ağı kontrol edip tekrar deneyin. Sorun devam ederse yazıcıyı yeniden " "başlatabilir veya güncelleyebilirsiniz." @@ -5147,8 +5138,7 @@ msgid_plural "" "You are going to delete %u files from printer. Are you sure to continue?" msgstr[0] "" "%u dosyasını yazıcıdan sileceksiniz. Devam edeceğinizden emin misiniz?" -msgstr[1] "" -"%u dosyayı yazıcıdan sileceksiniz. Devam edeceğinizden emin misiniz?" +msgstr[1] "%u dosyayı yazıcıdan sileceksiniz. Devam edeceğinizden emin misiniz?" msgid "Delete files" msgstr "Dosyaları sil" @@ -5208,8 +5198,8 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" -"Yazıcıyı yeniden bağladığınızda işlem hemen tamamlanamıyor, lütfen daha " -"sonra tekrar deneyin." +"Yazıcıyı yeniden bağladığınızda işlem hemen tamamlanamıyor, lütfen daha sonra " +"tekrar deneyin." msgid "File does not exist." msgstr "Dosya bulunmuyor." @@ -5292,8 +5282,8 @@ msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" msgstr "" -"(Model zaten derecelendirilmiştir. Derecelendirmeniz önceki " -"derecelendirmenin üzerine yazılacaktır)" +"(Model zaten derecelendirilmiştir. Derecelendirmeniz önceki derecelendirmenin " +"üzerine yazılacaktır)" msgid "Rate" msgstr "Derecelendir" @@ -5883,8 +5873,8 @@ msgstr "Arama plakası, nesne ve parça." msgid "" "No AMS filaments. Please select a printer in 'Device' page to load AMS info." msgstr "" -"AMS filamentleri yok. AMS bilgilerini yüklemek için lütfen 'Cihaz' " -"sayfasında bir yazıcı seçin." +"AMS filamentleri yok. AMS bilgilerini yüklemek için lütfen 'Cihaz' sayfasında " +"bir yazıcı seçin." msgid "Sync filaments with AMS" msgstr "Filamentleri AMS ile senkronize et" @@ -5897,8 +5887,7 @@ msgstr "" "ayarlarını ve renklerini kaldıracaktır. Devam etmek istiyor musun?" msgid "" -"Already did a synchronization, do you want to sync only changes or resync " -"all?" +"Already did a synchronization, do you want to sync only changes or resync all?" msgstr "" "Zaten bir senkronizasyon yaptınız. Yalnızca değişiklikleri senkronize etmek " "mi yoksa tümünü yeniden senkronize etmek mi istiyorsunuz?" @@ -5913,13 +5902,13 @@ msgid "There are no compatible filaments, and sync is not performed." msgstr "Uyumlu filament yok ve senkronizasyon gerçekleştirilmiyor." msgid "" -"There are some unknown filaments mapped to generic preset. Please update " -"Orca Slicer or restart Orca Slicer to check if there is an update to system " +"There are some unknown filaments mapped to generic preset. Please update Orca " +"Slicer or restart Orca Slicer to check if there is an update to system " "presets." msgstr "" -"Genel ön ayara eşlenen bazı bilinmeyen filamentler var. Sistem ön " -"ayarlarında bir güncelleme olup olmadığını kontrol etmek için lütfen Orca " -"Slicer'ı güncelleyin veya Orca Slicer'ı yeniden başlatın." +"Genel ön ayara eşlenen bazı bilinmeyen filamentler var. Sistem ön ayarlarında " +"bir güncelleme olup olmadığını kontrol etmek için lütfen Orca Slicer'ı " +"güncelleyin veya Orca Slicer'ı yeniden başlatın." #, boost-format msgid "Do you want to save changes to \"%1%\"?" @@ -5944,13 +5933,13 @@ msgid "Restore" msgstr "Geri Yükleme" msgid "" -"The current hot bed temperature is relatively high. The nozzle may be " -"clogged when printing this filament in a closed enclosure. Please open the " -"front door and/or remove the upper glass." +"The current hot bed temperature is relatively high. The nozzle may be clogged " +"when printing this filament in a closed enclosure. Please open the front door " +"and/or remove the upper glass." msgstr "" -"Mevcut sıcak yatak sıcaklığı oldukça yüksek. Bu filamenti kapalı bir " -"muhafaza içinde bastırırken nozzle tıkanabilir. Lütfen ön kapağı açın ve/" -"veya üst camı çıkarın." +"Mevcut sıcak yatak sıcaklığı oldukça yüksek. Bu filamenti kapalı bir muhafaza " +"içinde bastırırken nozzle tıkanabilir. Lütfen ön kapağı açın ve/veya üst camı " +"çıkarın." msgid "" "The nozzle hardness required by the filament is higher than the default " @@ -6013,8 +6002,8 @@ msgstr "Lütfen bunları parametre sekmelerinde düzeltin" msgid "The 3mf has following modified G-codes in filament or printer presets:" msgstr "" -"3mf dosyasında filament veya yazıcı ön ayarlarında şu değiştirilmiş G-" -"kodları bulunmaktadır:" +"3mf dosyasında filament veya yazıcı ön ayarlarında şu değiştirilmiş G-kodları " +"bulunmaktadır:" msgid "" "Please confirm that these modified G-codes are safe to prevent any damage to " @@ -6248,8 +6237,8 @@ msgstr "" "dosyayı indirin ve manuel olarak içe aktarın." msgid "" -"Importing to Orca Slicer failed. Please download the file and manually " -"import it." +"Importing to Orca Slicer failed. Please download the file and manually import " +"it." msgstr "" "Orca Slicer'ya aktarma başarısız oldu. Lütfen dosyayı indirin ve manuel " "olarak İçe aktarın." @@ -6269,12 +6258,12 @@ msgstr "G kodu dosyası yüklenirken hata oluşuyor" #. TRN %1% is archive path #, boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "ZIP arşivinin %1% yoluna yüklenmesi başarısız oldu." #. TRN: First argument = path to file, second argument = error description #, boost-format msgid "Failed to unzip file to %1%: %2%" -msgstr "" +msgstr "Dosya %1% konumuna açılamadı: %2%" #, boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." @@ -6337,15 +6326,15 @@ msgstr "Dilimlenmiş dosyayı şu şekilde kaydedin:" #, c-format, boost-format msgid "" -"The file %s has been sent to the printer's storage space and can be viewed " -"on the printer." +"The file %s has been sent to the printer's storage space and can be viewed on " +"the printer." msgstr "" "%s dosyası yazıcının depolama alanına gönderildi ve yazıcıda " "görüntülenebiliyor." msgid "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be kept. You may fix the meshes and try agian." +"Unable to perform boolean operation on model meshes. Only positive parts will " +"be kept. You may fix the meshes and try agian." msgstr "" "Model ağlarında boole işlemi gerçekleştirilemiyor. Yalnızca olumlu kısımlar " "tutulacaktır. Kafesleri düzeltip tekrar deneyebilirsiniz." @@ -6459,8 +6448,8 @@ msgstr "" #, c-format, boost-format msgid "" "Plate% d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " -"to non zero." +"still want to do this printing, please set this filament's bed temperature to " +"non zero." msgstr "" "Plaka% d: %s'nin %s(%s) filamentinı yazdırmak için kullanılması önerilmez. " "Eğer yine de bu baskıyı yapmak istiyorsanız, lütfen bu filamentin yatak " @@ -6524,6 +6513,9 @@ msgid "" "This stops the transmission of data to Bambu's cloud services. Users who " "don't use BBL machines or use LAN mode only can safely turn on this function." msgstr "" +"Bu, Bambu’nun bulut hizmetlerine veri aktarımını durdurur. BBL makinelerini " +"kullanmayan veya yalnızca LAN modunu kullanan kullanıcılar bu işlevi güvenle " +"açabilir." msgid "Enable network plugin" msgstr "Ağ eklentisini etkinleştir" @@ -6545,8 +6537,8 @@ msgstr "Yalnızca bir OrcaSlicer örneğine izin ver" msgid "" "On OSX there is always only one instance of app running by default. However " -"it is allowed to run multiple instances of same app from the command line. " -"In such case this settings will allow only one instance." +"it is allowed to run multiple instances of same app from the command line. In " +"such case this settings will allow only one instance." msgstr "" "OSX’te her zaman varsayılan olarak çalışan tek bir uygulama örneği vardır. " "Ancak aynı uygulamanın birden fazla örneğinin komut satırından " @@ -6554,9 +6546,8 @@ msgstr "" "örneğe izin verecektir." msgid "" -"If this is enabled, when starting OrcaSlicer and another instance of the " -"same OrcaSlicer is already running, that instance will be reactivated " -"instead." +"If this is enabled, when starting OrcaSlicer and another instance of the same " +"OrcaSlicer is already running, that instance will be reactivated instead." msgstr "" "Bu etkinleştirilirse, OrcaSlicer başlatıldığında ve aynı OrcaSlicer’ın başka " "bir örneği zaten çalışıyorken, bunun yerine bu örnek yeniden " @@ -6648,12 +6639,11 @@ msgstr "" "hatırlayacak ve otomatik olarak değiştirecektir." msgid "Multi-device Management(Take effect after restarting Orca)." -msgstr "" -"Çoklu Cihaz Yönetimi(Studio yeniden başlatıldıktan sonra geçerli olur)." +msgstr "Çoklu Cihaz Yönetimi(Studio yeniden başlatıldıktan sonra geçerli olur)." msgid "" -"With this option enabled, you can send a task to multiple devices at the " -"same time and manage multiple devices." +"With this option enabled, you can send a task to multiple devices at the same " +"time and manage multiple devices." msgstr "" "Bu seçenek etkinleştirildiğinde, aynı anda birden fazla cihaza bir görev " "gönderebilir ve birden fazla cihazı yönetebilirsiniz." @@ -6704,18 +6694,20 @@ msgstr "" "uygulama olarak ayarlar" msgid "Current association: " -msgstr "" +msgstr "Mevcut dernek:" msgid "Associate prusaslicer://" -msgstr "" +msgstr "Ortak prusaslicer://" msgid "Not associated to any application" -msgstr "" +msgstr "Herhangi bir uygulamayla ilişkili değil" msgid "" "Associate OrcaSlicer with prusaslicer:// links so that Orca can open " "PrusaSlicer links from Printable.com" msgstr "" +"Orca’nın Printable.com’daki PrusaSlicer bağlantılarını açabilmesi için " +"OrcaSlicer’ı prusaslicer:// bağlantılarıyla ilişkilendirin" msgid "Maximum recent projects" msgstr "Maksimum yeni proje" @@ -6735,8 +6727,8 @@ msgstr "Otomatik yedekleme" msgid "" "Backup your project periodically for restoring from the occasional crash." msgstr "" -"Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi " -"düzenli aralıklarla yedekleyin." +"Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi düzenli " +"aralıklarla yedekleyin." msgid "every" msgstr "her" @@ -7096,8 +7088,7 @@ msgid "Printer local connection failed, please try again." msgstr "Yazıcının yerel bağlantısı başarısız oldu, lütfen tekrar deneyin." msgid "No login account, only printers in LAN mode are displayed" -msgstr "" -"Oturum açma hesabı yok, yalnızca LAN modundaki yazıcılar görüntüleniyor" +msgstr "Oturum açma hesabı yok, yalnızca LAN modundaki yazıcılar görüntüleniyor" msgid "Connecting to server" msgstr "Sunucuya baglanıyor" @@ -7165,8 +7156,7 @@ msgstr "" "desteklemek için lütfen yazıcının ürün yazılımını güncelleyin." msgid "" -"The printer firmware only supports sequential mapping of filament => AMS " -"slot." +"The printer firmware only supports sequential mapping of filament => AMS slot." msgstr "" "Yazıcı ürün yazılımı yalnızca filament => AMS yuvasının sıralı eşlemesini " "destekler." @@ -7227,8 +7217,8 @@ msgstr "" msgid "" "There are some unknown filaments in the AMS mappings. Please check whether " -"they are the required filaments. If they are okay, press \"Confirm\" to " -"start printing." +"they are the required filaments. If they are okay, press \"Confirm\" to start " +"printing." msgstr "" "AMS eşlemelerinde bazı bilinmeyen filamentler var. Lütfen bunların gerekli " "filamentler olup olmadığını kontrol edin. Sorun yoksa, yazdırmayı başlatmak " @@ -7260,8 +7250,7 @@ msgstr "" "hasarına neden olabilir" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" -"Lütfen yukarıdaki hatayı düzeltin, aksi takdirde yazdırma devam edemez." +msgstr "Lütfen yukarıdaki hatayı düzeltin, aksi takdirde yazdırma devam edemez." msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7412,11 +7401,11 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " -"not collect any Personal Data by which an individual can be identified " -"directly or indirectly, including without limitation names, addresses, " -"payment information, or phone numbers. By enabling this service, you agree " -"to these terms and the statement about Privacy Policy." +"logs, which may include information described in Privacy Policy. We will not " +"collect any Personal Data by which an individual can be identified directly " +"or indirectly, including without limitation names, addresses, payment " +"information, or phone numbers. By enabling this service, you agree to these " +"terms and the statement about Privacy Policy." msgstr "" "3D Baskı topluluğunda, kendi dilimleme parametrelerimizi ve ayarlarımızı " "düzenlerken birbirimizin başarılarından ve başarısızlıklarından öğreniyoruz. " @@ -7467,16 +7456,16 @@ msgid "Click to reset all settings to the last saved preset." msgstr "Tüm ayarları en son kaydedilen ön ayara sıfırlamak için tıklayın." msgid "" -"Prime tower is required for smooth timeplase. There may be flaws on the " -"model without prime tower. Are you sure you want to disable prime tower?" +"Prime tower is required for smooth timeplase. There may be flaws on the model " +"without prime tower. Are you sure you want to disable prime tower?" msgstr "" "Sorunsuz timeplace için Prime Tower gereklidir. Prime tower olmayan modelde " "kusurlar olabilir. Prime tower'ı devre dışı bırakmak istediğinizden emin " "misiniz?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " -"model without prime tower. Do you want to enable prime tower?" +"Prime tower is required for smooth timelapse. There may be flaws on the model " +"without prime tower. Do you want to enable prime tower?" msgstr "" "Sorunsuz hızlandırılmış çekim için Prime Tower gereklidir. Prime tower " "olmayan modelde kusurlar olabilir. Prime tower'ı etkinleştirmek istiyor " @@ -7505,11 +7494,11 @@ msgstr "" msgid "" "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the following " -"settings: at least 2 interface layers, at least 0.1mm top z distance or " -"using support materials on interface." +"settings: at least 2 interface layers, at least 0.1mm top z distance or using " +"support materials on interface." msgstr "" -"\"Güçlü Ağaç\" ve \"Ağaç Hibrit\" stilleri için şu ayarları öneriyoruz: en " -"az 2 arayüz katmanı, en az 0,1 mm üst z mesafesi veya arayüzde destek " +"\"Güçlü Ağaç\" ve \"Ağaç Hibrit\" stilleri için şu ayarları öneriyoruz: en az " +"2 arayüz katmanı, en az 0,1 mm üst z mesafesi veya arayüzde destek " "malzemeleri kullanılması." msgid "" @@ -7548,8 +7537,8 @@ msgid "" "height limits ,this may cause printing quality issues." msgstr "" "Katman yüksekliği, Yazıcı Ayarları -> Ekstruder -> Katman yüksekliği " -"sınırları bölümündeki sınırı aşıyor bu durum baskı kalitesi sorunlarına " -"neden olabilir." +"sınırları bölümündeki sınırı aşıyor bu durum baskı kalitesi sorunlarına neden " +"olabilir." msgid "Adjust to the set range automatically? \n" msgstr "Ayarlanan aralığa otomatik olarak ayarlansın mı? \n" @@ -7563,8 +7552,8 @@ msgstr "Atla" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " "distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " -"printing complications." +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications." msgstr "" "Deneysel özellik: Filament değişiklikleri sırasında, floşu en aza indirmek " "için filamanı daha büyük bir mesafeden geri çekmek ve kesmek. Flush’u önemli " @@ -7586,8 +7575,8 @@ msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " "\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add Primitive" -"\"->\"Timelapse Wipe Tower\"." +"by right-click the empty position of build plate and choose \"Add Primitive\"-" +">\"Timelapse Wipe Tower\"." msgstr "" "Araç başlığı olmadan timelapse kaydederken, bir \"Timelapse Wipe Tower\" " "eklenmesi önerilir.\n" @@ -7636,8 +7625,8 @@ msgid "" "the overhang degree range and wall speed is used" msgstr "" "Bu, çeşitli sarkma dereceleri için hızdır. Çıkıntı dereceleri çizgi " -"genişliğinin yüzdesi olarak ifade edilir. 0 hız, sarkma derecesi aralığı " -"için yavaşlamanın olmadığı anlamına gelir ve duvar hızı kullanılır" +"genişliğinin yüzdesi olarak ifade edilir. 0 hız, sarkma derecesi aralığı için " +"yavaşlamanın olmadığı anlamına gelir ve duvar hızı kullanılır" msgid "Bridge" msgstr "Köprü" @@ -7737,11 +7726,11 @@ msgid "Cool plate" msgstr "Soğuk plaka" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when cool plate is installed. Value 0 means the filament does " +"not support to print on the Cool Plate" msgstr "" -"Soğutma plakası takıldığında yatak sıcaklığı. 0 değeri, filamentin Cool " -"Plate üzerine yazdırmayı desteklemediği anlamına gelir" +"Soğutma plakası takıldığında yatak sıcaklığı. 0 değeri, filamentin Cool Plate " +"üzerine yazdırmayı desteklemediği anlamına gelir" msgid "Engineering plate" msgstr "Mühendislik plakası" @@ -7812,7 +7801,7 @@ msgstr "" "maksimum olacaktır" msgid "Auxiliary part cooling fan" -msgstr "Yardımcı Parça Soğutma Fanı" +msgstr "Yardımcı parça soğutma fanı" msgid "Exhaust fan" msgstr "Egzos Fanı" @@ -8062,16 +8051,16 @@ msgstr "\"%1%\" ön ayarı aşağıdaki kaydedilmemiş değişiklikleri içeriyo #, boost-format msgid "" -"Preset \"%1%\" is not compatible with the new printer profile and it " -"contains the following unsaved changes:" +"Preset \"%1%\" is not compatible with the new printer profile and it contains " +"the following unsaved changes:" msgstr "" "Ön ayar \"%1%\", yeni yazıcı profiliyle uyumlu değil ve aşağıdaki " "kaydedilmemiş değişiklikleri içeriyor:" #, boost-format msgid "" -"Preset \"%1%\" is not compatible with the new process profile and it " -"contains the following unsaved changes:" +"Preset \"%1%\" is not compatible with the new process profile and it contains " +"the following unsaved changes:" msgstr "" "Ön ayar \"%1%\", yeni işlem profiliyle uyumlu değil ve aşağıdaki " "kaydedilmemiş değişiklikleri içeriyor:" @@ -8105,8 +8094,8 @@ msgid "" "the modified values to the new project" msgstr "" "\n" -"Değiştirdiğiniz ön ayar değerlerini atabilir veya değiştirilen değerleri " -"yeni projeye aktarmayı seçebilirsiniz." +"Değiştirdiğiniz ön ayar değerlerini atabilir veya değiştirilen değerleri yeni " +"projeye aktarmayı seçebilirsiniz." msgid "Extruders count" msgstr "Ekstruder sayısı" @@ -8130,19 +8119,19 @@ msgstr "" msgid "" "Transfer the selected options from left preset to the right.\n" -"Note: New modified presets will be selected in settings tabs after close " -"this dialog." +"Note: New modified presets will be selected in settings tabs after close this " +"dialog." msgstr "" "Seçilen seçenekleri sol ön ayardan sağa aktarın.\n" -"Not: Bu iletişim kutusunu kapattıktan sonra ayarlar sekmelerinde " -"değiştirilen yeni ön ayarlar seçilecektir." +"Not: Bu iletişim kutusunu kapattıktan sonra ayarlar sekmelerinde değiştirilen " +"yeni ön ayarlar seçilecektir." msgid "Transfer values from left to right" msgstr "Değerleri soldan sağa aktarın" msgid "" -"If enabled, this dialog can be used for transfer selected values from left " -"to right preset." +"If enabled, this dialog can be used for transfer selected values from left to " +"right preset." msgstr "" "Etkinleştirilirse, bu iletişim kutusu seçilen değerleri soldan sağa ön ayara " "aktarmak için kullanılabilir." @@ -8229,11 +8218,11 @@ msgstr "Sıkıştırma özelleştirme" 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" +"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." @@ -8581,10 +8570,10 @@ msgid "Shift+Mouse wheel" msgstr "Shift+Fare tekerleği" msgid "Horizontal slider - Move to start position" -msgstr "" +msgstr "Yatay kaydırıcı - Başlangıç ​​konumuna taşıyın" msgid "Horizontal slider - Move to last position" -msgstr "" +msgstr "Yatay kaydırıcı - Son konuma git" msgid "Release Note" msgstr "Sürüm notu" @@ -8599,8 +8588,8 @@ msgstr "Ağ eklentisi güncellemesi" msgid "" "Click OK to update the Network plug-in when Orca Slicer launches next time." msgstr "" -"Orca Slicer bir sonraki sefer başlatıldığında Ağ eklentisini güncellemek " -"için Tamam'a tıklayın." +"Orca Slicer bir sonraki sefer başlatıldığında Ağ eklentisini güncellemek için " +"Tamam'a tıklayın." #, c-format, boost-format msgid "A new Network plug-in(%s) available, Do you want to install it?" @@ -8657,8 +8646,7 @@ msgstr "Nozulu Onaylayın ve Güncelleyin" msgid "LAN Connection Failed (Sending print file)" msgstr "LAN Bağlantısı Başarısız (Yazdırma dosyası gönderiliyor)" -msgid "" -"Step 1, please confirm Orca Slicer and your printer are in the same LAN." +msgid "Step 1, please confirm Orca Slicer and your printer are in the same LAN." msgstr "" "Adım 1, lütfen Orca Slicer ile yazıcınızın aynı LAN'da olduğunu doğrulayın." @@ -8727,8 +8715,8 @@ msgid "Updating successful" msgstr "Güncelleme başarılı" msgid "" -"Are you sure you want to update? This will take about 10 minutes. Do not " -"turn off the power while the printer is updating." +"Are you sure you want to update? This will take about 10 minutes. Do not turn " +"off the power while the printer is updating." msgstr "" "Güncellemek istediğinizden emin misiniz? Bu yaklaşık 10 dakika sürecektir. " "Yazıcı güncellenirken gücü kapatmayın." @@ -8747,10 +8735,9 @@ msgid "" "printing. Do you want to update now? You can also update later on printer or " "update next time starting Orca." msgstr "" -"Ürün yazılımı sürümü anormal. Yazdırmadan önce onarım ve güncelleme " -"yapılması gerekir. Şimdi güncellemek istiyor musunuz? Ayrıca daha sonra " -"yazıcıda güncelleyebilir veya stüdyoyu bir sonraki başlatışınızda " -"güncelleyebilirsiniz." +"Ürün yazılımı sürümü anormal. Yazdırmadan önce onarım ve güncelleme yapılması " +"gerekir. Şimdi güncellemek istiyor musunuz? Ayrıca daha sonra yazıcıda " +"güncelleyebilir veya stüdyoyu bir sonraki başlatışınızda güncelleyebilirsiniz." msgid "Extension Board" msgstr "Uzatma Kartı" @@ -8902,8 +8889,8 @@ msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " msgstr "%1% çizgi genişliği hesaplanamadı. \"%2%\" değeri alınamıyor " msgid "" -"Invalid spacing supplied to Flow::with_spacing(), check your layer height " -"and extrusion width" +"Invalid spacing supplied to Flow::with_spacing(), check your layer height and " +"extrusion width" msgstr "" "Flow::with_spacing()'e sağlanan geçersiz boşluk, kat yüksekliğinizi ve " "ekstrüzyon genişliğinizi kontrol edin" @@ -9036,8 +9023,8 @@ msgstr " dışlama alanına çok yakın ve çarpışmalara neden olacak.\n" msgid "" "Can not print multiple filaments which have large difference of temperature " -"together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"together. Otherwise, the extruder and nozzle may be blocked or damaged during " +"printing" msgstr "" "Birlikte büyük sıcaklık farkına sahip birden fazla filament basılamaz. Aksi " "takdirde baskı sırasında ekstruder ve nozul tıkanabilir veya hasar görebilir" @@ -9056,8 +9043,8 @@ msgid "" "Please select \"By object\" print sequence to print multiple objects in " "spiral vase mode." msgstr "" -"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye göre" -"\" yazdırma sırasını seçin." +"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye " +"göre\" yazdırma sırasını seçin." msgid "" "The spiral vase mode does not work when an object contains more than one " @@ -9070,8 +9057,8 @@ msgstr "%1% nesnesi maksimum yapı hacmi yüksekliğini aşıyor." #, boost-format msgid "" -"While the object %1% itself fits the build volume, its last layer exceeds " -"the maximum build volume height." +"While the object %1% itself fits the build volume, its last layer exceeds the " +"maximum build volume height." msgstr "" "%1% nesnesinin kendisi yapı hacmine uysa da, son katmanı maksimum yapı hacmi " "yüksekliğini aşıyor." @@ -9100,8 +9087,7 @@ msgstr "" "Temizleme Kulesi şu anda yalnızca ilgili ekstruder adreslemesiyle " "desteklenmektedir (use_relative_e_distances=1)." -msgid "" -"Ooze prevention is currently not supported with the prime tower enabled." +msgid "Ooze prevention is currently not supported with the prime tower enabled." msgstr "Sızıntı önleme şu anda ana kule etkinken desteklenmemektedir." msgid "" @@ -9118,8 +9104,8 @@ msgid "" "The prime tower is not supported when adaptive layer height is on. It " "requires that all objects have the same layer height." msgstr "" -"Uyarlanabilir katman yüksekliği açıkken ana kule desteklenmez. Tüm " -"nesnelerin aynı katman yüksekliğine sahip olmasını gerektirir." +"Uyarlanabilir katman yüksekliği açıkken ana kule desteklenmez. Tüm nesnelerin " +"aynı katman yüksekliğine sahip olmasını gerektirir." msgid "The prime tower requires \"support gap\" to be multiple of layer height" msgstr "" @@ -9127,12 +9113,11 @@ msgstr "" msgid "The prime tower requires that all objects have the same layer heights" msgstr "" -"Prime tower, tüm nesnelerin aynı katman yüksekliğine sahip olmasını " -"gerektirir" +"Prime tower, tüm nesnelerin aynı katman yüksekliğine sahip olmasını gerektirir" msgid "" -"The prime tower requires that all objects are printed over the same number " -"of raft layers" +"The prime tower requires that all objects are printed over the same number of " +"raft layers" msgstr "" "Ana kule, tüm nesnelerin aynı sayıda sal katmanı üzerine yazdırılmasını " "gerektirir" @@ -9145,8 +9130,8 @@ msgstr "" "gerektirir." msgid "" -"The prime tower is only supported if all objects have the same variable " -"layer height" +"The prime tower is only supported if all objects have the same variable layer " +"height" msgstr "" "Prime tower yalnızca tüm nesnelerin aynı değişken katman yüksekliğine sahip " "olması durumunda desteklenir" @@ -9160,8 +9145,7 @@ msgstr "Çok büyük çizgi genişliği" msgid "" "The prime tower requires that support has the same layer height with object." msgstr "" -"Prime kulesi için, destek, nesne ile aynı katman yüksekliğine sahip " -"olmalıdır." +"Prime kulesi için, destek, nesne ile aynı katman yüksekliğine sahip olmalıdır." msgid "" "Organic support tree tip diameter must not be smaller than support material " @@ -9174,8 +9158,8 @@ msgid "" "Organic support branch diameter must not be smaller than 2x support material " "extrusion width." msgstr "" -"Organik destek dalı çapı, destek malzemesi ekstrüzyon genişliğinin 2 " -"katından daha küçük olamaz." +"Organik destek dalı çapı, destek malzemesi ekstrüzyon genişliğinin 2 katından " +"daha küçük olamaz." msgid "" "Organic support branch diameter must not be smaller than support tree tip " @@ -9192,20 +9176,20 @@ msgid "Layer height cannot exceed nozzle diameter" msgstr "Katman yüksekliği nozul çapını aşamaz" msgid "" -"Relative extruder addressing requires resetting the extruder position at " -"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"Relative extruder addressing requires resetting the extruder position at each " +"layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " "layer_gcode." msgstr "" -"Göreceli ekstruder adreslemesi, kayan nokta doğruluğunun kaybını önlemek " -"için her katmandaki ekstruder konumunun sıfırlanmasını gerektirir. " -"Layer_gcode'a \"G92 E0\" ekleyin." +"Göreceli ekstruder adreslemesi, kayan nokta doğruluğunun kaybını önlemek için " +"her katmandaki ekstruder konumunun sıfırlanmasını gerektirir. Layer_gcode'a " +"\"G92 E0\" ekleyin." msgid "" "\"G92 E0\" was found in before_layer_gcode, which is incompatible with " "absolute extruder addressing." msgstr "" -"Before_layer_gcode'da \"G92 E0\" bulundu ve bu, mutlak ekstruder " -"adreslemeyle uyumsuzdu." +"Before_layer_gcode'da \"G92 E0\" bulundu ve bu, mutlak ekstruder adreslemeyle " +"uyumsuzdu." msgid "" "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " @@ -9244,8 +9228,8 @@ msgid "" "(machine_max_acceleration_extruding).\n" "Orca will automatically cap the acceleration speed to ensure it doesn't " "surpass the printer's capabilities.\n" -"You can adjust the machine_max_acceleration_extruding value in your " -"printer's configuration to get higher speeds." +"You can adjust the machine_max_acceleration_extruding value in your printer's " +"configuration to get higher speeds." msgstr "" "Hızlanma ayarı yazıcının maksimum hızlanmasını aşıyor " "(machine_max_acceleration_extruding).\n" @@ -9306,8 +9290,7 @@ msgid "Elephant foot compensation" msgstr "Fil ayağı telafi oranı" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrink the initial layer on build plate to compensate for elephant foot effect" msgstr "" "Fil ayağı etkisini telafi etmek için baskı plakasındaki ilk katmanı küçültün" @@ -9366,15 +9349,15 @@ msgid "" "Orca Slicer can upload G-code files to a printer host. This field should " "contain the hostname, IP address or URL of the printer host instance. Print " "host behind HAProxy with basic auth enabled can be accessed by putting the " -"user name and password into the URL in the following format: https://" -"username:password@your-octopi-address/" +"user name and password into the URL in the following format: https://username:" +"password@your-octopi-address/" msgstr "" -"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. " -"Bu alan, yazıcı ana bilgisayar örneğinin ana bilgisayar adını, IP adresini " -"veya URL'sini içermelidir. Temel kimlik doğrulamanın etkin olduğu " -"HAProxy'nin arkasındaki yazdırma ana bilgisayarına, kullanıcı adı ve " -"parolanın aşağıdaki biçimdeki URL'ye girilmesiyle erişilebilir: https://" -"username:password@your-octopi-address/" +"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu " +"alan, yazıcı ana bilgisayar örneğinin ana bilgisayar adını, IP adresini veya " +"URL'sini içermelidir. Temel kimlik doğrulamanın etkin olduğu HAProxy'nin " +"arkasındaki yazdırma ana bilgisayarına, kullanıcı adı ve parolanın aşağıdaki " +"biçimdeki URL'ye girilmesiyle erişilebilir: https://username:password@your-" +"octopi-address/" msgid "Device UI" msgstr "Cihaz kullanıcı arayüzü" @@ -9382,8 +9365,7 @@ msgstr "Cihaz kullanıcı arayüzü" msgid "" "Specify the URL of your device user interface if it's not same as print_host" msgstr "" -"Print_Host ile aynı değilse cihazınızın kullanıcı arayüzünün URL'sini " -"belirtin" +"Print_Host ile aynı değilse cihazınızın kullanıcı arayüzünün URL'sini belirtin" msgid "API Key / Password" msgstr "API Anahtarı / Şifre" @@ -9392,9 +9374,8 @@ msgid "" "Orca Slicer can upload G-code files to a printer host. This field should " "contain the API Key or the password required for authentication." msgstr "" -"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. " -"Bu alan, kimlik doğrulama için gereken API Anahtarını veya şifreyi " -"içermelidir." +"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu " +"alan, kimlik doğrulama için gereken API Anahtarını veya şifreyi içermelidir." msgid "Name of the printer" msgstr "Yazıcı adı" @@ -9404,8 +9385,8 @@ msgstr "HTTPS CA Dosyası" 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." +"in crt/pem format. If left blank, the default OS CA certificate repository is " +"used." msgstr "" "HTTPS OctoPrint bağlantıları için crt/pem formatında özel CA sertifika " "dosyası belirtilebilir. Boş bırakılırsa varsayılan OS CA sertifika deposu " @@ -9456,10 +9437,10 @@ msgid "" "either as an absolute value or as percentage (for example 50%) of a direct " "travel path. Zero to disable" msgstr "" -"Duvarı geçmekten kaçınmak için maksimum sapma mesafesi. Yoldan sapma " -"mesafesi bu değerden büyükse yoldan sapmayın. Yol uzunluğu, mutlak bir değer " -"olarak veya doğrudan seyahat yolunun yüzdesi (örneğin %50) olarak " -"belirtilebilir. Devre dışı bırakmak için sıfır" +"Duvarı geçmekten kaçınmak için maksimum sapma mesafesi. Yoldan sapma mesafesi " +"bu değerden büyükse yoldan sapmayın. Yol uzunluğu, mutlak bir değer olarak " +"veya doğrudan seyahat yolunun yüzdesi (örneğin %50) olarak belirtilebilir. " +"Devre dışı bırakmak için sıfır" msgid "mm or %" msgstr "mm veya %" @@ -9468,8 +9449,8 @@ msgid "Other layers" msgstr "Diğer katmanlar" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. Value 0 means the filament " +"does not support to print on the Cool Plate" msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 değeri, filamentin " "Cool Plate üzerine yazdırmayı desteklemediği anlamına gelir" @@ -9478,22 +9459,22 @@ msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. Value 0 means the filament " +"does not support to print on the Engineering Plate" msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. Değer 0, filamentin " "Mühendislik Plakasına yazdırmayı desteklemediği anlamına gelir" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. Value 0 means the filament " +"does not support to print on the High Temp Plate" msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 değeri, filamentin " "Yüksek Sıcaklık Plakasına yazdırmayı desteklemediği anlamına gelir" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. Value 0 means the filament " +"does not support to print on the Textured PEI Plate" msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 Değeri, filamentin " "Dokulu PEI Plaka üzerine yazdırmayı desteklemediği anlamına gelir" @@ -9575,11 +9556,11 @@ msgid "" "The number of bottom solid layers is increased when slicing if the thickness " "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " -"is disabled and thickness of bottom shell is absolutely determained by " -"bottom shell layers" +"is disabled and thickness of bottom shell is absolutely determained by bottom " +"shell layers" msgstr "" -"Alt kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince " -"ise dilimleme sırasında alt katı katmanların sayısı arttırılır. Bu, katman " +"Alt kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince ise " +"dilimleme sırasında alt katı katmanların sayısı arttırılır. Bu, katman " "yüksekliği küçük olduğunda kabuğun çok ince olmasını önleyebilir. 0, bu " "ayarın devre dışı olduğu ve alt kabuğun kalınlığının mutlaka alt kabuk " "katmanları tarafından belirlendiği anlamına gelir" @@ -9593,8 +9574,7 @@ msgid "" "\n" "Options:\n" "1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces\n" -"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " -"only\n" +"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces only\n" "3. Nowhere: Disables gap fill\n" msgstr "" "Seçilen yüzeyler için boşluk doldurmayı etkinleştirir. Doldurulacak minimum " @@ -9620,19 +9600,19 @@ msgid "Force cooling for overhang and bridge" msgstr "Çıkıntı ve köprüler için soğutmayı zorla" msgid "" -"Enable this option to optimize part cooling fan speed for overhang and " -"bridge to get better cooling" +"Enable this option to optimize part cooling fan speed for overhang and bridge " +"to get better cooling" msgstr "" -"Daha iyi soğutma elde etmek amacıyla çıkıntı ve köprü için parça soğutma " -"fanı hızını optimize etmek amacıyla bu seçeneği etkinleştirin" +"Daha iyi soğutma elde etmek amacıyla çıkıntı ve köprü için parça soğutma fanı " +"hızını optimize etmek amacıyla bu seçeneği etkinleştirin" msgid "Fan speed for overhang" msgstr "Çıkıntılar için fan hızı" msgid "" -"Force part cooling fan to be this speed when printing bridge or overhang " -"wall which has large overhang degree. Forcing cooling for overhang and " -"bridge can get better quality for these part" +"Force part cooling fan to be this speed when printing bridge or overhang wall " +"which has large overhang degree. Forcing cooling for overhang and bridge can " +"get better quality for these part" msgstr "" "Çıkıntı derecesi büyük olan köprü veya çıkıntılı duvara baskı yaparken parça " "soğutma fanını bu hızda olmaya zorlayın. Çıkıntı ve köprü için soğutmayı " @@ -9644,9 +9624,9 @@ msgstr "Çıkıntı soğutması" #, c-format msgid "" "Force cooling fan to be specific speed when overhang degree of printed part " -"exceeds this value. Expressed as percentage which indicides how much width " -"of the line without support from lower layer. 0% means forcing cooling for " -"all outer wall no matter how much overhang degree" +"exceeds this value. Expressed as percentage which indicides how much width of " +"the line without support from lower layer. 0% means forcing cooling for all " +"outer wall no matter how much overhang degree" msgstr "" "Yazdırılan parçanın çıkıntı derecesi bu değeri aştığında soğutma fanını " "belirli bir hıza zorlar. Alt katmandan destek almadan çizginin ne kadar " @@ -9680,8 +9660,8 @@ msgid "" "Decrease this value slightly(for example 0.9) to reduce the amount of " "material for bridge, to improve sag" msgstr "" -"Köprü için malzeme miktarını azaltmak ve sarkmayı iyileştirmek için bu " -"değeri biraz azaltın (örneğin 0,9)" +"Köprü için malzeme miktarını azaltmak ve sarkmayı iyileştirmek için bu değeri " +"biraz azaltın (örneğin 0,9)" msgid "Internal bridge flow ratio" msgstr "İç köprü akış oranı" @@ -9749,11 +9729,11 @@ msgid "" "on the next layer, like letters. Set this setting to 0 to remove these " "artifacts." msgstr "" -"Eğer bir üst yüzey basılacaksa ve kısmen başka bir katman tarafından " -"kaplıysa layer genişliği bu değerin altında olan bir üst katman olarak " +"Eğer bir üst yüzey basılacaksa ve kısmen başka bir katman tarafından kaplıysa " +"layer genişliği bu değerin altında olan bir üst katman olarak " "değerlendirilmeyecek. Yalnızca çevrelerle kaplanması gereken yüzeyde 'bir " -"çevre üstte' tetiklemesine izin vermemek yararlı olabilir. Bu değer mm veya " -"a % çevre ekstrüzyon genişliğinin bir yüzdesi olabilir.\n" +"çevre üstte' tetiklemesine izin vermemek yararlı olabilir. Bu değer mm veya a " +"% çevre ekstrüzyon genişliğinin bir yüzdesi olabilir.\n" "Uyarı: Etkinleştirilirse bir sonraki katmanda harfler gibi bazı ince " "özelliklerin olması durumunda yapay yapılar oluşturulabilir. Bu yapıları " "kaldırmak için bu ayarı 0 olarak ayarlayın." @@ -9785,9 +9765,9 @@ msgid "Overhang reversal" msgstr "Çıkıntıyı tersine çevir" msgid "" -"Extrude perimeters that have a part over an overhang in the reverse " -"direction on odd layers. This alternating pattern can drastically improve " -"steep overhangs.\n" +"Extrude perimeters that have a part over an overhang in the reverse direction " +"on odd layers. This alternating pattern can drastically improve steep " +"overhangs.\n" "\n" "This setting can also help reduce part warping due to the reduction of " "stresses in the part walls." @@ -9809,8 +9789,7 @@ msgid "" "alternating directions. This should reduce part warping while also " "maintaining external wall quality. This feature can be very useful for warp " "prone material, like ABS/ASA, and also for elastic filaments, like TPU and " -"Silk PLA. It can also help reduce warping on floating regions over " -"supports.\n" +"Silk PLA. It can also help reduce warping on floating regions over supports.\n" "\n" "For this setting to be the most effective, it is recomended to set the " "Reverse Threshold to 0 so that all internal walls print in alternating " @@ -9842,8 +9821,7 @@ msgstr "" "Bu seçenek, havşa delikleri için köprüler oluşturarak bunların desteksiz " "yazdırılmasına olanak tanır. Mevcut modlar şunları içerir:\n" "1. Yok: Köprü oluşturulmaz.\n" -"2. Kısmen Köprülendi: Desteklenmeyen alanın yalnızca bir kısmı " -"köprülenecek.\n" +"2. Kısmen Köprülendi: Desteklenmeyen alanın yalnızca bir kısmı köprülenecek.\n" "3. Feda Katman: Tam bir feda köprü katmanı oluşturulur." msgid "Partially bridged" @@ -9963,8 +9941,8 @@ msgid "Brim ear detection radius" msgstr "Kenar kulak algılama yarıçapı" msgid "" -"The geometry will be decimated before dectecting sharp angles. This " -"parameter indicates the minimum length of the deviation for the decimation.\n" +"The geometry will be decimated before dectecting sharp angles. This parameter " +"indicates the minimum length of the deviation for the decimation.\n" "0 to deactivate" msgstr "" "Keskin açılar tespit edilmeden önce geometrinin büyük bir kısmı yok " @@ -10013,10 +9991,10 @@ msgid "" "that layer can be cooled for longer time. This can improve the cooling " "quality for needle and small details" msgstr "" -"Son katman süresinin \"Maksimum fan hızı eşiği\"ndeki katman süresi " -"eşiğinden kısa olmamasını sağlamak amacıyla yazdırma hızını yavaşlatmak için " -"bu seçeneği etkinleştirin, böylece katman daha uzun süre soğutulabilir. Bu, " -"iğne ve küçük detaylar için soğutma kalitesini artırabilir" +"Son katman süresinin \"Maksimum fan hızı eşiği\"ndeki katman süresi eşiğinden " +"kısa olmamasını sağlamak amacıyla yazdırma hızını yavaşlatmak için bu " +"seçeneği etkinleştirin, böylece katman daha uzun süre soğutulabilir. Bu, iğne " +"ve küçük detaylar için soğutma kalitesini artırabilir" msgid "Normal printing" msgstr "Normal baskı" @@ -10025,8 +10003,7 @@ msgid "" "The default acceleration of both normal printing and travel except initial " "layer" msgstr "" -"İlk katman dışında hem normal yazdırmanın hem de ilerlemenin varsayılan " -"ivmesi" +"İlk katman dışında hem normal yazdırmanın hem de ilerlemenin varsayılan ivmesi" msgid "mm/s²" msgstr "mm/s²" @@ -10070,8 +10047,8 @@ msgid "" "Close all cooling fan for the first certain layers. Cooling fan of the first " "layer used to be closed to get better build plate adhesion" msgstr "" -"İlk belirli katmanlar için tüm soğutma fanını kapatın. Daha iyi baskı " -"plakası yapışması sağlamak için ilk katmanın soğutma fanı kapatılırdı" +"İlk belirli katmanlar için tüm soğutma fanını kapatın. Daha iyi baskı plakası " +"yapışması sağlamak için ilk katmanın soğutma fanı kapatılırdı" msgid "Don't support bridges" msgstr "Köprülerde destek olmasın" @@ -10112,8 +10089,8 @@ msgid "Don't filter out small internal bridges (beta)" msgstr "Küçük iç köprüleri filtrelemeyin (deneysel)" msgid "" -"This option can help reducing pillowing on top surfaces in heavily slanted " -"or curved models.\n" +"This option can help reducing pillowing on top surfaces in heavily slanted or " +"curved models.\n" "\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " @@ -10128,16 +10105,16 @@ msgid "" "unsupported internal solid infill. The options below control the amount of " "filtering, i.e. the amount of internal bridges created.\n" "\n" -"Disabled - Disables this option. This is the default behaviour and works " -"well in most cases.\n" +"Disabled - Disables this option. This is the default behaviour and works well " +"in most cases.\n" "\n" "Limited filtering - Creates internal bridges on heavily slanted surfaces, " -"while avoiding creating uncessesary interal bridges. This works well for " -"most difficult models.\n" +"while avoiding creating uncessesary interal bridges. This works well for most " +"difficult models.\n" "\n" -"No filtering - Creates internal bridges on every potential internal " -"overhang. This option is useful for heavily slanted top surface models. " -"However, in most cases it creates too many unecessary bridges." +"No filtering - Creates internal bridges on every potential internal overhang. " +"This option is useful for heavily slanted top surface models. However, in " +"most cases it creates too many unecessary bridges." msgstr "" "Bu seçenek, aşırı eğimli veya kavisli modellerde üst yüzeylerdeki " "yastıklamanın azaltılmasına yardımcı olabilir.\n" @@ -10289,8 +10266,8 @@ msgid "" "Speed of outer wall which is outermost and visible. It's used to be slower " "than inner wall speed to get better quality." msgstr "" -"En dışta görünen ve görünen dış duvarın hızı. Daha iyi kalite elde etmek " -"için iç duvar hızından daha yavaş olması kullanılır." +"En dışta görünen ve görünen dış duvarın hızı. Daha iyi kalite elde etmek için " +"iç duvar hızından daha yavaş olması kullanılır." msgid "Small perimeters" msgstr "Küçük çevre (perimeter)" @@ -10319,8 +10296,8 @@ msgstr "Duvar baskı sırası" msgid "" "Print sequence of the internal (inner) and external (outer) walls. \n" "\n" -"Use Inner/Outer for best overhangs. This is because the overhanging walls " -"can adhere to a neighouring perimeter while printing. However, this option " +"Use Inner/Outer for best overhangs. This is because the overhanging walls can " +"adhere to a neighouring perimeter while printing. However, this option " "results in slightly reduced surface quality as the external perimeter is " "deformed by being squashed to the internal perimeter.\n" "\n" @@ -10351,14 +10328,14 @@ msgstr "" "kalitesi ve boyutsal doğruluk için İç/Dış/İç seçeneğini kullanın. Ancak, dış " "duvarın üzerine baskı yapılacak bir iç çevre olmadığından sarkma performansı " "düşecektir. Bu seçenek, önce 3. çevreden itibaren iç duvarları, ardından dış " -"çevreyi ve son olarak da birinci iç çevreyi yazdırdığından etkili olması " -"için en az 3 duvar gerektirir. Bu seçenek çoğu durumda Dış/İç seçeneğine " -"karşı önerilir. \n" +"çevreyi ve son olarak da birinci iç çevreyi yazdırdığından etkili olması için " +"en az 3 duvar gerektirir. Bu seçenek çoğu durumda Dış/İç seçeneğine karşı " +"önerilir. \n" "\n" "İç/Dış/İç seçeneğinin aynı dış duvar kalitesi ve boyutsal doğruluk " "avantajları için Dış/İç seçeneğini kullanın. Bununla birlikte, yeni bir " -"katmanın ilk ekstrüzyonu görünür bir yüzey üzerinde başladığından z " -"dikişleri daha az tutarlı görünecektir.\n" +"katmanın ilk ekstrüzyonu görünür bir yüzey üzerinde başladığından z dikişleri " +"daha az tutarlı görünecektir.\n" "\n" " " @@ -10380,9 +10357,9 @@ msgid "" "\n" "Printing walls first may help with extreme overhangs as the walls have the " "neighbouring infill to adhere to. However, the infill will slighly push out " -"the printed walls where it is attached to them, resulting in a worse " -"external surface finish. It can also cause the infill to shine through the " -"external surfaces of the part." +"the printed walls where it is attached to them, resulting in a worse external " +"surface finish. It can also cause the infill to shine through the external " +"surfaces of the part." msgstr "" "Duvar/dolgu sırası. Onay kutusunun işareti kaldırıldığında ilk olarak " "duvarlar yazdırılır ve bu çoğu durumda en iyi sonucu verir.\n" @@ -10400,8 +10377,8 @@ msgid "" "The direction which the wall loops are extruded when looking down from the " "top.\n" "\n" -"By default all walls are extruded in counter-clockwise, unless Reverse on " -"odd is enabled. Set this to any option other than Auto will force the wall " +"By default all walls are extruded in counter-clockwise, unless Reverse on odd " +"is enabled. Set this to any option other than Auto will force the wall " "direction regardless of the Reverse on odd.\n" "\n" "This option will be disabled if sprial vase mode is enabled." @@ -10409,8 +10386,8 @@ msgstr "" "Yukarıdan aşağıya bakıldığında duvar döngülerinin ekstrüzyona uğradığı yön.\n" "\n" "Tek sayıyı ters çevir seçeneği etkinleştirilmedikçe, varsayılan olarak tüm " -"duvarlar saat yönünün tersine ekstrüde edilir. Bunu Otomatik dışında " -"herhangi bir seçeneğe ayarlayın, Ters açıklığa bakılmaksızın duvar yönünü " +"duvarlar saat yönünün tersine ekstrüde edilir. Bunu Otomatik dışında herhangi " +"bir seçeneğe ayarlayın, Ters açıklığa bakılmaksızın duvar yönünü " "zorlayacaktır.\n" "\n" "Spiral vazo modu etkinse bu seçenek devre dışı bırakılacaktır." @@ -10438,8 +10415,8 @@ msgid "" "Distance of the nozzle tip to the lid. Used for collision avoidance in by-" "object printing." msgstr "" -"Nozul ucunun kapağa olan mesafesi. Nesneye göre yazdırmada çarpışmayı " -"önlemek için kullanılır." +"Nozul ucunun kapağa olan mesafesi. Nesneye göre yazdırmada çarpışmayı önlemek " +"için kullanılır." msgid "" "Clearance radius around extruder. Used for collision avoidance in by-object " @@ -10462,20 +10439,19 @@ msgid "" "probe's XY offset, most printers are unable to probe the entire bed. To " "ensure the probe point does not go outside the bed area, the minimum and " "maximum points of the bed mesh should be set appropriately. OrcaSlicer " -"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " -"exceed these min/max points. This information can usually be obtained from " -"your printer manufacturer. The default setting is (-99999, -99999), which " -"means there are no limits, thus allowing probing across the entire bed." +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed " +"these min/max points. This information can usually be obtained from your " +"printer manufacturer. The default setting is (-99999, -99999), which means " +"there are no limits, thus allowing probing across the entire bed." msgstr "" -"Bu seçenek, izin verilen yatak ağ alanı için minimum noktayı ayarlar. Prob " -"XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. Prob noktasının " -"yatak alanı dışına çıkmamasını sağlamak için yatak ağının minimum ve " -"maksimum noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, " -"adaptive_bed_mesh_min/adaptive_bed_mesh_max değerlerinin bu min/maks " -"noktalarını aşmamasını sağlar. Bu bilgi genellikle yazıcınızın üreticisinden " -"edinilebilir. Varsayılan ayar (-99999, -99999) şeklindedir; bu, herhangi bir " -"sınırın olmadığı anlamına gelir, dolayısıyla yatağın tamamında problamaya " -"izin verilir." +"Bu seçenek, izin verilen yatak ağ alanı için minimum noktayı ayarlar. Prob XY " +"ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. Prob noktasının " +"yatak alanı dışına çıkmamasını sağlamak için yatak ağının minimum ve maksimum " +"noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, adaptive_bed_mesh_min/" +"adaptive_bed_mesh_max değerlerinin bu min/maks noktalarını aşmamasını sağlar. " +"Bu bilgi genellikle yazıcınızın üreticisinden edinilebilir. Varsayılan ayar " +"(-99999, -99999) şeklindedir; bu, herhangi bir sınırın olmadığı anlamına " +"gelir, dolayısıyla yatağın tamamında problamaya izin verilir." msgid "Bed mesh max" msgstr "Maksimum yatak ağı" @@ -10485,20 +10461,19 @@ msgid "" "probe's XY offset, most printers are unable to probe the entire bed. To " "ensure the probe point does not go outside the bed area, the minimum and " "maximum points of the bed mesh should be set appropriately. OrcaSlicer " -"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " -"exceed these min/max points. This information can usually be obtained from " -"your printer manufacturer. The default setting is (99999, 99999), which " -"means there are no limits, thus allowing probing across the entire bed." +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed " +"these min/max points. This information can usually be obtained from your " +"printer manufacturer. The default setting is (99999, 99999), which means " +"there are no limits, thus allowing probing across the entire bed." msgstr "" -"Bu seçenek, izin verilen yatak ağ alanı için maksimum noktayı ayarlar. " -"Probun XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. Prob " -"noktasının yatak alanı dışına çıkmamasını sağlamak için yatak ağının minimum " -"ve maksimum noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, " -"adaptive_bed_mesh_min/adaptive_bed_mesh_max değerlerinin bu min/maks " -"noktalarını aşmamasını sağlar. Bu bilgi genellikle yazıcınızın üreticisinden " -"edinilebilir. Varsayılan ayar (99999, 99999) şeklindedir; bu, herhangi bir " -"sınırın olmadığı anlamına gelir, dolayısıyla yatağın tamamında problamaya " -"izin verilir." +"Bu seçenek, izin verilen yatak ağ alanı için maksimum noktayı ayarlar. Probun " +"XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. Prob noktasının " +"yatak alanı dışına çıkmamasını sağlamak için yatak ağının minimum ve maksimum " +"noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, adaptive_bed_mesh_min/" +"adaptive_bed_mesh_max değerlerinin bu min/maks noktalarını aşmamasını sağlar. " +"Bu bilgi genellikle yazıcınızın üreticisinden edinilebilir. Varsayılan ayar " +"(99999, 99999) şeklindedir; bu, herhangi bir sınırın olmadığı anlamına gelir, " +"dolayısıyla yatağın tamamında problamaya izin verilir." msgid "Probe point distance" msgstr "Prob noktası mesafesi" @@ -10515,8 +10490,8 @@ msgid "Mesh margin" msgstr "Yatak ağı boşluğu" msgid "" -"This option determines the additional distance by which the adaptive bed " -"mesh area should be expanded in the XY directions." +"This option determines the additional distance by which the adaptive bed mesh " +"area should be expanded in the XY directions." msgstr "" "Bu seçenek, uyarlanabilir yatak ağ alanının XY yönlerinde genişletilmesi " "gereken ek mesafeyi belirler." @@ -10536,9 +10511,9 @@ msgstr "Akış oranı" msgid "" "The material may have volumetric change after switching between molten state " "and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"filament in gcode proportionally. Recommended value range is between 0.95 and " +"1.05. Maybe you can tune this value to get nice flat surface when there has " +"slight overflow or underflow" msgstr "" "Malzeme, erimiş hal ile kristal hal arasında geçiş yaptıktan sonra hacimsel " "değişime sahip olabilir. Bu ayar, bu filamentin gcode'daki tüm ekstrüzyon " @@ -10560,8 +10535,8 @@ msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" msgstr "Basınç avansı (Klipper) Doğrusal ilerleme faktörü (Marlin)" msgid "" -"Default line width if other line widths are set to 0. If expressed as a %, " -"it will be computed over the nozzle diameter." +"Default line width if other line widths are set to 0. If expressed as a %, it " +"will be computed over the nozzle diameter." msgstr "" "Diğer çizgi genişlikleri 0'a ayarlanmışsa varsayılan çizgi genişliği. % " "olarak ifade edilirse nozul çapı üzerinden hesaplanacaktır." @@ -10570,8 +10545,8 @@ msgid "Keep fan always on" msgstr "Fanı her zaman açık tut" msgid "" -"If enable this setting, part cooling fan will never be stoped and will run " -"at least at minimum speed to reduce the frequency of starting and stoping" +"If enable this setting, part cooling fan will never be stoped and will run at " +"least at minimum speed to reduce the frequency of starting and stoping" msgstr "" "Bu ayarı etkinleştirirseniz, parça soğutma fanı hiçbir zaman durdurulmayacak " "ve başlatma ve durdurma sıklığını azaltmak için en azından minimum hızda " @@ -10657,11 +10632,11 @@ msgid "" "Be sure to allow enough space between objects, as this compensation is done " "after the checks." msgstr "" -"Filamentin soğuduktan sonra alacağı büzülme yüzdesini girin (100 mm yerine " -"94 mm ölçerseniz 94%). Parça, telafi etmek için xy'de ölçeklendirilecektir. " +"Filamentin soğuduktan sonra alacağı büzülme yüzdesini girin (100 mm yerine 94 " +"mm ölçerseniz 94%). Parça, telafi etmek için xy'de ölçeklendirilecektir. " "Yalnızca çevre için kullanılan filament dikkate alınır.\n" -"Bu telafi kontrollerden sonra yapıldığından, nesneler arasında yeterli " -"boşluk bıraktığınızdan emin olun." +"Bu telafi kontrollerden sonra yapıldığından, nesneler arasında yeterli boşluk " +"bıraktığınızdan emin olun." msgid "Loading speed" msgstr "Yükleme hızı" @@ -10712,8 +10687,8 @@ msgid "" "Filament is cooled by being moved back and forth in the cooling tubes. " "Specify desired number of these moves." msgstr "" -"Filament, soğutma tüpleri içinde ileri geri hareket ettirilerek soğutulur. " -"Bu sayısını belirtin." +"Filament, soğutma tüpleri içinde ileri geri hareket ettirilerek soğutulur. Bu " +"sayısını belirtin." msgid "Speed of the first cooling move" msgstr "İlk soğutma hareketi hızı" @@ -10727,9 +10702,9 @@ msgstr "Silme kulesi üzerinde minimum boşaltım" 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, Orca Slicer will always prime this amount of material into the wipe " -"tower to produce successive infill or sacrificial object extrusions reliably." +"stable. Before purging the print head into an infill or a sacrificial object, " +"Orca Slicer will always prime this amount of material into the wipe tower to " +"produce successive infill or sacrificial object extrusions reliably." msgstr "" "Bir takım değişiminden sonra, yeni yüklenen filamentin nozul içindeki kesin " "konumu bilinmeyebilir ve filament basıncı muhtemelen henüz stabil değildir. " @@ -10746,13 +10721,12 @@ msgstr "Soğutma hareketleri bu hıza doğru giderek hızlanır." 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." +"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 "" "Yazıcı donanım yazılımının (veya Çoklu Malzeme Ünitesi 2.0'ın) takım " -"değişikliği sırasında (T kodu yürütülürken) yeni bir filament yükleme " -"süresi. Bu süre, G kodu zaman tahmincisi tarafından toplam baskı süresine " -"eklenir." +"değişikliği sırasında (T kodu yürütülürken) yeni bir filament yükleme süresi. " +"Bu süre, G kodu zaman tahmincisi tarafından toplam baskı süresine eklenir." msgid "Ramming parameters" msgstr "Sıkıştırma parametreleri" @@ -10766,8 +10740,8 @@ msgstr "" 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." +"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 "" "Yazıcı ürün yazılımının (veya Çoklu Malzeme Ünitesi 2.0'ın) takım değişimi " "sırasında (T kodu yürütülürken) filamenti boşaltma süresi. Bu süre, G kodu " @@ -10815,8 +10789,7 @@ msgstr "Filament malzeme türü" msgid "Soluble material" msgstr "Çözünür malzeme" -msgid "" -"Soluble material is commonly used to print support and support interface" +msgid "Soluble material is commonly used to print support and support interface" msgstr "" "Çözünür malzeme genellikle destek ve destek arayüzünü yazdırmak için " "kullanılır" @@ -10824,8 +10797,7 @@ msgstr "" msgid "Support material" msgstr "Destek malzemesi" -msgid "" -"Support material is commonly used to print support and support interface" +msgid "Support material is commonly used to print support and support interface" msgstr "" "Destek malzemesi yaygın olarak destek ve destek arayüzünü yazdırmak için " "kullanılır" @@ -10861,7 +10833,7 @@ msgid "(Undefined)" msgstr "(Tanımsız)" msgid "Sparse infill direction" -msgstr "" +msgstr "Seyrek dolgu yönü" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " @@ -10870,18 +10842,19 @@ msgstr "" "Hattın başlangıcını veya ana yönünü kontrol eden seyrek dolgu deseni açısı" msgid "Solid infill direction" -msgstr "" +msgstr "Katı dolgu yönü" msgid "" -"Angle for solid infill pattern, which controls the start or main direction " -"of line" +"Angle for solid infill pattern, which controls the start or main direction of " +"line" msgstr "" +"Hattın başlangıcını veya ana yönünü kontrol eden katı dolgu deseni açısı" msgid "Rotate solid infill direction" -msgstr "" +msgstr "Rotate solid infill direction" msgid "Rotate the solid infill direction by 90° for each layer." -msgstr "" +msgstr "Rotate the solid infill direction by 90° for each layer." msgid "Sparse infill density" msgstr "Dolgu yoğunluğu" @@ -10891,8 +10864,8 @@ msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " "infill and internal solid infill pattern will be used" msgstr "" -"İç seyrek dolgunun yoğunluğu, %100 tüm seyrek dolguyu katı dolguya " -"dönüştürür ve iç katı dolgu modeli kullanılacaktır" +"İç seyrek dolgunun yoğunluğu, %100 tüm seyrek dolguyu katı dolguya dönüştürür " +"ve iç katı dolgu modeli kullanılacaktır" msgid "Sparse infill pattern" msgstr "Dolgu deseni" @@ -10931,7 +10904,7 @@ msgid "Lightning" msgstr "Yıldırım" msgid "Cross Hatch" -msgstr "Çapraz Çizgi" +msgstr "Çapraz çizgi" msgid "Sparse infill anchor length" msgstr "Dolgu uzunluğu" @@ -10940,23 +10913,22 @@ msgid "" "Connect an infill line to an internal perimeter with a short segment of an " "additional perimeter. If expressed as percentage (example: 15%) it is " "calculated over infill extrusion width. Orca Slicer tries to connect two " -"close infill lines to a short perimeter segment. If no such perimeter " -"segment shorter than infill_anchor_max is found, the infill line is " -"connected to a perimeter segment at just one side and the length of the " -"perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"close infill lines to a short perimeter segment. If no such perimeter segment " +"shorter than infill_anchor_max is found, the infill line is connected to a " +"perimeter segment at just one side and the length of the perimeter segment " +"taken is limited to this parameter, but no longer than anchor_length_max. \n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" "Bir dolgu hattını, ek bir çevrenin kısa bir bölümü ile bir iç çevreye " -"bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon " -"genişliği üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir " -"çevre segmentine bağlamaya çalışıyor. infill_anchor_max'tan daha kısa böyle " -"bir çevre segmenti bulunamazsa, dolgu hattı yalnızca bir taraftaki bir çevre " +"bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon genişliği " +"üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir çevre " +"segmentine bağlamaya çalışıyor. infill_anchor_max'tan daha kısa böyle bir " +"çevre segmenti bulunamazsa, dolgu hattı yalnızca bir taraftaki bir çevre " "segmentine bağlanır ve alınan çevre segmentinin uzunluğu bu parametreyle " "sınırlıdır, ancak çapa_uzunluk_max'tan uzun olamaz.\n" -"Tek bir dolgu hattına bağlı sabitleme çevrelerini devre dışı bırakmak için " -"bu parametreyi sıfıra ayarlayın." +"Tek bir dolgu hattına bağlı sabitleme çevrelerini devre dışı bırakmak için bu " +"parametreyi sıfıra ayarlayın." msgid "0 (no open anchors)" msgstr "0 (açık bağlantı yok)" @@ -10971,23 +10943,22 @@ msgid "" "Connect an infill line to an internal perimeter with a short segment of an " "additional perimeter. If expressed as percentage (example: 15%) it is " "calculated over infill extrusion width. Orca Slicer tries to connect two " -"close infill lines to a short perimeter segment. If no such perimeter " -"segment shorter than this parameter is found, the infill line is connected " -"to a perimeter segment at just one side and the length of the perimeter " -"segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"close infill lines to a short perimeter segment. If no such perimeter segment " +"shorter than this parameter is found, the infill line is connected to a " +"perimeter segment at just one side and the length of the perimeter segment " +"taken is limited to infill_anchor, but no longer than this parameter. \n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" "Bir dolgu hattını, ek bir çevrenin kısa bir bölümü ile bir iç çevreye " -"bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon " -"genişliği üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir " -"çevre segmentine bağlamaya çalışıyor. Bu parametreden daha kısa bir çevre " -"segmenti bulunamazsa, dolgu hattı sadece bir kenardaki bir çevre segmentine " -"bağlanır ve alınan çevre segmentinin uzunluğu infill_anchor ile sınırlıdır " -"ancak bu parametreden daha uzun olamaz.\n" -"0'a ayarlanırsa dolgu bağlantısı için eski algoritma kullanılacaktır; 1000 " -"ve 0 ile aynı sonucu oluşturmalıdır." +"bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon genişliği " +"üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir çevre " +"segmentine bağlamaya çalışıyor. Bu parametreden daha kısa bir çevre segmenti " +"bulunamazsa, dolgu hattı sadece bir kenardaki bir çevre segmentine bağlanır " +"ve alınan çevre segmentinin uzunluğu infill_anchor ile sınırlıdır ancak bu " +"parametreden daha uzun olamaz.\n" +"0'a ayarlanırsa dolgu bağlantısı için eski algoritma kullanılacaktır; 1000 ve " +"0 ile aynı sonucu oluşturmalıdır." msgid "0 (Simple connect)" msgstr "0 (Basit bağlantı)" @@ -11005,8 +10976,8 @@ msgid "" "Acceleration of top surface infill. Using a lower value may improve top " "surface quality" msgstr "" -"Üst yüzey dolgusunun hızlandırılması. Daha düşük bir değerin kullanılması " -"üst yüzey kalitesini iyileştirebilir" +"Üst yüzey dolgusunun hızlandırılması. Daha düşük bir değerin kullanılması üst " +"yüzey kalitesini iyileştirebilir" msgid "Acceleration of outer wall. Using a lower value can improve quality" msgstr "" @@ -11016,8 +10987,8 @@ msgid "" "Acceleration of bridges. If the value is expressed as a percentage (e.g. " "50%), it will be calculated based on the outer wall acceleration." msgstr "" -"Köprülerin hızlandırılması. Değer yüzde olarak ifade edilirse (örn. %50), " -"dış duvar ivmesine göre hesaplanacaktır." +"Köprülerin hızlandırılması. Değer yüzde olarak ifade edilirse (örn. %50), dış " +"duvar ivmesine göre hesaplanacaktır." msgid "mm/s² or %" msgstr "mm/s² veya %" @@ -11054,8 +11025,7 @@ msgid "accel_to_decel" msgstr "Accel_to_decel" #, c-format, boost-format -msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +msgid "Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" msgstr "" "Klipper'ın max_accel_to_decel değeri ivmenin bu %%'sine göre ayarlanacak" @@ -11088,8 +11058,8 @@ msgid "Initial layer height" msgstr "Başlangıç katman yüksekliği" msgid "" -"Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhension" +"Height of initial layer. Making initial layer height to be thick slightly can " +"improve build plate adhension" msgstr "" "İlk katmanın yüksekliği. İlk katman yüksekliğini biraz kalın yapmak, baskı " "plakasının yapışmasını iyileştirebilir" @@ -11130,16 +11100,16 @@ msgstr "Maksimum fan hızı" msgid "" "Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" -"\". \"full_fan_speed_layer\" will be ignored if lower than " -"\"close_fan_the_first_x_layers\", in which case the fan will be running at " -"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +"\"close_fan_the_first_x_layers\" to maximum at layer " +"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " +"than \"close_fan_the_first_x_layers\", in which case the fan will be running " +"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." msgstr "" "Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan " "\"ful_fan_speed_layer\" katmanında maksimuma doğrusal olarak artırılacaktır. " -"\"full_fan_speed_layer\", \"close_fan_the_first_x_layers\" değerinden " -"düşükse göz ardı edilecektir; bu durumda fan, \"close_fan_the_first_x_layers" -"\" + 1 katmanında izin verilen maksimum hızda çalışacaktır." +"\"full_fan_speed_layer\", \"close_fan_the_first_x_layers\" değerinden düşükse " +"göz ardı edilecektir; bu durumda fan, \"close_fan_the_first_x_layers\" + 1 " +"katmanında izin verilen maksimum hızda çalışacaktır." msgid "Support interface fan speed" msgstr "Destekler için fan hızı" @@ -11232,12 +11202,21 @@ msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " "tolerance is same as the resolution. \n" "\n" -"Note: For klipper machines, this option is recomended to be disabled. " -"Klipper does not benefit from arc commands as these are split again into " -"line segments by the firmware. This results in a reduction in surface " -"quality as line segments are converted to arcs by the slicer and then back " -"to line segments by the firmware." +"Note: For klipper machines, this option is recomended to be disabled. Klipper " +"does not benefit from arc commands as these are split again into line " +"segments by the firmware. This results in a reduction in surface quality as " +"line segments are converted to arcs by the slicer and then back to line " +"segments by the firmware." msgstr "" +"G2 ve G3 hareketlerine sahip bir G kodu dosyası elde etmek için bunu " +"etkinleştirin. Montaj toleransı çözünürlükle aynıdır. \n" +"\n" +"Not: Klipper makineler için bu seçeneğin devre dışı bırakılması önerilir. " +"Klipper, yazılım tarafından tekrar çizgi bölümlerine bölündüğü için yay " +"komutlarından faydalanmaz. Bu, çizgi bölümlerinin dilimleyici tarafından " +"yaylara dönüştürülmesi ve ardından donanım yazılımı tarafından tekrar çizgi " +"bölümlerine dönüştürülmesi nedeniyle yüzey kalitesinde bir azalmaya neden " +"olur." msgid "Add line number" msgstr "Satır numarası ekle" @@ -11264,8 +11243,8 @@ msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " "nozzle, and what kind of filament can be printed" msgstr "" -"Nozulnin metalik malzemesi. Bu, nozulun aşınma direncini ve ne tür " -"filamentin basılabileceğini belirler" +"Nozulnin metalik malzemesi. Bu, nozulun aşınma direncini ve ne tür filamentin " +"basılabileceğini belirler" msgid "Undefine" msgstr "Tanımsız" @@ -11317,8 +11296,8 @@ msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." msgstr "Yatak şekline göre [0,1] aralığında en iyi otomatik düzenleme konumu." msgid "" -"Enable this option if machine has auxiliary part cooling fan. G-code " -"command: M106 P2 S(0-255)." +"Enable this option if machine has auxiliary part cooling fan. G-code command: " +"M106 P2 S(0-255)." msgstr "" "Makinede yardımcı parça soğutma fanı varsa bu seçeneği etkinleştirin. G-code " "komut: M106 P2 S(0-255)." @@ -11361,8 +11340,8 @@ msgid "" msgstr "" "Soğutma fanını başlatmak için hedef hıza düşmeden önce bu süre boyunca " "maksimum fan hızı komutunu verin.\n" -"Bu, düşük PWM/gücün fanın durma noktasından dönmeye başlaması veya fanın " -"daha hızlı hızlanması için yetersiz olabileceği fanlar için kullanışlıdır.\n" +"Bu, düşük PWM/gücün fanın durma noktasından dönmeye başlaması veya fanın daha " +"hızlı hızlanması için yetersiz olabileceği fanlar için kullanışlıdır.\n" "Devre dışı bırakmak için 0'a ayarlayın." msgid "Time cost" @@ -11416,21 +11395,20 @@ msgstr "Nesneleri etiketle" 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." +"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-Code etiketleme yazdırma hareketlerine ait oldukları nesneyle ilgili " "yorumlar eklemek için bunu etkinleştirin; bu, Octoprint CancelObject " -"eklentisi için kullanışlıdır. Bu ayarlar Tek Ekstruder Çoklu Malzeme " -"kurulumu ve Nesneye Temizleme / Dolguya Temizleme ile uyumlu DEĞİLDİR." +"eklentisi için kullanışlıdır. Bu ayarlar Tek Ekstruder Çoklu Malzeme kurulumu " +"ve Nesneye Temizleme / Dolguya Temizleme ile uyumlu DEĞİLDİR." msgid "Exclude objects" msgstr "Nesneleri hariç tut" msgid "Enable this option to add EXCLUDE OBJECT command in g-code" -msgstr "" -"G koduna EXCLUDE OBJECT komutunu eklemek için bu seçeneği etkinleştirin" +msgstr "G koduna EXCLUDE OBJECT komutunu eklemek için bu seçeneği etkinleştirin" msgid "Verbose G-code" msgstr "Ayrıntılı G kodu" @@ -11470,23 +11448,32 @@ msgstr "Dolgu/Duvar örtüşmesi" #, no-c-format, no-boost-format msgid "" -"Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill. Set this " -"value to ~10-15% to minimize potential over extrusion and accumulation of " -"material resulting in rough top surfaces." +"Infill area is enlarged slightly to overlap with wall for better bonding. The " +"percentage value is relative to line width of sparse infill. Set this value " +"to ~10-15% to minimize potential over extrusion and accumulation of material " +"resulting in rough top surfaces." msgstr "" +"Daha iyi yapışma için dolgu alanı duvarla örtüşecek şekilde hafifçe " +"genişletilir. Yüzde değeri seyrek dolgunun çizgi genişliğine göredir. Aşırı " +"ekstrüzyon ve pürüzlü üst yüzeylere neden olan malzeme birikmesi " +"potansiyelini en aza indirmek için bu değeri ~%10-15’e ayarlayın." msgid "Top/Bottom solid infill/wall overlap" -msgstr "" +msgstr "Üst/Alt katı dolgu/duvar örtüşmesi" #, no-c-format, no-boost-format msgid "" "Top solid infill area is enlarged slightly to overlap with wall for better " -"bonding and to minimize the appearance of pinholes where the top infill " -"meets the walls. A value of 25-30% is a good starting point, minimising the " +"bonding and to minimize the appearance of pinholes where the top infill meets " +"the walls. A value of 25-30% is a good starting point, minimising the " "appearance of pinholes. The percentage value is relative to line width of " "sparse infill" msgstr "" +"Üst katı dolgu alanı, daha iyi yapışma sağlamak ve üst dolgunun duvarlarla " +"buluştuğu yerde küçük deliklerin görünümünü en aza indirmek için duvarla üst " +"üste gelecek şekilde hafifçe genişletilir. %25-30’luk bir değer, iğne " +"deliklerinin görünümünü en aza indiren iyi bir başlangıç ​​noktasıdır. Yüzde " +"değeri seyrek dolgunun çizgi genişliğine göredir" msgid "Speed of internal sparse infill" msgstr "İç seyrek dolgunun hızı" @@ -11496,12 +11483,12 @@ msgstr "Arayüz kabukları" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " -"Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"Useful for multi-extruder prints with translucent materials or manual soluble " +"support material" msgstr "" "Bitişik malzemeler/hacimler arasında katı kabuk oluşumunu zorlayın. Yarı " -"saydam malzemelerle veya elle çözülebilen destek malzemesiyle çoklu " -"ekstruder baskıları için kullanışlıdır" +"saydam malzemelerle veya elle çözülebilen destek malzemesiyle çoklu ekstruder " +"baskıları için kullanışlıdır" msgid "Maximum width of a segmented region" msgstr "Bölümlere ayrılmış bir bölgenin maksimum genişliği" @@ -11516,8 +11503,8 @@ msgstr "Bölümlere ayrılmış bir bölgenin birbirine kenetlenen derinliği" msgid "Interlocking depth of a segmented region. Zero disables this feature." msgstr "" -"Bölümlere ayrılmış bir bölgenin birbirine kenetlenen derinliği. 0 bu " -"özelliği devre dışı bırakır." +"Bölümlere ayrılmış bir bölgenin birbirine kenetlenen derinliği. 0 bu özelliği " +"devre dışı bırakır." msgid "Ironing Type" msgstr "Ütüleme tipi" @@ -11608,8 +11595,8 @@ msgstr "" "G kodu tadı Klipper olarak ayarlandığında bu seçenek göz ardı edilecektir." msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. User can insert pause " +"G-code in gcode viewer" msgstr "" "Bu G kodu duraklatma yazdırması için bir kod olarak kullanılacaktır. " "Kullanıcı gcode görüntüleyiciye duraklatma G kodunu ekleyebilir" @@ -11740,8 +11727,8 @@ msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" msgstr "Seyahat için maksimum ivme (M204 T), yalnızca Marlin 2 için geçerlidir" msgid "" -"Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"Part cooling fan speed may be increased when auto cooling is enabled. This is " +"the maximum speed limitation of part cooling fan" msgstr "" "Otomatik soğutma etkinleştirildiğinde parça soğutma fanı hızı artırılabilir. " "Bu, parça soğutma fanının maksimum hız sınırlamasıdır" @@ -11761,8 +11748,8 @@ msgid "Extrusion rate smoothing" msgstr "Ekstrüzyon hızını yumuşatma" msgid "" -"This parameter smooths out sudden extrusion rate changes that happen when " -"the printer transitions from printing a high flow (high speed/larger width) " +"This parameter smooths out sudden extrusion rate changes that happen when the " +"printer transitions from printing a high flow (high speed/larger width) " "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" @@ -11773,12 +11760,11 @@ msgid "" "A value of 0 disables the feature. \n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " -"Voron) this value is usually not needed. However it can provide some " -"marginal benefit in certain cases where feature speeds vary greatly. For " -"example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " -"transition.\n" +"Voron) this value is usually not needed. However it can provide some marginal " +"benefit in certain cases where feature speeds vary greatly. For example, when " +"there are aggressive slowdowns due to overhangs. In these cases a high value " +"of around 300-350mm3/s2 is recommended as this allows for just enough " +"smoothing to assist pressure advance achieve a smoother flow transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " "lower. A value of 10-15mm3/s2 is a good starting point for direct drive " @@ -11800,13 +11786,13 @@ msgstr "" "\n" "0 değeri özelliği devre dışı bırakır. \n" "\n" -"Yüksek hızlı, yüksek akışlı doğrudan tahrikli bir yazıcı için (Bambu lab " -"veya Voron gibi) bu değer genellikle gerekli değildir. Ancak özellik " -"hızlarının büyük ölçüde değiştiği bazı durumlarda marjinal bir fayda " -"sağlayabilir. Örneğin, çıkıntılar nedeniyle agresif yavaşlamalar olduğunda. " -"Bu durumlarda 300-350mm3/s2 civarında yüksek bir değer önerilir çünkü bu, " -"basınç ilerlemesinin daha yumuşak bir akış geçişi elde etmesine yardımcı " -"olmak için yeterli yumuşatmaya izin verir.\n" +"Yüksek hızlı, yüksek akışlı doğrudan tahrikli bir yazıcı için (Bambu lab veya " +"Voron gibi) bu değer genellikle gerekli değildir. Ancak özellik hızlarının " +"büyük ölçüde değiştiği bazı durumlarda marjinal bir fayda sağlayabilir. " +"Örneğin, çıkıntılar nedeniyle agresif yavaşlamalar olduğunda. Bu durumlarda " +"300-350mm3/s2 civarında yüksek bir değer önerilir çünkü bu, basınç " +"ilerlemesinin daha yumuşak bir akış geçişi elde etmesine yardımcı olmak için " +"yeterli yumuşatmaya izin verir.\n" "\n" "Basınç avansı olmayan daha yavaş yazıcılar için değer çok daha düşük " "ayarlanmalıdır. Doğrudan tahrikli ekstruderler için 10-15mm3/s2 ve Bowden " @@ -11903,8 +11889,8 @@ msgid "" "Orca Slicer can upload G-code files to a printer host. This field must " "contain the kind of the host." msgstr "" -"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. " -"Bu alan ana bilgisayarın türünü içermelidir." +"Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu " +"alan ana bilgisayarın türünü içermelidir." msgid "Nozzle volume" msgstr "Nozul hacmi" @@ -11945,8 +11931,8 @@ 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 "" -"Ekstruder ucunun, boşaltıldığında filamentin park edildiği konumdan " -"uzaklığı. Bu ayar yazıcı ürün yazılımındaki değerle eşleşmelidir." +"Ekstruder ucunun, boşaltıldığında filamentin park edildiği konumdan uzaklığı. " +"Bu ayar yazıcı ürün yazılımındaki değerle eşleşmelidir." msgid "Extra loading distance" msgstr "Ekstra yükleme mesafesi" @@ -11973,8 +11959,8 @@ msgstr "Dolguda geri çekmeyi azalt" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " -"oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"oozing can't been seen. This can reduce times of retraction for complex model " +"and save printing time, but make slicing and G-code generating slower" msgstr "" "Hareket kesinlikle dolgu alanına girdiğinde geri çekilmeyin. Bu, sızıntının " "görülemeyeceği anlamına gelir. Bu, karmaşık model için geri çekme sürelerini " @@ -12011,11 +11997,11 @@ msgid "Make overhangs printable - Hole area" msgstr "Yazdırılabilir çıkıntı delik alanı oluşturun" msgid "" -"Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"Maximum area of a hole in the base of the model before it's filled by conical " +"material.A value of 0 will fill all the holes in the model base." msgstr "" -"Modelin tabanındaki bir deliğin, konik malzemeyle doldurulmadan önce " -"maksimum alanı. 0 değeri, model tabanındaki tüm delikleri dolduracaktır." +"Modelin tabanındaki bir deliğin, konik malzemeyle doldurulmadan önce maksimum " +"alanı. 0 değeri, model tabanındaki tüm delikleri dolduracaktır." msgid "mm²" msgstr "mm²" @@ -12025,11 +12011,11 @@ msgstr "Çıkıntılı duvarı algıla" #, c-format, boost-format msgid "" -"Detect the overhang percentage relative to line width and use different " -"speed to print. For 100%% overhang, bridge speed is used." +"Detect the overhang percentage relative to line width and use different speed " +"to print. For 100%% overhang, bridge speed is used." msgstr "" -"Çizgi genişliğine göre çıkıntı yüzdesini tespit edin ve yazdırmak için " -"farklı hızlar kullanın. %%100 çıkıntı için köprü hızı kullanılır." +"Çizgi genişliğine göre çıkıntı yüzdesini tespit edin ve yazdırmak için farklı " +"hızlar kullanın. %%100 çıkıntı için köprü hızı kullanılır." msgid "" "Line width of inner wall. If expressed as a %, it will be computed over the " @@ -12051,8 +12037,8 @@ msgid "" "This setting adds an extra wall to every other layer. This way the infill " "gets wedged vertically between the walls, resulting in stronger prints. \n" "\n" -"When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"When this option is enabled, the ensure vertical shell thickness option needs " +"to be disabled. \n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -12073,11 +12059,10 @@ msgid "" "argument, and they can access the Orca Slicer config settings by reading " "environment variables." msgstr "" -"Çıktı G-kodunu özel komut dosyaları aracılığıyla işlemek istiyorsanız, " -"mutlak yollarını burada listeleyin. Birden fazla betiği noktalı virgülle " -"ayırın. Betiklere ilk argüman olarak G-code dosyasının mutlak yolu aktarılır " -"ve ortam değişkenlerini okuyarak Orca Slicer yapılandırma ayarlarına " -"erişebilirler." +"Çıktı G-kodunu özel komut dosyaları aracılığıyla işlemek istiyorsanız, mutlak " +"yollarını burada listeleyin. Birden fazla betiği noktalı virgülle ayırın. " +"Betiklere ilk argüman olarak G-code dosyasının mutlak yolu aktarılır ve ortam " +"değişkenlerini okuyarak Orca Slicer yapılandırma ayarlarına erişebilirler." msgid "Printer notes" msgstr "Yazıcı notları" @@ -12089,8 +12074,7 @@ msgid "Raft contact Z distance" msgstr "Raft kontak Z mesafesi" msgid "Z gap between object and raft. Ignored for soluble interface" -msgstr "" -"Nesne ve raft arasındaki Z boşluğu. Çözünür arayüz için göz ardı edildi" +msgstr "Nesne ve raft arasındaki Z boşluğu. Çözünür arayüz için göz ardı edildi" msgid "Raft expansion" msgstr "Raft genişletme" @@ -12119,8 +12103,8 @@ msgid "" "Object will be raised by this number of support layers. Use this function to " "avoid wrapping when print ABS" msgstr "" -"Nesne bu sayıdaki destek katmanı tarafından yükseltilecektir. ABS " -"yazdırırken sarmayı önlemek için bu işlevi kullanın" +"Nesne bu sayıdaki destek katmanı tarafından yükseltilecektir. ABS yazdırırken " +"sarmayı önlemek için bu işlevi kullanın" msgid "" "G-code path is genereated after simplifing the contour of model to avoid too " @@ -12135,8 +12119,7 @@ msgid "Travel distance threshold" msgstr "Seyahat mesafesi" msgid "" -"Only trigger retraction when the travel distance is longer than this " -"threshold" +"Only trigger retraction when the travel distance is longer than this threshold" msgstr "" "Geri çekmeyi yalnızca hareket mesafesi bu eşikten daha uzun olduğunda " "tetikleyin" @@ -12144,8 +12127,7 @@ msgstr "" msgid "Retract amount before wipe" msgstr "Temizleme işlemi öncesi geri çekme miktarı" -msgid "" -"The length of fast retraction before wipe, relative to retraction length" +msgid "The length of fast retraction before wipe, relative to retraction length" msgstr "" "Geri çekme uzunluğuna göre, temizlemeden önce hızlı geri çekilmenin uzunluğu" @@ -12362,13 +12344,13 @@ msgid "Seam gap" msgstr "Dikiş boşluğu" msgid "" -"In order to reduce the visibility of the seam in a closed loop extrusion, " -"the loop is interrupted and shortened by a specified amount.\n" -"This amount can be specified in millimeters or as a percentage of the " -"current extruder diameter. The default value for this parameter is 10%." +"In order to reduce the visibility of the seam in a closed loop extrusion, the " +"loop is interrupted and shortened by a specified amount.\n" +"This amount can be specified in millimeters or as a percentage of the current " +"extruder diameter. The default value for this parameter is 10%." msgstr "" -"Kapalı döngü ekstrüzyonda dikişin görünürlüğünü azaltmak için döngü " -"kesintiye uğrar ve belirli bir miktarda kısaltılır.\n" +"Kapalı döngü ekstrüzyonda dikişin görünürlüğünü azaltmak için döngü kesintiye " +"uğrar ve belirli bir miktarda kısaltılır.\n" "Bu miktar milimetre cinsinden veya mevcut ekstruder çapının yüzdesi olarak " "belirtilebilir. Bu parametrenin varsayılan değeri %10'dur." @@ -12377,8 +12359,8 @@ msgstr "Atkı birleşim dikişi (beta)" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" -"Dikiş görünürlüğünü en aza indirmek ve dikiş mukavemetini arttırmak için " -"atkı birleşimini kullanın." +"Dikiş görünürlüğünü en aza indirmek ve dikiş mukavemetini arttırmak için atkı " +"birleşimini kullanın." msgid "Conditional scarf joint" msgstr "Koşullu atkı birleşimi" @@ -12396,9 +12378,9 @@ msgstr "Koşullu açı eşiği" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " "seam.\n" -"If the maximum angle within the perimeter loop exceeds this value " -"(indicating the absence of sharp corners), a scarf joint seam will be used. " -"The default value is 155°." +"If the maximum angle within the perimeter loop exceeds this value (indicating " +"the absence of sharp corners), a scarf joint seam will be used. The default " +"value is 155°." msgstr "" "Bu seçenek, koşullu bir atkı eklem dikişi uygulamak için eşik açısını " "ayarlar.\n" @@ -12413,8 +12395,8 @@ msgstr "Koşullu çıkıntı eşiği" msgid "" "This option determines the overhang threshold for the application of scarf " "joint seams. If the unsupported portion of the perimeter is less than this " -"threshold, scarf joint seams will be applied. The default threshold is set " -"at 40% of the external wall's width. Due to performance considerations, the " +"threshold, scarf joint seams will be applied. The default threshold is set at " +"40% of the external wall's width. Due to performance considerations, the " "degree of overhang is estimated." msgstr "" "Bu seçenek, atkı bağlantı dikişlerinin uygulanması için sarkma eşiğini " @@ -12428,22 +12410,22 @@ msgstr "Atkı birleşim hızı" msgid "" "This option sets the printing speed for scarf joints. It is recommended to " -"print scarf joints at a slow speed (less than 100 mm/s). It's also " -"advisable to enable 'Extrusion rate smoothing' if the set speed varies " -"significantly from the speed of the outer or inner walls. If the speed " -"specified here is higher than the speed of the outer or inner walls, the " -"printer will default to the slower of the two speeds. When specified as a " -"percentage (e.g., 80%), the speed is calculated based on the respective " -"outer or inner wall speed. The default value is set to 100%." +"print scarf joints at a slow speed (less than 100 mm/s). It's also advisable " +"to enable 'Extrusion rate smoothing' if the set speed varies significantly " +"from the speed of the outer or inner walls. If the speed specified here is " +"higher than the speed of the outer or inner walls, the printer will default " +"to the slower of the two speeds. When specified as a percentage (e.g., 80%), " +"the speed is calculated based on the respective outer or inner wall speed. " +"The default value is set to 100%." msgstr "" "Bu seçenek, atkı bağlantılarının yazdırma hızını ayarlar. Atkı " "bağlantılarının yavaş bir hızda (100 mm/s'den az) yazdırılması tavsiye " "edilir. Ayarlanan hızın dış veya iç duvarların hızından önemli ölçüde farklı " -"olması durumunda 'Ekstrüzyon hızı yumuşatma' seçeneğinin etkinleştirilmesi " -"de tavsiye edilir. Burada belirtilen hız, dış veya iç duvarların hızından " -"daha yüksekse, yazıcı varsayılan olarak iki hızdan daha yavaş olanı " -"seçecektir. Yüzde olarak belirtildiğinde (örn. %80), hız, ilgili dış veya iç " -"duvar hızına göre hesaplanır. Varsayılan değer %100 olarak ayarlanmıştır." +"olması durumunda 'Ekstrüzyon hızı yumuşatma' seçeneğinin etkinleştirilmesi de " +"tavsiye edilir. Burada belirtilen hız, dış veya iç duvarların hızından daha " +"yüksekse, yazıcı varsayılan olarak iki hızdan daha yavaş olanı seçecektir. " +"Yüzde olarak belirtildiğinde (örn. %80), hız, ilgili dış veya iç duvar hızına " +"göre hesaplanır. Varsayılan değer %100 olarak ayarlanmıştır." msgid "Scarf joint flow ratio" msgstr "Atkı birleşimi akış oranı" @@ -12457,8 +12439,8 @@ msgstr "Atkı başlangıç ​​yüksekliği" msgid "" "Start height of the scarf.\n" -"This amount can be specified in millimeters or as a percentage of the " -"current layer height. The default value for this parameter is 0." +"This amount can be specified in millimeters or as a percentage of the current " +"layer height. The default value for this parameter is 0." msgstr "" "Atkı başlangıç yüksekliği.\n" "Bu miktar milimetre cinsinden veya geçerli katman yüksekliğinin yüzdesi " @@ -12477,8 +12459,8 @@ msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" -"Atkının uzunluğu. Bu parametrenin 0 a ayarlanması atkıyı dolaylı yoldan " -"devre dışı bırakır." +"Atkının uzunluğu. Bu parametrenin 0 a ayarlanması atkıyı dolaylı yoldan devre " +"dışı bırakır." msgid "Scarf steps" msgstr "Atkı kademesi" @@ -12519,15 +12501,15 @@ msgid "Wipe before external loop" msgstr "Harici döngüden önce silin" msgid "" -"To minimise visibility of potential overextrusion at the start of an " -"external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " -"print order, the deretraction is performed slightly on the inside from the " -"start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"To minimise visibility of potential overextrusion at the start of an external " +"perimeter when printing with Outer/Inner or Inner/Outer/Inner wall print " +"order, the deretraction is performed slightly on the inside from the start of " +"the external perimeter. That way any potential over extrusion is hidden from " +"the outside surface. \n" "\n" -"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " -"print order as in these modes it is more likely an external perimeter is " -"printed immediately after a deretraction move." +"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall print " +"order as in these modes it is more likely an external perimeter is printed " +"immediately after a deretraction move." msgstr "" "Dış/İç veya İç/Dış/İç duvar baskı sırası ile yazdırırken, dış çevrenin " "başlangıcında olası aşırı çıkıntının görünürlüğünü en aza indirmek için, " @@ -12536,8 +12518,8 @@ msgstr "" "yüzeyden gizlenir. \n" "\n" "Bu, Dış/İç veya İç/Dış/İç duvar yazdırma sırası ile yazdırırken " -"kullanışlıdır, çünkü bu modlarda, bir geri çekilme hareketinin hemen " -"ardından bir dış çevrenin yazdırılması daha olasıdır." +"kullanışlıdır, çünkü bu modlarda, bir geri çekilme hareketinin hemen ardından " +"bir dış çevrenin yazdırılması daha olasıdır." msgid "Wipe speed" msgstr "Temizleme hızı" @@ -12580,19 +12562,30 @@ msgid "" "distance from the object. Therefore, if brims are active it may intersect " "with them. To avoid this, increase the skirt distance value.\n" msgstr "" +"Rüzgar taslağı nedeniyle ABS veya ASA baskının eğrilmesine ve baskı " +"yatağından ayrılmasına karşı koruma sağlamak için bir rüzgarlık " +"kullanışlıdır. Genellikle yalnızca açık çerçeveli, yani muhafazasız " +"yazıcılarda gereklidir. \n" +"\n" +"Seçenekler:\n" +"Etkin = etek, yazdırılan en yüksek nesne kadar uzundur.\n" +"Sınırlı = etek, etek yüksekliğinin belirttiği kadar uzundur.\n" +"\n" +"Not: Rüzgarlık etkinken etek, nesneden etek mesafesinde yazdırılacaktır. Bu " +"nedenle eğer kenarlar aktifse onlarla kesişebilir. Bunu önlemek için etek " +"mesafesi değerini artırın.\n" msgid "Limited" msgstr "Sınırlı" msgid "Enabled" -msgstr "Etkinleştirildi" +msgstr "Etkin" msgid "Skirt loops" msgstr "Etek sayısı" msgid "Number of loops for the skirt. Zero means disabling skirt" -msgstr "" -"Etek için ilmek sayısı. Sıfır, eteği devre dışı bırakmak anlamına gelir" +msgstr "Etek için ilmek sayısı. Sıfır, eteği devre dışı bırakmak anlamına gelir" msgid "Skirt speed" msgstr "Etek hızı" @@ -12603,7 +12596,7 @@ msgstr "" "kullanılması anlamına gelir." msgid "Skirt minimum extrusion length" -msgstr "" +msgstr "Etek minimum ekstrüzyon uzunluğu" msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " @@ -12612,6 +12605,11 @@ msgid "" "Using a non zero value is useful if the printer is set up to print without a " "prime line." msgstr "" +"Etek yazdırılırken mm cinsinden minimum filaman ekstrüzyon uzunluğu. Sıfır, " +"bu özelliğin devre dışı olduğu anlamına gelir.\n" +"\n" +"Yazıcı ana hat olmadan yazdırmak üzere ayarlanmışsa sıfır dışında bir değer " +"kullanmak yararlı olur." msgid "" "The printing speed in exported gcode will be slowed down, when the estimated " @@ -12632,8 +12630,8 @@ msgstr "" "bırakmıştır" msgid "" -"Line width of internal solid infill. If expressed as a %, it will be " -"computed over the nozzle diameter." +"Line width of internal solid infill. If expressed as a %, it will be computed " +"over the nozzle diameter." msgstr "" "İç katı dolgunun çizgi genişliği. % olarak ifade edilirse Nozul çapı " "üzerinden hesaplanacaktır." @@ -12647,8 +12645,8 @@ msgid "" "generated model has no seam" msgstr "" "Spiralleştirme, dış konturun z hareketlerini yumuşatır. Ve katı bir modeli, " -"katı alt katmanlara sahip tek duvarlı bir baskıya dönüştürür. Oluşturulan " -"son modelde dikiş yok." +"katı alt katmanlara sahip tek duvarlı bir baskıya dönüştürür. Oluşturulan son " +"modelde dikiş yok." msgid "Smooth Spiral" msgstr "Pürüzsüz spiral" @@ -12673,12 +12671,11 @@ msgstr "" msgid "" "If smooth or traditional mode is selected, a timelapse video will be " "generated for each print. After each layer is printed, a snapshot is taken " -"with the chamber camera. All of these snapshots are composed into a " -"timelapse video when printing completes. If smooth mode is selected, the " -"toolhead will move to the excess chute after each layer is printed and then " -"take a snapshot. Since the melt filament may leak from the nozzle during the " -"process of taking a snapshot, prime tower is required for smooth mode to " -"wipe nozzle." +"with the chamber camera. All of these snapshots are composed into a timelapse " +"video when printing completes. If smooth mode is selected, the toolhead will " +"move to the excess chute after each layer is printed and then take a " +"snapshot. Since the melt filament may leak from the nozzle during the process " +"of taking a snapshot, prime tower is required for smooth mode to wipe nozzle." msgstr "" "Düzgün veya geleneksel mod seçilirse her baskı için bir hızlandırılmış video " "oluşturulacaktır. Her katman basıldıktan sonra oda kamerasıyla anlık görüntü " @@ -12739,10 +12736,9 @@ msgid "No sparse layers (beta)" msgstr "Seyrek katman yok (beta)" 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." +"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 "" "Etkinleştirilirse, silme kulesi araç değişimi olmayan katmanlarda " "yazdırılmayacaktır. Araç değişimi olan katmanlarda, ekstruder silme kulesini " @@ -12767,16 +12763,16 @@ msgid "" "triangle mesh slicing. The gap closing operation may reduce the final print " "resolution, therefore it is advisable to keep the value reasonably low." msgstr "" -"Üçgen mesh dilimleme sırasında 2x boşluk kapatma yarıçapından küçük " -"çatlaklar doldurulmaktadır. Boşluk kapatma işlemi son yazdırma çözünürlüğünü " +"Üçgen mesh dilimleme sırasında 2x boşluk kapatma yarıçapından küçük çatlaklar " +"doldurulmaktadır. Boşluk kapatma işlemi son yazdırma çözünürlüğünü " "düşürebilir, bu nedenle değerin oldukça düşük tutulması tavsiye edilir." msgid "Slicing Mode" msgstr "Dilimleme modu" msgid "" -"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " -"close all holes in the model." +"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close " +"all holes in the model." msgstr "" "3DLabPrint uçak modelleri için \"Çift-tek\" seçeneğini kullanın. Modeldeki " "tüm delikleri kapatmak için \"Delikleri kapat\"ı kullanın." @@ -12800,10 +12796,9 @@ msgid "" "print bed, set this to -0.3 (or fix your endstop)." msgstr "" "Bu değer, çıkış G-kodu içindeki tüm Z koordinatlarına eklenir (veya " -"çıkarılır).Bu, kötü Z endstop konumunu telafi etmek için kullanılır: " -"örneğin, endstop sıfır noktanız aslında nozulu baskı tablasından 0.3mm " -"uzakta bırakıyorsa, bu değeri -0.3 olarak ayarlayın (veya endstop'unuzu " -"düzeltin)." +"çıkarılır).Bu, kötü Z endstop konumunu telafi etmek için kullanılır: örneğin, " +"endstop sıfır noktanız aslında nozulu baskı tablasından 0.3mm uzakta " +"bırakıyorsa, bu değeri -0.3 olarak ayarlayın (veya endstop'unuzu düzeltin)." msgid "Enable support" msgstr "Desteği etkinleştir" @@ -12857,8 +12852,7 @@ msgid "" "Only create support for critical regions including sharp tail, cantilever, " "etc." msgstr "" -"Yalnızca keskin kuyruk, konsol vb. gibi kritik bölgeler için destek " -"oluşturun." +"Yalnızca keskin kuyruk, konsol vb. gibi kritik bölgeler için destek oluşturun." msgid "Remove small overhangs" msgstr "Küçük çıkıntıları kaldır" @@ -12895,8 +12889,7 @@ msgstr "Taban için arayüz filamentini azaltın" msgid "" "Avoid using support interface filament to print support base if possible." msgstr "" -"Destek tabanını yazdırmak için destek arayüzü filamentini kullanmaktan " -"kaçının" +"Destek tabanını yazdırmak için destek arayüzü filamentini kullanmaktan kaçının" msgid "" "Line width of support. If expressed as a %, it will be computed over the " @@ -12971,8 +12964,8 @@ msgstr "Arayüz deseni" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " -"interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Rectilinear, while default pattern for soluble support interface " +"is Concentric" msgstr "" "Destek arayüzünün çizgi deseni. Çözünmeyen destek arayüzü için varsayılan " "model Doğrusaldır, çözünebilir destek arayüzü için varsayılan model ise " @@ -13001,12 +12994,11 @@ msgid "" "into a regular grid will create more stable supports (default), while snug " "support towers will save material and reduce object scarring.\n" "For tree support, slim and organic style will merge branches more " -"aggressively and save a lot of material (default organic), while hybrid " -"style will create similar structure to normal support under large flat " -"overhangs." +"aggressively and save a lot of material (default organic), while hybrid style " +"will create similar structure to normal support under large flat overhangs." msgstr "" -"Destek stil ve şekli. Normal destek için, destekleri düzenli bir ızgara " -"içine projelendirmek daha stabil destekler oluşturacaktır (varsayılan), aynı " +"Destek stil ve şekli. Normal destek için, destekleri düzenli bir ızgara içine " +"projelendirmek daha stabil destekler oluşturacaktır (varsayılan), aynı " "zamanda sıkı destek kuleleri malzeme tasarrufu sağlar ve nesne üzerindeki " "izleri azaltır.\n" "Ağaç destek için, ince ve organik tarz, dalları daha etkili bir şekilde " @@ -13055,8 +13047,8 @@ msgid "Tree support branch angle" msgstr "Ağaç desteği dal açısı" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that t he branches of tree " +"support allowed to make.If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Bu ayar, ağaç desteğinin dallarının oluşmasına izin verilen maksimum çıkıntı " @@ -13088,11 +13080,10 @@ msgstr "Dal Yoğunluğu" #. TRN PrintSettings: "Organic supports" > "Branch Density" msgid "" -"Adjusts the density of the support structure used to generate the tips of " -"the branches. A higher value results in better overhangs but the supports " -"are harder to remove, thus it is recommended to enable top support " -"interfaces instead of a high branch density value if dense interfaces are " -"needed." +"Adjusts the density of the support structure used to generate the tips of the " +"branches. A higher value results in better overhangs but the supports are " +"harder to remove, thus it is recommended to enable top support interfaces " +"instead of a high branch density value if dense interfaces are needed." msgstr "" "Dalların uçlarını oluşturmak için kullanılan destek yapısının yoğunluğunu " "ayarlar. Daha yüksek bir değer daha iyi çıkıntılarla sonuçlanır, ancak " @@ -13104,8 +13095,8 @@ msgid "Adaptive layer height" msgstr "Uyarlanabilir katman yüksekliği" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the first " +"will be automatically calculated " msgstr "" "Bu seçeneğin etkinleştirilmesi, ilki hariç ağaç destek katmanının " "yüksekliğinin otomatik olarak hesaplanacağı anlamına gelir " @@ -13160,8 +13151,8 @@ msgstr "Çift duvarlı dal çapı" #. TRN PrintSettings: "Organic supports" > "Branch Diameter" msgid "" "Branches with area larger than the area of a circle of this diameter will be " -"printed with double walls for stability. Set this value to zero for no " -"double walls." +"printed with double walls for stability. Set this value to zero for no double " +"walls." msgstr "" "Bu çaptaki bir dairenin alanından daha büyük alana sahip dallar, stabilite " "için çift duvarlı olarak basılacaktır. Çift duvar olmaması için bu değeri " @@ -13191,8 +13182,8 @@ msgid "" "added before \"machine_start_gcode\"\n" "G-code commands: M141/M191 S(0-255)" msgstr "" -"Hazne sıcaklığı kontrolü için bu seçeneği etkinleştirin. Önce bir M191 " -"komutu eklenecek \"machine_start_gcode\"\n" +"Hazne sıcaklığı kontrolü için bu seçeneği etkinleştirin. Önce bir M191 komutu " +"eklenecek \"machine_start_gcode\"\n" "G-code komut: M141/M191 S(0-255)" msgid "Chamber temperature" @@ -13270,11 +13261,11 @@ msgid "" "The number of top solid layers is increased when slicing if the thickness " "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " -"is disabled and thickness of top shell is absolutely determained by top " -"shell layers" +"is disabled and thickness of top shell is absolutely determained by top shell " +"layers" msgstr "" -"Üst kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince " -"ise dilimleme sırasında üst katı katmanların sayısı artırılır. Bu, katman " +"Üst kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince ise " +"dilimleme sırasında üst katı katmanların sayısı artırılır. Bu, katman " "yüksekliği küçük olduğunda kabuğun çok ince olmasını önleyebilir. 0, bu " "ayarın devre dışı olduğu ve üst kabuğun kalınlığının kesinlikle üst kabuk " "katmanları tarafından belirlendiği anlamına gelir" @@ -13297,12 +13288,11 @@ msgid "Wipe Distance" msgstr "Temizleme mesafesi" msgid "" -"Discribe how long the nozzle will move along the last path when " -"retracting. \n" +"Discribe how long the nozzle will move along the last path when retracting. \n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " -"extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"extruder/filament retraction settings are, a retraction move may be needed to " +"retract the remaining filament. \n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -13310,9 +13300,9 @@ msgstr "" "Geri çekilirken nozulun son yol boyunca ne kadar süre hareket edeceğini " "açıklayın. \n" "\n" -"Silme işleminin ne kadar sürdüğüne, ekstruder/filament geri çekme " -"ayarlarının ne kadar hızlı ve uzun olduğuna bağlı olarak, kalan filamanı " -"geri çekmek için bir geri çekme hareketine ihtiyaç duyulabilir. \n" +"Silme işleminin ne kadar sürdüğüne, ekstruder/filament geri çekme ayarlarının " +"ne kadar hızlı ve uzun olduğuna bağlı olarak, kalan filamanı geri çekmek için " +"bir geri çekme hareketine ihtiyaç duyulabilir. \n" "\n" "Aşağıdaki silme ayarından önce geri çekme miktarına bir değer ayarlamak, " "silme işleminden önce aşırı geri çekme işlemini gerçekleştirecektir, aksi " @@ -13362,8 +13352,8 @@ msgid "" "Angle at the apex of the cone that is used to stabilize the wipe tower. " "Larger angle means wider base." msgstr "" -"Silme kulesini stabilize etmek için kullanılan koninin tepe noktasındaki " -"açı. Daha büyük açı daha geniş taban anlamına gelir." +"Silme kulesini stabilize etmek için kullanılan koninin tepe noktasındaki açı. " +"Daha büyük açı daha geniş taban anlamına gelir." msgid "Wipe tower purge lines spacing" msgstr "Silme kulesi temizleme hatları aralığı" @@ -13372,7 +13362,7 @@ msgid "Spacing of purge lines on the wipe tower." msgstr "Silme kulesindeki boşaltma hatlarının aralığı." msgid "Maximum wipe tower print speed" -msgstr "" +msgstr "Maksimum silme kulesi yazdırma hızı" msgid "" "The maximum print speed when purging in the wipe tower and printing the wipe " @@ -13395,6 +13385,25 @@ msgid "" "For the wipe tower external perimeters the internal perimeter speed is used " "regardless of this setting." msgstr "" +"Silme kulesinde temizleme yaparken ve silme kulesi seyrek katmanlarını " +"yazdırırken maksimum yazdırma hızı. Temizleme sırasında seyrek dolum hızı " +"veya filamanın maksimum hacimsel hızından hesaplanan hız daha düşükse, bunun " +"yerine en düşük olanı kullanılacaktır.\n" +"\n" +"Seyrek katmanları yazdırırken iç çevre hızı veya filamanın maksimum hacimsel " +"hızından hesaplanan hız daha düşükse bunun yerine en düşük olanı " +"kullanılacaktır.\n" +"\n" +"Bu hızın arttırılması kulenin stabilitesini etkileyebileceği gibi, nozülün " +"silme kulesi üzerinde oluşmuş olabilecek damlacıklarla çarpışma kuvvetini de " +"arttırabilir.\n" +"\n" +"Bu parametreyi varsayılan 90 mm/sn’nin üzerine çıkarmadan önce, yazıcınızın " +"artan hızlarda güvenilir şekilde köprü kurabildiğinden ve takım değişimi iyi " +"kontrol edildiğinde sızıntı yaptığından emin olun.\n" +"\n" +"Silme kulesi dış çevreleri için bu ayardan bağımsız olarak iç çevre hızı " +"kullanılır." msgid "Wipe tower extruder" msgstr "Silme kulesi ekstruderi" @@ -13415,8 +13424,8 @@ msgid "" "volumes below." msgstr "" "Bu vektör, silme kulesinde kullanılan her bir araçtan/araca geçiş için " -"gerekli hacimleri kaydeder. Bu değerler, aşağıdaki tam temizleme " -"hacimlerinin oluşturulmasını basitleştirmek için kullanılır." +"gerekli hacimleri kaydeder. Bu değerler, aşağıdaki tam temizleme hacimlerinin " +"oluşturulmasını basitleştirmek için kullanılır." msgid "" "Purging after filament change will be done inside objects' infills. This may " @@ -13440,13 +13449,13 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colours of the objects will be mixed as " +"a result. It will not take effect, unless the prime tower is enabled." msgstr "" -"Bu nesne, filamentten tasarruf etmek ve baskı süresini azaltmak için " -"filament değişiminden sonra nozulu temizlemek için kullanılacaktır. Sonuç " -"olarak nesnelerin renkleri karıştırılacaktır. Prime tower " -"etkinleştirilmediği sürece etkili olmayacaktır." +"Bu nesne, filamentten tasarruf etmek ve baskı süresini azaltmak için filament " +"değişiminden sonra nozulu temizlemek için kullanılacaktır. Sonuç olarak " +"nesnelerin renkleri karıştırılacaktır. Prime tower etkinleştirilmediği sürece " +"etkili olmayacaktır." msgid "Maximal bridging distance" msgstr "Maksimum köprüleme mesafesi" @@ -13455,8 +13464,8 @@ msgid "Maximal distance between supports on sparse infill sections." msgstr "" "Bu nesne, filamentten tasarruf etmek ve baskı süresini azaltmak için bir " "filament değişiminden sonra nozulu temizlemek için kullanılacaktır. Sonuç " -"olarak nesnelerin renkleri karıştırılacaktır. Prime tower " -"etkinleştirilmediği sürece etkili olmayacaktır." +"olarak nesnelerin renkleri karıştırılacaktır. Prime tower etkinleştirilmediği " +"sürece etkili olmayacaktır." msgid "X-Y hole compensation" msgstr "X-Y delik dengeleme" @@ -13481,8 +13490,8 @@ msgid "" "assembling issue" msgstr "" "Nesnenin konturu XY düzleminde yapılandırılan değer kadar büyütülür veya " -"küçültülür. Pozitif değer konturu büyütür. Negatif değer konturu küçültür. " -"Bu fonksiyon, nesnenin montaj sorunu olduğunda boyutu hafifçe ayarlamak için " +"küçültülür. Pozitif değer konturu büyütür. Negatif değer konturu küçültür. Bu " +"fonksiyon, nesnenin montaj sorunu olduğunda boyutu hafifçe ayarlamak için " "kullanılır" msgid "Convert holes to polyholes" @@ -13506,14 +13515,14 @@ msgstr "Çokgen delik tespiti marjı" msgid "" "Maximum defection of a point to the estimated radius of the circle.\n" "As cylinders are often exported as triangles of varying size, points may not " -"be on the circle circumference. This setting allows you some leway to " -"broaden the detection.\n" +"be on the circle circumference. This setting allows you some leway to broaden " +"the detection.\n" "In mm or in % of the radius." msgstr "" "Bir noktanın dairenin tahmini yarıçapına göre maksimum sapması.\n" "Silindirler genellikle farklı boyutlarda üçgenler olarak ihraç edildiğinden, " -"noktalar daire çevresinde olmayabilir. Bu ayar, algılamayı genişletmeniz " -"için size biraz alan sağlar.\n" +"noktalar daire çevresinde olmayabilir. Bu ayar, algılamayı genişletmeniz için " +"size biraz alan sağlar.\n" "inc mm cinsinden veya yarıçapın %'si cinsinden." msgid "Polyhole twist" @@ -13536,8 +13545,8 @@ msgid "Format of G-code thumbnails" msgstr "G kodu küçük resimlerinin formatı" msgid "" -"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, QOI " +"for low memory firmware" msgstr "" "G kodu küçük resimlerinin formatı: En iyi kalite için PNG, en küçük boyut " "için JPG, düşük bellekli donanım yazılımı için QOI" @@ -13558,11 +13567,11 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " -"very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"very thin areas is used gap-fill. Arachne engine produces walls with variable " +"extrusion width" msgstr "" -"Klasik duvar oluşturucu sabit ekstrüzyon genişliğine sahip duvarlar üretir " -"ve çok ince alanlar için boşluk doldurma kullanılır. Arachne motoru değişken " +"Klasik duvar oluşturucu sabit ekstrüzyon genişliğine sahip duvarlar üretir ve " +"çok ince alanlar için boşluk doldurma kullanılır. Arachne motoru değişken " "ekstrüzyon genişliğine sahip duvarlar üretir" msgid "Classic" @@ -13589,20 +13598,19 @@ msgstr "Duvar geçiş filtresi oranı" msgid "" "Prevent transitioning back and forth between one extra wall and one less. " "This margin extends the range of extrusion widths which follow to [Minimum " -"wall width - margin, 2 * Minimum wall width + margin]. Increasing this " -"margin reduces the number of transitions, which reduces the number of " -"extrusion starts/stops and travel time. However, large extrusion width " -"variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"wall width - margin, 2 * Minimum wall width + margin]. Increasing this margin " +"reduces the number of transitions, which reduces the number of extrusion " +"starts/stops and travel time. However, large extrusion width variation can " +"lead to under- or overextrusion problems. It's expressed as a percentage over " +"nozzle diameter" msgstr "" -"Fazladan bir duvar ile bir eksik arasında ileri geri geçişi önleyin. Bu " -"kenar boşluğu, [Minimum duvar genişliği - kenar boşluğu, 2 * Minimum duvar " +"Fazladan bir duvar ile bir eksik arasında ileri geri geçişi önleyin. Bu kenar " +"boşluğu, [Minimum duvar genişliği - kenar boşluğu, 2 * Minimum duvar " "genişliği + kenar boşluğu] şeklinde takip eden ekstrüzyon genişlikleri " "aralığını genişletir. Bu marjın arttırılması geçiş sayısını azaltır, bu da " "ekstrüzyonun başlama/durma sayısını ve seyahat süresini azaltır. Bununla " -"birlikte, büyük ekstrüzyon genişliği değişimi, yetersiz veya aşırı " -"ekstrüzyon sorunlarına yol açabilir. Nozul çapına göre yüzde olarak ifade " -"edilir" +"birlikte, büyük ekstrüzyon genişliği değişimi, yetersiz veya aşırı ekstrüzyon " +"sorunlarına yol açabilir. Nozul çapına göre yüzde olarak ifade edilir" msgid "Wall transitioning threshold angle" msgstr "Duvar geçiş açısı" @@ -13614,11 +13622,11 @@ msgid "" "this setting reduces the number and length of these center walls, but may " "leave gaps or overextrude" msgstr "" -"Çift ve tek sayıdaki duvarlar arasında geçişler ne zaman oluşturulmalıdır? " -"Bu ayardan daha büyük bir açıya sahip bir kama şeklinin geçişleri olmayacak " -"ve kalan alanı dolduracak şekilde ortada hiçbir duvar basılmayacaktır. Bu " -"ayarın düşürülmesi, bu merkez duvarların sayısını ve uzunluğunu azaltır " -"ancak boşluklara veya aşırı çıkıntıya neden olabilir" +"Çift ve tek sayıdaki duvarlar arasında geçişler ne zaman oluşturulmalıdır? Bu " +"ayardan daha büyük bir açıya sahip bir kama şeklinin geçişleri olmayacak ve " +"kalan alanı dolduracak şekilde ortada hiçbir duvar basılmayacaktır. Bu ayarın " +"düşürülmesi, bu merkez duvarların sayısını ve uzunluğunu azaltır ancak " +"boşluklara veya aşırı çıkıntıya neden olabilir" msgid "Wall distribution count" msgstr "Duvar dağılım sayısı" @@ -13634,9 +13642,9 @@ msgid "Minimum feature size" msgstr "Minimum özellik boyutu" msgid "" -"Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " +"Minimum thickness of thin features. Model features that are thinner than this " +"value will not be printed, while features thicker than the Minimum feature " +"size will be widened to the Minimum wall width. It's expressed as a " "percentage over nozzle diameter" msgstr "" "İnce özellikler için minimum kalınlık. Bu değerden daha ince olan model " @@ -13653,28 +13661,27 @@ msgid "" "\n" "NOTE: Bottom and top surfaces will not be affected by this value to prevent " "visual gaps on the ouside of the model. Adjust 'One wall threshold' in the " -"Advanced settings below to adjust the sensitivity of what is considered a " -"top-surface. 'One wall threshold' is only visibile if this setting is set " -"above the default value of 0.5, or if single-wall top surfaces is enabled." +"Advanced settings below to adjust the sensitivity of what is considered a top-" +"surface. 'One wall threshold' is only visibile if this setting is set above " +"the default value of 0.5, or if single-wall top surfaces is enabled." msgstr "" "Yazdırma süresini artırabilecek kısa, kapatılmamış duvarların yazdırılmasını " "önlemek için bu değeri ayarlayın. Daha yüksek değerler daha fazla ve daha " "uzun duvarları kaldırır.\n" "\n" -"NOT: Modelin dış kısmında görsel boşluk kalmaması için alt ve üst yüzeyler " -"bu değerden etkilenmeyecektir. Üst yüzey olarak kabul edilen şeyin " -"hassasiyetini ayarlamak için aşağıdaki Gelişmiş ayarlarda 'Tek duvar " -"eşiği'ni ayarlayın. 'Tek duvar eşiği' yalnızca bu ayar varsayılan değer olan " -"0,5'in üzerine ayarlandığında veya tek duvarlı üst yüzeyler " -"etkinleştirildiğinde görünür." +"NOT: Modelin dış kısmında görsel boşluk kalmaması için alt ve üst yüzeyler bu " +"değerden etkilenmeyecektir. Üst yüzey olarak kabul edilen şeyin hassasiyetini " +"ayarlamak için aşağıdaki Gelişmiş ayarlarda 'Tek duvar eşiği'ni ayarlayın. " +"'Tek duvar eşiği' yalnızca bu ayar varsayılan değer olan 0,5'in üzerine " +"ayarlandığında veya tek duvarlı üst yüzeyler etkinleştirildiğinde görünür." msgid "First layer minimum wall width" msgstr "İlk katman minimum duvar genişliği" msgid "" -"The minimum wall width that should be used for the first layer is " -"recommended to be set to the same size as the nozzle. This adjustment is " -"expected to enhance adhesion." +"The minimum wall width that should be used for the first layer is recommended " +"to be set to the same size as the nozzle. This adjustment is expected to " +"enhance adhesion." msgstr "" "İlk katman için kullanılması gereken minimum duvar genişliğinin nozul ile " "aynı boyuta ayarlanması tavsiye edilir. Bu ayarlamanın yapışmayı artırması " @@ -13699,8 +13706,8 @@ msgstr "Dar iç katı dolguyu tespit et" msgid "" "This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used defaultly." +"concentric pattern will be used for the area to speed printing up. Otherwise, " +"rectilinear pattern is used defaultly." msgstr "" "Bu seçenek dar dahili katı dolgu alanını otomatik olarak algılayacaktır. " "Etkinleştirilirse, yazdırmayı hızlandırmak amacıyla alanda eşmerkezli desen " @@ -13746,8 +13753,7 @@ msgstr "Yönlendirme Seçenekleri" msgid "Orient options: 0-disable, 1-enable, others-auto" msgstr "" -"Yönlendirme seçenekleri: 0-devre dışı bırak, 1-etkinleştir, diğerleri-" -"otomatik" +"Yönlendirme seçenekleri: 0-devre dışı bırak, 1-etkinleştir, diğerleri-otomatik" msgid "Rotation angle around the Z axis in degrees." msgstr "Z ekseni etrafında derece cinsinden dönüş açısı." @@ -13792,13 +13798,13 @@ msgstr "" "ettiğini bilmesi için bu değişkene yazması gerekir." msgid "" -"Retraction state at the beginning of the custom G-code block. If the custom " -"G-code moves the extruder axis, it should write to this variable so " -"PrusaSlicer deretracts correctly when it gets control back." +"Retraction state at the beginning of the custom G-code block. If the custom G-" +"code moves the extruder axis, it should write to this variable so PrusaSlicer " +"deretracts correctly when it gets control back." msgstr "" "Özel G kodu bloğunun başlangıcındaki geri çekilme durumu. Özel G kodu " -"ekstruder eksenini hareket ettirirse, Slicer'ın kontrolü geri aldığında " -"doğru şekilde geri çekme yapması için bu değişkene yazması gerekir." +"ekstruder eksenini hareket ettirirse, Slicer'ın kontrolü geri aldığında doğru " +"şekilde geri çekme yapması için bu değişkene yazması gerekir." msgid "Extra deretraction" msgstr "Ekstra deretraksiyon" @@ -13883,18 +13889,18 @@ msgid "" "Weight per extruder extruded during the entire print. Calculated from " "filament_density value in Filament Settings." msgstr "" -"Baskının tamamı boyunca ekstrüzyon yapılan ekstruder başına ağırlık. " -"Filament Ayarlarındaki filaman yoğunluğu değerinden hesaplanır." +"Baskının tamamı boyunca ekstrüzyon yapılan ekstruder başına ağırlık. Filament " +"Ayarlarındaki filaman yoğunluğu değerinden hesaplanır." msgid "Total weight" msgstr "Toplam ağırlık" msgid "" -"Total weight of the print. Calculated from filament_density value in " -"Filament Settings." +"Total weight of the print. Calculated from filament_density value in Filament " +"Settings." msgstr "" -"Baskının toplam ağırlığı. Filament Ayarlarındaki filaman yoğunluğu " -"değerinden hesaplanır." +"Baskının toplam ağırlığı. Filament Ayarlarındaki filaman yoğunluğu değerinden " +"hesaplanır." msgid "Total layer count" msgstr "Toplam katman sayısı" @@ -13943,8 +13949,8 @@ msgstr "" "cinsindendir." msgid "" -"The vector has two elements: x and y dimension of the bounding box. Values " -"in mm." +"The vector has two elements: x and y dimension of the bounding box. Values in " +"mm." msgstr "" "Vektörün iki öğesi vardır: sınırlayıcı kutunun x ve y boyutu. Değerler mm " "cinsindendir." @@ -13956,8 +13962,8 @@ msgid "" "Vector of points of the first layer convex hull. Each element has the " "following format:'[x, y]' (x and y are floating-point numbers in mm)." msgstr "" -"Birinci katmanın dışbükey gövdesinin noktalarının vektörü. Her öğe şu " -"formata sahiptir:'[x, y]' (x ve y, mm cinsinden kayan noktalı sayılardır)." +"Birinci katmanın dışbükey gövdesinin noktalarının vektörü. Her öğe şu formata " +"sahiptir:'[x, y]' (x ve y, mm cinsinden kayan noktalı sayılardır)." msgid "Bottom-left corner of first layer bounding box" msgstr "İlk katman sınırlayıcı kutusunun sol alt köşesi" @@ -14153,8 +14159,7 @@ msgstr "Sağlanan dosya boş olduğundan okunamadı" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Bilinmeyen dosya formatı. Giriş dosyası .3mf veya .zip.amf uzantılı " -"olmalıdır." +"Bilinmeyen dosya formatı. Giriş dosyası .3mf veya .zip.amf uzantılı olmalıdır." msgid "Canceled" msgstr "İptal edildi" @@ -14276,8 +14281,7 @@ msgstr "yeni ön ayar oluşturma başarısız oldu." msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" -"Mevcut kalibrasyonu iptal edip ana sayfaya dönmek istediğinizden emin " -"misiniz?" +"Mevcut kalibrasyonu iptal edip ana sayfaya dönmek istediğinizden emin misiniz?" msgid "No Printer Connected!" msgstr "Yazıcı Bağlı Değil!" @@ -14292,16 +14296,16 @@ msgid "The input value size must be 3." msgstr "Giriş değeri boyutu 3 olmalıdır." msgid "" -"This machine type can only hold 16 history results per nozzle. You can " -"delete the existing historical results and then start calibration. Or you " -"can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"This machine type can only hold 16 history results per nozzle. You can delete " +"the existing historical results and then start calibration. Or you can " +"continue the calibration, but you cannot create new calibration historical " +"results. \n" "Do you still want to continue the calibration?" msgstr "" "Bu makine tipi, püskürtme ucu başına yalnızca 16 geçmiş sonucu tutabilir. " -"Mevcut geçmiş sonuçları silebilir ve ardından kalibrasyona " -"başlayabilirsiniz. Veya kalibrasyona devam edebilirsiniz ancak yeni " -"kalibrasyon geçmişi sonuçları oluşturamazsınız.\n" +"Mevcut geçmiş sonuçları silebilir ve ardından kalibrasyona başlayabilirsiniz. " +"Veya kalibrasyona devam edebilirsiniz ancak yeni kalibrasyon geçmişi " +"sonuçları oluşturamazsınız.\n" "Hala kalibrasyona devam etmek istiyor musunuz?" msgid "Connecting to printer..." @@ -14315,9 +14319,9 @@ msgstr "Akış Dinamiği Kalibrasyonu sonucu yazıcıya kaydedildi" #, c-format, boost-format msgid "" -"There is already a historical calibration result with the same name: %s. " -"Only one of the results with the same name is saved. Are you sure you want " -"to override the historical result?" +"There is already a historical calibration result with the same name: %s. Only " +"one of the results with the same name is saved. Are you sure you want to " +"override the historical result?" msgstr "" "Aynı ada sahip geçmiş bir kalibrasyon sonucu zaten var: %s. Aynı ada sahip " "sonuçlardan yalnızca biri kaydedilir. Geçmiş sonucu geçersiz kılmak " @@ -14328,8 +14332,8 @@ msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" -"Bu makine türü püskürtme ucu başına yalnızca %d geçmiş sonucunu tutabilir. " -"Bu sonuç kaydedilmeyecek." +"Bu makine türü püskürtme ucu başına yalnızca %d geçmiş sonucunu tutabilir. Bu " +"sonuç kaydedilmeyecek." msgid "Internal Error" msgstr "İç hata" @@ -14348,10 +14352,10 @@ msgstr "Akış Dinamiği Kalibrasyonuna ne zaman ihtiyacınız olur" msgid "" "We now have added the auto-calibration for different filaments, which is " -"fully automated and the result will be saved into the printer for future " -"use. You only need to do the calibration in the following limited cases:\n" -"1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" +"fully automated and the result will be saved into the printer for future use. " +"You only need to do the calibration in the following limited cases:\n" +"1. If you introduce a new filament of different brands/models or the filament " +"is damp;\n" "2. if the nozzle is worn out or replaced with a new one;\n" "3. If the max volumetric speed or print temperature is changed in the " "filament setting." @@ -14373,10 +14377,10 @@ msgid "" "\n" "Usually the calibration is unnecessary. When you start a single color/" "material print, with the \"flow dynamics calibration\" option checked in the " -"print start menu, the printer will follow the old way, calibrate the " -"filament before the print; When you start a multi color/material print, the " -"printer will use the default compensation parameter for the filament during " -"every filament switch which will have a good result in most cases.\n" +"print start menu, the printer will follow the old way, calibrate the filament " +"before the print; When you start a multi color/material print, the printer " +"will use the default compensation parameter for the filament during every " +"filament switch which will have a good result in most cases.\n" "\n" "Please note there are a few cases that will make the calibration result not " "reliable: using a texture plate to do the calibration; the build plate does " @@ -14402,9 +14406,9 @@ msgstr "" "plakasının yapışması iyi değil (lütfen baskı plakasını yıkayın veya " "yapıştırıcı uygulayın!) ...Daha fazlasını wiki'mizden bulabilirsiniz.\n" "\n" -"Testimizde kalibrasyon sonuçlarında yaklaşık yüzde 10'luk bir titreşim var " -"ve bu da sonucun her kalibrasyonda tam olarak aynı olmamasına neden " -"olabilir. Yeni güncellemelerle iyileştirmeler yapmak için hâlâ temel nedeni " +"Testimizde kalibrasyon sonuçlarında yaklaşık yüzde 10'luk bir titreşim var ve " +"bu da sonucun her kalibrasyonda tam olarak aynı olmamasına neden olabilir. " +"Yeni güncellemelerle iyileştirmeler yapmak için hâlâ temel nedeni " "araştırıyoruz." msgid "When to use Flow Rate Calibration" @@ -14445,10 +14449,10 @@ msgstr "" msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " "volumes. The default setting works well in Bambu Lab printers and official " -"filaments as they were pre-calibrated and fine-tuned. For a regular " -"filament, you usually won't need to perform a Flow Rate Calibration unless " -"you still see the listed defects after you have done other calibrations. For " -"more details, please check out the wiki article." +"filaments as they were pre-calibrated and fine-tuned. For a regular filament, " +"you usually won't need to perform a Flow Rate Calibration unless you still " +"see the listed defects after you have done other calibrations. For more " +"details, please check out the wiki article." msgstr "" "Akış Hızı Kalibrasyonu, beklenen ekstrüzyon hacimlerinin gerçek ekstrüzyon " "hacimlerine oranını ölçer. Varsayılan ayar, önceden kalibre edilmiş ve ince " @@ -14463,13 +14467,12 @@ msgid "" "directly measuring the calibration patterns. However, please be advised that " "the efficacy and accuracy of this method may be compromised with specific " "types of materials. Particularly, filaments that are transparent or semi-" -"transparent, sparkling-particled, or have a high-reflective finish may not " -"be suitable for this calibration and can produce less-than-desirable " -"results.\n" +"transparent, sparkling-particled, or have a high-reflective finish may not be " +"suitable for this calibration and can produce less-than-desirable results.\n" "\n" -"The calibration results may vary between each calibration or filament. We " -"are still improving the accuracy and compatibility of this calibration " -"through firmware updates over time.\n" +"The calibration results may vary between each calibration or filament. We are " +"still improving the accuracy and compatibility of this calibration through " +"firmware updates over time.\n" "\n" "Caution: Flow Rate Calibration is an advanced process, to be attempted only " "by those who fully understand its purpose and implications. Incorrect usage " @@ -14480,8 +14483,8 @@ msgstr "" "kullanarak kalibrasyon modellerini doğrudan ölçer. Ancak, bu yöntemin " "etkinliğinin ve doğruluğunun belirli malzeme türleriyle tehlikeye " "girebileceğini lütfen unutmayın. Özellikle şeffaf veya yarı şeffaf, parlak " -"parçacıklı veya yüksek yansıtıcı yüzeye sahip filamentler bu kalibrasyon " -"için uygun olmayabilir ve arzu edilenden daha az sonuçlar üretebilir.\n" +"parçacıklı veya yüksek yansıtıcı yüzeye sahip filamentler bu kalibrasyon için " +"uygun olmayabilir ve arzu edilenden daha az sonuçlar üretebilir.\n" "\n" "Kalibrasyon sonuçları her kalibrasyon veya filament arasında farklılık " "gösterebilir. Zaman içinde ürün yazılımı güncellemeleriyle bu kalibrasyonun " @@ -14490,8 +14493,8 @@ msgstr "" "Dikkat: Akış Hızı Kalibrasyonu, yalnızca amacını ve sonuçlarını tam olarak " "anlayan kişiler tarafından denenmesi gereken gelişmiş bir işlemdir. Yanlış " "kullanım, ortalamanın altında baskılara veya yazıcının zarar görmesine neden " -"olabilir. Lütfen işlemi yapmadan önce işlemi dikkatlice okuyup " -"anladığınızdan emin olun." +"olabilir. Lütfen işlemi yapmadan önce işlemi dikkatlice okuyup anladığınızdan " +"emin olun." msgid "When you need Max Volumetric Speed Calibration" msgstr "Maksimum Hacimsel Hız Kalibrasyonuna ihtiyaç duyduğunuzda" @@ -14513,15 +14516,15 @@ msgid "We found the best Flow Dynamics Calibration Factor" msgstr "En iyi Akış Dinamiği Kalibrasyon Faktörünü bulduk" msgid "" -"Part of the calibration failed! You may clean the plate and retry. The " -"failed test result would be dropped." +"Part of the calibration failed! You may clean the plate and retry. The failed " +"test result would be dropped." msgstr "" "Kalibrasyonun bir kısmı başarısız oldu! Plakayı temizleyip tekrar " "deneyebilirsiniz. Başarısız olan test sonucu görmezden gelinir." msgid "" -"*We recommend you to add brand, materia, type, and even humidity level in " -"the Name" +"*We recommend you to add brand, materia, type, and even humidity level in the " +"Name" msgstr "*İsme marka, malzeme, tür ve hatta nem seviyesini eklemenizi öneririz" msgid "Failed" @@ -14542,9 +14545,9 @@ msgstr "" #, c-format, boost-format msgid "" -"There is already a historical calibration result with the same name: %s. " -"Only one of the results with the same name is saved. Are you sure you want " -"to overrides the historical result?" +"There is already a historical calibration result with the same name: %s. Only " +"one of the results with the same name is saved. Are you sure you want to " +"overrides the historical result?" msgstr "" "Aynı ada sahip geçmiş bir kalibrasyon sonucu zaten var: %s. Aynı ada sahip " "sonuçlardan yalnızca biri kaydedilir. Geçmiş sonucu geçersiz kılmak " @@ -15114,8 +15117,8 @@ msgid "" "name. Do you want to continue?" msgstr "" "Oluşturduğunuz %s Filament adı zaten mevcut.\n" -"Oluşturmaya devam ederseniz oluşturulan ön ayar tam adıyla " -"görüntülenecektir. Devam etmek istiyor musun?" +"Oluşturmaya devam ederseniz oluşturulan ön ayar tam adıyla görüntülenecektir. " +"Devam etmek istiyor musun?" msgid "Some existing presets have failed to be created, as follows:\n" msgstr "Aşağıdaki gibi bazı mevcut ön ayarlar oluşturulamadı:\n" @@ -15128,8 +15131,8 @@ msgstr "" "Yeniden yazmak ister misin?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you selected" -"\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you " +"selected\". \n" "To add preset for more printers, Please go to printer selection" msgstr "" "Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri " @@ -15237,15 +15240,15 @@ msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" msgstr "" -"Hangi yazıcı ön ayarının temel alınacağını henüz seçmediniz. Lütfen " -"yazıcının satıcısını ve modelini seçin" +"Hangi yazıcı ön ayarının temel alınacağını henüz seçmediniz. Lütfen yazıcının " +"satıcısını ve modelini seçin" msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." msgstr "" -"İlk sayfadaki yazdırılabilir alan kısmına geçersiz bir giriş yaptınız. " -"Lütfen oluşturmadan önce kontrol edin." +"İlk sayfadaki yazdırılabilir alan kısmına geçersiz bir giriş yaptınız. Lütfen " +"oluşturmadan önce kontrol edin." msgid "The custom printer or model is not inputed, place input." msgstr "Özel yazıcı veya model girilmedi lütfen giriş yapın." @@ -15262,8 +15265,7 @@ msgstr "" "Oluşturduğunuz yazıcı ön ayarının zaten aynı ada sahip bir ön ayarı var. " "Üzerine yazmak istiyor musunuz?\n" "\tEvet: Aynı adı taşıyan yazıcı ön ayarının üzerine yazın; aynı ön ayar adı " -"taşıyan filaman ve proses ön ayarları yeniden oluşturulacak ve aynı ön " -"ayar \n" +"taşıyan filaman ve proses ön ayarları yeniden oluşturulacak ve aynı ön ayar \n" "adı olmayan filament ve işlem ön ayarları rezerve edilecektir.\n" "\tİptal: Ön ayar oluşturmayın, oluşturma arayüzüne dönün." @@ -15309,8 +15311,7 @@ msgstr "" msgid "" "You have not yet selected the printer to replace the nozzle, please choose." -msgstr "" -"Hala nozulu değiştirmek için yazıcı seçmediniz, lütfen bir seçim yapın." +msgstr "Hala nozulu değiştirmek için yazıcı seçmediniz, lütfen bir seçim yapın." msgid "Create Printer Successful" msgstr "Yazıcı Oluşturma Başarılı" @@ -15393,8 +15394,8 @@ msgstr "Dışa aktarma başarılı" #, c-format, boost-format msgid "" -"The '%s' folder already exists in the current directory. Do you want to " -"clear it and rebuild it.\n" +"The '%s' folder already exists in the current directory. Do you want to clear " +"it and rebuild it.\n" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" @@ -15433,8 +15434,8 @@ msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" -"Yalnızca kullanıcı yazıcı ön ayarlarına sahip yazıcı adları görüntülenecek " -"ve seçtiğiniz her ön ayar zip olarak dışa aktarılacaktır." +"Yalnızca kullanıcı yazıcı ön ayarlarına sahip yazıcı adları görüntülenecek ve " +"seçtiğiniz her ön ayar zip olarak dışa aktarılacaktır." msgid "" "Only the filament names with user filament presets will be displayed, \n" @@ -15442,13 +15443,13 @@ msgid "" "exported as a zip." msgstr "" "Yalnızca kullanıcı filamenti ön ayarlarına sahip filament adları \n" -"görüntülenecek ve seçtiğiniz her filament adındaki tüm kullanıcı filamenti " -"ön ayarları zip olarak dışa aktarılacaktır." +"görüntülenecek ve seçtiğiniz her filament adındaki tüm kullanıcı filamenti ön " +"ayarları zip olarak dışa aktarılacaktır." msgid "" "Only printer names with changed process presets will be displayed, \n" -"and all user process presets in each printer name you select will be " -"exported as a zip." +"and all user process presets in each printer name you select will be exported " +"as a zip." msgstr "" "Yalnızca işlem ön ayarları değiştirilen yazıcı adları görüntülenecek \n" "ve seçtiğiniz her yazıcı adındaki tüm kullanıcı işlem ön ayarları zip olarak " @@ -15472,8 +15473,8 @@ msgid "Filament presets under this filament" msgstr "Bu filamentin altındaki filament ön ayarları" msgid "" -"Note: If the only preset under this filament is deleted, the filament will " -"be deleted after exiting the dialog." +"Note: If the only preset under this filament is deleted, the filament will be " +"deleted after exiting the dialog." msgstr "" "Not: Bu filamentin altındaki tek ön ayar silinirse, diyalogdan çıkıldıktan " "sonra filament silinecektir." @@ -15600,8 +15601,8 @@ msgid "" "On this system, %s uses HTTPS certificates from the system Certificate Store " "or Keychain." msgstr "" -"Bu sistemde %s, sistem Sertifika Deposu veya Anahtar Zincirinden alınan " -"HTTPS sertifikalarını kullanıyor." +"Bu sistemde %s, sistem Sertifika Deposu veya Anahtar Zincirinden alınan HTTPS " +"sertifikalarını kullanıyor." msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " @@ -15751,31 +15752,30 @@ msgstr "" "Hata: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height, and results in almost negligible layer lines and " +"high printing quality. It is suitable for most general printing cases." msgstr "" "Küçük bir katman yüksekliğine sahiptir ve neredeyse ihmal edilebilir katman " "çizgileri ve yüksek baskı kalitesi sağlar. Çoğu genel yazdırma durumu için " "uygundur." msgid "" -"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds and " +"acceleration, and the sparse infill pattern is Gyroid. So, it results in much " +"higher printing quality, but a much longer printing time." msgstr "" "0,2 mm’lik nozülün varsayılan profiliyle karşılaştırıldığında daha düşük hız " -"ve ivmeye sahiptir ve seyrek dolgu deseni Gyroid’dir. Böylece çok daha " -"yüksek baskı kalitesi elde edilir, ancak çok daha uzun baskı süresi elde " -"edilir." +"ve ivmeye sahiptir ve seyrek dolgu deseni Gyroid’dir. Böylece çok daha yüksek " +"baskı kalitesi elde edilir, ancak çok daha uzun baskı süresi elde edilir." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height, and results in almost negligible layer lines, and " "slightly shorter printing time." msgstr "" -"0,2 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " -"biraz daha büyük katman yüksekliğine sahiptir ve neredeyse ihmal edilebilir " -"düzeyde katman çizgileri ve biraz daha kısa yazdırma süresi sağlar." +"0,2 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, biraz " +"daha büyük katman yüksekliğine sahiptir ve neredeyse ihmal edilebilir düzeyde " +"katman çizgileri ve biraz daha kısa yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " @@ -15813,8 +15813,8 @@ msgid "" "shorter printing time." msgstr "" "Varsayılan 0,2 mm püskürtme ucu profiliyle karşılaştırıldığında, daha küçük " -"katman yüksekliğine sahiptir ve minimum katman çizgileri ve daha yüksek " -"baskı kalitesi sağlar, ancak daha kısa yazdırma süresi sağlar." +"katman yüksekliğine sahiptir ve minimum katman çizgileri ve daha yüksek baskı " +"kalitesi sağlar, ancak daha kısa yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " @@ -15865,12 +15865,12 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height, and results in less apparent layer lines and higher printing quality, " +"but longer printing time." msgstr "" "0,4 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " -"küçük bir katman yüksekliğine sahiptir ve daha az görünür katman çizgileri " -"ve daha yüksek baskı kalitesi sağlar, ancak daha uzun yazdırma süresi sağlar." +"küçük bir katman yüksekliğine sahiptir ve daha az görünür katman çizgileri ve " +"daha yüksek baskı kalitesi sağlar, ancak daha uzun yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " @@ -15908,8 +15908,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height, and results in almost negligible layer lines and longer printing time." msgstr "" "0,4 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " "katman yüksekliği daha küçüktür ve neredeyse göz ardı edilebilecek düzeyde " @@ -15944,8 +15943,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height, and results in much more apparent layer lines and much lower printing " +"quality, but shorter printing time in some printing cases." msgstr "" "0,6 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "büyük bir katman yüksekliğine sahiptir ve çok daha belirgin katman çizgileri " @@ -15964,16 +15963,16 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height, and results in less apparent layer lines and higher printing quality, " +"but longer printing time." msgstr "" "0,6 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " -"küçük bir katman yüksekliğine sahiptir ve daha az görünür katman çizgileri " -"ve daha yüksek baskı kalitesi sağlar, ancak daha uzun yazdırma süresi sağlar." +"küçük bir katman yüksekliğine sahiptir ve daha az görünür katman çizgileri ve " +"daha yüksek baskı kalitesi sağlar, ancak daha uzun yazdırma süresi sağlar." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height, and results in very apparent layer lines, low " +"printing quality and general printing time." msgstr "" "Çok büyük bir katman yüksekliğine sahiptir ve çok belirgin katman " "çizgilerine, düşük baskı kalitesine ve genel yazdırma süresine neden olur." @@ -15985,8 +15984,8 @@ msgid "" msgstr "" "0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "büyük bir katman yüksekliğine sahiptir ve çok belirgin katman çizgileri ve " -"çok daha düşük baskı kalitesiyle sonuçlanır, ancak bazı yazdırma " -"durumlarında daha kısa yazdırma süresi sağlar." +"çok daha düşük baskı kalitesiyle sonuçlanır, ancak bazı yazdırma durumlarında " +"daha kısa yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " @@ -15995,8 +15994,8 @@ msgid "" msgstr "" "0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, çok " "daha büyük bir katman yüksekliğine sahiptir ve son derece belirgin katman " -"çizgileri ve çok daha düşük baskı kalitesiyle sonuçlanır, ancak bazı " -"yazdırma durumlarında çok daha kısa yazdırma süresi sağlar." +"çizgileri ve çok daha düşük baskı kalitesiyle sonuçlanır, ancak bazı yazdırma " +"durumlarında çok daha kısa yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " @@ -16004,10 +16003,10 @@ msgid "" "lines and slightly higher printing quality, but longer printing time in some " "printing cases." msgstr "" -"0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " -"biraz daha küçük bir katman yüksekliğine sahiptir ve biraz daha az ama yine " -"de görünür katman çizgileri ve biraz daha yüksek baskı kalitesi sağlar, " -"ancak bazı yazdırma durumlarında daha uzun yazdırma süresi sağlar." +"0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, biraz " +"daha küçük bir katman yüksekliğine sahiptir ve biraz daha az ama yine de " +"görünür katman çizgileri ve biraz daha yüksek baskı kalitesi sağlar, ancak " +"bazı yazdırma durumlarında daha uzun yazdırma süresi sağlar." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " @@ -16036,11 +16035,11 @@ msgstr "" "SimplyPrint hesabı bağlı değil. Ayarlamak için Bağlantı seçeneklerine gidin." msgid "" -"File size exceeds the 100MB upload limit. Please upload your file through " -"the panel." +"File size exceeds the 100MB upload limit. Please upload your file through the " +"panel." msgstr "" -"Dosya boyutu 100 MB yükleme sınırını aşıyor. Lütfen dosyanızı panel " -"üzerinden yükleyiniz." +"Dosya boyutu 100 MB yükleme sınırını aşıyor. Lütfen dosyanızı panel üzerinden " +"yükleyiniz." msgid "Unknown error" msgstr "Bilinmeyen hata" @@ -16083,8 +16082,7 @@ msgid "" msgstr "" "Sandviç modu\n" "Modelinizde çok dik çıkıntılar yoksa hassasiyeti ve katman tutarlılığını " -"artırmak için sandviç modunu (iç-dış-iç) kullanabileceğinizi biliyor " -"muydunuz?" +"artırmak için sandviç modunu (iç-dış-iç) kullanabileceğinizi biliyor muydunuz?" #: resources/data/hints.ini: [hint:Chamber temperature] msgid "" @@ -16146,14 +16144,14 @@ msgid "" "3D scene operations." msgstr "" "Klavye kısayolları nasıl kullanılır?\n" -"Orca Slicer'ın çok çeşitli klavye kısayolları ve 3B sahne işlemleri " -"sunduğunu biliyor muydunuz?" +"Orca Slicer'ın çok çeşitli klavye kısayolları ve 3B sahne işlemleri sunduğunu " +"biliyor muydunuz?" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" "Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Did you know that Reverse on odd feature can significantly improve the " +"surface quality of your overhangs?" msgstr "" "Tek sayıyı tersine çevir\n" "Tek sayıyı ters çevir özelliğinin çıkıntılarınızın yüzey kalitesini " @@ -16176,8 +16174,8 @@ msgid "" "problems on the Windows system?" msgstr "" "Modeli Düzelt\n" -"Windows sisteminde birçok dilimleme sorununu önlemek için bozuk bir 3D " -"modeli düzeltebileceğinizi biliyor muydunuz?" +"Windows sisteminde birçok dilimleme sorununu önlemek için bozuk bir 3D modeli " +"düzeltebileceğinizi biliyor muydunuz?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" @@ -16310,9 +16308,9 @@ msgstr "" #: resources/data/hints.ini: [hint:Fine-tuning for flow rate] msgid "" "Fine-tuning for flow rate\n" -"Did you know that flow rate can be fine-tuned for even better-looking " -"prints? Depending on the material, you can improve the overall finish of the " -"printed model by doing some fine-tuning." +"Did you know that flow rate can be fine-tuned for even better-looking prints? " +"Depending on the material, you can improve the overall finish of the printed " +"model by doing some fine-tuning." msgstr "" "Akış hızı için ince ayar\n" "Baskıların daha da iyi görünmesi için akış hızına ince ayar yapılabileceğini " @@ -16346,8 +16344,8 @@ msgstr "" msgid "" "Support painting\n" "Did you know that you can paint the location of your supports? This feature " -"makes it easy to place the support material only on the sections of the " -"model that actually need it." +"makes it easy to place the support material only on the sections of the model " +"that actually need it." msgstr "" "Destek boyama\n" "Desteklerinizin yerini boyayabileceğinizi biliyor muydunuz? Bu özellik, " @@ -16456,9 +16454,9 @@ msgstr "" #~ msgstr "V" #~ msgid "" -#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " -#~ "Ranellucci and the RepRap community" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " +#~ "by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci " +#~ "and the RepRap community" #~ msgstr "" #~ "Orca Slicer, Prusa Research'ün PrusaSlicer'ından Bambulab'ın " #~ "BambuStudio'sunu temel alıyor. PrusaSlicer, Alessandro Ranellucci ve " @@ -16529,16 +16527,15 @@ msgstr "" #~ "değer) korumak ister misiniz?" #~ msgid "" -#~ "You have previously modified your settings and are about to overwrite " -#~ "them with new ones." +#~ "You have previously modified your settings and are about to overwrite them " +#~ "with new ones." #~ msgstr "" -#~ "Ayarlarınızı daha önce değiştirdiniz ve bunların üzerine yenilerini " -#~ "yazmak üzeresiniz." +#~ "Ayarlarınızı daha önce değiştirdiniz ve bunların üzerine yenilerini yazmak " +#~ "üzeresiniz." #~ msgid "" #~ "\n" -#~ "Do you want to keep your current modified settings, or use preset " -#~ "settings?" +#~ "Do you want to keep your current modified settings, or use preset settings?" #~ msgstr "" #~ "\n" #~ "Geçerli değiştirilen ayarlarınızı korumak mı yoksa önceden ayarlanmış " @@ -16558,8 +16555,8 @@ msgstr "" #~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " #~ "automatically load or unload filiament." #~ msgstr "" -#~ "Filamenti otomatik olarak yüklemek veya çıkarmak için bir AMS yuvası " -#~ "seçin ve ardından \"Yükle\" veya \"Boşalt\" düğmesine basın." +#~ "Filamenti otomatik olarak yüklemek veya çıkarmak için bir AMS yuvası seçin " +#~ "ve ardından \"Yükle\" veya \"Boşalt\" düğmesine basın." #~ msgid "MC" #~ msgstr "MC" @@ -16599,8 +16596,8 @@ msgstr "" #~ "The 3mf file version is in Beta and it is newer than the current Bambu " #~ "Studio version." #~ msgstr "" -#~ "3mf dosya sürümü Beta aşamasındadır ve mevcut Bambu Studio sürümünden " -#~ "daha yenidir." +#~ "3mf dosya sürümü Beta aşamasındadır ve mevcut Bambu Studio sürümünden daha " +#~ "yenidir." #~ msgid "If you would like to try Bambu Studio Beta, you may click to" #~ msgstr "Bambu Studio Beta’yı denemek isterseniz tıklayabilirsiniz." @@ -16627,9 +16624,9 @@ msgstr "" #~ "Green means that AMS humidity is normal, orange represent humidity is " #~ "high, red represent humidity is too high.(Hygrometer: lower the better.)" #~ msgstr "" -#~ "Yeşil, AMS neminin normal olduğunu, turuncu nemin yüksek olduğunu, " -#~ "kırmızı ise nemin çok yüksek olduğunu gösterir.(Higrometre: ne kadar " -#~ "düşükse o kadar iyidir.)" +#~ "Yeşil, AMS neminin normal olduğunu, turuncu nemin yüksek olduğunu, kırmızı " +#~ "ise nemin çok yüksek olduğunu gösterir.(Higrometre: ne kadar düşükse o " +#~ "kadar iyidir.)" #~ msgid "Desiccant status" #~ msgstr "Kurutucu durumu" @@ -16639,14 +16636,14 @@ msgstr "" #~ "inactive. Please change the desiccant.(The bars: higher the better.)" #~ msgstr "" #~ "İki çubuktan daha düşük bir kurutucu durumu, kurutucunun etkin olmadığını " -#~ "gösterir. Lütfen kurutucuyu değiştirin.(Çubuklar: ne kadar yüksek olursa " -#~ "o kadar iyidir.)" +#~ "gösterir. Lütfen kurutucuyu değiştirin.(Çubuklar: ne kadar yüksek olursa o " +#~ "kadar iyidir.)" #~ msgid "" #~ "Note: When the lid is open or the desiccant pack is changed, it can take " #~ "hours or a night to absorb the moisture. Low temperatures also slow down " -#~ "the process. During this time, the indicator may not represent the " -#~ "chamber accurately." +#~ "the process. During this time, the indicator may not represent the chamber " +#~ "accurately." #~ msgstr "" #~ "Not: Kapak açıkken veya kurutucu paketi değiştirildiğinde, nemin emilmesi " #~ "saatler veya bir gece sürebilir. Düşük sıcaklıklar da süreci yavaşlatır. " @@ -16744,14 +16741,14 @@ msgstr "" #~ msgid "" #~ "Please go to filament setting to edit your presets if you need.\n" #~ "Please note that nozzle temperature, hot bed temperature, and maximum " -#~ "volumetric speed have a significant impact on printing quality. Please " -#~ "set them carefully." +#~ "volumetric speed have a significant impact on printing quality. Please set " +#~ "them carefully." #~ msgstr "" -#~ "İhtiyacınız olursa ön ayarlarınızı düzenlemek için lütfen filament " -#~ "ayarına gidin.\n" +#~ "İhtiyacınız olursa ön ayarlarınızı düzenlemek için lütfen filament ayarına " +#~ "gidin.\n" #~ "Lütfen püskürtme ucu sıcaklığının, sıcak yatak sıcaklığının ve maksimum " -#~ "hacimsel hızın yazdırma kalitesi üzerinde önemli bir etkiye sahip " -#~ "olduğunu unutmayın. Lütfen bunları dikkatlice ayarlayın." +#~ "hacimsel hızın yazdırma kalitesi üzerinde önemli bir etkiye sahip olduğunu " +#~ "unutmayın. Lütfen bunları dikkatlice ayarlayın." #~ msgid "Studio Version:" #~ msgstr "Stüdyo Sürümü:" @@ -16796,8 +16793,8 @@ msgstr "" #~ msgstr "Depolama Yüklemesini Test Etme" #~ msgid "" -#~ "The speed setting exceeds the printer's maximum speed " -#~ "(machine_max_speed_x/machine_max_speed_y).\n" +#~ "The speed setting exceeds the printer's maximum speed (machine_max_speed_x/" +#~ "machine_max_speed_y).\n" #~ "Orca will automatically cap the print speed to ensure it doesn't surpass " #~ "the printer's capabilities.\n" #~ "You can adjust the maximum speed setting in your printer's configuration " @@ -16805,8 +16802,8 @@ msgstr "" #~ msgstr "" #~ "Hız ayarı yazıcının maksimum hızını aşıyor (machine_max_speed_x/" #~ "machine_max_speed_y).\n" -#~ "Orca, yazıcının yeteneklerini aşmadığından emin olmak için yazdırma " -#~ "hızını otomatik olarak sınırlayacaktır.\n" +#~ "Orca, yazıcının yeteneklerini aşmadığından emin olmak için yazdırma hızını " +#~ "otomatik olarak sınırlayacaktır.\n" #~ "Daha yüksek hızlar elde etmek için yazıcınızın yapılandırmasındaki " #~ "maksimum hız ayarını yapabilirsiniz." @@ -16832,8 +16829,8 @@ msgstr "" #~ "Add solid infill near sloping surfaces to guarantee the vertical shell " #~ "thickness (top+bottom solid layers)" #~ msgstr "" -#~ "Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına " -#~ "katı dolgu ekleyin (üst + alt katı katmanlar)" +#~ "Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına katı " +#~ "dolgu ekleyin (üst + alt katı katmanlar)" #~ msgid "Further reduce solid infill on walls (beta)" #~ msgstr "Duvarlardaki katı dolguyu daha da azaltın (deneysel)" @@ -16887,19 +16884,19 @@ msgstr "" #~ "are not specified explicitly." #~ msgstr "" #~ "Daha iyi katman soğutması için yavaşlama etkinleştirildiğinde, yazdırma " -#~ "çıkıntıları olduğunda ve özellik hızları açıkça belirtilmediğinde " -#~ "filament için minimum yazdırma hızı." +#~ "çıkıntıları olduğunda ve özellik hızları açıkça belirtilmediğinde filament " +#~ "için minimum yazdırma hızı." #~ msgid "No sparse layers (EXPERIMENTAL)" #~ msgstr "Seyrek katman yok (DENEYSEL)" #~ msgid "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" -#~ "\". \n" +#~ "We would rename the presets as \"Vendor Type Serial @printer you " +#~ "selected\". \n" #~ "To add preset for more prinetrs, Please go to printer selection" #~ msgstr "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" -#~ "\". \n" +#~ "We would rename the presets as \"Vendor Type Serial @printer you " +#~ "selected\". \n" #~ "To add preset for more prinetrs, Please go to printer selection" #~ msgid "The Config can not be loaded." @@ -16914,8 +16911,8 @@ msgstr "" #~ msgstr "wiki" #~ msgid "" -#~ "Relative extrusion is recommended when using \"label_objects\" option." -#~ "Some extruders work better with this option unckecked (absolute extrusion " +#~ "Relative extrusion is recommended when using \"label_objects\" option.Some " +#~ "extruders work better with this option unckecked (absolute extrusion " #~ "mode). Wipe tower is only compatible with relative mode. It is always " #~ "enabled on BambuLab printers. Default is checked" #~ msgstr "" @@ -17045,8 +17042,8 @@ msgstr "" #~ "Bir Parçayı Çıkar\n" #~ "Negatif parça değiştiriciyi kullanarak bir ağı diğerinden " #~ "çıkarabileceğinizi biliyor muydunuz? Bu şekilde örneğin doğrudan Orca " -#~ "Slicer'da kolayca yeniden boyutlandırılabilen delikler " -#~ "oluşturabilirsiniz. Daha fazlasını belgelerde okuyun." +#~ "Slicer'da kolayca yeniden boyutlandırılabilen delikler oluşturabilirsiniz. " +#~ "Daha fazlasını belgelerde okuyun." #~ msgid "Filling bed " #~ msgstr "Yatak doldurma " @@ -17062,8 +17059,7 @@ msgstr "" #~ msgstr "" #~ "Doğrusal desene geçilsin mi?\n" #~ "Evet - otomatik olarak doğrusal desene geçin\n" -#~ "Hayır - yoğunluğu otomatik olarak %100 olmayan varsayılan değere " -#~ "sıfırlayın" +#~ "Hayır - yoğunluğu otomatik olarak %100 olmayan varsayılan değere sıfırlayın" #~ msgid "Please heat the nozzle to above 170 degree before loading filament." #~ msgstr "" @@ -17304,8 +17300,8 @@ msgstr "" #~ "load uptodate process/machine settings from the specified file when using " #~ "uptodate" #~ msgstr "" -#~ "güncellemeyi kullanırken belirtilen dosyadan güncel işlem/" -#~ "yazıcıayarlarını yükle" +#~ "güncellemeyi kullanırken belirtilen dosyadan güncel işlem/yazıcıayarlarını " +#~ "yükle" #~ msgid "Output directory" #~ msgstr "Çıkış dizini" @@ -17352,8 +17348,8 @@ msgstr "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " #~ "parsed.Please delete the file and try again." #~ msgstr "" -#~ "OrcaSlicer yapılandırma dosyası bozulmuş olabilir ve ayrıştırılması " -#~ "mümkün olmayabilir. Lütfen dosyayı silin ve tekrar deneyin." +#~ "OrcaSlicer yapılandırma dosyası bozulmuş olabilir ve ayrıştırılması mümkün " +#~ "olmayabilir. Lütfen dosyayı silin ve tekrar deneyin." #~ msgid "Online Models" #~ msgstr "Çevrimiçi Modeller" @@ -17367,8 +17363,8 @@ msgstr "" #~ msgid "" #~ "There are currently no identical spare consumables available, and " #~ "automatic replenishment is currently not possible. \n" -#~ "(Currently supporting automatic supply of consumables with the same " -#~ "brand, material type, and color)" +#~ "(Currently supporting automatic supply of consumables with the same brand, " +#~ "material type, and color)" #~ msgstr "" #~ "Şu anda aynı yedek sarf malzemesi mevcut değildir ve otomatik yenileme şu " #~ "anda mümkün değildir.\n" @@ -17400,8 +17396,7 @@ msgstr "" #~ "daha sıcak olamaz" #~ msgid "Enable this option if machine has auxiliary part cooling fan" -#~ msgstr "" -#~ "Makinede yardımcı parça soğutma fanı varsa bu seçeneği etkinleştirin" +#~ msgstr "Makinede yardımcı parça soğutma fanı varsa bu seçeneği etkinleştirin" #~ msgid "" #~ "This option is enabled if machine support controlling chamber temperature" @@ -17429,8 +17424,7 @@ msgstr "" #~ "katmanları etkilemez" #~ msgid "Empty layers around bottom are replaced by nearest normal layers." -#~ msgstr "" -#~ "Alt kısımdaki boş katmanların yerini en yakın normal katmanlar alır." +#~ msgstr "Alt kısımdaki boş katmanların yerini en yakın normal katmanlar alır." #~ msgid "The model has too many empty layers." #~ msgstr "Modelde çok fazla boş katman var." @@ -17448,9 +17442,8 @@ msgstr "" #~ "Bed temperature when high temperature plate is installed. Value 0 means " #~ "the filament does not support to print on the High Temp Plate" #~ msgstr "" -#~ "Yüksek sıcaklık plakası takıldığında yatak sıcaklığı. 0 değeri, " -#~ "filamentin Yüksek Sıcaklık Plakasına yazdırmayı desteklemediği anlamına " -#~ "gelir" +#~ "Yüksek sıcaklık plakası takıldığında yatak sıcaklığı. 0 değeri, filamentin " +#~ "Yüksek Sıcaklık Plakasına yazdırmayı desteklemediği anlamına gelir" #~ msgid "" #~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" @@ -17470,8 +17463,7 @@ msgstr "" #~ msgstr "" #~ "Desteğin stili ve şekli. Normal destek için, desteklerin düzenli bir " #~ "ızgaraya yansıtılması daha sağlam destekler oluşturur (varsayılan), rahat " -#~ "destek kuleleri ise malzemeden tasarruf sağlar ve nesne izlerini " -#~ "azaltır.\n" +#~ "destek kuleleri ise malzemeden tasarruf sağlar ve nesne izlerini azaltır.\n" #~ "Ağaç desteği için, ince stil, dalları daha agresif bir şekilde " #~ "birleştirecek ve çok fazla malzeme tasarrufu sağlayacak (varsayılan), " #~ "hibrit stil ise büyük düz çıkıntılar altında normal desteğe benzer yapı " From aca3b3c56f34b6171b8fcca7de1d2fa27ea392dc Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 25 May 2024 15:25:16 +0200 Subject: [PATCH 39/66] Fixed default profiles for Ender 3 V3 (#5452) --- .../Creality/machine/Creality Ender-3 V3 0.4 nozzle.json | 2 +- .../Creality/machine/Creality Ender-3 V3 0.6 nozzle.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json index 4006df1fbc..4eac0521a5 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json @@ -8,7 +8,7 @@ "printer_model": "Creality Ender-3 V3", "gcode_flavor": "klipper", "printer_structure": "i3", - "default_print_profile": "0.20mm Standard @Creality Ender3V3", + "default_print_profile": "0.20mm Standard @Creality Ender3 V3", "nozzle_diameter": [ "0.4" ], diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json index bb5f46780e..7f4795ee2a 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json @@ -8,7 +8,7 @@ "printer_model": "Creality Ender-3 V3", "gcode_flavor": "klipper", "printer_structure": "i3", - "default_print_profile": "0.30mm Standard @Creality Ender3V3", + "default_print_profile": "0.30mm Standard @Creality Ender3 V3", "nozzle_diameter": [ "0.6" ], From bfc9008a3995fe2e70049247483951804680e10e Mon Sep 17 00:00:00 2001 From: Heiko Liebscher Date: Sat, 25 May 2024 15:25:40 +0200 Subject: [PATCH 40/66] add new german translations (#5453) --- localization/i18n/de/OrcaSlicer_de.po | 38 ++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 7 deletions(-) diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 26d59d44ab..947ad5f689 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -3500,7 +3500,7 @@ msgid "Timelapse" msgstr "Zeitraffer" msgid "Flow Dynamic Calibration" -msgstr "" +msgstr "Dynamische Flusskalibrierung" msgid "Send Options" msgstr "Senden-Optionen" @@ -4748,10 +4748,10 @@ msgid "Load a model" msgstr "Lade ein Modell" msgid "Import Zip Archive" -msgstr "" +msgstr "Zip-Archiv importieren" msgid "Load models contained within a zip archive" -msgstr "" +msgstr "Modelle aus einem Zip-Archiv laden" msgid "Import Configs" msgstr "Konfigurationen importieren" @@ -6843,18 +6843,20 @@ msgstr "" "Dateien festgelegt" msgid "Current association: " -msgstr "" +msgstr "Aktuelle Zuordnung:" msgid "Associate prusaslicer://" -msgstr "" +msgstr "prusaslicer:// verknüpfen" msgid "Not associated to any application" -msgstr "" +msgstr "Nicht mit einer Anwendung verknüpft" msgid "" "Associate OrcaSlicer with prusaslicer:// links so that Orca can open " "PrusaSlicer links from Printable.com" msgstr "" +"Verknüpfen Sie OrcaSlicer mit prusaslicer://-Links, damit Orca PrusaSlicer-" +"Links von Printable.com öffnen kann." msgid "Maximum recent projects" msgstr "Höchstanzahl an letzten Projekten" @@ -13715,7 +13717,7 @@ msgid "Spacing of purge lines on the wipe tower." msgstr "Abstand der Reinigungsturmpurges." msgid "Maximum wipe tower print speed" -msgstr "" +msgstr "Maximale Druckgeschwindigkeit des Reinigungsturms" msgid "" "The maximum print speed when purging in the wipe tower and printing the wipe " @@ -13738,6 +13740,28 @@ msgid "" "For the wipe tower external perimeters the internal perimeter speed is used " "regardless of this setting." msgstr "" +"Die maximale Druckgeschwindigkeit beim Reinigen im Reinigungsturm und beim " +"Drucken der dünnen Schichten des Reinigungsturms. Beim Reinigen wird, wenn " +"die Geschwindigkeit des dünnen Infill oder die berechnete Geschwindigkeit aus " +"der maximalen Volumengeschwindigkeit des Filaments niedriger ist, die " +"niedrigste verwendet.\n" +"\n" +"Beim Drucken der dünnen Schichten wird, wenn die Geschwindigkeit des " +"inneren Umfangs oder die berechnete Geschwindigkeit aus der maximalen " +"Volumengeschwindigkeit des Filaments niedriger ist, die niedrigste verwendet.\n" +"\n" +"Das Erhöhen dieser Geschwindigkeit kann die Stabilität des Turms beeinträchtigen " +"sowie die Kraft erhöhen, mit der die Düse auf mögliche Klumpen trifft, die " +"sich auf dem Reinigungsturm gebildet haben.\n" +"\n" +"Bevor Sie diesen Parameter über den Standardwert von 90 mm/s erhöhen, " +"stellen Sie sicher, dass Ihr Drucker" +"zuverlässig bei den erhöhten Geschwindigkeiten Brücken drucken kann und dass das " +"Auslaufen beim Werkzeugwechsel gut kontrolliert wird.\n" +"\n" +"Für die äußeren Umfänge des Reinigungsturms wird die Geschwindigkeit des " +"inneren Umfangs unabhängig von dieser Einstellung verwendet." + msgid "Wipe tower extruder" msgstr "Reinigungsturm-Extruder" From 8dc946dc7aaba4609a0937b29b65e02afb1279da Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 25 May 2024 15:26:06 +0200 Subject: [PATCH 41/66] Flsun Super Racer (SR) Profile (#5454) * Added Flsun SR * Optimized images * Enabled only one wall on top surfaces --- resources/profiles/FLSun.json | 58 +++-- .../FLSun/FLSun Super Racer (SR)_cover.png | Bin 0 -> 19606 bytes resources/profiles/FLSun/FLSun V400_cover.png | Bin 14523 -> 14365 bytes .../FLSun/filament/FLSun Generic ABS.json | 1 + .../FLSun/filament/FLSun Generic ASA.json | 9 +- .../FLSun/filament/FLSun Generic PA-CF.json | 1 + .../FLSun/filament/FLSun Generic PA.json | 1 + .../FLSun/filament/FLSun Generic PC.json | 1 + .../FLSun/filament/FLSun Generic PETG.json | 9 +- .../FLSun/filament/FLSun Generic PLA-CF.json | 7 +- .../FLSun/filament/FLSun Generic PLA.json | 9 +- .../FLSun/filament/FLSun Generic PVA.json | 9 +- .../FLSun/filament/FLSun Generic TPU.json | 9 +- .../FLSun/flsun_SR_buildplate_model.stl | Bin 0 -> 1001084 bytes .../FLSun/flsun_SR_buildplate_texture.svg | 54 ++++ .../FLSun/machine/FLSun SR 0.4 nozzle.json | 238 ++++++++++++++++++ .../profiles/FLSun/machine/FLSun SR.json | 12 + .../FLSun/process/0.08mm Fine @FLSun SR.json | 109 ++++++++ .../process/0.16mm Optimal @FLSun SR.json | 109 ++++++++ .../process/0.20mm Standard @FLSun SR.json | 109 ++++++++ .../FLSun/process/0.24mm Draft @FLSun SR.json | 109 ++++++++ .../process/0.30mm Extra Draft @FLSun SR.json | 109 ++++++++ 22 files changed, 925 insertions(+), 38 deletions(-) create mode 100644 resources/profiles/FLSun/FLSun Super Racer (SR)_cover.png create mode 100644 resources/profiles/FLSun/flsun_SR_buildplate_model.stl create mode 100644 resources/profiles/FLSun/flsun_SR_buildplate_texture.svg create mode 100644 resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json create mode 100644 resources/profiles/FLSun/machine/FLSun SR.json create mode 100644 resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json create mode 100644 resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json create mode 100644 resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json create mode 100644 resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json create mode 100644 resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json diff --git a/resources/profiles/FLSun.json b/resources/profiles/FLSun.json index b177ba6962..8abcdd15ec 100644 --- a/resources/profiles/FLSun.json +++ b/resources/profiles/FLSun.json @@ -4,14 +4,18 @@ "force_update": "0", "description": "FLSun configurations", "machine_model_list": [ - { + { "name": "FLSun Q5", "sub_path": "machine/FLSun Q5.json" }, - { + { "name": "FLSun QQ-S Pro", "sub_path": "machine/FLSun QQ-S Pro.json" }, + { + "name": "FLSun Super Racer (SR)", + "sub_path": "machine/FLSun SR.json" + }, { "name": "FLSun V400", "sub_path": "machine/FLSun V400.json" @@ -22,49 +26,69 @@ "name": "fdm_process_common", "sub_path": "process/fdm_process_common.json" }, - { + { "name": "0.08mm Fine @FLSun Q5", "sub_path": "process/0.08mm Fine @FLSun Q5.json" }, - { + { "name": "0.08mm Fine @FLSun QQSPro", "sub_path": "process/0.08mm Fine @FLSun QQSPro.json" }, - { + { + "name": "0.08mm Fine @FLSun SR", + "sub_path": "process/0.08mm Fine @FLSun SR.json" + }, + { "name": "0.16mm Optimal @FLSun Q5", "sub_path": "process/0.16mm Optimal @FLSun Q5.json" }, - { + { "name": "0.16mm Optimal @FLSun QQSPro", "sub_path": "process/0.16mm Optimal @FLSun QQSPro.json" }, - { + { + "name": "0.16mm Optimal @FLSun SR", + "sub_path": "process/0.16mm Optimal @FLSun SR.json" + }, + { "name": "0.20mm Standard @FLSun Q5", "sub_path": "process/0.20mm Standard @FLSun Q5.json" }, - { + { "name": "0.20mm Standard @FLSun QQSPro", "sub_path": "process/0.20mm Standard @FLSun QQSPro.json" }, + { + "name": "0.20mm Standard @FLSun SR", + "sub_path": "process/0.20mm Standard @FLSun SR.json" + }, { "name": "0.20mm Standard @FLSun V400", "sub_path": "process/0.20mm Standard @FLSun V400.json" }, - { + { "name": "0.24mm Draft @FLSun Q5", "sub_path": "process/0.24mm Draft @FLSun Q5.json" }, - { + { "name": "0.24mm Draft @FLSun QQSPro", "sub_path": "process/0.24mm Draft @FLSun QQSPro.json" }, - { + { + "name": "0.24mm Draft @FLSun SR", + "sub_path": "process/0.24mm Draft @FLSun SR.json" + }, + { "name": "0.30mm Extra Draft @FLSun Q5", "sub_path": "process/0.30mm Extra Draft @FLSun Q5.json" }, - { + { "name": "0.30mm Extra Draft @FLSun QQSPro", "sub_path": "process/0.30mm Extra Draft @FLSun QQSPro.json" + }, + { + "name": "0.30mm Extra Draft @FLSun SR", + "sub_path": "process/0.30mm Extra Draft @FLSun SR.json" } ], "filament_list": [ @@ -150,17 +174,21 @@ "name": "fdm_machine_common", "sub_path": "machine/fdm_machine_common.json" }, - { + { "name": "FLSun Q5 0.4 nozzle", "sub_path": "machine/FLSun Q5 0.4 nozzle.json" }, - { + { "name": "FLSun QQ-S Pro 0.4 nozzle", "sub_path": "machine/FLSun QQ-S Pro 0.4 nozzle.json" }, + { + "name": "FLSun Super Racer 0.4 nozzle", + "sub_path": "machine/FLSun SR 0.4 nozzle.json" + }, { "name": "FLSun V400 0.4 nozzle", "sub_path": "machine/FLSun V400 0.4 nozzle.json" } ] -} +} \ No newline at end of file diff --git a/resources/profiles/FLSun/FLSun Super Racer (SR)_cover.png b/resources/profiles/FLSun/FLSun Super Racer (SR)_cover.png new file mode 100644 index 0000000000000000000000000000000000000000..090ce3f4c04576d6a623cba06eb141f167d2d412 GIT binary patch literal 19606 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 R93QB`sRgX{42YH^4{7)c3EMs8CZm-8EiWVfh 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 XM3e-#01=y^00000NkvXXu0mjf#zJ`q literal 14523 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 Z_&?|xKJmvldU*f<002ovPDHLkV1hS8m2v<8 diff --git a/resources/profiles/FLSun/filament/FLSun Generic ABS.json b/resources/profiles/FLSun/filament/FLSun Generic ABS.json index 8902996c8f..dbaba98b86 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic ABS.json +++ b/resources/profiles/FLSun/filament/FLSun Generic ABS.json @@ -15,6 +15,7 @@ "compatible_printers": [ "FLSun Q5 0.4 nozzle", "FLSun QQ-S Pro 0.4 nozzle", + "FLSun Super Racer 0.4 nozzle", "FLSun V400 0.4 nozzle" ] } diff --git a/resources/profiles/FLSun/filament/FLSun Generic ASA.json b/resources/profiles/FLSun/filament/FLSun Generic ASA.json index c590edf947..716a279943 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic ASA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic ASA.json @@ -13,8 +13,9 @@ "12" ], "compatible_printers": [ - "FLSun Q5 0.4 nozzle", - "FLSun QQ-S Pro 0.4 nozzle", - "FLSun V400 0.4 nozzle" + "FLSun Q5 0.4 nozzle", + "FLSun QQ-S Pro 0.4 nozzle", + "FLSun Super Racer 0.4 nozzle", + "FLSun V400 0.4 nozzle" ] -} +} \ No newline at end of file diff --git a/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json b/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json index 954b5613b6..de4cdb119a 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json @@ -21,6 +21,7 @@ "compatible_printers": [ "FLSun Q5 0.4 nozzle", "FLSun QQ-S Pro 0.4 nozzle", + "FLSun Super Racer 0.4 nozzle", "FLSun V400 0.4 nozzle" ] } \ No newline at end of file diff --git a/resources/profiles/FLSun/filament/FLSun Generic PA.json b/resources/profiles/FLSun/filament/FLSun Generic PA.json index daf4847d70..06da861a23 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PA.json @@ -18,6 +18,7 @@ "compatible_printers": [ "FLSun Q5 0.4 nozzle", "FLSun QQ-S Pro 0.4 nozzle", + "FLSun Super Racer 0.4 nozzle", "FLSun V400 0.4 nozzle" ] } \ No newline at end of file diff --git a/resources/profiles/FLSun/filament/FLSun Generic PC.json b/resources/profiles/FLSun/filament/FLSun Generic PC.json index 858545b5c6..42c95926ef 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PC.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PC.json @@ -15,6 +15,7 @@ "compatible_printers": [ "FLSun Q5 0.4 nozzle", "FLSun QQ-S Pro 0.4 nozzle", + "FLSun Super Racer 0.4 nozzle", "FLSun V400 0.4 nozzle" ] } \ No newline at end of file diff --git a/resources/profiles/FLSun/filament/FLSun Generic PETG.json b/resources/profiles/FLSun/filament/FLSun Generic PETG.json index 9b5bd640d3..9f65ef5be2 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PETG.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PETG.json @@ -43,8 +43,9 @@ "; filament start gcode\n" ], "compatible_printers": [ - "FLSun Q5 0.4 nozzle", - "FLSun QQ-S Pro 0.4 nozzle", - "FLSun V400 0.4 nozzle" + "FLSun Q5 0.4 nozzle", + "FLSun QQ-S Pro 0.4 nozzle", + "FLSun Super Racer 0.4 nozzle", + "FLSun V400 0.4 nozzle" ] -} +} \ No newline at end of file diff --git a/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json b/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json index a41b370ca4..5cd0835ce0 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json @@ -19,8 +19,9 @@ "7" ], "compatible_printers": [ - "FLSun Q5 0.4 nozzle", - "FLSun QQ-S Pro 0.4 nozzle", - "FLSun V400 0.4 nozzle" + "FLSun Q5 0.4 nozzle", + "FLSun QQ-S Pro 0.4 nozzle", + "FLSun Super Racer 0.4 nozzle", + "FLSun V400 0.4 nozzle" ] } \ No newline at end of file diff --git a/resources/profiles/FLSun/filament/FLSun Generic PLA.json b/resources/profiles/FLSun/filament/FLSun Generic PLA.json index 981135e346..0945715758 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PLA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PLA.json @@ -16,8 +16,9 @@ "8" ], "compatible_printers": [ - "FLSun Q5 0.4 nozzle", - "FLSun QQ-S Pro 0.4 nozzle", - "FLSun V400 0.4 nozzle" + "FLSun Q5 0.4 nozzle", + "FLSun QQ-S Pro 0.4 nozzle", + "FLSun Super Racer 0.4 nozzle", + "FLSun V400 0.4 nozzle" ] -} +} \ No newline at end of file diff --git a/resources/profiles/FLSun/filament/FLSun Generic PVA.json b/resources/profiles/FLSun/filament/FLSun Generic PVA.json index cd6fcb4fd4..8ad4ecdb61 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PVA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PVA.json @@ -19,8 +19,9 @@ "10" ], "compatible_printers": [ - "FLSun Q5 0.4 nozzle", - "FLSun QQ-S Pro 0.4 nozzle", - "FLSun V400 0.4 nozzle" + "FLSun Q5 0.4 nozzle", + "FLSun QQ-S Pro 0.4 nozzle", + "FLSun Super Racer 0.4 nozzle", + "FLSun V400 0.4 nozzle" ] -} +} \ No newline at end of file diff --git a/resources/profiles/FLSun/filament/FLSun Generic TPU.json b/resources/profiles/FLSun/filament/FLSun Generic TPU.json index b57fd3a117..357cd8d45a 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic TPU.json +++ b/resources/profiles/FLSun/filament/FLSun Generic TPU.json @@ -10,8 +10,9 @@ "3.2" ], "compatible_printers": [ - "FLSun Q5 0.4 nozzle", - "FLSun QQ-S Pro 0.4 nozzle", - "FLSun V400 0.4 nozzle" + "FLSun Q5 0.4 nozzle", + "FLSun QQ-S Pro 0.4 nozzle", + "FLSun Super Racer 0.4 nozzle", + "FLSun V400 0.4 nozzle" ] -} +} \ No newline at end of file diff --git a/resources/profiles/FLSun/flsun_SR_buildplate_model.stl b/resources/profiles/FLSun/flsun_SR_buildplate_model.stl new file mode 100644 index 0000000000000000000000000000000000000000..55650a8ee9dddf41f937f23fb61b8b8457b83a59 GIT binary patch literal 1001084 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
  • VJZICOQ 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 bEeQ3`&Jf||Kq*9HnW8oXw_lV8{p$Y#r`_B1 literal 0 HcmV?d00001 diff --git a/resources/profiles/FLSun/flsun_SR_buildplate_texture.svg b/resources/profiles/FLSun/flsun_SR_buildplate_texture.svg new file mode 100644 index 0000000000..846833b686 --- /dev/null +++ b/resources/profiles/FLSun/flsun_SR_buildplate_texture.svg @@ -0,0 +1,54 @@ + + + + + + + image/svg+xml + + + + + + + diff --git a/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json new file mode 100644 index 0000000000..d1d1788cc5 --- /dev/null +++ b/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json @@ -0,0 +1,238 @@ +{ + "type": "machine", + "setting_id": "GM003", + "name": "FLSun Super Racer 0.4 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_machine_common", + "printer_model": "FLSun Super Racer (SR)", + "default_print_profile": "0.20mm Standard @FLSun SR", + "gcode_flavor": "marlin", + "nozzle_diameter": [ + "0.4" + ], + "nozzle_type": "brass", + "default_filament_profile": [ + "FLSin Generic PLA" + ], + "bed_exclude_area": [ + "0x0" + ], + "auxiliary_fan": "0", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]", + "change_filament_gcode": ";FILAMENT_CHANGE\nM600", + "deretraction_speed": [ + "40" + ], + "extruder_clearance_height_to_lid": "140", + "extruder_clearance_height_to_rod": "36", + "extruder_clearance_radius": "65", + "machine_end_gcode": "; printing object ENDGCODE\nG92 E0.0 ; prepare to retract\nG1 E-6 F3000; retract to avoid stringing\n; Anti-stringing end wiggle\n{if layer_z < max_print_height}G1 Z{min(layer_z+100, max_print_height)}{endif} F4000 ; Move print head up\nG1 X0 Y120 F3000 ; present print\n; Reset print setting overrides\nG92 E0\nM200 D0 ; disable volumetric e\nM220 S100 ; reset speed factor to 100%\nM221 S100 ; reset extruder factor to 100%\n;M900 K0 ; reset linear acceleration(Marlin)\n; Shut down printer\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nM18 S180 ;disable motors after 180s\nM300 S40 P10 ; Bip\nM117 Print finish.", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "5000", + "2000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "3000", + "3000" + ], + "machine_max_acceleration_x": [ + "5000", + "2000" + ], + "machine_max_acceleration_y": [ + "5000", + "2000" + ], + "machine_max_acceleration_z": [ + "1500", + "200" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "0.4" + ], + "machine_max_speed_e": [ + "30", + "25" + ], + "machine_max_speed_x": [ + "300", + "200" + ], + "machine_max_speed_y": [ + "300", + "200" + ], + "machine_max_speed_z": [ + "20", + "12" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M600", + "machine_start_gcode": ";STARTGCODE\nM117 Initializing\n; Set coordinate modes\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\n; Reset speed and extrusion rates\nM200 D0 ; disable volumetric E\nM220 S100 ; reset speed\n; Set initial warmup temps\nM117 Nozzle preheat\nM104 S100 ; preheat extruder to no ooze temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed final temp\nM300 S40 P10 ; Bip\n; Home\nM117 Homing\nG28 ; home all with default mesh bed level\n; For ABL users put G29 for a leveling request\n; Final warmup routine\nM117 Final warmup\nM104 S[first_layer_temperature] ; set extruder final temp\nM109 S[first_layer_temperature] ; wait for extruder final temp\nM190 S[first_layer_bed_temperature] ; wait for bed final temp\nM300 S440 P200 ; 1st beep for printer ready and allow some time to clean nozzle\nM300 S0 P250 ; wait between dual beep\nM300 S440 P200 ; 2nd beep for printer ready\nG4 S10 ; wait to clean the nozzle\nM300 S440 P200 ; 3rd beep for ready to start printing\n; Prime line routine\nM117 Printing prime line\n;M900 K0; Disable Linear Advance (Marlin) for prime line\nG92 E0.0; reset extrusion distance\nG1 F3000 Z1\nG1 X-150 Y0 Z0.4\nG92 E0\nG3 X0 Y-130 I150 Z0.3 E30 F2000\nG92 E0.0 ; reset extrusion distance\n; Final print adjustments\nM117 Preparing to print\n;M82 ; extruder absolute mode\nM221 S{if layer_height<0.075}100{else}95{endif}\nM300 S40 P10 ; chirp\nM117 Print [input_filename_base]; Display: Printing started...", + "machine_unload_filament_time": "0", + "max_layer_height": [ + "0.2" + ], + "min_layer_height": [ + "0.08" + ], + "printable_area": [ + "134.486x11.766", + "132.949x23.4425", + "130.4x34.9406", + "126.859x46.1727", + "122.352x57.0535", + "116.913x67.5", + "110.586x77.4328", + "103.416x86.7763", + "95.4594x95.4594", + "86.7763x103.416", + "77.4328x110.586", + "67.5x116.913", + "57.0535x122.352", + "46.1727x126.859", + "34.9406x130.4", + "23.4425x132.949", + "11.766x134.486", + "8.26637e-15x135", + "-11.766x134.486", + "-23.4425x132.949", + "-34.9406x130.4", + "-46.1727x126.859", + "-57.0535x122.352", + "-67.5x116.913", + "-77.4328x110.586", + "-86.7763x103.416", + "-95.4594x95.4594", + "-103.416x86.7763", + "-110.586x77.4328", + "-116.913x67.5", + "-122.352x57.0535", + "-126.859x46.1727", + "-130.4x34.9406", + "-132.949x23.4425", + "-134.486x11.766", + "-135x1.65327e-14", + "-134.486x-11.766", + "-132.949x-23.4425", + "-130.4x-34.9406", + "-126.859x-46.1727", + "-122.352x-57.0535", + "-116.913x-67.5", + "-110.586x-77.4328", + "-103.416x-86.7763", + "-95.4594x-95.4594", + "-86.7763x-103.416", + "-77.4328x-110.586", + "-67.5x-116.913", + "-57.0535x-122.352", + "-46.1727x-126.859", + "-34.9406x-130.4", + "-23.4425x-132.949", + "-11.766x-134.486", + "-2.47991e-14x-135", + "11.766x-134.486", + "23.4425x-132.949", + "34.9406x-130.4", + "46.1727x-126.859", + "57.0535x-122.352", + "67.5x-116.913", + "77.4328x-110.586", + "86.7763x-103.416", + "95.4594x-95.4594", + "103.416x-86.7763", + "110.586x-77.4328", + "116.913x-67.5", + "122.352x-57.0535", + "126.859x-46.1727", + "130.4x-34.9406", + "132.949x-23.4425", + "134.486x-11.766", + "135x-3.30655e-14" + ], + "printable_height": "330", + "printer_technology": "FFF", + "printer_variant": "0.4", + "printhost_apikey": "", + "printhost_authorization_type": "key", + "printhost_cafile": "", + "printhost_password": "", + "printhost_port": "", + "printhost_ssl_ignore_revoke": "0", + "printhost_user": "", + "retract_before_wipe": [ + "70%" + ], + "retract_length_toolchange": [ + "2" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_length": [ + "6.5" + ], + "retraction_minimum_travel": [ + "1" + ], + "retraction_speed": [ + "40" + ], + "template_custom_gcode": ";FILAMENT_CHANGE\nM600", + "thumbnails": [ + "260x260" + ], + "wipe": [ + "1" + ], + "wipe_distance": [ + "1" + ], + "z_hop": [ + "0.5" + ], + "z_hop_types": [ + "Normal Lift" + ] +} \ No newline at end of file diff --git a/resources/profiles/FLSun/machine/FLSun SR.json b/resources/profiles/FLSun/machine/FLSun SR.json new file mode 100644 index 0000000000..6e85731d28 --- /dev/null +++ b/resources/profiles/FLSun/machine/FLSun SR.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "FLSun Super Racer (SR)", + "model_id": "FLSun_Super_Racer", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "FLSun", + "bed_model": "flsun_SR_buildplate_model.stl", + "bed_texture": "flsun_SR_buildplate_texture.svg", + "hotend_model": "", + "default_materials": "FLSun Generic ABS;FLSun Generic PLA;FLSun Generic PLA-CF;FLSun Generic PETG;FLSun Generic TPU;FLSun Generic ASA;FLSun Generic PC;FLSun Generic PVA;FLSun Generic PA;FLSun Generic PA-CF" +} \ No newline at end of file diff --git a/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json b/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json new file mode 100644 index 0000000000..ff703cb0aa --- /dev/null +++ b/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json @@ -0,0 +1,109 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.08mm Fine @FLSun SR", + "from": "system", + "inherits": "fdm_process_common", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.08", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "10", + "bottom_shell_thickness": "0.5", + "bridge_flow": "0.7", + "bridge_speed": "30", + "brim_width": "0", + "brim_object_gap": "0", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "1500", + "top_surface_acceleration": "0", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.2", + "enable_arc_fitting": "0", + "outer_wall_line_width": "0.45", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.45", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "0", + "inner_wall_acceleration": "800", + "initial_layer_line_width": "0.45", + "initial_layer_print_height": "0.2", + "infill_combination": "0", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "15", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "20", + "overhang_3_4_speed": "15", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.45", + "wall_loops": "3", + "only_one_wall_top": "1", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "5", + "skirt_height": "1", + "skirt_loops": "2", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.06", + "support_filament": "0", + "support_line_width": "0.38", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "1.5", + "support_interface_speed": "100%", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "0.06", + "support_speed": "60", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "45", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonicline", + "top_surface_line_width": "0.38", + "top_shell_layers": "12", + "top_shell_thickness": "0.8", + "initial_layer_speed": "35%", + "initial_layer_infill_speed": "35%", + "outer_wall_speed": "40", + "inner_wall_speed": "40", + "internal_solid_infill_speed": "40", + "top_surface_speed": "30", + "gap_infill_speed": "30", + "sparse_infill_speed": "60", + "travel_speed": "150", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "compatible_printers": [ + "FLSun Super Racer 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json new file mode 100644 index 0000000000..3f8183e966 --- /dev/null +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json @@ -0,0 +1,109 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.16mm Optimal @FLSun SR", + "from": "system", + "inherits": "fdm_process_common", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.16", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "5", + "bottom_shell_thickness": "0.5", + "bridge_flow": "0.9", + "bridge_speed": "30", + "brim_width": "0", + "brim_object_gap": "0", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "1500", + "top_surface_acceleration": "0", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.2", + "enable_arc_fitting": "0", + "outer_wall_line_width": "0.45", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.45", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "0", + "inner_wall_acceleration": "800", + "initial_layer_line_width": "0.45", + "initial_layer_print_height": "0.2", + "infill_combination": "0", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "15", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "20", + "overhang_3_4_speed": "15", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.45", + "wall_loops": "3", + "only_one_wall_top": "1", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "5", + "skirt_height": "1", + "skirt_loops": "2", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.16", + "support_filament": "0", + "support_line_width": "0.38", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "0.16", + "support_speed": "60", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "45", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonicline", + "top_surface_line_width": "0.38", + "top_shell_layers": "6", + "top_shell_thickness": "0.8", + "initial_layer_speed": "35%", + "initial_layer_infill_speed": "35%", + "outer_wall_speed": "40", + "inner_wall_speed": "40", + "internal_solid_infill_speed": "40", + "top_surface_speed": "30", + "gap_infill_speed": "30", + "sparse_infill_speed": "60", + "travel_speed": "150", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "compatible_printers": [ + "FLSun Super Racer 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json new file mode 100644 index 0000000000..354fbd39b8 --- /dev/null +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json @@ -0,0 +1,109 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.20mm Standard @FLSun SR", + "from": "system", + "inherits": "fdm_process_common", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.2", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0.5", + "bridge_flow": "0.95", + "bridge_speed": "30", + "brim_width": "0", + "brim_object_gap": "0", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "1500", + "top_surface_acceleration": "0", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.2", + "enable_arc_fitting": "0", + "outer_wall_line_width": "0.45", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.45", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "0", + "inner_wall_acceleration": "800", + "initial_layer_line_width": "0.45", + "initial_layer_print_height": "0.2", + "infill_combination": "0", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "15", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "20", + "overhang_3_4_speed": "15", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.45", + "wall_loops": "3", + "only_one_wall_top": "1", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "5", + "skirt_height": "1", + "skirt_loops": "2", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.2", + "support_filament": "0", + "support_line_width": "0.38", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "0.2", + "support_speed": "60", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "45", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonicline", + "top_surface_line_width": "0.38", + "top_shell_layers": "5", + "top_shell_thickness": "0.8", + "initial_layer_speed": "35%", + "initial_layer_infill_speed": "35%", + "outer_wall_speed": "40", + "inner_wall_speed": "40", + "internal_solid_infill_speed": "40", + "top_surface_speed": "30", + "gap_infill_speed": "30", + "sparse_infill_speed": "60", + "travel_speed": "150", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "compatible_printers": [ + "FLSun Super Racer 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json new file mode 100644 index 0000000000..ac55c64ecf --- /dev/null +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json @@ -0,0 +1,109 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Draft @FLSun SR", + "from": "system", + "inherits": "fdm_process_common", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.24", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "4", + "bottom_shell_thickness": "0.5", + "bridge_flow": "0.95", + "bridge_speed": "30", + "brim_width": "0", + "brim_object_gap": "0", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "1500", + "top_surface_acceleration": "0", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.2", + "enable_arc_fitting": "0", + "outer_wall_line_width": "0.45", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.45", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "0", + "inner_wall_acceleration": "800", + "initial_layer_line_width": "0.45", + "initial_layer_print_height": "0.2", + "infill_combination": "0", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "15", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "20", + "overhang_3_4_speed": "15", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.45", + "wall_loops": "3", + "only_one_wall_top": "1", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "5", + "skirt_height": "1", + "skirt_loops": "2", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.18", + "support_filament": "0", + "support_line_width": "0.38", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "0.18", + "support_speed": "60", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "45", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonicline", + "top_surface_line_width": "0.38", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "35%", + "initial_layer_infill_speed": "35%", + "outer_wall_speed": "40", + "inner_wall_speed": "40", + "internal_solid_infill_speed": "40", + "top_surface_speed": "30", + "gap_infill_speed": "30", + "sparse_infill_speed": "60", + "travel_speed": "150", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "compatible_printers": [ + "FLSun Super Racer 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json new file mode 100644 index 0000000000..bac94a97e1 --- /dev/null +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json @@ -0,0 +1,109 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.30mm Extra Draft @FLSun SR", + "from": "system", + "inherits": "fdm_process_common", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "0", + "layer_height": "0.3", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "3", + "bottom_shell_thickness": "0.6", + "bridge_flow": "0.95", + "bridge_speed": "30", + "brim_width": "0", + "brim_object_gap": "0", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "1500", + "top_surface_acceleration": "0", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.2", + "enable_arc_fitting": "0", + "outer_wall_line_width": "0.5", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.5", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_acceleration": "1000", + "travel_acceleration": "0", + "inner_wall_acceleration": "800", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "0", + "sparse_infill_line_width": "0.5", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.1", + "ironing_speed": "15", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "20", + "overhang_3_4_speed": "15", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.45", + "wall_loops": "3", + "only_one_wall_top": "1", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "5", + "skirt_height": "1", + "skirt_loops": "2", + "minimum_sparse_infill_area": "10", + "internal_solid_infill_line_width": "0", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "grid", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.22", + "support_filament": "0", + "support_line_width": "0.38", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.5", + "support_interface_speed": "100%", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "0.22", + "support_speed": "60", + "support_threshold_angle": "45", + "support_object_xy_distance": "60%", + "tree_support_branch_angle": "45", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonicline", + "top_surface_line_width": "0.45", + "top_shell_layers": "4", + "top_shell_thickness": "0.8", + "initial_layer_speed": "35%", + "initial_layer_infill_speed": "35%", + "outer_wall_speed": "40", + "inner_wall_speed": "40", + "internal_solid_infill_speed": "40", + "top_surface_speed": "30", + "gap_infill_speed": "30", + "sparse_infill_speed": "60", + "travel_speed": "150", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "compatible_printers": [ + "FLSun Super Racer 0.4 nozzle" + ] +} \ No newline at end of file From 12122f3a5cd3b6e62f53ee4da089ff6b3b4e4e2c Mon Sep 17 00:00:00 2001 From: SoftFever Date: Sat, 25 May 2024 23:52:05 +0800 Subject: [PATCH 42/66] Bump version to 2.1.0-alpha --- version.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.inc b/version.inc index 8a893e36db..c98402902f 100644 --- a/version.inc +++ b/version.inc @@ -10,7 +10,7 @@ endif() if(NOT DEFINED BBL_INTERNAL_TESTING) set(BBL_INTERNAL_TESTING "0") endif() -set(SoftFever_VERSION "2.1.0-dev") +set(SoftFever_VERSION "2.1.0-alpha") string(REGEX MATCH "^([0-9]+)\\.([0-9]+)\\.([0-9]+)" SoftFever_VERSION_MATCH ${SoftFever_VERSION}) set(ORCA_VERSION_MAJOR ${CMAKE_MATCH_1}) From 6e529e285fe38901f62c38e21edf3a06091b3203 Mon Sep 17 00:00:00 2001 From: Gabriel E Dvoranen <62312359+DvoraGames@users.noreply.github.com> Date: Sun, 26 May 2024 00:29:15 -0300 Subject: [PATCH 43/66] Update OrcaSlicer_pt_BR.po (#5460) Added more translations Updated some translations --- localization/i18n/pt_BR/OrcaSlicer_pt_BR.po | 7833 +++++-------------- 1 file changed, 2069 insertions(+), 5764 deletions(-) diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index 4002c20b36..452d738084 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -1,23 +1,21 @@ -# msgid "" msgstr "" "Project-Id-Version: OrcaSlicer\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-24 23:26+0800\n" -"PO-Revision-Date: 2024-04-16 11:17-0300\n" +"PO-Revision-Date: 2024-05-25 18:54\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\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-Crowdin-File: OrcaSlicer.pot\n" -"X-Crowdin-File-ID: 10\n" -"X-Crowdin-Language: pt-BR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Crowdin-Project: orcaslicer-pt-br\n" "X-Crowdin-Project-ID: 664934\n" -"X-Generator: Poedit 3.4.2\n" +"X-Crowdin-Language: pt-BR\n" +"X-Crowdin-File: OrcaSlicer.pot\n" +"X-Crowdin-File-ID: 10\n" msgid "Supports Painting" msgstr "Pintura de Suportes" @@ -74,8 +72,7 @@ msgid "Tool type" msgstr "Tipo da Ferramenta" msgid "Smart fill angle" -msgstr "" -"Ângulo do\n" +msgstr "Ângulo do\n" "preench. inteligente" msgid "On overhangs only" @@ -96,7 +93,7 @@ msgstr "Preencher" msgid "Gap Fill" msgstr "Preencher lacunas" -#, boost-format +#, possible-boost-format msgid "Allows painting only on facets selected by: \"%1%\"" msgstr "Permite pintura apenas em facetas selecionadas por: \"%1%\"" @@ -115,14 +112,9 @@ msgstr "Gizmo-Posicionar na face" msgid "Lay on face" msgstr "Ajustar face à superfície" -#, boost-format -msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " -"the first %1% filaments will be available in painting tool." -msgstr "" -"A contagem de filamentos excede o número máximo que a ferramenta de pintura " -"suporta. Apenas os primeiros %1% filamentos estarão disponíveis na " -"ferramenta de pintura." +#, possible-boost-format +msgid "Filament count exceeds the maximum number that painting tool supports. only the first %1% filaments will be available in painting tool." +msgstr "A contagem de filamentos excede o número máximo que a ferramenta de pintura suporta. Apenas os primeiros %1% filamentos estarão disponíveis na ferramenta de pintura." msgid "Color Painting" msgstr "Pintura de cores" @@ -184,7 +176,7 @@ msgstr "Horizontal" msgid "Remove painted color" msgstr "Remover cor pintada" -#, boost-format +#, possible-boost-format msgid "Painted using: Filament %1%" msgstr "Pintado usando: Filamento %1%" @@ -357,19 +349,15 @@ msgstr "Peça" msgid "Object" msgstr "Objeto" -msgid "" -"Click to flip the cut plane\n" +msgid "Click to flip the cut plane\n" "Drag to move the cut plane" -msgstr "" -"Clique para girar o plano de corte\n" +msgstr "Clique para girar o plano de corte\n" "Arraste para mover o plano de corte" -msgid "" -"Click to flip the cut plane\n" +msgid "Click to flip the cut plane\n" "Drag to move the cut plane\n" "Right-click a part to assign it to the other side" -msgstr "" -"Clique para girar o plano de corte\n" +msgstr "Clique para girar o plano de corte\n" "Arraste para mover o plano de corte\n" "Clique com o botão direito em uma peça para atribuí-la ao outro lado" @@ -503,13 +491,13 @@ msgstr "Aviso" msgid "Invalid connectors detected" msgstr "Conectores inválidos detectados" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%1$d connector is out of cut contour" msgid_plural "%1$d connectors are out of cut contour" msgstr[0] "%1$d conector está fora do contorno de corte" msgstr[1] "%1$d conectores estão fora do contorno de corte" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%1$d connector is out of object" msgid_plural "%1$d connectors are out of object" msgstr[0] "%1$d conector está fora do objeto" @@ -534,9 +522,7 @@ msgid "Cut by Plane" msgstr "Cortar por Plano" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" -msgstr "" -"as arestas abertas podem ser causadas pela ferramenta de corte, você quer " -"corrigi-las agora?" +msgstr "as arestas abertas podem ser causadas pela ferramenta de corte, você quer corrigi-las agora?" msgid "Repairing model object" msgstr "Reparando objeto do modelo" @@ -556,13 +542,9 @@ msgstr "Nível de detalhe" msgid "Decimate ratio" msgstr "Taxa de decimação" -#, boost-format -msgid "" -"Processing model '%1%' with more than 1M triangles could be slow. It is " -"highly recommended to simplify the model." -msgstr "" -"Processar modelo '%1%' com mais de 1M de triângulos pode ser lento. É " -"altamente recomendável simplificar o modelo." +#, possible-boost-format +msgid "Processing model '%1%' with more than 1M triangles could be slow. It is highly recommended to simplify the model." +msgstr "Processar modelo '%1%' com mais de 1M de triângulos pode ser lento. É altamente recomendável simplificar o modelo." msgid "Simplify model" msgstr "Simplificar modelo" @@ -571,8 +553,7 @@ msgid "Simplify" msgstr "Simplificar" msgid "Simplification is currently only allowed when a single part is selected" -msgstr "" -"A simplificação só é permitida quando uma única peça é selecionada no momento" +msgstr "A simplificação só é permitida quando uma única peça é selecionada no momento" msgid "Error" msgstr "Erro" @@ -592,20 +573,19 @@ msgstr "Baixo" msgid "Extra low" msgstr "Extra baixo" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%d triangles" msgstr "%d triângulos" msgid "Show wireframe" msgstr "Mostrar wireframe" -#, boost-format +#, possible-boost-format msgid "%1%" msgstr "%1%" msgid "Can't apply when proccess preview." -msgstr "" -"Não é possível aplicar quando a visualização do processo está em andamento." +msgstr "Não é possível aplicar quando a visualização do processo está em andamento." msgid "Operation already cancelling. Please wait few seconds." msgstr "Operação já sendo cancelada. Por favor, aguarde alguns segundos." @@ -657,11 +637,9 @@ msgstr "Espaço de Texto" msgid "Angle" msgstr "Ângulo" -msgid "" -"Embeded\n" +msgid "Embeded\n" "depth" -msgstr "" -"Profundidade\n" +msgstr "Profundidade\n" "Integrada" msgid "Input text" @@ -677,7 +655,7 @@ msgid "Shift + Mouse move up or dowm" msgstr "Shift + Mover mouse para cima ou para baixo" msgid "Rotate text" -msgstr "Rodar texto" +msgstr "Rotacionar texto" msgid "Text shape" msgstr "Formato do texto" @@ -732,20 +710,14 @@ msgstr "Fonte padrão" msgid "Advanced" msgstr "Avançado" -msgid "" -"The text cannot be written using the selected font. Please try choosing a " -"different font." -msgstr "" -"O texto não pode ser escrito usando a fonte selecionada. Por favor, tente " -"escolher uma fonte diferente." +msgid "The text cannot be written using the selected font. Please try choosing a different font." +msgstr "O texto não pode ser escrito usando a fonte selecionada. Por favor, tente escolher uma fonte diferente." msgid "Embossed text cannot contain only white spaces." msgstr "Texto em relevo não pode conter apenas espaços em branco." msgid "Text contains character glyph (represented by '?') unknown by font." -msgstr "" -"O texto contém um glifo de caractere (representado por '?') desconhecido " -"pela fonte." +msgstr "O texto contém um glifo de caractere (representado por '?') desconhecido pela fonte." msgid "Text input doesn't show font skew." msgstr "A entrada de texto não mostra a inclinação da fonte." @@ -768,7 +740,7 @@ msgstr "O texto não mostra o alinhamento horizontal atual." msgid "Revert font changes." msgstr "Reverter alterações de fonte." -#, boost-format +#, possible-boost-format msgid "Font \"%1%\" can't be selected." msgstr "A fonte \"%1%\" não pode ser selecionada." @@ -800,7 +772,7 @@ msgstr "Clique para mudar o tipo de peça para modificador." msgid "Change Text Type" msgstr "Alterar tipo de texto" -#, boost-format +#, possible-boost-format msgid "Rename style(%1%) for embossing text" msgstr "Renomear estilo(%1%) para texto em relevo" @@ -825,7 +797,7 @@ msgstr "Não é possível renomear estilo temporário." msgid "First Add style to list." msgstr "Primeiro, adicione o estilo à lista." -#, boost-format +#, possible-boost-format msgid "Save %1% style" msgstr "Salvar estilo %1%" @@ -853,44 +825,40 @@ msgstr "Remover estilo" msgid "Can't remove the last existing style." msgstr "Não é possível remover o último estilo existente." -#, boost-format +#, possible-boost-format msgid "Are you sure you want to permanently remove the \"%1%\" style?" msgstr "Tem certeza de que deseja remover permanentemente o estilo \"%1%\"?" -#, boost-format +#, possible-boost-format msgid "Delete \"%1%\" style." msgstr "Excluir o estilo \"%1%\"." -#, boost-format +#, possible-boost-format msgid "Can't delete \"%1%\". It is last style." msgstr "Não é possível excluir \"%1%\". É o último estilo." -#, boost-format +#, possible-boost-format msgid "Can't delete temporary style \"%1%\"." msgstr "Não é possível excluir o estilo temporário \"%1%\"." -#, boost-format +#, possible-boost-format msgid "Modified style \"%1%\"" msgstr "Estilo modificado \"%1%\"" -#, boost-format +#, possible-boost-format msgid "Current style is \"%1%\"" msgstr "O estilo atual é \"%1%\"" -#, boost-format -msgid "" -"Changing style to \"%1%\" will discard current style modification.\n" -"\n" +#, possible-boost-format +msgid "Changing style to \"%1%\" will discard current style modification.\n\n" "Would you like to continue anyway?" -msgstr "" -"Mudar o estilo para \"%1%\" descartará a modificação atual do estilo.\n" -"\n" +msgstr "Mudar o estilo para \"%1%\" descartará a modificação atual do estilo.\n\n" "Você gostaria de continuar mesmo assim?" msgid "Not valid style." msgstr "Estilo inválido." -#, boost-format +#, possible-boost-format msgid "Style \"%1%\" can't be used and will be removed from a list." msgstr "O estilo \"%1%\" não pode ser usado e será removido da lista." @@ -912,11 +880,9 @@ msgstr "Reverter tamanho do texto." msgid "Revert embossed depth." msgstr "Reverter profundidade em relevo." -msgid "" -"Advanced options cannot be changed for the selected font.\n" +msgid "Advanced options cannot be changed for the selected font.\n" "Select another font." -msgstr "" -"As opções avançadas não podem ser alteradas para a fonte selecionada.\n" +msgstr "As opções avançadas não podem ser alteradas para a fonte selecionada.\n" "Selecione outra fonte." msgid "Revert using of model surface." @@ -999,12 +965,10 @@ msgid "Rotate text Clock-wise." msgstr "Girar o texto no sentido horário." msgid "Unlock the text's rotation when moving text along the object's surface." -msgstr "" -"Desbloquear a rotação do texto ao movê-lo ao longo da superfície do objeto." +msgstr "Desbloquear a rotação do texto ao movê-lo ao longo da superfície do objeto." msgid "Lock the text's rotation when moving text along the object's surface." -msgstr "" -"Bloquear a rotação do texto ao movê-lo ao longo da superfície do objeto." +msgstr "Bloquear a rotação do texto ao movê-lo ao longo da superfície do objeto." msgid "Select from True Type Collection." msgstr "Selecionar da Coleção True Type." @@ -1015,14 +979,9 @@ msgstr "Fazer texto para virar para a câmera" msgid "Orient the text towards the camera." msgstr "Orientar o texto em direção à câmera." -#, boost-format -msgid "" -"Can't load exactly same font(\"%1%\"). Aplication selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." -msgstr "" -"Não é possível carregar a mesma fonte exatamente (\"%1%\"). A aplicação " -"selecionou uma similar (\"%2%\"). Você deve especificar uma fonte para " -"habilitar a edição de texto." +#, possible-boost-format +msgid "Can't load exactly same font(\"%1%\"). Aplication selected a similar one(\"%2%\"). You have to specify font for enable edit text." +msgstr "Não é possível carregar a mesma fonte exatamente (\"%1%\"). A aplicação selecionou uma similar (\"%2%\"). Você deve especificar uma fonte para habilitar a edição de texto." msgid "No symbol" msgstr "Sem símbolo" @@ -1109,13 +1068,13 @@ msgid "SVG actions" msgstr "Ações SVG" msgid "SVG" -msgstr "Svg" +msgstr "SVG" -#, boost-format +#, possible-boost-format msgid "Opacity (%1%)" msgstr "Opacidade (%1%)" -#, boost-format +#, possible-boost-format msgid "Color gradient (%1%)" msgstr "Gradiente de cor (%1%)" @@ -1137,27 +1096,23 @@ msgstr "Tipo de traço indefinido" msgid "Path can't be healed from selfintersection and multiple points." msgstr "O caminho não pode ser reparado de auto-interseção e pontos múltiplos." -msgid "" -"Final shape constains selfintersection or multiple points with same " -"coordinate." -msgstr "" -"A forma final contém auto-interseção ou múltiplos pontos com mesma " -"coordenada." +msgid "Final shape constains selfintersection or multiple points with same coordinate." +msgstr "A forma final contém auto-interseção ou múltiplos pontos com mesma coordenada." -#, boost-format +#, possible-boost-format msgid "Shape is marked as invisible (%1%)." msgstr "A forma está marcada como invisível (%1%)." #. TRN: The first placeholder is shape identifier, the second one is text describing the problem. -#, boost-format +#, possible-boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "O preenchimento da forma (%1%) contém não suportado: %2%." -#, boost-format +#, possible-boost-format msgid "Stroke of shape (%1%) is too thin (minimal width is %2% mm)." msgstr "O traço da forma (%1%) é muito fino (largura mínima é %2% mm)." -#, boost-format +#, possible-boost-format msgid "Stroke of shape (%1%) contains unsupported: %2%." msgstr "O traço da forma (%1%) contém não suportado: %2%." @@ -1168,7 +1123,7 @@ msgstr "Virar para a câmera" msgid "Unknown filename" msgstr "Nome do arquivo desconhecido" -#, boost-format +#, possible-boost-format msgid "SVG file path is \"%1%\"" msgstr "O caminho do arquivo SVG é \"%1%\"." @@ -1184,11 +1139,9 @@ msgstr "Mudar para outro arquivo .svg" msgid "Forget the file path" msgstr "Esquecer o caminho do arquivo" -msgid "" -"Do NOT save local path to 3MF file.\n" +msgid "Do NOT save local path to 3MF file.\n" "Also disables 'reload from disk' option." -msgstr "" -"NÃO salve o caminho local para o arquivo 3MF.\n" +msgstr "NÃO salve o caminho local para o arquivo 3MF.\n" "Também desabilita a opção 'recarregar do disco'." #. TRN: An menu option to convert the SVG into an unmodifiable model part. @@ -1212,7 +1165,7 @@ msgid "Size in emboss direction." msgstr "Tamanho na direção de relevo." #. TRN: The placeholder contains a number. -#, boost-format +#, possible-boost-format msgid "Scale also changes amount of curve samples (%1%)" msgstr "A escala também altera a quantidade de amostras de curva (%1%)" @@ -1257,20 +1210,19 @@ msgstr "Espelhar" msgid "Choose SVG file for emboss:" msgstr "Escolher arquivo SVG para relevo:" -#, boost-format +#, possible-boost-format msgid "File does NOT exist (%1%)." msgstr "O arquivo NÃO existe (%1%)." -#, boost-format +#, possible-boost-format msgid "Filename has to end with \".svg\" but you selected %1%" -msgstr "" -"O nome do arquivo precisa terminar com \".svg\", mas você selecionou %1%" +msgstr "O nome do arquivo precisa terminar com \".svg\", mas você selecionou %1%" -#, boost-format +#, possible-boost-format msgid "Nano SVG parser can't load from file (%1%)." msgstr "O analisador Nano SVG não pode carregar do arquivo (%1%)." -#, boost-format +#, possible-boost-format msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "O arquivo SVG NÃO contém um único caminho para ser relevado (%1%)." @@ -1365,14 +1317,12 @@ msgstr "Aviso" msgid "Undefined" msgstr "Indefinido" -#, boost-format +#, possible-boost-format msgid "%1% was replaced with %2%" msgstr "%1% foi substituído por %2%" msgid "The configuration may be generated by a newer version of OrcaSlicer." -msgstr "" -"A configuração pode ter sido gerada por uma versão mais recente do " -"OrcaSlicer." +msgstr "A configuração pode ter sido gerada por uma versão mais recente do OrcaSlicer." msgid "Some values have been replaced. Please check them:" msgstr "Alguns valores foram substituídos. Por favor, verifique-os:" @@ -1387,38 +1337,25 @@ msgid "Machine" msgstr "Máquina" msgid "Configuration package was loaded, but some values were not recognized." -msgstr "" -"O pacote de configuração foi carregado, mas alguns valores não foram " -"reconhecidos." +msgstr "O pacote de configuração foi carregado, mas alguns valores não foram reconhecidos." -#, boost-format -msgid "" -"Configuration file \"%1%\" was loaded, but some values were not recognized." -msgstr "" -"O arquivo de configuração \"%1%\" foi carregado, mas alguns valores não " -"foram reconhecidos." +#, possible-boost-format +msgid "Configuration file \"%1%\" was loaded, but some values were not recognized." +msgstr "O arquivo de configuração \"%1%\" foi carregado, mas alguns valores não foram reconhecidos." -msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " -"It will be appreciated if you report the issue to our team." -msgstr "" -"OrcaSlicer será encerrado devido à falta de memória. Pode ser um bug. " -"Agradecemos se você relatar o problema para nossa equipe." +msgid "OrcaSlicer will terminate because of running out of memory.It may be a bug. It will be appreciated if you report the issue to our team." +msgstr "OrcaSlicer será encerrado devido à falta de memória. Pode ser um bug. Agradecemos se você relatar o problema para nossa equipe." msgid "Fatal error" msgstr "Erro fatal" -msgid "" -"OrcaSlicer will terminate because of a localization error. It will be " -"appreciated if you report the specific scenario this issue happened." -msgstr "" -"OrcaSlicer será encerrado devido a um erro de localização. Agradecemos se " -"você relatar o cenário específico em que esse problema ocorreu." +msgid "OrcaSlicer will terminate because of a localization error. It will be appreciated if you report the specific scenario this issue happened." +msgstr "OrcaSlicer será encerrado devido a um erro de localização. Agradecemos se você relatar o cenário específico em que esse problema ocorreu." msgid "Critical error" msgstr "Erro crítico" -#, boost-format +#, possible-boost-format msgid "OrcaSlicer got an unhandled exception: %1%" msgstr "OrcaSlicer encontrou uma exceção não tratada: %1%" @@ -1434,28 +1371,22 @@ msgstr "As informações de login expiraram. Por favor, faça o login novamente. msgid "Incorrect password" msgstr "Senha incorreta" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Connect %s failed! [SN:%s, code=%s]" msgstr "Falha na conexão %s! [SN:%s, código=%s]" -msgid "" -"Orca Slicer requires the Microsoft WebView2 Runtime to operate certain " -"features.\n" +msgid "Orca Slicer requires the Microsoft WebView2 Runtime to operate certain features.\n" "Click Yes to install it now." -msgstr "" -"Orca Slicer requer o tempo de execução Microsoft WebView2 para operar " -"determinados recursos.\n" +msgstr "Orca Slicer requer o tempo de execução Microsoft WebView2 para operar determinados recursos.\n" "Clique em Sim para instalá-lo agora." msgid "WebView2 Runtime" -msgstr "WebView2 Runtime" +msgstr "Tempo de execução WebView2" -#, c-format, boost-format -msgid "" -"%s\n" +#, possible-c-format, possible-boost-format +msgid "%s\n" "Do you want to continue?" -msgstr "" -"%s\n" +msgstr "%s\n" "Deseja continuar?" msgid "Remember my choice" @@ -1464,7 +1395,7 @@ msgstr "Lembrar minha escolha" msgid "Loading configuration" msgstr "Carregando configuração" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Click to download new version in default browser: %s" msgstr "Clique para baixar a nova versão no navegador padrão: %s" @@ -1477,17 +1408,12 @@ msgstr "Esta é a versão mais recente." msgid "Info" msgstr "Informações" -msgid "" -"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" +msgid "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" "OrcaSlicer has attempted to recreate the configuration file.\n" -"Please note, application settings will be lost, but printer profiles will " -"not be affected." -msgstr "" -"O arquivo de configuração do OrcaSlicer pode estar corrompido e não pode ser " -"analisado.\n" +"Please note, application settings will be lost, but printer profiles will not be affected." +msgstr "O arquivo de configuração do OrcaSlicer pode estar corrompido e não pode ser analisado.\n" "O OrcaSlicer tentou recriar o arquivo de configuração.\n" -"Por favor, note que as configurações do aplicativo serão perdidas, mas os " -"perfis de impressora não serão afetados." +"Por favor, note que as configurações do aplicativo serão perdidas, mas os perfis de impressora não serão afetados." msgid "Rebuild" msgstr "Reconstruindo" @@ -1508,7 +1434,7 @@ msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgstr "Escolha um ou mais arquivos (3mf/step/stl/svg/obj/amf):" msgid "Choose ZIP file" -msgstr "" +msgstr "Escolha o arquivo ZIP" msgid "Choose one file (gcode/3mf):" msgstr "Escolha um arquivo (gcode/3mf):" @@ -1516,40 +1442,26 @@ msgstr "Escolha um arquivo (gcode/3mf):" msgid "Some presets are modified." msgstr "Alguns presets foram modificados." -msgid "" -"You can keep the modifield presets to the new project, discard or save " -"changes as new presets." -msgstr "" -"Você pode manter os modelos modificados no novo projeto, descartar ou salvar " -"as alterações como novos modelos." +msgid "You can keep the modifield presets to the new project, discard or save changes as new presets." +msgstr "Você pode manter os modelos modificados no novo projeto, descartar ou salvar as alterações como novos modelos." msgid "User logged out" msgstr "Usuário desconectado" msgid "new or open project file is not allowed during the slicing process!" -msgstr "" -"criar ou abrir um arquivo de projeto novo não é permitido durante o processo " -"de fatiamento!" +msgstr "criar ou abrir um arquivo de projeto novo não é permitido durante o processo de fatiamento!" msgid "Open Project" msgstr "Abrir Projeto" -msgid "" -"The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" -msgstr "" -"A versão do Orca Slicer é muito antiga e precisa ser atualizada para a " -"versão mais recente antes de poder ser usada normalmente" +msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally" +msgstr "A versão do Orca Slicer é muito antiga e precisa ser atualizada para a versão mais recente antes de poder ser usada normalmente" msgid "Privacy Policy Update" msgstr "Atualização da Política de Privacidade" -msgid "" -"The number of user presets cached in the cloud has exceeded the upper limit, " -"newly created user presets can only be used locally." -msgstr "" -"O número de presets de usuário em cache na nuvem excedeu o limite superior, " -"os presets de usuário recém-criados só podem ser usados localmente." +msgid "The number of user presets cached in the cloud has exceeded the upper limit, newly created user presets can only be used locally." +msgstr "O número de presets de usuário em cache na nuvem excedeu o limite superior, os presets de usuário recém-criados só podem ser usados localmente." msgid "Sync user presets" msgstr "Sincronizar presets do usuário" @@ -1581,10 +1493,8 @@ msgstr "Envios em andamento" msgid "Select a G-code file:" msgstr "Selecione um arquivo G-code:" -msgid "" -"Could not start URL download. Destination folder is not set. Please choose " -"destination folder in Configuration Wizard." -msgstr "" +msgid "Could not start URL download. Destination folder is not set. Please choose destination folder in Configuration Wizard." +msgstr "Não foi possível baixar da URL. A pasta de destino não está definida. Por favor, escolha a pasta de destino no Assistente de Configuração." msgid "Import File" msgstr "Importar Arquivo" @@ -1604,7 +1514,7 @@ msgstr "Renomear" msgid "Orca Slicer GUI initialization failed" msgstr "Falha na inicialização da interface do Orca Slicer" -#, boost-format +#, possible-boost-format msgid "Fatal error, exception catched: %1%" msgstr "Erro fatal, exceção capturada: %1%" @@ -1621,7 +1531,7 @@ msgid "Support" msgstr "Suporte" msgid "Flush options" -msgstr "Opções de purga" +msgstr "Opções de limpeza" msgid "Speed" msgstr "Velocidade" @@ -1743,18 +1653,11 @@ msgstr "Stanford Bunny" msgid "Orca String Hell" msgstr "Orca String Hell" -msgid "" -"This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " -"for the 'Only One Wall on Top Surfaces' to work best.\n" +msgid "This model features text embossment on the top surface. For optimal results, it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" -msgstr "" -"Este modelo possui texto em alto relevo na superfície superior. Para obter " -"os melhores resultados, é aconselhável definir o 'Limiar de perímetro " -"único'\n" -" (min_width_top_surface)' como 0 para que 'Apenas uma Parede nas Superfícies " -"Superiores' funcione melhor.\n" +msgstr "Este modelo possui texto em alto relevo na superfície superior. Para obter os melhores resultados, é aconselhável definir o 'Limiar de perímetro único'\n" +" (min_width_top_surface)' como 0 para que 'Apenas uma Parede nas Superfícies Superiores' funcione melhor.\n" "Sim - Alterar essas configurações automaticamente\n" "Não - Não alterar essas configurações para mim" @@ -1815,7 +1718,7 @@ msgstr "Definir filamento para itens selecionados" msgid "Default" msgstr "Padrão" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Filament %d" msgstr "Filamento %d" @@ -1829,16 +1732,16 @@ msgid "Scale an object to fit the build volume" msgstr "Dimensionar um objeto para caber no volume de impressão" msgid "Flush Options" -msgstr "Opções de Purga" +msgstr "Opções de Limpeza" msgid "Flush into objects' infill" -msgstr "Purgar no preenchimento dos objetos" +msgstr "Limpar no preenchimento dos objetos" msgid "Flush into this object" -msgstr "Purgar neste objeto" +msgstr "Limpar neste objeto" msgid "Flush into objects' support" -msgstr "Purgar nos suportes dos objetos" +msgstr "Limpar nos suportes dos objetos" msgid "Edit in Parameter Table" msgstr "Editar na Tabela de Parâmetros" @@ -1940,8 +1843,7 @@ msgid "Auto orientation" msgstr "Orientação Automática" msgid "Auto orient the object to improve print quality." -msgstr "" -"Orientar automaticamente o objeto para melhorar a qualidade de impressão." +msgstr "Orientar automaticamente o objeto para melhorar a qualidade de impressão." msgid "Split the selected object into mutiple objects" msgstr "Dividir o objeto selecionado em vários objetos" @@ -1968,10 +1870,10 @@ msgid "arrange current plate" msgstr "organizar mesa atual" msgid "Reload All" -msgstr "" +msgstr "Recarregar Tudo" msgid "reload all from disk" -msgstr "" +msgstr "Recarregar tudo do disco" msgid "Auto Rotate" msgstr "Auto-orientação" @@ -2021,13 +1923,13 @@ msgstr "Nome" msgid "Fila." msgstr "Fila." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%1$d error repaired" msgid_plural "%1$d errors repaired" msgstr[0] "%1$d erro reparado" msgstr[1] "%1$d erros reparados" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Error: %1$d non-manifold edge." msgid_plural "Error: %1$d non-manifold edges." msgstr[0] "Erro: %1$d aresta não-manifold." @@ -2036,7 +1938,7 @@ msgstr[1] "Erro: %1$d arestas não-manifold." msgid "Remaining errors" msgstr "Erros restantes" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%1$d non-manifold edge" msgid_plural "%1$d non-manifold edges" msgstr[0] "%1$d aresta não-manifold" @@ -2046,16 +1948,13 @@ msgid "Right click the icon to fix model object" msgstr "Clique com o botão direito no ícone para corrigir o objeto do modelo" msgid "Right button click the icon to drop the object settings" -msgstr "" -"Clique com o botão direito no ícone para descartar as configurações do objeto" +msgstr "Clique com o botão direito no ícone para descartar as configurações do objeto" msgid "Click the icon to reset all settings of the object" msgstr "Clique no ícone para redefinir todas as configurações do objeto" msgid "Right button click the icon to drop the object printable property" -msgstr "" -"Clique com o botão direito no ícone para descartar a propriedade imprimível " -"do objeto" +msgstr "Clique com o botão direito no ícone para descartar a propriedade imprimível do objeto" msgid "Click the icon to toggle printable property of the object" msgstr "Clique no ícone para alternar a propriedade imprimível do objeto" @@ -2087,12 +1986,8 @@ msgstr "Adicionar Modificador" msgid "Switch to per-object setting mode to edit modifier settings." msgstr "Mude para o modo de configuração por objeto para editar modificadores." -msgid "" -"Switch to per-object setting mode to edit process settings of selected " -"objects." -msgstr "" -"Mude para o modo de configuração por objeto para editar processos dos " -"objetos selecionados." +msgid "Switch to per-object setting mode to edit process settings of selected objects." +msgstr "Mude para o modo de configuração por objeto para editar processos dos objetos selecionados." msgid "Delete connector from object which is a part of cut" msgstr "Excluir conector do objeto que é parte do corte" @@ -2103,25 +1998,15 @@ msgstr "Excluir peça sólida do objeto que é peça do corte" msgid "Delete negative volume from object which is a part of cut" msgstr "Excluir volume negativo do objeto que é parte do corte" -msgid "" -"To save cut correspondence you can delete all connectors from all related " -"objects." -msgstr "" -"Para salvar a correspondência de corte, você pode excluir todos os " -"conectores de todos os objetos relacionados." +msgid "To save cut correspondence you can delete all connectors from all related objects." +msgstr "Para salvar a correspondência de corte, você pode excluir todos os conectores de todos os objetos relacionados." -msgid "" -"This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" -"\n" -"To manipulate with solid parts or negative volumes you have to invalidate " -"cut infornation first." -msgstr "" -"Esta ação irá quebrar a correspondência de corte.\n" -"Depois disso, a consistência do modelo não pode ser garantida.\n" -"\n" -"Para manipular peças sólidas ou volumes negativos, você deve invalidar as " -"informações de corte primeiro." +msgid "This action will break a cut correspondence.\n" +"After that model consistency can't be guaranteed .\n\n" +"To manipulate with solid parts or negative volumes you have to invalidate cut infornation first." +msgstr "Esta ação irá quebrar a correspondência de corte.\n" +"Depois disso, a consistência do modelo não pode ser garantida.\n\n" +"Para manipular peças sólidas ou volumes negativos, você deve invalidar as informações de corte primeiro." msgid "Delete all connectors" msgstr "Excluir todos os conectores" @@ -2171,18 +2056,11 @@ msgstr "Camada" msgid "Selection conflicts" msgstr "Conflitos de seleção" -msgid "" -"If first selected item is an object, the second one should also be object." -msgstr "" -"Se o primeiro item selecionado for um objeto, o segundo também deve ser um " -"objeto." +msgid "If first selected item is an object, the second one should also be object." +msgstr "Se o primeiro item selecionado for um objeto, o segundo também deve ser um objeto." -msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." -msgstr "" -"Se o primeiro item selecionado for uma peça, o segundo deve ser uma peça no " -"mesmo objeto." +msgid "If first selected item is a part, the second one should be part in the same object." +msgstr "Se o primeiro item selecionado for uma peça, o segundo deve ser uma peça no mesmo objeto." msgid "The type of the last solid object part is not to be changed." msgstr "O tipo da última peça do objeto sólido não deve ser alterado." @@ -2240,8 +2118,7 @@ msgid "Invalid numeric." msgstr "Número inválido." msgid "one cell can only be copied to one or multiple cells in the same column" -msgstr "" -"uma célula só pode ser copiada para uma ou várias células na mesma coluna" +msgstr "uma célula só pode ser copiada para uma ou várias células na mesma coluna" msgid "multiple cells copy is not supported" msgstr "a cópia de múltiplas células não é suportada" @@ -2400,8 +2277,7 @@ msgid "Failed to connect to cloud service" msgstr "Falha ao conectar ao serviço de nuvem" msgid "Please click on the hyperlink above to view the cloud service status" -msgstr "" -"Por favor, clique no link acima para visualizar o status do serviço de nuvem" +msgstr "Por favor, clique no link acima para visualizar o status do serviço de nuvem" msgid "Failed to connect to the printer" msgstr "Falha ao conectar à impressora" @@ -2410,7 +2286,7 @@ msgid "Connection to printer failed" msgstr "Falha na conexão com a impressora" msgid "Please check the network connection of the printer and Orca." -msgstr "Por favor, verifique a conexão de rede da impressora e do Studio." +msgstr "Por favor, verifique a conexão de rede da impressora e do Orca." msgid "Connecting..." msgstr "Conectando..." @@ -2493,31 +2369,23 @@ msgstr "Verificar localização do filamento" msgid "Grab new filament" msgstr "Pegar novo filamento" -msgid "" -"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " -"load or unload filaments." -msgstr "" -"Escolha um slot AMS e pressione o botão \"Carregar\" ou \"Descarregar\" para " -"carregar ou descarregar automaticamente o filamento." +msgid "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically load or unload filaments." +msgstr "Escolha um slot AMS e pressione o botão \"Carregar\" ou \"Descarregar\" para carregar ou descarregar automaticamente o filamento." msgid "Edit" msgstr "Editar" -msgid "" -"All the selected objects are on the locked plate,\n" +msgid "All the selected objects are on the locked plate,\n" "We can not do auto-arrange on these objects." -msgstr "" -"Todos os objetos selecionados estão na mesa bloqueada,\n" +msgstr "Todos os objetos selecionados estão na mesa bloqueada,\n" "Não podemos fazer o auto-posicionamento nesses objetos." msgid "No arrangable objects are selected." msgstr "Nenhum objeto disponível para posicionamento foi selecionado." -msgid "" -"This plate is locked,\n" +msgid "This plate is locked,\n" "We can not do auto-arrange on this plate." -msgstr "" -"Esta mesa está bloqueada,\n" +msgstr "Esta mesa está bloqueada,\n" "Não podemos fazer o auto-posicionamento nesta mesa." msgid "Arranging..." @@ -2529,43 +2397,29 @@ msgstr "Organizando" msgid "Arranging canceled." msgstr "Organização cancelada." -msgid "" -"Arranging is done but there are unpacked items. Reduce spacing and try again." -msgstr "" -"A organização foi concluída, mas há itens desembalados. Reduza o espaçamento " -"e tente novamente." +msgid "Arranging is done but there are unpacked items. Reduce spacing and try again." +msgstr "A organização foi concluída, mas há itens desembalados. Reduza o espaçamento e tente novamente." msgid "Arranging done." msgstr "Organização concluída." -msgid "" -"Arrange failed. Found some exceptions when processing object geometries." -msgstr "" -"Organização falhou. Encontrou algumas exceções ao processar geometrias de " -"objetos." +msgid "Arrange failed. Found some exceptions when processing object geometries." +msgstr "Organização falhou. Encontrou algumas exceções ao processar geometrias de objetos." -#, c-format, boost-format -msgid "" -"Arrangement ignored the following objects which can't fit into a single " -"bed:\n" +#, possible-c-format, possible-boost-format +msgid "Arrangement ignored the following objects which can't fit into a single bed:\n" "%s" -msgstr "" -"A organização ignorou os seguintes objetos que não podem caber em uma única " -"mesa:\n" +msgstr "A organização ignorou os seguintes objetos que não podem caber em uma única mesa:\n" "%s" -msgid "" -"All the selected objects are on the locked plate,\n" +msgid "All the selected objects are on the locked plate,\n" "We can not do auto-orient on these objects." -msgstr "" -"Todos os objetos selecionados estão na mesa bloqueada,\n" +msgstr "Todos os objetos selecionados estão na mesa bloqueada,\n" "Não podemos fazer a auto-orientação nesses objetos." -msgid "" -"This plate is locked,\n" +msgid "This plate is locked,\n" "We can not do auto-orient on this plate." -msgstr "" -"Esta mesa está bloqueada,\n" +msgstr "Esta mesa está bloqueada,\n" "Não podemos fazer a auto-orientação nesta mesa." msgid "Orienting..." @@ -2611,9 +2465,7 @@ msgid "Task canceled." msgstr "Tarefa cancelada." msgid "Upload task timed out. Please check the network status and try again." -msgstr "" -"O tempo para envio da tarefa expirou. Verifique o estado da rede e tente " -"novamente." +msgstr "O tempo para envio da tarefa expirou. Verifique o estado da rede e tente novamente." msgid "Cloud service connection failed. Please try again." msgstr "Falha na conexão com o serviço de nuvem. Por favor, tente novamente." @@ -2621,12 +2473,8 @@ msgstr "Falha na conexão com o serviço de nuvem. Por favor, tente novamente." msgid "Print file not found. please slice again." msgstr "Arquivo de impressão não encontrado. Por favor, fatie novamente." -msgid "" -"The print file exceeds the maximum allowable size (1GB). Please simplify the " -"model and slice again." -msgstr "" -"O arquivo de impressão excede o tamanho máximo permitido (1GB). Por favor, " -"simplifique o modelo e fatie novamente." +msgid "The print file exceeds the maximum allowable size (1GB). Please simplify the model and slice again." +msgstr "O arquivo de impressão excede o tamanho máximo permitido (1GB). Por favor, simplifique o modelo e fatie novamente." msgid "Failed to send the print job. Please try again." msgstr "Falha ao enviar o trabalho de impressão. Por favor, tente novamente." @@ -2634,28 +2482,17 @@ msgstr "Falha ao enviar o trabalho de impressão. Por favor, tente novamente." msgid "Failed to upload file to ftp. Please try again." msgstr "Falha ao enviar o arquivo via FTP. Por favor, tente novamente." -msgid "" -"Check the current status of the bambu server by clicking on the link above." +msgid "Check the current status of the bambu server by clicking on the link above." msgstr "Verifique o estado atual do servidor Bambu clicando no link acima." -msgid "" -"The size of the print file is too large. Please adjust the file size and try " -"again." -msgstr "" -"O tamanho do arquivo de impressão é muito grande. Por favor, ajuste o " -"tamanho do arquivo e tente novamente." +msgid "The size of the print file is too large. Please adjust the file size and try again." +msgstr "O tamanho do arquivo de impressão é muito grande. Por favor, ajuste o tamanho do arquivo e tente novamente." msgid "Print file not found, Please slice it again and send it for printing." -msgstr "" -"Arquivo de impressão não encontrado. Por favor, fatie-o novamente e envie " -"para impressão." +msgstr "Arquivo de impressão não encontrado. Por favor, fatie-o novamente e envie para impressão." -msgid "" -"Failed to upload print file to FTP. Please check the network status and try " -"again." -msgstr "" -"Falha ao enviar o arquivo de impressão via FTP. Por favor, verifique o " -"estado da rede e tente novamente." +msgid "Failed to upload print file to FTP. Please check the network status and try again." +msgstr "Falha ao enviar o arquivo de impressão via FTP. Por favor, verifique o estado da rede e tente novamente." msgid "Sending print job over LAN" msgstr "Enviando trabalho de impressão via LAN" @@ -2675,16 +2512,13 @@ msgstr "Erro Desconhecido." msgid "Sending print configuration" msgstr "Enviando configuração de impressão" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Successfully sent. Will automatically jump to the device page in %ss" -msgstr "" -"Enviado com sucesso. Irá saltar automaticamente para a página do dispositivo " -"em %ss" +msgstr "Enviado com sucesso. Irá saltar automaticamente para a página do dispositivo em %ss" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" -msgstr "" -"Enviado com sucesso. Irá saltar automaticamente para a próxima página em %ss" +msgstr "Enviado com sucesso. Irá saltar automaticamente para a próxima página em %ss" msgid "An SD card needs to be inserted before printing via LAN." msgstr "Um cartão SD precisa ser inserido antes de imprimir via LAN." @@ -2695,7 +2529,7 @@ msgstr "Enviando arquivo de G-Code via LAN" msgid "Sending gcode file to sdcard" msgstr "Enviando arquivo de G-Code para o cartão SD" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Successfully sent. Close current page in %s s" msgstr "Enviado com sucesso. Feche a página atual em %s s" @@ -2705,12 +2539,8 @@ msgstr "Um cartão SD precisa ser inserido antes de enviar para a impressora." msgid "Importing SLA archive" msgstr "Importando arquivo SLA" -msgid "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer preset first before importing that SLA archive." -msgstr "" -"O arquivo SLA não contém nenhum perfil. Por favor, ative alguns perfis de " -"impressora SLA antes de importar esse arquivo SLA." +msgid "The SLA archive doesn't contain any presets. Please activate some SLA printer preset first before importing that SLA archive." +msgstr "O arquivo SLA não contém nenhum perfil. Por favor, ative alguns perfis de impressora SLA antes de importar esse arquivo SLA." msgid "Importing canceled." msgstr "Importação cancelada." @@ -2718,21 +2548,14 @@ msgstr "Importação cancelada." msgid "Importing done." msgstr "Importação concluída." -msgid "" -"The imported SLA archive did not contain any presets. The current SLA " -"presets were used as fallback." -msgstr "" -"O arquivo SLA importado não contém nenhum perfil. Os perfis SLA atuais foram " -"usados como alternativa." +msgid "The imported SLA archive did not contain any presets. The current SLA presets were used as fallback." +msgstr "O arquivo SLA importado não contém nenhum perfil. Os perfis SLA atuais foram usados como alternativa." msgid "You cannot load SLA project with a multi-part object on the bed" -msgstr "" -"Você não pode carregar um projeto SLA com um objeto de várias peças na mesa" +msgstr "Você não pode carregar um projeto SLA com um objeto de várias peças na mesa" msgid "Please check your object list before preset changing." -msgstr "" -"Por favor, verifique sua lista de objetos antes de mudar a configuração " -"predefinida." +msgstr "Por favor, verifique sua lista de objetos antes de mudar a configuração predefinida." msgid "Attention!" msgstr "Atenção!" @@ -2771,19 +2594,15 @@ msgid "GNU Affero General Public License, version 3" msgstr "Licença Pública Geral Affero GNU, versão 3" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" -msgstr "" +msgstr "Orca Slicer é baseado no PrusaSlicer e BambuStudio" msgid "Libraries" msgstr "Bibliotecas" -msgid "" -"This software uses open source components whose copyright and other " -"proprietary rights belong to their respective owners" -msgstr "" -"Este software utiliza componentes open source cujos direitos autorais e " -"outros direitos de propriedade pertencem aos seus respectivos proprietários" +msgid "This software uses open source components whose copyright and other proprietary rights belong to their respective owners" +msgstr "Este software utiliza componentes open source cujos direitos autorais e outros direitos de propriedade pertencem aos seus respectivos proprietários" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "About %s" msgstr "Sobre %s" @@ -2797,15 +2616,10 @@ msgid "BambuStudio is originally based on PrusaSlicer by PrusaResearch." msgstr "BambuStudio é originalmente baseado no PrusaSlicer pela PrusaResearch." msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci." -msgstr "" -"PrusaSlicer é originalmente baseado no Slic3r por Alessandro Ranellucci." +msgstr "PrusaSlicer é originalmente baseado no Slic3r por Alessandro Ranellucci." -msgid "" -"Slic3r was created by Alessandro Ranellucci with the help of many other " -"contributors." -msgstr "" -"Slic3r foi criado por Alessandro Ranellucci com a ajuda de muitos outros " -"colaboradores." +msgid "Slic3r was created by Alessandro Ranellucci with the help of many other contributors." +msgstr "Slic3r foi criado por Alessandro Ranellucci com a ajuda de muitos outros colaboradores." msgid "Version" msgstr "Versão" @@ -2822,11 +2636,9 @@ msgstr "Fechar" msgid "Colour" msgstr "Cor" -msgid "" -"Nozzle\n" +msgid "Nozzle\n" "Temperature" -msgstr "" -"Bico\n" +msgstr "Bico\n" "Temperatura" msgid "max" @@ -2835,7 +2647,7 @@ msgstr "máx" msgid "min" msgstr "min." -#, boost-format +#, possible-boost-format msgid "The input value should be greater than %1% and less than %2%" msgstr "O valor de entrada deve ser maior que %1% e menor que %2%" @@ -2843,9 +2655,7 @@ msgid "SN" msgstr "SN" msgid "Setting AMS slot information while printing is not supported" -msgstr "" -"A configuração das informações do slot AMS durante a impressão não é " -"suportada" +msgstr "A configuração das informações do slot AMS durante a impressão não é suportada" msgid "Factors of Flow Dynamics Calibration" msgstr "Fatores de Calibração de Dinâmica de Fluxo" @@ -2860,9 +2670,7 @@ msgid "Factor N" msgstr "Fator N" msgid "Setting Virtual slot information while printing is not supported" -msgstr "" -"A configuração de informações do slot virtual durante a impressão não é " -"suportada" +msgstr "A configuração de informações do slot virtual durante a impressão não é suportada" msgid "Are you sure you want to clear the filament information?" msgstr "Tem certeza de que deseja limpar as informações do filamento?" @@ -2885,14 +2693,8 @@ msgstr "Cor Personalizada" msgid "Dynamic flow calibration" msgstr "Calibração dinâmica do fluxo" -msgid "" -"The nozzle temp and max volumetric speed will affect the calibration " -"results. Please fill in the same values as the actual printing. They can be " -"auto-filled by selecting a filament preset." -msgstr "" -"A temperatura do bico e a fluxo volumétrico máximo afetarão os resultados da " -"calibração. Preencha os mesmos valores que a impressão atual. Eles podem ser " -"preenchidos automaticamente selecionando um perfil de filamento." +msgid "The nozzle temp and max volumetric speed will affect the calibration results. Please fill in the same values as the actual printing. They can be auto-filled by selecting a filament preset." +msgstr "A temperatura do bico e a fluxo volumétrico máximo afetarão os resultados da calibração. Preencha os mesmos valores que a impressão atual. Eles podem ser preenchidos automaticamente selecionando um perfil de filamento." msgid "Nozzle Diameter" msgstr "Diâmetro do bico" @@ -2924,14 +2726,8 @@ msgstr "Iniciar calibração" msgid "Next" msgstr "Próximo" -msgid "" -"Calibration completed. Please find the most uniform extrusion line on your " -"hot bed like the picture below, and fill the value on its left side into the " -"factor K input box." -msgstr "" -"Calibração concluída. Por favor, encontre a linha de extrusão mais uniforme " -"na sua mesa aquecida como na imagem abaixo, e preencha o valor do seu lado " -"esquerdo na caixa de entrada do fator K." +msgid "Calibration completed. Please find the most uniform extrusion line on your hot bed like the picture below, and fill the value on its left side into the factor K input box." +msgstr "Calibração concluída. Por favor, encontre a linha de extrusão mais uniforme na sua mesa aquecida como na imagem abaixo, e preencha o valor do seu lado esquerdo na caixa de entrada do fator K." msgid "Save" msgstr "Salvar" @@ -2942,14 +2738,14 @@ msgstr "Última Etapa" msgid "Example" msgstr "Exemplo" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Calibrating... %d%%" msgstr "Calibrando... %d%%" msgid "Calibration completed" msgstr "Calibração concluída" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%s does not support %s" msgstr "%s não suporta %s" @@ -2962,11 +2758,8 @@ msgstr "Passo" msgid "AMS Slots" msgstr "Espaços do AMS" -msgid "" -"Note: Only the AMS slots loaded with the same material type can be selected." -msgstr "" -"Nota: Apenas os espaços do AMS carregados com o mesmo tipo de material podem " -"ser selecionadas." +msgid "Note: Only the AMS slots loaded with the same material type can be selected." +msgstr "Nota: Apenas os espaços do AMS carregados com o mesmo tipo de material podem ser selecionadas." msgid "Enable AMS" msgstr "Ativar AMS" @@ -2983,22 +2776,11 @@ msgstr "Imprimir com o filamento montado na parte de trás do chassi" msgid "Current Cabin humidity" msgstr "Umidade da cabine atual" -msgid "" -"Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " -"temperatures also slow down the process." -msgstr "" -"Por favor, mude o dessecante quando estiver muito úmido. O indicador pode " -"não representar com precisão nos casos a seguir: quando a tampa está aberta " -"ou quando o dessecante é trocado. Leva horas para absorver a umidade, baixas " -"temperaturas também atrasam o processo." +msgid "Please change the desiccant when it is too wet. The indicator may not represent accurately in following cases : when the lid is open or the desiccant pack is changed. it take hours to absorb the moisture, low temperatures also slow down the process." +msgstr "Por favor, mude o dessecante quando estiver muito molhado. O indicador pode não representar com precisão nos casos a seguir: quando a tampa está aberta ou quando o dessecante é trocado. Leva horas para absorver a umidade, baixas temperaturas também atrasam o processo." -msgid "" -"Config which AMS slot should be used for a filament used in the print job" -msgstr "" -"Configure qual espaço do AMS deve ser usado para um filamento usado no " -"trabalho de impressão" +msgid "Config which AMS slot should be used for a filament used in the print job" +msgstr "Configure qual espaço do AMS deve ser usado para um filamento usado no trabalho de impressão" msgid "Filament used in this print job" msgstr "Filamento usado neste trabalho de impressão" @@ -3021,12 +2803,8 @@ msgstr "Imprimir com filamentos no AMS" msgid "Print with filaments mounted on the back of the chassis" msgstr "Imprimir com filamentos montados na parte de trás do chassi" -msgid "" -"When the current material run out, the printer will continue to print in the " -"following order." -msgstr "" -"Quando o material atual acabar, a impressora continuará a imprimir na " -"seguinte ordem." +msgid "When the current material run out, the printer will continue to print in the following order." +msgstr "Quando o material atual acabar, a impressora continuará a imprimir na seguinte ordem." msgid "Group" msgstr "Grupo" @@ -3034,28 +2812,19 @@ msgstr "Grupo" msgid "The printer does not currently support auto refill." msgstr "A impressora atualmente não suporta recarga automática." -msgid "" -"AMS filament backup is not enabled, please enable it in the AMS settings." -msgstr "" -"O backup de filamento do AMS não está ativado, por favor, ative-o nas " -"configurações do AMS." +msgid "AMS filament backup is not enabled, please enable it in the AMS settings." +msgstr "O backup de filamento do AMS não está ativado, por favor, ative-o nas configurações do AMS." -msgid "" -"If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" -"(Currently supporting automatic supply of consumables with the same brand, " -"material type, and color)" -msgstr "" -"Se houver dois filamentos idênticos no AMS, o backup de filamento do AMS " -"será ativado. \n" -"(Atualmente suportando o fornecimento automático de consumíveis da mesma " -"marca, tipo de material e cor)" +msgid "If there are two identical filaments in AMS, AMS filament backup will be enabled. \n" +"(Currently supporting automatic supply of consumables with the same brand, material type, and color)" +msgstr "Se houver dois filamentos idênticos no AMS, o backup de filamento do AMS será ativado. \n" +"(Atualmente suportando o fornecimento automático de consumíveis da mesma marca, tipo de material e cor)" msgid "DRY" msgstr "SECO" msgid "WET" -msgstr "ÚMIDO" +msgstr "MOLHADO" msgid "AMS Settings" msgstr "Configurações do AMS" @@ -3063,77 +2832,41 @@ msgstr "Configurações do AMS" msgid "Insertion update" msgstr "Atualização de inserção" -msgid "" -"The AMS will automatically read the filament information when inserting a " -"new Bambu Lab filament. This takes about 20 seconds." -msgstr "" -"O AMS irá ler automaticamente as informações do filamento ao inserir um novo " -"filamento da Bambu Lab. Isso leva cerca de 20 segundos." +msgid "The AMS will automatically read the filament information when inserting a new Bambu Lab filament. This takes about 20 seconds." +msgstr "O AMS irá ler automaticamente as informações do filamento ao inserir um novo filamento da Bambu Lab. Isso leva cerca de 20 segundos." -msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " -"automatically read any information until printing is completed." -msgstr "" -"Nota: se um novo filamento for inserido durante a impressão, o AMS não irá " -"ler automaticamente nenhuma informação até que a impressão seja concluída." +msgid "Note: if a new filament is inserted during printing, the AMS will not automatically read any information until printing is completed." +msgstr "Nota: se um novo filamento for inserido durante a impressão, o AMS não irá ler automaticamente nenhuma informação até que a impressão seja concluída." -msgid "" -"When inserting a new filament, the AMS will not automatically read its " -"information, leaving it blank for you to enter manually." -msgstr "" -"Ao inserir um novo filamento, o AMS não irá ler automaticamente suas " -"informações, deixando-o em branco para você inserir manualmente." +msgid "When inserting a new filament, the AMS will not automatically read its information, leaving it blank for you to enter manually." +msgstr "Ao inserir um novo filamento, o AMS não irá ler automaticamente suas informações, deixando-o em branco para você inserir manualmente." msgid "Power on update" msgstr "Atualização de inicialização" -msgid "" -"The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." -msgstr "" -"O AMS irá ler automaticamente as informações do filamento inserido na " -"inicialização. Levará cerca de 1 minuto. O processo de leitura irá girar as " -"bobinas de filamento." +msgid "The AMS will automatically read the information of inserted filament on start-up. It will take about 1 minute.The reading process will roll filament spools." +msgstr "O AMS irá ler automaticamente as informações do filamento inserido na inicialização. Levará cerca de 1 minuto. O processo de leitura irá girar as bobinas de filamento." -msgid "" -"The AMS will not automatically read information from inserted filament " -"during startup and will continue to use the information recorded before the " -"last shutdown." -msgstr "" -"O AMS não irá ler automaticamente informações do filamento inserido durante " -"a inicialização e continuará a usar as informações registradas antes do " -"último desligamento." +msgid "The AMS will not automatically read information from inserted filament during startup and will continue to use the information recorded before the last shutdown." +msgstr "O AMS não irá ler automaticamente informações do filamento inserido durante a inicialização e continuará a usar as informações registradas antes do último desligamento." msgid "Update remaining capacity" msgstr "Atualizar capacidade restante" -msgid "" -"The AMS will estimate Bambu filament's remaining capacity after the filament " -"info is updated. During printing, remaining capacity will be updated " -"automatically." -msgstr "" -"O AMS irá estimar a capacidade restante do filamento Bambu após as " -"informações do filamento serem atualizadas. Durante a impressão, a " -"capacidade restante será atualizada automaticamente." +msgid "The AMS will estimate Bambu filament's remaining capacity after the filament info is updated. During printing, remaining capacity will be updated automatically." +msgstr "O AMS irá estimar a capacidade restante do filamento Bambu após as informações do filamento serem atualizadas. Durante a impressão, a capacidade restante será atualizada automaticamente." msgid "AMS filament backup" msgstr "Backup de filamento do AMS" -msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" -msgstr "" -"O AMS continuará para outra bobina com as mesmas propriedades do filamento " -"automaticamente quando o filamento atual acabar" +msgid "AMS will continue to another spool with the same properties of filament automatically when current filament runs out" +msgstr "O AMS continuará para outra bobina com as mesmas propriedades do filamento automaticamente quando o filamento atual acabar" msgid "Air Printing Detection" -msgstr "" +msgstr "Detecção de Impressão Aérea" -msgid "" -"Detects clogging and filament grinding, halting printing immediately to " -"conserve time and filament." -msgstr "" +msgid "Detects clogging and filament grinding, halting printing immediately to conserve time and filament." +msgstr "Detecta o entupimento e erosão de filamento, parando a impressão imediatamente para conservar tempo e filamento." msgid "File" msgstr "Arquivo" @@ -3141,19 +2874,11 @@ msgstr "Arquivo" msgid "Calibration" msgstr "Calibração" -msgid "" -"Failed to download the plug-in. Please check your firewall settings and vpn " -"software, check and retry." -msgstr "" -"Falha ao baixar o plug-in. Verifique as configurações do seu firewall e " -"software vpn, verifique e tente novamente." +msgid "Failed to download the plug-in. Please check your firewall settings and vpn software, check and retry." +msgstr "Falha ao baixar o plug-in. Verifique as configurações do seu firewall e software vpn, verifique e tente novamente." -msgid "" -"Failed to install the plug-in. Please check whether it is blocked or deleted " -"by anti-virus software." -msgstr "" -"Falha ao instalar o plug-in. Verifique se ele está bloqueado ou excluído " -"pelo software antivírus." +msgid "Failed to install the plug-in. Please check whether it is blocked or deleted by anti-virus software." +msgstr "Falha ao instalar o plug-in. Verifique se ele está bloqueado ou excluído pelo software antivírus." msgid "click here to see more info" msgstr "clique aqui para ver mais informações" @@ -3161,22 +2886,14 @@ msgstr "clique aqui para ver mais informações" msgid "Please home all axes (click " msgstr "Por favor, mandar a origem todos os eixos (clique " -msgid "" -") to locate the toolhead's position. This prevents device moving beyond the " -"printable boundary and causing equipment wear." -msgstr "" -") para localizar a posição da extrusora. Isso impede que o dispositivo se " -"mova além do limite imprimível e cause desgaste no equipamento." +msgid ") to locate the toolhead's position. This prevents device moving beyond the printable boundary and causing equipment wear." +msgstr ") para localizar a posição da extrusora. Isso impede que o dispositivo se mova além do limite imprimível e cause desgaste no equipamento." msgid "Go Home" msgstr "Ir para Ínicio" -msgid "" -"A error occurred. Maybe memory of system is not enough or it's a bug of the " -"program" -msgstr "" -"Ocorreu um erro. Talvez a memória do sistema não seja suficiente ou seja um " -"bug do programa" +msgid "A error occurred. Maybe memory of system is not enough or it's a bug of the program" +msgstr "Ocorreu um erro. Talvez a memória do sistema não seja suficiente ou seja um bug do programa" msgid "Please save project and restart the program. " msgstr "Por favor, salve o projeto e reinicie o programa. " @@ -3215,107 +2932,80 @@ msgid "Successfully executed post-processing script" msgstr "Script de pós-processamento executado com êxito" msgid "Unknown error occured during exporting G-code." -msgstr "Ocorreu um erro desconhecido durante a exportação do G-code." +msgstr "Ocorreu um erro desconhecido ao exportar G-code." -#, boost-format -msgid "" -"Copying of the temporary G-code to the output G-code failed. Maybe the SD " -"card is write locked?\n" +#, possible-boost-format +msgid "Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?\n" "Error message: %1%" -msgstr "" -"Falha na cópia do G-code temporário para o G-code de saída. Talvez o cartão " -"SD está bloqueado para escrita?\n" +msgstr "A cópia do G-code temporário para o G-code de saída falhou. Talvez o cartão SD esteja bloqueado?\n" "Mensagem de erro: %1%" -#, boost-format -msgid "" -"Copying of the temporary G-code to the output G-code failed. There might be " -"problem with target device, please try exporting again or using different " -"device. The corrupted output G-code is at %1%.tmp." -msgstr "" -"A cópia do G-code temporário para o G-code de saída falhou. Pode haver " -"problemas com o dispositivo de destino, por favor tente exportar novamente " -"ou usar dispositivo diferente. O G-code de saída corrompido está em %1%.tmp." +#, possible-boost-format +msgid "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp." +msgstr "A cópia do G-code temporário para o G-code de saída falhou. Pode haver problema com o dispositivo de destino, por favor, tente exportar novamente ou usar outro dispositivo. O G-code de saída corrompido está em %1%.tmp." -#, boost-format -msgid "" -"Renaming of the G-code after copying to the selected destination folder has " -"failed. Current path is %1%.tmp. Please try exporting again." -msgstr "" -"A renomeação do G-code após a cópia na pasta de destino selecionada falhou. " -"O caminho atual é %1%.tmp. Por favor, tente exportar de novo." +#, possible-boost-format +msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again." +msgstr "Renomear o G-code após copiar para a pasta destino selecionada falhou. O caminho atual é %1%.tmp. Por favor, tente exportar novamente." -#, boost-format -msgid "" -"Copying of the temporary G-code has finished but the original code at %1% " -"couldn't be opened during copy check. The output G-code is at %2%.tmp." -msgstr "" -"A cópia do G-code temporário foi concluída, mas o código original em %1% não " -"pôde ser aberto durante a verificação de cópia. O G-code de saída está em " -"%2%.tmp." +#, possible-boost-format +msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "A cópia do G-code temporário foi concluída, mas o código original em %1% não pôde ser aberto durante a verificação da cópia. O G-gode de saída está em %2%.tmp." -#, boost-format -msgid "" -"Copying of the temporary G-code has finished but the exported code couldn't " -"be opened during copy check. The output G-code is at %1%.tmp." -msgstr "" -"A cópia do G-code temporário foi concluída, mas o código exportado não pôde " -"ser aberto durante a verificação de cópia. O G-code de saída está em %1%.tmp." +#, possible-boost-format +msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp." +msgstr "A cópia do G-code temporário foi concluída, mas o código exportado não pôde ser aberto durante a verificação da cópia. O G-code de saída está em %1%.tmp." -#, boost-format +#, possible-boost-format msgid "G-code file exported to %1%" msgstr "Arquivo G-code exportado para %1%" msgid "Unknown error when export G-code." msgstr "Erro desconhecido ao exportar G-Code." -#, boost-format -msgid "" -"Failed to save gcode file.\n" +#, possible-boost-format +msgid "Failed to save gcode file.\n" "Error message: %1%.\n" "Source file %2%." -msgstr "" -"Falha ao salvar arquivo de G-Code.\n" +msgstr "Falha ao salvar arquivo de G-Code.\n" "Mensagem de erro: %1%.\n" "Arquivo de origem %2%." msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Cópia do G-Code temporário para o G-Code de saída falhou" -#, boost-format +#, possible-boost-format msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" -msgstr "" -"Agendando o envio para `%1%`. Veja Janela -> Fila de Envio do Anfitrião de " -"Impressão" +msgstr "Agendando o envio para `%1%`. Veja Janela -> Fila de Envio do Anfitrião de Impressão" msgid "Device" msgstr "Dispositivo" msgid "Task Sending" -msgstr "" +msgstr "Envio de tarefa" msgid "Task Sent" -msgstr "" +msgstr "Tarefa Enviada" msgid "Edit multiple printers" -msgstr "" +msgstr "Editar múltiplas impressoras" msgid "Select connected printetrs (0/6)" -msgstr "" +msgstr "Selecione as impressoras conectadas (0/6)" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Select Connected Printetrs (%d/6)" -msgstr "" +msgstr "Selecionar as impressoras conectadas (%d/6)" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "The maximum number of printers that can be selected is %d" -msgstr "" +msgstr "O número máximo de impressoras que podem ser selecionadas é %d" msgid "Offline" msgstr "Desconectado" msgid "No task" -msgstr "" +msgstr "Nenhuma tarefa" msgid "View" msgstr "Visualizar" @@ -3324,23 +3014,22 @@ msgid "N/A" msgstr "N/D" msgid "Edit Printers" -msgstr "" +msgstr "Editar impressoras" msgid "Device Name" -msgstr "" +msgstr "Nome do Dispositivo" msgid "Task Name" -msgstr "" +msgstr "Nome da tarefa" msgid "Device Status" -msgstr "" +msgstr "Status do dispositivo" msgid "Actions" -msgstr "" +msgstr "Ações" -msgid "" -"Please select the devices you would like to manage here (up to 6 devices)" -msgstr "" +msgid "Please select the devices you would like to manage here (up to 6 devices)" +msgstr "Por favor, selecione os dispositivos que você gostaria de gerenciar aqui (até 6 dispositivos)" msgid "Add" msgstr "Adicionar" @@ -3352,22 +3041,22 @@ msgid "Printing" msgstr "Imprimindo" msgid "Upgrading" -msgstr "" +msgstr "Atualizando" msgid "Incompatible" msgstr "Incompatível" msgid "syncing" -msgstr "" +msgstr "sincronizando" msgid "Printing Finish" -msgstr "" +msgstr "Impressão finalizada" msgid "Printing Failed" -msgstr "" +msgstr "Falha na Impressão" msgid "PrintingPause" -msgstr "" +msgstr "Pausa na Impressão" msgid "Prepare" msgstr "Preparar" @@ -3376,28 +3065,28 @@ msgid "Slicing" msgstr "Fatiando" msgid "Pending" -msgstr "" +msgstr "Pendente" msgid "Sending" -msgstr "" +msgstr "Enviando" msgid "Sending Finish" -msgstr "" +msgstr "Envio Finalizado" msgid "Sending Cancel" -msgstr "" +msgstr "Cancelar Envio" msgid "Sending Failed" -msgstr "" +msgstr "Falha no Envio" msgid "Print Success" -msgstr "" +msgstr "Impressão Bem Sucedida" msgid "Print Failed" -msgstr "" +msgstr "Impressão Falhou" msgid "Removed" -msgstr "" +msgstr "Removido" msgid "Resume" msgstr "Continuar" @@ -3406,25 +3095,25 @@ msgid "Stop" msgstr "Parar" msgid "Task Status" -msgstr "" +msgstr "Status da tarefa" msgid "Sent Time" -msgstr "" +msgstr "Tempo de envio" msgid "There are no tasks to be sent!" -msgstr "" +msgstr "Não há tarefas a enviar!" msgid "No historical tasks!" -msgstr "" +msgstr "Nenhuma tarefa no histórico!" msgid "Loading..." msgstr "Carregando..." msgid "No AMS" -msgstr "" +msgstr "Nenhum AMS" msgid "Send to Multi-device" -msgstr "" +msgstr "Enviar para multi-dispositivo" msgid "Preparing print job" msgstr "Preparando trabalho de impressão" @@ -3433,25 +3122,25 @@ msgid "Abnormal print file data. Please slice again" msgstr "Dados de arquivo de impressão anormais. Por favor, fatie novamente" msgid "There is no device available to send printing." -msgstr "" +msgstr "Não há nenhum dispositivo disponível para enviar impressão." msgid "The number of printers in use simultaneously cannot be equal to 0." -msgstr "" +msgstr "O número de impressoras em uso simultaneamente não pode ser igual a 0." msgid "Use External Spool" -msgstr "" +msgstr "Usar Carretel Externo" msgid "Use AMS" -msgstr "" +msgstr "Usar AMS" msgid "Select Printers" -msgstr "" +msgstr "Selecionar impressoras" msgid "Ams Status" -msgstr "" +msgstr "Status do AMS" msgid "Printing Options" -msgstr "" +msgstr "Opções de Impressão" msgid "Bed Leveling" msgstr "Nivelamento da mesa" @@ -3460,25 +3149,22 @@ msgid "Timelapse" msgstr "Timelapse" msgid "Flow Dynamic Calibration" -msgstr "" +msgstr "Calibração de Fluxo Dinâmico" msgid "Send Options" -msgstr "" +msgstr "Opções de envio" msgid "Send" msgstr "Enviar" -msgid "" -"printers at the same time.(It depends on how many devices can undergo " -"heating at the same time.)" -msgstr "" +msgid "printers at the same time.(It depends on how many devices can undergo heating at the same time.)" +msgstr "impressoras ao mesmo tempo. (Depende de quantos dispositivos podem ser submetidos ao mesmo tempo.)" msgid "Wait" -msgstr "Aguardar" +msgstr "Aguarde" -msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" -msgstr "" +msgid "minute each batch.(It depends on how long it takes to complete the heating.)" +msgstr "minuto por cada lote.(Depende de quanto tempo leva para completar o aquecimento.)" msgid "Name is invalid;" msgstr "O nome é inválido;" @@ -3507,18 +3193,11 @@ msgstr "Origem" msgid "Size in X and Y of the rectangular plate." msgstr "Tamanho em X e Y da mesa retangular." -msgid "" -"Distance of the 0,0 G-code coordinate from the front left corner of the " -"rectangle." -msgstr "" -"Distância da coordenada do G-Code 0,0 do canto frontal esquerdo do retângulo." +msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle." +msgstr "Distância da coordenada do G-Code 0,0 do canto frontal esquerdo do retângulo." -msgid "" -"Diameter of the print bed. It is assumed that origin (0,0) is located in the " -"center." -msgstr "" -"Diâmetro da mesa de impressão. É assumido que a origem (0,0) está localizada " -"no centro." +msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center." +msgstr "Diâmetro da mesa de impressão. É assumido que a origem (0,0) está localizada no centro." msgid "Rectangular" msgstr "Retangular" @@ -3556,10 +3235,8 @@ msgstr "Erro! Modelo inválido" msgid "The selected file contains no geometry." msgstr "O arquivo selecionado não contém geometria." -msgid "" -"The selected file contains several disjoint areas. This is not supported." -msgstr "" -"O arquivo selecionado contém várias áreas disjuntas. Isso não é suportado." +msgid "The selected file contains several disjoint areas. This is not supported." +msgstr "O arquivo selecionado contém várias áreas disjuntas. Isso não é suportado." msgid "Choose a file to import bed texture from (PNG/SVG):" msgstr "Escolha um arquivo para importar a textura da mesa (PNG/SVG):" @@ -3570,199 +3247,123 @@ msgstr "Escolha um arquivo STL para importar o modelo da mesa:" msgid "Bed Shape" msgstr "Forma da Mesa" -msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" -msgstr "" -"A temperatura mínima recomendada é inferior a 190 graus ou a temperatura " -"máxima recomendada é superior a 300 graus.\n" +msgid "The recommended minimum temperature is less than 190 degree or the recommended maximum temperature is greater than 300 degree.\n" +msgstr "A temperatura mínima recomendada é inferior a 190 graus ou a temperatura máxima recomendada é superior a 300 graus.\n" -msgid "" -"The recommended minimum temperature cannot be higher than the recommended " -"maximum temperature.\n" -msgstr "" -"A temperatura mínima recomendada não pode ser superior à temperatura máxima " -"recomendada.\n" +msgid "The recommended minimum temperature cannot be higher than the recommended maximum temperature.\n" +msgstr "A temperatura mínima recomendada não pode ser superior à temperatura máxima recomendada.\n" msgid "Please check.\n" msgstr "Por favor, verifique.\n" -msgid "" -"Nozzle may be blocked when the temperature is out of recommended range.\n" -"Please make sure whether to use the temperature to print.\n" -"\n" -msgstr "" -"O bico pode ficar bloqueado quando a temperatura estiver fora da faixa " -"recomendada.\n" -"Por favor, certifique-se de usar a temperatura para imprimir.\n" -"\n" +msgid "Nozzle may be blocked when the temperature is out of recommended range.\n" +"Please make sure whether to use the temperature to print.\n\n" +msgstr "O bico pode ficar bloqueado quando a temperatura estiver fora da faixa recomendada.\n" +"Por favor, certifique-se de usar a temperatura para imprimir.\n\n" -#, c-format, boost-format -msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" -msgstr "" -"A temperatura do bico recomendada para este tipo de filamento é [%d, %d] " -"graus centígrados" +#, possible-c-format, possible-boost-format +msgid "Recommended nozzle temperature of this filament type is [%d, %d] degree centigrade" +msgstr "A temperatura do bico recomendada para este tipo de filamento é [%d, %d] graus centígrados" -msgid "" -"Too small max volumetric speed.\n" +msgid "Too small max volumetric speed.\n" "Reset to 0.5" -msgstr "" -"Fluxo volumétrico máximo está muito baixo.\n" +msgstr "Fluxo volumétrico máximo está muito baixo.\n" "Redefinir para 0,5" -#, c-format, boost-format -msgid "" -"Current chamber temperature is higher than the material's safe temperature," -"it may result in material softening and clogging.The maximum safe " -"temperature for the material is %d" -msgstr "" -"A temperatura da câmara atual está mais alta do que a temperatura segura do " -"material, pode resultar em amolecimento e entupimento do material. A " -"temperatura máxima segura para o material é %d" +#, possible-c-format, possible-boost-format +msgid "Current chamber temperature is higher than the material's safe temperature,it may result in material softening and clogging.The maximum safe temperature for the material is %d" +msgstr "A temperatura da câmara atual está mais alta do que a temperatura segura do material, pode resultar em amolecimento e entupimento do material. A temperatura máxima segura para o material é %d" -msgid "" -"Too small layer height.\n" +msgid "Too small layer height.\n" "Reset to 0.2" -msgstr "" -"Altura da camada muito pequena.\n" +msgstr "Altura da camada muito pequena.\n" "Redefinir para 0,2" -msgid "" -"Too small ironing spacing.\n" +msgid "Too small ironing spacing.\n" "Reset to 0.1" -msgstr "" -"Espaçamento de alisamento muito pequeno.\n" +msgstr "Espaçamento de alisamento muito pequeno.\n" "Redefinir para 0,1" -msgid "" -"Zero initial layer height is invalid.\n" -"\n" +msgid "Zero initial layer height is invalid.\n\n" "The first layer height will be reset to 0.2." -msgstr "" -"Altura inicial da camada zero é inválida.\n" -"\n" +msgstr "Altura inicial da camada zero é inválida.\n\n" "A altura da primeira camada será redefinida para 0.2." -msgid "" -"This setting is only used for model size tunning with small value in some " -"cases.\n" +msgid "This setting is only used for model size tunning with small value in some cases.\n" "For example, when model size has small error and hard to be assembled.\n" -"For large size tuning, please use model scale function.\n" -"\n" +"For large size tuning, please use model scale function.\n\n" "The value will be reset to 0." -msgstr "" -"Esta configuração é usada apenas para ajustar o tamanho do modelo com um " -"valor pequeno em alguns casos.\n" -"Por exemplo, quando o tamanho do modelo tem um pequeno erro e é difícil de " -"ser montado.\n" -"Para ajustes de tamanho grandes, por favor, use a função de escala do " -"modelo.\n" -"\n" +msgstr "Esta configuração é usada apenas para ajustar o tamanho do modelo com um valor pequeno em alguns casos.\n" +"Por exemplo, quando o tamanho do modelo tem um pequeno erro e é difícil de ser montado.\n" +"Para ajustes de tamanho grandes, por favor, use a função de escala do modelo.\n\n" "O valor será redefinido para 0." -msgid "" -"Too large elefant foot compensation is unreasonable.\n" +msgid "Too large elefant foot compensation is unreasonable.\n" "If really have serious elephant foot effect, please check other settings.\n" -"For example, whether bed temperature is too high.\n" -"\n" +"For example, whether bed temperature is too high.\n\n" "The value will be reset to 0." -msgstr "" -"Uma compensação de pé de elefante muito grande é irrazoável.\n" -"Se realmente tiver um efeito sério de pé de elefante, por favor, verifique " -"outras configurações.\n" -"Por exemplo, se a temperatura da mesa estiver muito alta.\n" -"\n" +msgstr "Uma compensação de pé de elefante muito grande é irrazoável.\n" +"Se realmente tiver um efeito sério de pé de elefante, por favor, verifique outras configurações.\n" +"Por exemplo, se a temperatura da mesa estiver muito alta.\n\n" "O valor será redefinido para 0." -msgid "" -"Alternate extra wall does't work well when ensure vertical shell thickness " -"is set to All. " -msgstr "" -"O perímetro extra alternado não funciona bem quando a espessura vertical da " -"está definida para Todos. " +msgid "Alternate extra wall does't work well when ensure vertical shell thickness is set to All. " +msgstr "O perímetro extra alternado não funciona bem quando a espessura vertical da está definida para Todos. " -msgid "" -"Change these settings automatically? \n" -"Yes - Change ensure vertical shell thickness to Moderate and enable " -"alternate extra wall\n" +msgid "Change these settings automatically? \n" +"Yes - Change ensure vertical shell thickness to Moderate and enable alternate extra wall\n" "No - Dont use alternate extra wall" -msgstr "" -"Alterar essas configurações automaticamente?\n" -"Sim - Alterar a espessura vertical do perímetro para Moderado e ativar o " -"perímetro extra alternado\n" +msgstr "Alterar essas configurações automaticamente?\n" +"Sim - Alterar a espessura vertical do perímetro para Moderado e ativar o perímetro extra alternado\n" "Não - Não usar o perímetro extra alternado" -msgid "" -"Prime tower does not work when Adaptive Layer Height or Independent Support " -"Layer Height is on.\n" +msgid "Prime tower does not work when Adaptive Layer Height or Independent Support Layer Height is on.\n" "Which do you want to keep?\n" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height and Independent Support Layer Height" -msgstr "" -"A torre de priming não funciona quando a Altura de Camada Adaptativa ou a " -"Altura de Camada de Suporte Independente está ativada.\n" +msgstr "A torre de priming não funciona quando a Altura de Camada Adaptativa ou a Altura de Camada de Suporte Independente está ativada.\n" "Qual você deseja manter?\n" "SIM - Manter a Torre de Priming\n" -"NÃO - Manter a Altura de Camada Adaptativa e a Altura de Camada de Suporte " -"Independente" +"NÃO - Manter a Altura de Camada Adaptativa e a Altura de Camada de Suporte Independente" -msgid "" -"Prime tower does not work when Adaptive Layer Height is on.\n" +msgid "Prime tower does not work when Adaptive Layer Height is on.\n" "Which do you want to keep?\n" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height" -msgstr "" -"A torre de priming não funciona quando a Altura de Camada Adaptativa está " -"ativada.\n" +msgstr "A torre de limpeza não funciona quando a Altura de Camada Adaptativa está ativa.\n" "Qual você deseja manter?\n" -"SIM - Manter a Torre de Priming\n" -"NÃO - Manter a Altura de Camada Adaptativa" +"SIM — Manter a Torre de Limpeza\n" +"NÃO — Manter a Altura de Camada Adaptativa" -msgid "" -"Prime tower does not work when Independent Support Layer Height is on.\n" +msgid "Prime tower does not work when Independent Support Layer Height is on.\n" "Which do you want to keep?\n" "YES - Keep Prime Tower\n" "NO - Keep Independent Support Layer Height" -msgstr "" -"A torre de priming não funciona quando a Altura da Camada de Suporte " -"Independente está ativada.\n" +msgstr "A torre de priming não funciona quando a Altura da Camada de Suporte Independente está ativada.\n" "Qual você deseja manter?\n" "SIM - Manter a Torre de Priming\n" "NÃO - Manter a Altura da Camada de Suporte Independente" -msgid "" -"While printing by Object, the extruder may collide skirt.\n" +msgid "While printing by Object, the extruder may collide skirt.\n" "Thus, reset the skirt layer to 1 to avoid that." -msgstr "" -"Ao imprimir por Objeto, o extrusor pode colidir com a saia.\n" +msgstr "Ao imprimir por Objeto, o extrusor pode colidir com a saia.\n" "Portanto, redefina a camada da saia para 1 para evitar isso." -msgid "" -"seam_slope_start_height need to be smaller than layer_height.\n" +msgid "seam_slope_start_height need to be smaller than layer_height.\n" "Reset to 0." -msgstr "" -"seam_slope_start_height precisa ser menor que layer_height.\n" +msgstr "seam_slope_start_height precisa ser menor que layer_height.\n" "Redefinir para 0." -msgid "" -"Spiral mode only works when wall loops is 1, support is disabled, top shell " -"layers is 0, sparse infill density is 0 and timelapse type is traditional." -msgstr "" -"O modo espiral só funciona quando o perímetro é igual a 1, o suporte está " -"desativado, as camadas de topo são 0, a densidade de preenchimento não " -"sólido é 0 e o tipo de timelapse é tradicional." +msgid "Spiral mode only works when wall loops is 1, support is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional." +msgstr "O modo espiral só funciona quando o perímetro é igual a 1, o suporte está desativado, as camadas de topo são 0, a densidade de preenchimento não sólido é 0 e o tipo de timelapse é tradicional." msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Mas máquinas com estrutura I3 não gerarão vídeos de timelapse." -msgid "" -"Change these settings automatically? \n" +msgid "Change these settings automatically? \n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" -msgstr "" -"Alterar essas configurações automaticamente? \n" +msgstr "Alterar essas configurações automaticamente? \n" "Sim - Alterar essas configurações e ativar o modo espiral automaticamente\n" "Não - Desistir de usar o modo espiral desta vez" @@ -3845,8 +3446,7 @@ msgid "Paused due to AMS lost" msgstr "Pausado devido à perda do AMS" msgid "Paused due to low speed of the heat break fan" -msgstr "" -"Pausado devido a baixa velocidade do ventilador do bloco de aquecimento" +msgstr "Pausado devido a baixa velocidade do ventilador do bloco de aquecimento" msgid "Paused due to chamber temperature control error" msgstr "Pausado devido a erro no controle de temperatura da câmara" @@ -3896,38 +3496,19 @@ msgstr "Verificação falhou." msgid "Update failed." msgstr "Atualização falhou." -msgid "" -"The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" -"TPU) is not allowed to be loaded." -msgstr "" -"A temperatura atual da câmara ou a temperatura da câmara alvo excede 45℃. " -"Para evitar obstrução do extrusor, não é permitido carregar filamento de " -"baixa temperatura (PLA/PETG/TPU)." +msgid "The current chamber temperature or the target chamber temperature exceeds 45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/TPU) is not allowed to be loaded." +msgstr "A temperatura atual da câmara ou a temperatura da câmara alvo excede 45℃. Para evitar obstrução do extrusor, não é permitido carregar filamento de baixa temperatura (PLA/PETG/TPU)." -msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " -"above 45℃." -msgstr "" -"Filamento de baixa temperatura (PLA/PETG/TPU) está carregado na extrusora. " -"Para evitar obstrução do extrusor, não é permitido ajustar a temperatura da " -"câmara acima de 45℃." +msgid "Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to avoid extruder clogging,it is not allowed to set the chamber temperature above 45℃." +msgstr "Filamento de baixa temperatura (PLA/PETG/TPU) está carregado na extrusora. Para evitar obstrução do extrusor, não é permitido ajustar a temperatura da câmara acima de 45℃." -msgid "" -"When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " -"automatically be set to 0℃." -msgstr "" -"Quando você definir a temperatura da câmara abaixo de 40℃, o controle de " -"temperatura da câmara não será ativado. E a temperatura alvo da câmara será " -"automaticamente definida como 0℃." +msgid "When you set the chamber temperature below 40℃, the chamber temperature control will not be activated. And the target chamber temperature will automatically be set to 0℃." +msgstr "Quando você definir a temperatura da câmara abaixo de 40℃, o controle de temperatura da câmara não será ativado. E a temperatura alvo da câmara será automaticamente definida como 0℃." msgid "Failed to start printing job" msgstr "Falha ao iniciar o trabalho de impressão" -msgid "" -"This calibration does not support the currently selected nozzle diameter" +msgid "This calibration does not support the currently selected nozzle diameter" msgstr "Esta calibração não suporta o diâmetro do bico atualmente selecionado" msgid "Current flowrate cali param is invalid" @@ -3948,31 +3529,21 @@ msgstr "TPU não é suportado pelo AMS." msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF não é suportado pelo AMS." -msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " -"dry it before use." -msgstr "" -"O PVA úmido se tornará flexível e ficará preso dentro do AMS, por favor, " -"tenha cuidado para secá-lo antes de usar." +msgid "Damp PVA will become flexible and get stuck inside AMS,please take care to dry it before use." +msgstr "O PVA úmido se tornará flexível e ficará preso dentro do AMS, por favor, tenha cuidado para secá-lo antes de usar." -msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " -"AMS, please use with caution." -msgstr "" -"Os filamentos CF/GF são duros e quebradiços, é fácil quebrar ou ficar preso " -"no AMS, por favor, use com cautela." +msgid "CF/GF filaments are hard and brittle, It's easy to break or get stuck in AMS, please use with caution." +msgstr "Os filamentos CF/GF são duros e quebradiços, é fácil quebrar ou ficar preso no AMS, por favor, use com cautela." msgid "default" msgstr "padrão" -#, boost-format +#, possible-boost-format msgid "Edit Custom G-code (%1%)" msgstr "Editar G-Code personalizado (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" -msgstr "" -"Marcadores de posição incorporados (Clique duas vezes no item para adicionar " -"ao G-code)" +msgstr "Marcadores de posição incorporados (Clique duas vezes no item para adicionar ao G-code)" msgid "Search gcode placeholders" msgstr "Procurar marcadores de posição do G-code" @@ -4010,7 +3581,7 @@ msgstr "Temperaturas" msgid "Timestamps" msgstr "Carimbos de data/hora" -#, boost-format +#, possible-boost-format msgid "Specific for %1%" msgstr "Específico para %1%" @@ -4032,35 +3603,33 @@ msgstr "Configurações da Impressora" msgid "parameter name" msgstr "nome do parâmetro" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%s can't be percentage" msgstr "%s não pode ser percentagem" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Value %s is out of range, continue?" msgstr "O valor %s está fora do intervalo, continuar?" msgid "Parameter validation" msgstr "Validação de Parâmetros" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Value %s is out of range. The valid range is from %d to %d." msgstr "Valor %s está fora do intervalo. O intervalo válido é de %d para %d." msgid "Value is out of range." msgstr "O valor está fora do intervalo." -#, c-format, boost-format -msgid "" -"Is it %s%% or %s %s?\n" +#, possible-c-format, possible-boost-format +msgid "Is it %s%% or %s %s?\n" "YES for %s%%, \n" "NO for %s %s." -msgstr "" -"É %s%% ou %s %s?\n" +msgstr "É %s%% ou %s %s?\n" "SIM para %s%%, \n" "NÃO para %s %s." -#, boost-format +#, possible-boost-format msgid "Invalid format. Expected vector format: \"%1%\"" msgstr "Formato inválido. Formato de vetor esperado: \"%1%\"" @@ -4125,7 +3694,7 @@ msgid "Display" msgstr "Exibição" msgid "Flushed" -msgstr "Fluido" +msgstr "Limpo" msgid "Tower" msgstr "Torre" @@ -4209,7 +3778,7 @@ msgid "Extruder" msgstr "Extrusora" msgid "Filament change times" -msgstr "Tempo de mudança de filamento" +msgstr "Quantidade de trocas de filamento" msgid "Cost" msgstr "Custo" @@ -4403,13 +3972,9 @@ msgstr "Volume:" msgid "Size:" msgstr "Tamanho:" -#, c-format, boost-format -msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " -"separate the conflicted objects farther (%s <-> %s)." -msgstr "" -"Foram encontrados conflitos de caminhos de G-code na camada %d, z = %.2lf " -"mm. Por favor, separe mais os objetos em conflito (%s <-> %s)." +#, possible-c-format, possible-boost-format +msgid "Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please separate the conflicted objects farther (%s <-> %s)." +msgstr "Foram encontrados conflitos de caminhos de G-code na camada %d, z = %.2lf mm. Por favor, separe mais os objetos em conflito (%s <-> %s)." msgid "An object is layed over the boundary of plate." msgstr "Um objeto está sobre a borda da mesa." @@ -4423,14 +3988,10 @@ msgstr "Um caminho de G-code ultrapassa a borda da mesa." msgid "Only the object being edit is visible." msgstr "Apenas o objeto em edição está visível." -msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" -"Please solve the problem by moving it totally on or off the plate, and " -"confirming that the height is within the build volume." -msgstr "" -"Um objeto está sobre a borda da mesa ou ultrapassa o limite de altura.\n" -"Por favor, resolva o problema movendo-o totalmente para dentro ou para fora " -"da mesa, e confirmando que a altura está dentro do volume de impressão." +msgid "An object is laid over the boundary of plate or exceeds the height limit.\n" +"Please solve the problem by moving it totally on or off the plate, and confirming that the height is within the build volume." +msgstr "Um objeto está sobre a borda da mesa ou ultrapassa o limite de altura.\n" +"Por favor, resolva o problema movendo-o totalmente para dentro ou para fora da mesa, e confirmando que a altura está dentro do volume de impressão." msgid "Calibration step selection" msgstr "Seleção de etapa de calibração" @@ -4450,13 +4011,9 @@ msgstr "Cancelamento de ruído do motor" msgid "Calibration program" msgstr "Programa de calibração" -msgid "" -"The calibration program detects the status of your device automatically to " -"minimize deviation.\n" +msgid "The calibration program detects the status of your device automatically to minimize deviation.\n" "It keeps the device performing optimally." -msgstr "" -"O programa de calibração detecta automaticamente o estado do seu dispositivo " -"para minimizar desvios.\n" +msgstr "O programa de calibração detecta automaticamente o estado do seu dispositivo para minimizar desvios.\n" "Mantém o dispositivo com desempenho ideal." msgid "Calibration Flow" @@ -4510,11 +4067,9 @@ msgstr "Conectar Impressora (LAN)" msgid "Please input the printer access code:" msgstr "Por favor, insira o código de acesso à impressora:" -msgid "" -"You can find it in \"Settings > Network > Connection code\"\n" +msgid "You can find it in \"Settings > Network > Connection code\"\n" "on the printer, as shown in the figure:" -msgstr "" -"Você pode encontrá-lo em \"Configurações > Rede > Código de Conexão\"\n" +msgstr "Você pode encontrá-lo em \"Configurações > Rede > Código de Conexão\"\n" "na impressora, conforme mostrado na figura:" msgid "Invalid input." @@ -4539,7 +4094,7 @@ msgid "Preview" msgstr "Pré-visualizar" msgid "Multi-device" -msgstr "" +msgstr "Multi-dispositivo" msgid "Project" msgstr "Projeto" @@ -4598,7 +4153,7 @@ msgstr "Verificar Atualizações" msgid "Open Network Test" msgstr "Abrir Teste de Rede" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "&About %s" msgstr "&Sobre %s" @@ -4686,10 +4241,10 @@ msgid "Load a model" msgstr "Carregar um modelo" msgid "Import Zip Archive" -msgstr "" +msgstr "Importar Arquivo Zip" msgid "Load models contained within a zip archive" -msgstr "" +msgstr "Carregar modelos contidos em um arquivo zip" msgid "Import Configs" msgstr "Importar Configurações" @@ -4725,7 +4280,7 @@ msgid "Export current plate as G-code" msgstr "Exportar a mesa atual como G-code" msgid "Export Preset Bundle" -msgstr "" +msgstr "Exportar Pacote de Presets" msgid "Export current configuration to files" msgstr "Exportar configuração atual para arquivos" @@ -4893,15 +4448,15 @@ msgid "Export toolpaths as OBJ" msgstr "Exportar trilhas de ferramentas como OBJ" msgid "Open &Slicer" -msgstr "Abrir &Estúdio" +msgstr "Abrir &Fatiador" msgid "Open Slicer" -msgstr "Abrir Estúdio" +msgstr "Abrir Fatiador" msgid "&Quit" msgstr "&Sair" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Quit %s" msgstr "Sair %s" @@ -4914,11 +4469,11 @@ msgstr "&Visualizar" msgid "&Help" msgstr "&Ajuda" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "A file exists with the same name: %s, do you want to override it." msgstr "Já existe um arquivo com o mesmo nome: %s. Deseja substituí-lo?" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "A config exists with the same name: %s, do you want to override it." msgstr "Já existe uma configuração com o mesmo nome: %s. Deseja substituí-la?" @@ -4934,13 +4489,11 @@ msgstr "Não para Todos" msgid "Choose a directory" msgstr "Escolha um diretório" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "There is %d config exported. (Only non-system configs)" msgid_plural "There are %d configs exported. (Only non-system configs)" -msgstr[0] "" -"Foi exportada uma configuração (%d). (Apenas configurações não do sistema)" -msgstr[1] "" -"Foram exportadas %d configurações. (Apenas configurações não do sistema)" +msgstr[0] "Foi exportada uma configuração (%d). (Apenas configurações não do sistema)" +msgstr[1] "Foram exportadas %d configurações. (Apenas configurações não do sistema)" msgid "Export result" msgstr "Resultado da exportação" @@ -4948,25 +4501,16 @@ msgstr "Resultado da exportação" msgid "Select profile to load:" msgstr "Selecione o perfil para carregar:" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "There is %d config imported. (Only non-system and compatible configs)" -msgid_plural "" -"There are %d configs imported. (Only non-system and compatible configs)" -msgstr[0] "" -"Foi importada uma configuração (%d). (Apenas configurações compatíveis e não " -"do sistema)" -msgstr[1] "" -"Foram importadas %d configurações. (Apenas configurações compatíveis e não " -"do sistema)" +msgid_plural "There are %d configs imported. (Only non-system and compatible configs)" +msgstr[0] "Foi importada uma configuração (%d). (Apenas configurações compatíveis e não do sistema)" +msgstr[1] "Foram importadas %d configurações. (Apenas configurações compatíveis e não do sistema)" -msgid "" -"\n" -"Hint: Make sure you have added the corresponding printer before importing " -"the configs." -msgstr "" -"\n" -"Dica: Certifique-se de ter adicionado a impressora correspondente antes de " -"importar as configurações." +msgid "\n" +"Hint: Make sure you have added the corresponding printer before importing the configs." +msgstr "\n" +"Dica: Certifique-se de ter adicionado a impressora correspondente antes de importar as configurações." msgid "Import result" msgstr "Resultado da importação" @@ -4980,14 +4524,12 @@ msgstr "O projeto não está mais disponível." msgid "Filament Settings" msgstr "Configurações do Filamento" -msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +msgid "Do you want to synchronize your personal data from Bambu Cloud? \n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" -msgstr "" -"Você deseja sincronizar seus dados pessoais da Bambu Cloud? \n" +msgstr "Você deseja sincronizar seus dados pessoais da Bambu Cloud? \n" "Isso inclui as seguintes informações:\n" "1. Os perfis de Processo\n" "2. Os perfis de Filamento\n" @@ -4997,42 +4539,28 @@ msgid "Synchronization" msgstr "Sincronização" msgid "The device cannot handle more conversations. Please retry later." -msgstr "" -"O dispositivo não pode lidar com mais conversas. Por favor, tente novamente " -"mais tarde." +msgstr "O dispositivo não pode lidar com mais conversas. Por favor, tente novamente mais tarde." msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "" -"O reprodutor está com problemas. Por favor, reinstale o reprodutor do " -"sistema." +msgstr "O reprodutor está com problemas. Por favor, reinstale o reprodutor do sistema." msgid "The player is not loaded, please click \"play\" button to retry." -msgstr "" -"O reprodutor não está carregado, por favor, clique no botão \"Reproduzir\" " -"para tentar novamente." +msgstr "O reprodutor não está carregado, por favor, clique no botão \"Reproduzir\" para tentar novamente." msgid "Please confirm if the printer is connected." msgstr "Por favor, confirme se a impressora está conectada." -msgid "" -"The printer is currently busy downloading. Please try again after it " -"finishes." -msgstr "" -"A impressora está sendo baixada no momento. Tente novamente após terminar." +msgid "The printer is currently busy downloading. Please try again after it finishes." +msgstr "A impressora está sendo baixada no momento. Tente novamente após terminar." msgid "Printer camera is malfunctioning." msgstr "A câmera da impressora está com problemas." msgid "Problem occured. Please update the printer firmware and try again." -msgstr "" -"Ocorreu um problema. Por favor, atualize o firmware da impressora e tente " -"novamente." +msgstr "Ocorreu um problema. Por favor, atualize o firmware da impressora e tente novamente." -msgid "" -"LAN Only Liveview is off. Please turn on the liveview on printer screen." -msgstr "" -"Liveview via LAN está desativado. Por favor, ative a liveview na tela da " -"impressora." +msgid "LAN Only Liveview is off. Please turn on the liveview on printer screen." +msgstr "Liveview via LAN está desativado. Por favor, ative a liveview na tela da impressora." msgid "Please enter the IP of printer to connect." msgstr "Por favor, digite o IP da impressora para conectar." @@ -5043,12 +4571,8 @@ msgstr "Inicializando..." msgid "Connection Failed. Please check the network and try again" msgstr "Falha na conexão. Por favor, verifique a rede e tente novamente" -msgid "" -"Please check the network and try again, You can restart or update the " -"printer if the issue persists." -msgstr "" -"Por favor, verifique a rede e tente novamente, você pode reiniciar ou " -"atualizar a impressora se o problema persistir." +msgid "Please check the network and try again, You can restart or update the printer if the issue persists." +msgstr "Por favor, verifique a rede e tente novamente, você pode reiniciar ou atualizar a impressora se o problema persistir." msgid "The printer has been logged out and cannot connect." msgstr "A impressora foi desconectada e não pode se conectar." @@ -5059,26 +4583,22 @@ msgstr "Parado." msgid "LAN Connection Failed (Failed to start liveview)" msgstr "Falha na conexão da LAN (Falha ao iniciar a visualização ao vivo)" -msgid "" -"Virtual Camera Tools is required for this task!\n" +msgid "Virtual Camera Tools is required for this task!\n" "Do you want to install them?" -msgstr "" -"É necessário o Virtual Camera Tools para esta tarefa!\n" +msgstr "É necessário o Virtual Camera Tools para esta tarefa!\n" "Deseja instalá-los?" msgid "Downloading Virtual Camera Tools" msgstr "Baixando Ferramentas de Câmera Virtual" -msgid "" -"Another virtual camera is running.\n" +msgid "Another virtual camera is running.\n" "Orca Slicer supports only a single virtual camera.\n" "Do you want to stop this virtual camera?" -msgstr "" -"Outra câmera virtual está em execução.\n" +msgstr "Outra câmera virtual está em execução.\n" "O Orca Slicer suporta apenas uma única câmera virtual.\n" "Deseja parar esta câmera virtual?" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Virtual camera initialize failed (%s)!" msgstr "Falha na inicialização da câmera virtual (%s)!" @@ -5145,7 +4665,7 @@ msgstr "Recarregar lista de arquivos da impressora." msgid "No printers." msgstr "Nenhuma impressora." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Connect failed [%d]!" msgstr "Falha ao conectar [%d]!" @@ -5161,12 +4681,8 @@ msgstr "Falha ao carregar" msgid "Initialize failed (Device connection not ready)!" msgstr "Inicialização falhou (Conexão do dispositivo não está pronta)!" -msgid "" -"Browsing file in SD card is not supported in current firmware. Please update " -"the printer firmware." -msgstr "" -"Procurar arquivo no cartão SD não é suportado no firmware atual. Por favor, " -"atualize o firmware da impressora." +msgid "Browsing file in SD card is not supported in current firmware. Please update the printer firmware." +msgstr "Procurar arquivo no cartão SD não é suportado no firmware atual. Por favor, atualize o firmware da impressora." msgid "Initialize failed (Storage unavailable, insert SD card.)!" msgstr "Inicialização falhou (falha no armazenamento, insira o cartão SD.)!" @@ -5177,25 +4693,20 @@ msgstr "Falha na conexão LAN (Falha para ver o cartão SD)" msgid "Browsing file in SD card is not supported in LAN Only Mode." msgstr "Procurar arquivo no cartão SD não é suportado no Modo Somente LAN." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Initialize failed (%s)!" msgstr "Inicialização falhou (%s)!" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "You are going to delete %u file from printer. Are you sure to continue?" -msgid_plural "" -"You are going to delete %u files from printer. Are you sure to continue?" -msgstr[0] "" -"Você está prestes a excluir %u arquivo da impressora. Tem certeza de que " -"deseja continuar?" -msgstr[1] "" -"Você está prestes a excluir %u arquivos da impressora. Tem certeza de que " -"deseja continuar?" +msgid_plural "You are going to delete %u files from printer. Are you sure to continue?" +msgstr[0] "Você está prestes a excluir %u arquivo da impressora. Tem certeza de que deseja continuar?" +msgstr[1] "Você está prestes a excluir %u arquivos da impressora. Tem certeza de que deseja continuar?" msgid "Delete files" msgstr "Excluir arquivos" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Do you want to delete the file '%s' from printer?" msgstr "Deseja excluir o arquivo '%s' da impressora?" @@ -5211,23 +4722,17 @@ msgstr "Falha ao obter informação do modelo da impressora." msgid "Failed to parse model information." msgstr "Falha ao analisar a informação do modelo." -msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." -msgstr "" -"O arquivo .gcode.3mf não contém dados de G-code. Por favor, fatie com Orca " -"Slicer e exporte um novo arquivo .gcode.3mf." +msgid "The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer and export a new .gcode.3mf file." +msgstr "O arquivo .gcode.3mf não contém dados de G-code. Por favor, fatie com Orca Slicer e exporte um novo arquivo .gcode.3mf." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "File '%s' was lost! Please download it again." msgstr "O arquivo '%s' foi perdido! Por favor, baixe-o novamente." -#, c-format, boost-format -msgid "" -"File: %s\n" +#, possible-c-format, possible-boost-format +msgid "File: %s\n" "Title: %s\n" -msgstr "" -"Arquivo: %s\n" +msgstr "Arquivo: %s\n" "Título: %s\n" msgid "Download waiting..." @@ -5242,16 +4747,12 @@ msgstr "Abrir Pasta" msgid "Download finished" msgstr "Download concluído" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Downloading %d%%..." msgstr "Baixando %d%%..." -msgid "" -"Reconnecting the printer, the operation cannot be completed immediately, " -"please try again later." -msgstr "" -"Reconectando a impressora, a operação não pôde ser concluída imediatamente, " -"por favor, tente novamente mais tarde." +msgid "Reconnecting the printer, the operation cannot be completed immediately, please try again later." +msgstr "Reconectando a impressora, a operação não pôde ser concluída imediatamente, por favor, tente novamente mais tarde." msgid "File does not exist." msgstr "O arquivo não existe." @@ -5265,7 +4766,7 @@ msgstr "Não suportado na versão atual da impressora." msgid "Storage unavailable, insert SD card." msgstr "Armazenamento indisponível, insira um cartão SD." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Error code: %d" msgstr "Código de erro: %d" @@ -5320,21 +4821,16 @@ msgstr "Camada: N/A" msgid "Clear" msgstr "Limpar" -msgid "" -"You have completed printing the mall model, \n" +msgid "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." -msgstr "" -"Você concluiu a impressão do modelo de shopping, \n" +msgstr "Você concluiu a impressão do modelo de shopping, \n" "mas a sincronização das informações de avaliação falhou." msgid "How do you like this printing file?" msgstr "O que você achou deste arquivo de impressão?" -msgid "" -"(The model has already been rated. Your rating will overwrite the previous " -"rating.)" -msgstr "" -"(O modelo já foi avaliado. Sua avaliação substituirá a avaliação anterior.)" +msgid "(The model has already been rated. Your rating will overwrite the previous rating.)" +msgstr "(O modelo já foi avaliado. Sua avaliação substituirá a avaliação anterior.)" msgid "Rate" msgstr "Avaliar" @@ -5396,24 +4892,20 @@ msgstr "Baixando..." msgid "Cloud Slicing..." msgstr "Fatiando na Nuvem..." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "In Cloud Slicing Queue, there are %s tasks ahead." msgstr "Na Fila de Fatiamento na Nuvem, existem %s tarefas na frente." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Layer: %s" msgstr "Camada: %s" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Layer: %d/%d" msgstr "Camada: %d/%d" -msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." -msgstr "" -"Aqueça o bico a mais de 170 graus antes de carregar ou descarregar o " -"filamento." +msgid "Please heat the nozzle to above 170 degree before loading or unloading filament." +msgstr "Aqueça o bico a mais de 170 graus antes de carregar ou descarregar o filamento." msgid "Still unload" msgstr "Ainda descarregando" @@ -5424,13 +4916,8 @@ msgstr "Ainda carregando" msgid "Please select an AMS slot before calibration" msgstr "Selecione um slot AMS antes da calibração" -msgid "" -"Cannot read filament info: the filament is loaded to the tool head,please " -"unload the filament and try again." -msgstr "" -"Não é possível ler as informações do filamento: o filamento está carregado " -"na cabeça da ferramenta, por favor, descarregue o filamento e tente " -"novamente." +msgid "Cannot read filament info: the filament is loaded to the tool head,please unload the filament and try again." +msgstr "Não é possível ler as informações do filamento: o filamento está carregado na cabeça da ferramenta, por favor, descarregue o filamento e tente novamente." msgid "This only takes effect during printing" msgstr "Isso só tem efeito durante a impressão" @@ -5495,22 +4982,14 @@ msgstr " Nenhum balde de armazenamento correspondente\n" msgid " can not be opened\n" msgstr " não pode ser aberto\n" -msgid "" -"The following issues occurred during the process of uploading images. Do you " -"want to ignore them?\n" -"\n" -msgstr "" -"Os seguintes problemas ocorreram durante o processo de carregamento das " -"imagens. Você deseja ignorá-los?\n" -"\n" +msgid "The following issues occurred during the process of uploading images. Do you want to ignore them?\n\n" +msgstr "Os seguintes problemas ocorreram durante o processo de carregamento das imagens. Você deseja ignorá-los?\n\n" msgid "info" msgstr "informação" msgid "Synchronizing the printing results. Please retry a few seconds later." -msgstr "" -"Sincronizando os resultados da impressão. Por favor, tente novamente alguns " -"segundos depois." +msgstr "Sincronizando os resultados da impressão. Por favor, tente novamente alguns segundos depois." msgid "Upload failed\n" msgstr "Falha no envio\n" @@ -5518,44 +4997,28 @@ msgstr "Falha no envio\n" msgid "obtaining instance_id failed\n" msgstr "falha ao obter o instance_id\n" -msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" -"\n" +msgid "Your comment result cannot be uploaded due to some reasons. As follows:\n\n" " error code: " -msgstr "" -"O resultado do seu comentário não pode ser enviado devido a alguns motivos. " -"Como segue:\n" -"\n" +msgstr "O resultado do seu comentário não pode ser enviado devido a alguns motivos. Como segue:\n\n" " código de erro: " msgid "error message: " msgstr "mensagem de erro: " -msgid "" -"\n" -"\n" +msgid "\n\n" "Would you like to redirect to the webpage for rating?" -msgstr "" -"\n" -"\n" +msgstr "\n\n" "Gostaria de ser redirecionado para a página da web para avaliar?" -msgid "" -"Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" -msgstr "" -"Algumas de suas imagens não puderam ser carregadas. Gostaria de ser " -"redirecionado para a página da web para avaliar?" +msgid "Some of your images failed to upload. Would you like to redirect to the webpage for rating?" +msgstr "Algumas de suas imagens não puderam ser carregadas. Gostaria de ser redirecionado para a página da web para avaliar?" msgid "You can select up to 16 images." msgstr "Você pode selecionar até 16 imagens." -msgid "" -"At least one successful print record of this print profile is required \n" +msgid "At least one successful print record of this print profile is required \n" "to give a positive rating(4 or 5stars)." -msgstr "" -"Pelo menos um registro de impressão bem-sucedido deste perfil de impressão é " -"necessário \n" +msgstr "Pelo menos um registro de impressão bem-sucedido deste perfil de impressão é necessário \n" "para dar uma avaliação positiva (4 ou 5 estrelas)." msgid "Status" @@ -5567,27 +5030,27 @@ msgstr "Atualizar" msgid "Don't show again" msgstr "Não mostrar novamente" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%s error" msgstr "Erro %s" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%s has encountered an error" msgstr "%s encontrou um erro" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%s warning" msgstr "Aviso %s" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%s has a warning" msgstr "%s tem um aviso" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%s info" msgstr "Informação %s" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%s information" msgstr "Informação %s" @@ -5597,22 +5060,20 @@ msgstr "Pular" msgid "Newer 3mf version" msgstr "Nova versão 3mf" -msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " -"version." -msgstr "" +msgid "The 3mf file version is in Beta and it is newer than the current OrcaSlicer version." +msgstr "A versão 3mf do arquivo está em Beta e é mais nova do que a versão atual do OrcaSlicer." msgid "If you would like to try Orca Slicer Beta, you may click to" -msgstr "" +msgstr "Se você gostaria de testar o Orca Slicer Beta, clique para" msgid "Download Beta Version" msgstr "Baixar versão beta" msgid "The 3mf file version is newer than the current Orca Slicer version." -msgstr "" +msgstr "A versão do arquivo 3mf é mais recente que a versão atual do Orca Slicer." msgid "Update your Orca Slicer could enable all functionality in the 3mf file." -msgstr "" +msgstr "Atualizar seu Orca Slicer poderia permitir todas as funcionalidades do arquivo 3mf." msgid "Current Version: " msgstr "Versão Atual: " @@ -5671,19 +5132,19 @@ msgstr "Abrir Pasta." msgid "Safely remove hardware." msgstr "Remover hardware com segurança." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%1$d Object has custom supports." msgid_plural "%1$d Objects have custom supports." msgstr[0] "%1$d Objeto tem suportes personalizados." msgstr[1] "%1$d Objetos têm suportes personalizados." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%1$d Object has color painting." msgid_plural "%1$d Objects have color painting." msgstr[0] "%1$d Objeto tem pintura colorida." msgstr[1] "%1$d Objetos têm pintura colorida." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%1$d object was loaded as a part of cut object." msgid_plural "%1$d objects were loaded as parts of cut object" msgstr[0] "%1$d objeto foi carregado como peça do objeto cortado." @@ -5749,12 +5210,8 @@ msgstr "Camadas" msgid "Range" msgstr "Intervalo" -msgid "" -"The application cannot run normally because OpenGL version is lower than " -"2.0.\n" -msgstr "" -"A aplicação não pode ser executada normalmente porque a versão do OpenGL é " -"inferior a 2.0.\n" +msgid "The application cannot run normally because OpenGL version is lower than 2.0.\n" +msgstr "A aplicação não pode ser executada normalmente porque a versão do OpenGL é inferior a 2.0.\n" msgid "Please upgrade your graphics card driver." msgstr "Por favor, atualize o driver da sua placa de vídeo." @@ -5762,12 +5219,10 @@ msgstr "Por favor, atualize o driver da sua placa de vídeo." msgid "Unsupported OpenGL version" msgstr "Versão do OpenGL não suportada" -#, c-format, boost-format -msgid "" -"Unable to load shaders:\n" +#, possible-c-format, possible-boost-format +msgid "Unable to load shaders:\n" "%s" -msgstr "" -"Incapaz de carregar os shaders:\n" +msgstr "Incapaz de carregar os shaders:\n" "%s" msgid "Error loading shaders" @@ -5790,12 +5245,8 @@ msgstr "Sensibilidade da pausa é" msgid "Enable detection of build plate position" msgstr "Ativar detecção da posição da mesa" -msgid "" -"The localization tag of build plate is detected, and printing is paused if " -"the tag is not in predefined range." -msgstr "" -"A etiqueta de localização da mesa é detectada e a impressão é pausada se a " -"etiqueta não estiver na faixa predefinida." +msgid "The localization tag of build plate is detected, and printing is paused if the tag is not in predefined range." +msgstr "A etiqueta de localização da mesa é detectada e a impressão é pausada se a etiqueta não estiver na faixa predefinida." msgid "First Layer Inspection" msgstr "Inspeção da Primeira Camada" @@ -5810,10 +5261,10 @@ msgid "Filament Tangle Detect" msgstr "Detecção de emaranhado de filamento" msgid "Nozzle Clumping Detection" -msgstr "" +msgstr "Detecção de acúmulo no bico" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "" +msgstr "Verifica se o bico está com filamento acumulado ou outros objetos estranhos." msgid "Nozzle Type" msgstr "Tipo de bico" @@ -5824,7 +5275,7 @@ msgstr "Aço inoxidável" msgid "Hardened Steel" msgstr "Aço endurecido" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%.1f" msgstr "%.1f" @@ -5864,7 +5315,7 @@ msgstr "Editar nome da mesa atual" msgid "Customize current plate" msgstr "Personalizar a mesa atual" -#, boost-format +#, possible-boost-format msgid " plate %1%:" msgstr " mesa %1%:" @@ -5902,7 +5353,7 @@ msgid "Bed type" msgstr "Tipo de mesa" msgid "Flushing volumes" -msgstr "Volumes de lavagem" +msgstr "Volumes de Limpeza" msgid "Add one filament" msgstr "Adicionar um filamento" @@ -5919,28 +5370,17 @@ msgstr "Definir filamentos para usar" msgid "Search plate, object and part." msgstr "Pesquisar mesa, objeto e peça." -msgid "" -"No AMS filaments. Please select a printer in 'Device' page to load AMS info." -msgstr "" -"Sem filamentos AMS. Por favor, selecione uma impressora na página " -"'Dispositivo' para carregar informações AMS." +msgid "No AMS filaments. Please select a printer in 'Device' page to load AMS info." +msgstr "Sem filamentos AMS. Por favor, selecione uma impressora na página 'Dispositivo' para carregar informações AMS." msgid "Sync filaments with AMS" msgstr "Sincronizar filamentos com AMS" -msgid "" -"Sync filaments with AMS will drop all current selected filament presets and " -"colors. Do you want to continue?" -msgstr "" -"Sincronizar filamentos com AMS eliminará todas os presets de filamento e " -"cores selecionadas atualmente. Deseja continuar?" +msgid "Sync filaments with AMS will drop all current selected filament presets and colors. Do you want to continue?" +msgstr "Sincronizar filamentos com AMS eliminará todas os presets de filamento e cores selecionadas atualmente. Deseja continuar?" -msgid "" -"Already did a synchronization, do you want to sync only changes or resync " -"all?" -msgstr "" -"Já foi feita uma sincronização, deseja sincronizar apenas as alterações ou " -"ressincronizar tudo?" +msgid "Already did a synchronization, do you want to sync only changes or resync all?" +msgstr "Já foi feita uma sincronização, deseja sincronizar apenas as alterações ou ressincronizar tudo?" msgid "Sync" msgstr "Sincronizar" @@ -5951,28 +5391,18 @@ msgstr "Ressincronizar" msgid "There are no compatible filaments, and sync is not performed." msgstr "Não há filamentos compatíveis, e a sincronização não é realizada." -msgid "" -"There are some unknown filaments mapped to generic preset. Please update " -"Orca Slicer or restart Orca Slicer to check if there is an update to system " -"presets." -msgstr "" -"Alguns filamentos desconhecidos foram mapeados para preset genérico. Por " -"favor, atualize o Orca Slicer ou reinicie o Orca Slicer para verificar se há " -"uma atualização para presets do sistema." +msgid "There are some unknown filaments mapped to generic preset. Please update Orca Slicer or restart Orca Slicer to check if there is an update to system presets." +msgstr "Alguns filamentos desconhecidos foram mapeados para preset genérico. Por favor, atualize o Orca Slicer ou reinicie o Orca Slicer para verificar se há uma atualização para presets do sistema." -#, boost-format +#, possible-boost-format msgid "Do you want to save changes to \"%1%\"?" msgstr "Deseja salvar as alterações em \"%1%\"?" -#, c-format, boost-format -msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " -"computer." -msgstr "" -"Desmontado com sucesso. O dispositivo %s(%s) agora pode ser removido com " -"segurança do computador." +#, possible-c-format, possible-boost-format +msgid "Successfully unmounted. The device %s(%s) can now be safely removed from the computer." +msgstr "Desmontado com sucesso. O dispositivo %s(%s) agora pode ser removido com segurança do computador." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Ejecting of device %s(%s) has failed." msgstr "A ejeção do dispositivo %s(%s) falhou." @@ -5982,30 +5412,14 @@ msgstr "Projeto não salvo anterior detectado, deseja restaurá-lo?" msgid "Restore" msgstr "Restaurar" -msgid "" -"The current hot bed temperature is relatively high. The nozzle may be " -"clogged when printing this filament in a closed enclosure. Please open the " -"front door and/or remove the upper glass." -msgstr "" -"A temperatura atual da mesa aquecida está relativamente alta. A boquilha " -"pode ficar obstruída ao imprimir este filamento em um compartimento fechado. " -"Por favor, abra a porta frontal e/ou remova o vidro superior." +msgid "The current hot bed temperature is relatively high. The nozzle may be clogged when printing this filament in a closed enclosure. Please open the front door and/or remove the upper glass." +msgstr "A temperatura atual da mesa aquecida está relativamente alta. A boquilha pode ficar obstruída ao imprimir este filamento em um compartimento fechado. Por favor, abra a porta frontal e/ou remova o vidro superior." -msgid "" -"The nozzle hardness required by the filament is higher than the default " -"nozzle hardness of the printer. Please replace the hardened nozzle or " -"filament, otherwise, the nozzle will be attrited or damaged." -msgstr "" -"A dureza do bico necessária pelo filamento é maior do que a dureza padrão do " -"bico da impressora. Por favor, substitua a boquilha endurecida ou o " -"filamento, caso contrário, a boquilha será desgastada ou danificada." +msgid "The nozzle hardness required by the filament is higher than the default nozzle hardness of the printer. Please replace the hardened nozzle or filament, otherwise, the nozzle will be attrited or damaged." +msgstr "A dureza do bico necessária pelo filamento é maior do que a dureza padrão do bico da impressora. Por favor, substitua a boquilha endurecida ou o filamento, caso contrário, a boquilha será desgastada ou danificada." -msgid "" -"Enabling traditional timelapse photography may cause surface imperfections. " -"It is recommended to change to smooth mode." -msgstr "" -"A habilitação da fotografia tradicional em timelapse pode causar " -"imperfeições na superfície. É recomendado mudar para o modo suave." +msgid "Enabling traditional timelapse photography may cause surface imperfections. It is recommended to change to smooth mode." +msgstr "A habilitação da fotografia tradicional em timelapse pode causar imperfeições na superfície. É recomendado mudar para o modo suave." msgid "Expand sidebar" msgstr "Expandir barra lateral" @@ -6013,35 +5427,26 @@ msgstr "Expandir barra lateral" msgid "Collapse sidebar" msgstr "Recolher barra lateral" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Loading file: %s" msgstr "Carregando arquivo: %s" msgid "The 3mf is not supported by OrcaSlicer, load geometry data only." -msgstr "" -"O 3mf não é suportado pelo OrcaSlicer, carregar apenas dados de geometria." +msgstr "O 3mf não é suportado pelo OrcaSlicer, carregar apenas dados de geometria." msgid "Load 3mf" msgstr "Carregar 3mf" -#, c-format, boost-format -msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" -msgstr "" -"A versão %s do 3mf é mais recente do que a versão %s do %s, encontradas as " -"seguintes chaves não reconhecidas:" +#, possible-c-format, possible-boost-format +msgid "The 3mf's version %s is newer than %s's version %s, Found following keys unrecognized:" +msgstr "A versão %s do 3mf é mais recente do que a versão %s do %s, encontradas as seguintes chaves não reconhecidas:" msgid "You'd better upgrade your software.\n" msgstr "Será melhor atualizar o seu software.\n" -#, c-format, boost-format -msgid "" -"The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your " -"software." -msgstr "" -"A versão %s do 3mf é mais recente do que a versão %s do %s, sugerimos " -"atualizar seu software." +#, possible-c-format, possible-boost-format +msgid "The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your software." +msgstr "A versão %s do 3mf é mais recente do que a versão %s do %s, sugerimos atualizar seu software." msgid "Invalid values found in the 3mf:" msgstr "Valores inválidos encontrados no 3mf:" @@ -6050,37 +5455,25 @@ msgid "Please correct them in the param tabs" msgstr "Por favor, corrija-os nas guias de parâmetros" msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "" -"O 3mf possui os seguintes G-codes modificados em presets de filamento ou " -"impressora:" +msgstr "O 3mf possui os seguintes G-codes modificados em presets de filamento ou impressora:" -msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" -msgstr "" -"Por favor, confirme se esses G-codes modificados são seguros para evitar " -"qualquer dano à máquina!" +msgid "Please confirm that these modified G-codes are safe to prevent any damage to the machine!" +msgstr "Por favor, confirme se esses G-codes modificados são seguros para evitar qualquer dano à máquina!" msgid "Modified G-codes" msgstr "G-codes modificados" msgid "The 3mf has following customized filament or printer presets:" -msgstr "" -"O 3mf possui os seguintes perfis de filamento ou impressora personalizados:" +msgstr "O 3mf possui os seguintes perfis de filamento ou impressora personalizados:" -msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " -"damage to the machine!" -msgstr "" -"Por favor, confirme se os G-codes dentro desses presets são seguros para " -"evitar qualquer dano à máquina!" +msgid "Please confirm that the G-codes within these presets are safe to prevent any damage to the machine!" +msgstr "Por favor, confirme se os G-codes dentro desses presets são seguros para evitar qualquer dano à máquina!" msgid "Customized Preset" msgstr "Perfil Personalizado" msgid "Name of components inside step file is not UTF8 format!" -msgstr "" -"O nome dos componentes dentro do arquivo STEP não está no formato UTF-8!" +msgstr "O nome dos componentes dentro do arquivo STEP não está no formato UTF-8!" msgid "The name may show garbage characters!" msgstr "O nome pode exibir caracteres inválidos!" @@ -6088,11 +5481,9 @@ msgstr "O nome pode exibir caracteres inválidos!" msgid "Remember my choice." msgstr "Lembrar minha escolha." -#, boost-format +#, possible-boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." -msgstr "" -"Falha ao carregar o arquivo \"%1%\". Foi encontrada uma configuração " -"inválida." +msgstr "Falha ao carregar o arquivo \"%1%\". Foi encontrada uma configuração inválida." msgid "Objects with zero volume removed" msgstr "Objetos com volume zero removidos" @@ -6100,25 +5491,20 @@ msgstr "Objetos com volume zero removidos" msgid "The volume of the object is zero" msgstr "O volume do objeto é zero" -#, c-format, boost-format -msgid "" -"The object from file %s is too small, and maybe in meters or inches.\n" +#, possible-c-format, possible-boost-format +msgid "The object from file %s is too small, and maybe in meters or inches.\n" " Do you want to scale to millimeters?" -msgstr "" -"O objeto do arquivo %s é muito pequeno e pode estar em metros ou polegadas.\n" +msgstr "O objeto do arquivo %s é muito pequeno e pode estar em metros ou polegadas.\n" "Deseja dimensioná-lo para milímetros?" msgid "Object too small" msgstr "Objeto muito pequeno" -msgid "" -"This file contains several objects positioned at multiple heights.\n" +msgid "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" "the file be loaded as a single object having multiple parts?" -msgstr "" -"Este arquivo contém vários objetos posicionados em alturas múltiplas.\n" -"Em vez de considerá-los como múltiplos objetos, o arquivo deve ser " -"carregado\n" +msgstr "Este arquivo contém vários objetos posicionados em alturas múltiplas.\n" +"Em vez de considerá-los como múltiplos objetos, o arquivo deve ser carregado\n" "como um único objeto com múltiplas peças?" msgid "Multi-part object detected" @@ -6133,12 +5519,8 @@ msgstr "Objeto com múltiplas peças foi detectado" msgid "The file does not contain any geometry data." msgstr "O arquivo não contém dados de geometria." -msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" -msgstr "" -"Seu objeto parece ser muito grande. Deseja dimensioná-lo para caber na mesa " -"de aquecimento automaticamente?" +msgid "Your object appears to be too large, Do you want to scale it down to fit the heat bed automatically?" +msgstr "Seu objeto parece ser muito grande. Deseja dimensioná-lo para caber na mesa de aquecimento automaticamente?" msgid "Object too large" msgstr "Objeto muito grande" @@ -6155,12 +5537,10 @@ msgstr "Salvar arquivo como:" msgid "Export OBJ file:" msgstr "Exportar arquivo OBJ:" -#, c-format, boost-format -msgid "" -"The file %s already exists\n" +#, possible-c-format, possible-boost-format +msgid "The file %s already exists\n" "Do you want to replace it?" -msgstr "" -"O arquivo %s já existe\n" +msgstr "O arquivo %s já existe\n" "Deseja substituí-lo?" msgid "Comfirm Save As" @@ -6169,12 +5549,10 @@ msgstr "Confirmar Salvar Como" msgid "Delete object which is a part of cut object" msgstr "Excluir objeto que é uma peça do objeto cortado" -msgid "" -"You try to delete an object which is a part of a cut object.\n" +msgid "You try to delete an object which is a part of a cut object.\n" "This action will break a cut correspondence.\n" "After that model consistency can't be guaranteed." -msgstr "" -"Você está tentando excluir um objeto que é peça de um objeto cortado.\n" +msgstr "Você está tentando excluir um objeto que é peça de um objeto cortado.\n" "Essa ação quebrará uma correspondência de corte.\n" "Após isso, a consistência do modelo não pode ser garantida." @@ -6229,30 +5607,23 @@ msgstr "Dados inválidos" msgid "Slicing Canceled" msgstr "Fatiamento Cancelado" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Slicing Plate %d" msgstr "Fatiando Mesa %d" msgid "Please resolve the slicing errors and publish again." msgstr "Por favor, resolva os erros de fatiamento e publique novamente." -msgid "" -"Network Plug-in is not detected. Network related features are unavailable." -msgstr "" -"O plug-in de rede não está detectado. Recursos relacionados à rede estão " -"indisponíveis." +msgid "Network Plug-in is not detected. Network related features are unavailable." +msgstr "O plug-in de rede não está detectado. Recursos relacionados à rede estão indisponíveis." -msgid "" -"Preview only mode:\n" +msgid "Preview only mode:\n" "The loaded file contains gcode only, Can not enter the Prepare page" -msgstr "" -"Modo somente de visualização:\n" -"O arquivo carregado contém apenas código G, não é possível acessar a página " -"de Preparação" +msgstr "Modo somente de visualização:\n" +"O arquivo carregado contém apenas código G, não é possível acessar a página de Preparação" msgid "You can keep the modified presets to the new project or discard them" -msgstr "" -"Você pode manter os presets modificados no novo projeto ou descartá-los" +msgstr "Você pode manter os presets modificados no novo projeto ou descartá-los" msgid "Creating a new project" msgstr "Criando um novo projeto" @@ -6260,14 +5631,10 @@ msgstr "Criando um novo projeto" msgid "Load project" msgstr "Carregar Projeto" -msgid "" -"Failed to save the project.\n" -"Please check whether the folder exists online or if other programs open the " -"project file." -msgstr "" -"Falha ao salvar o projeto.\n" -"Por favor, verifique se a pasta existe online ou se outros programas estão " -"com o arquivo do projeto aberto." +msgid "Failed to save the project.\n" +"Please check whether the folder exists online or if other programs open the project file." +msgstr "Falha ao salvar o projeto.\n" +"Por favor, verifique se a pasta existe online ou se outros programas estão com o arquivo do projeto aberto." msgid "Save project" msgstr "Salvar Projeto" @@ -6279,24 +5646,20 @@ msgid "prepare 3mf file..." msgstr "preparar o arquivo 3mf..." msgid "Download failed, unknown file format." -msgstr "" +msgstr "Baixar falhou, formato de arquivo desconhecido." msgid "downloading project ..." msgstr "baixando projeto..." msgid "Download failed, File size exception." -msgstr "" +msgstr "Baixar falhou, erro no tamanho do arquivo." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Project downloaded %d%%" msgstr "Projeto baixado %d%%" -msgid "" -"Importing to Orca Slicer failed. Please download the file and manually " -"import it." -msgstr "" -"A importação para o Orca Slicer falhou. Por favor, baixe o arquivo e importe " -"manualmente." +msgid "Importing to Orca Slicer failed. Please download the file and manually import it." +msgstr "A importação para a Orca Slicer falhou. Por favor, baixe o arquivo e importe manualmente." msgid "Import SLA archive" msgstr "Importar arquivo SLA" @@ -6311,18 +5674,18 @@ msgid "Error occurs while loading G-code file" msgstr "Erro ocorreu ao carregar o arquivo de código G" #. TRN %1% is archive path -#, boost-format +#, possible-boost-format msgid "Loading of a ZIP archive on path %1% has failed." -msgstr "" +msgstr "O carregamento de um arquivo ZIP no caminho %1% falhou." #. TRN: First argument = path to file, second argument = error description -#, boost-format +#, possible-boost-format msgid "Failed to unzip file to %1%: %2%" -msgstr "" +msgstr "Falha ao descompactar arquivo para %1%: %2%" -#, boost-format +#, possible-boost-format msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." -msgstr "" +msgstr "Falha ao encontrar arquivo descompactado em %1%. Descompactação do arquivo falhou." msgid "Drop project file" msgstr "Solte o arquivo do projeto" @@ -6370,68 +5733,51 @@ msgid "The provided file name is not valid." msgstr "O nome de arquivo fornecido não é válido." msgid "The following characters are not allowed by a FAT file system:" -msgstr "" -"Os seguintes caracteres não são permitidos por um sistema de arquivos FAT:" +msgstr "Os seguintes caracteres não são permitidos por um sistema de arquivos FAT:" msgid "Save Sliced file as:" msgstr "Salvar arquivo fatiado como:" -#, c-format, boost-format -msgid "" -"The file %s has been sent to the printer's storage space and can be viewed " -"on the printer." -msgstr "" -"O arquivo %s foi enviado para o espaço de armazenamento da impressora e pode " -"ser visualizado na impressora." +#, possible-c-format, possible-boost-format +msgid "The file %s has been sent to the printer's storage space and can be viewed on the printer." +msgstr "O arquivo %s foi enviado para o espaço de armazenamento da impressora e pode ser visualizado na impressora." -msgid "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be kept. You may fix the meshes and try agian." -msgstr "" -"Não é possível executar a operação booleana em malhas de modelo. Somente " -"partes positivas serão mantidas. Você pode consertar as malhas e tentar " -"novamente." +msgid "Unable to perform boolean operation on model meshes. Only positive parts will be kept. You may fix the meshes and try agian." +msgstr "Não é possível executar a operação booleana em malhas de modelo. Somente partes positivas serão mantidas. Você pode consertar as malhas e tentar novamente." -#, boost-format +#, possible-boost-format msgid "Reason: part \"%1%\" is empty." msgstr "Motivo: parte \"%1%\" está vazia." -#, boost-format +#, possible-boost-format msgid "Reason: part \"%1%\" does not bound a volume." msgstr "Motivo: parte \"%1%\" não está vinculada a um volume." -#, boost-format +#, possible-boost-format msgid "Reason: part \"%1%\" has self intersection." msgstr "Motivo: parte \"%1%\" tem auto-intersecção." -#, boost-format +#, possible-boost-format msgid "Reason: \"%1%\" and another part have no intersection." msgstr "Motivo: \"%1%\" e outra parte não tem intersecção." -msgid "" -"Are you sure you want to store original SVGs with their local paths into the " -"3MF file?\n" +msgid "Are you sure you want to store original SVGs with their local paths into the 3MF file?\n" "If you hit 'NO', all SVGs in the project will not be editable any more." -msgstr "" -"Você tem certeza de que deseja armazenar os SVGs originais com seus caminhos " -"locais no arquivo 3MF?\n" +msgstr "Você tem certeza de que deseja armazenar os SVGs originais com seus caminhos locais no arquivo 3MF?\n" "Se pressionar 'NÃO', todos os SVGs no projeto não serão mais editáveis." msgid "Private protection" msgstr "Proteção privada" msgid "Is the printer ready? Is the print sheet in place, empty and clean?" -msgstr "" -"A impressora está pronta? O folha de impressão está no lugar, vazia e limpa?" +msgstr "A impressora está pronta? O folha de impressão está no lugar, vazia e limpa?" msgid "Upload and Print" msgstr "Enviar e Imprimir" -msgid "" -"Print By Object: \n" +msgid "Print By Object: \n" "Suggest to use auto-arrange to avoid collisions when printing." -msgstr "" -"Imprimir por objeto: \n" +msgstr "Imprimir por objeto: \n" "Sugere-se usar o auto-arranjo para evitar colisões ao imprimir." msgid "Send G-code" @@ -6441,9 +5787,7 @@ msgid "Send to printer" msgstr "Enviar para a impressora" msgid "Custom supports and color painting were removed before repairing." -msgstr "" -"Os suportes personalizados e a pintura de cores foram removidos antes do " -"reparo." +msgstr "Os suportes personalizados e a pintura de cores foram removidos antes do reparo." msgid "Optimize Rotation" msgstr "Otimizar Rotação" @@ -6454,61 +5798,51 @@ msgstr "Número inválido" msgid "Plate Settings" msgstr "Configurações da Mesa" -#, boost-format +#, possible-boost-format msgid "Number of currently selected parts: %1%\n" msgstr "Número de peças atualmente selecionadas: %1%\n" -#, boost-format +#, possible-boost-format msgid "Number of currently selected objects: %1%\n" msgstr "Número de objetos atualmente selecionados: %1%\n" -#, boost-format +#, possible-boost-format msgid "Part name: %1%\n" msgstr "Nome da peça: %1%\n" -#, boost-format +#, possible-boost-format msgid "Object name: %1%\n" msgstr "Nome do objeto: %1%\n" -#, boost-format +#, possible-boost-format msgid "Size: %1% x %2% x %3% in\n" msgstr "Tamanho: %1% x %2% x %3% pol\n" -#, boost-format +#, possible-boost-format msgid "Size: %1% x %2% x %3% mm\n" msgstr "Tamanho: %1% x %2% x %3% mm\n" -#, boost-format +#, possible-boost-format msgid "Volume: %1% in³\n" msgstr "Volume: %1% pol³\n" -#, boost-format +#, possible-boost-format msgid "Volume: %1% mm³\n" msgstr "Volume: %1% mm3\n" -#, boost-format +#, possible-boost-format msgid "Triangles: %1%\n" msgstr "Triângulos: %1%\n" msgid "Tips:" msgstr "Dicas:" -msgid "" -"\"Fix Model\" feature is currently only on Windows. Please repair the model " -"on Orca Slicer(windows) or CAD softwares." -msgstr "" -"A função \"Corrigir Modelo\" está atualmente disponível apenas no Windows. " -"Por favor, repare o modelo no Orca Slicer (Windows) ou softwares CAD." +msgid "\"Fix Model\" feature is currently only on Windows. Please repair the model on Orca Slicer(windows) or CAD softwares." +msgstr "A função \"Corrigir Modelo\" está atualmente disponível apenas no Windows. Por favor, repare o modelo no Orca Slicer (Windows) ou softwares CAD." -#, c-format, boost-format -msgid "" -"Plate% d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " -"to non zero." -msgstr "" -"Mesa %d: %s não é recomendada para ser usada para imprimir filamento %s(%s). " -"Se você ainda quiser fazer esta impressão, por favor, defina a temperatura " -"de mesa deste filamento para zero" +#, possible-c-format, possible-boost-format +msgid "Plate% d: %s is not suggested to be used to print filament %s(%s). If you still want to do this printing, please set this filament's bed temperature to non zero." +msgstr "Mesa %d: %s não é recomendada para ser usada para imprimir filamento %s(%s). Se você ainda quiser fazer esta impressão, por favor, defina a temperatura de mesa deste filamento para zero" msgid "Switching the language requires application restart.\n" msgstr "Mudar o idioma requer reiniciar o aplicativo.\n" @@ -6520,8 +5854,7 @@ msgid "Language selection" msgstr "Seleção de Idioma" msgid "Switching application language while some presets are modified." -msgstr "" -"A mudança do idioma do aplicativo enquanto alguns presets estão modificados." +msgstr "A mudança do idioma do aplicativo enquanto alguns presets estão modificados." msgid "Changing application language" msgstr "Alterando o idioma do aplicativo" @@ -6565,10 +5898,8 @@ msgstr "Região de Login" msgid "Stealth Mode" msgstr "Modo Oculto" -msgid "" -"This stops the transmission of data to Bambu's cloud services. Users who " -"don't use BBL machines or use LAN mode only can safely turn on this function." -msgstr "" +msgid "This stops the transmission of data to Bambu's cloud services. Users who don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "Isso interrompe a transmissão de dados para os serviços de nuvem de Bambu. Os usuários que não usam máquinas BBL ou usar modo LAN só podem ativar esta função com segurança." msgid "Enable network plugin" msgstr "Ativar plugin de rede" @@ -6586,23 +5917,13 @@ msgid "Units" msgstr "Unidades" msgid "Allow only one OrcaSlicer instance" -msgstr "" +msgstr "Permitir apenas uma instância OrcaSlicer" -msgid "" -"On OSX there is always only one instance of app running by default. However " -"it is allowed to run multiple instances of same app from the command line. " -"In such case this settings will allow only one instance." -msgstr "" -"No OSX, sempre há apenas uma instância do aplicativo em execução por padrão. " -"No entanto, é permitido executar várias instâncias do mesmo aplicativo a " -"partir da linha de comando. Nesse caso, essas configurações permitirão " -"apenas uma instância." +msgid "On OSX there is always only one instance of app running by default. However it is allowed to run multiple instances of same app from the command line. In such case this settings will allow only one instance." +msgstr "No OSX, sempre há uma instância do aplicativo sendo executado por padrão. No entanto, é permitido executar várias instâncias do mesmo aplicativo a partir da linha de comando. Neste caso, apenas uma instância será permitida." -msgid "" -"If this is enabled, when starting OrcaSlicer and another instance of the " -"same OrcaSlicer is already running, that instance will be reactivated " -"instead." -msgstr "" +msgid "If this is enabled, when starting OrcaSlicer and another instance of the same OrcaSlicer is already running, that instance will be reactivated instead." +msgstr "Se esta opção estiver habilitada, ao iniciar o OrcaSlicer e outra instância do mesmo OrcaSlicer já estiver em execução, essa instância será reativada em vez disso." msgid "Home" msgstr "Início" @@ -6619,25 +5940,18 @@ msgstr "Touchpad" msgid "Camera style" msgstr "Estilo da câmera" -msgid "" -"Select camera navigation style.\n" +msgid "Select camera navigation style.\n" "Default: LMB+move for rotation, RMB/MMB+move for panning.\n" "Touchpad: Alt+move for rotation, Shift+move for panning." -msgstr "" -"Selecione o estilo de navegação da câmera.\n" -"Padrão: LMB + mover para rotacionar, RMB/MMB + mover para movimento " -"lateral.\n" -"Touchpad: Alt + mover para rotacionar, Shift + mover para movimento lateral." +msgstr "Selecione o estilo de navegação da câmera.\n" +"Padrão: LMB + mover para rotacionar, RMB/MMB + mover para fazer pan.\n" +"Touchpad: Alt+mover para rotacionar, Shift+mover para fazer pan." msgid "Zoom to mouse position" msgstr "Zoom para a posição do mouse" -msgid "" -"Zoom in towards the mouse pointer's position in the 3D view, rather than the " -"2D window center." -msgstr "" -"Dar zoom em direção à posição do ponteiro do mouse na visualização 3D, em " -"vez do centro da janela 2D." +msgid "Zoom in towards the mouse pointer's position in the 3D view, rather than the 2D window center." +msgstr "Dar zoom em direção à posição do ponteiro do mouse na visualização 3D, em vez do centro da janela 2D." msgid "Use free camera" msgstr "Usar câmera livre" @@ -6664,14 +5978,13 @@ msgid "If enabled, useful hints are displayed at startup." msgstr "Se ativado, dicas úteis são exibidas na inicialização." msgid "Flushing volumes: Auto-calculate everytime the color changed." -msgstr "Volumes de descarga: Auto-calcular toda vez que a cor mudar." +msgstr "Volumes de Limpeza: Auto-calcular toda vez que a cor mudar." msgid "If enabled, auto-calculate everytime the color changed." msgstr "Se ativado, auto-calcular toda vez que a cor mudar." -msgid "" -"Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "Volumes de descarga: Auto-calcular toda vez que a cor mudar." +msgid "Flushing volumes: Auto-calculate every time when the filament is changed." +msgstr "Volumes de Limpeza: Auto-calcular toda vez que o filamento mudar." msgid "If enabled, auto-calculate every time when filament is changed" msgstr "Se ativo, auto-calcular toda vez que a cor mudar" @@ -6679,27 +5992,20 @@ msgstr "Se ativo, auto-calcular toda vez que a cor mudar" msgid "Remember printer configuration" msgstr "Lembrar configuração da impressora" -msgid "" -"If enabled, Orca will remember and switch filament/process configuration for " -"each printer automatically." -msgstr "" -"Se ativo, Orca vai lembrar e alternar a configuração de filamento/processo " -"para cada impressora automaticamente." +msgid "If enabled, Orca will remember and switch filament/process configuration for each printer automatically." +msgstr "Se ativo, Orca vai lembrar e alternar a configuração de filamento/processo para cada impressora automaticamente." msgid "Multi-device Management(Take effect after restarting Orca)." -msgstr "" +msgstr "Gerenciamento de multi-dispositivos(Entra em vigor após reiniciar o Orca)." -msgid "" -"With this option enabled, you can send a task to multiple devices at the " -"same time and manage multiple devices." -msgstr "" +msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices." +msgstr "Com esta opção habilitada, você pode enviar uma tarefa para vários dispositivos ao mesmo tempo e gerenciar vários dispositivos." msgid "Network" msgstr "Rede" msgid "Auto sync user presets(Printer/Filament/Process)" -msgstr "" -"Sincronização automática de presets do usuário(Impressora/Filamento/Processo)" +msgstr "Sincronização automática de presets do usuário(Impressora/Filamento/Processo)" msgid "User Sync" msgstr "Sincronização do Usuário" @@ -6720,37 +6026,31 @@ msgid "Associate .3mf files to OrcaSlicer" msgstr "Associar arquivos .3mf ao OrcaSlicer" msgid "If enabled, sets OrcaSlicer as default application to open .3mf files" -msgstr "" -"Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos .3mf" +msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos .3mf" msgid "Associate .stl files to OrcaSlicer" msgstr "Associar arquivos .stl ao OrcaSlicer" msgid "If enabled, sets OrcaSlicer as default application to open .stl files" -msgstr "" -"Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos .stl" +msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos .stl" msgid "Associate .step/.stp files to OrcaSlicer" msgstr "Associar arquivos .step/.stp ao OrcaSlicer" msgid "If enabled, sets OrcaSlicer as default application to open .step files" -msgstr "" -"Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos ." -"step" +msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos .step" msgid "Current association: " -msgstr "" +msgstr "Associação atual: " msgid "Associate prusaslicer://" -msgstr "" +msgstr "Associar prusaslicer://" msgid "Not associated to any application" -msgstr "" +msgstr "Não associado a nenhum aplicativo" -msgid "" -"Associate OrcaSlicer with prusaslicer:// links so that Orca can open " -"PrusaSlicer links from Printable.com" -msgstr "" +msgid "Associate OrcaSlicer with prusaslicer:// links so that Orca can open PrusaSlicer links from Printable.com" +msgstr "Associar OrcaSlicer com links prusaslicer:// para que Orca possa abrir os links PrusaSlicer do Printable.com" msgid "Maximum recent projects" msgstr "Máximo de projetos recentes" @@ -6767,11 +6067,8 @@ msgstr "Sem avisos ao carregar 3MF com códigos G modificados" msgid "Auto-Backup" msgstr "Backup Automático" -msgid "" -"Backup your project periodically for restoring from the occasional crash." -msgstr "" -"Faça backup do seu projeto periodicamente para restaurar de falhas " -"ocasionais." +msgid "Backup your project periodically for restoring from the occasional crash." +msgstr "Faça backup do seu projeto periodicamente para restaurar de falhas ocasionais." msgid "every" msgstr "cada" @@ -6990,8 +6287,7 @@ msgid "Jump to model publish web page" msgstr "Ir para a página web de publicação de modelos" msgid "Note: The preparation may takes several minutes. Please be patiant." -msgstr "" -"Nota: A preparação pode levar vários minutos. Por favor, seja paciente." +msgstr "Nota: A preparação pode levar vários minutos. Por favor, seja paciente." msgid "Publish" msgstr "Publicar" @@ -7008,7 +6304,7 @@ msgstr "Empacotando dados em 3mf" msgid "Jump to webpage" msgstr "Ir para a página web" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Save %s as" msgstr "Salvar %s como" @@ -7024,11 +6320,11 @@ msgstr "O nome não está disponível." msgid "Overwrite a system profile is not allowed" msgstr "Sobrescrever um perfil de sistema não é permitido" -#, boost-format +#, possible-boost-format msgid "Preset \"%1%\" already exists." msgstr "O perfil \"%1%\" já existe." -#, boost-format +#, possible-boost-format msgid "Preset \"%1%\" already exists and is incompatible with current printer." msgstr "O perfil \"%1%\" já existe e é incompatível com a impressora atual." @@ -7045,23 +6341,23 @@ msgctxt "PresetName" msgid "Copy" msgstr "Cópia" -#, boost-format +#, possible-boost-format msgid "Printer \"%1%\" is selected with preset \"%2%\"" msgstr "A impressora \"%1%\" está selecionada com o perfil \"%2%\"" -#, boost-format +#, possible-boost-format msgid "Please choose an action with \"%1%\" preset after saving." msgstr "Por favor, escolha uma ação com o perfil \"%1%\" após salvar." -#, boost-format +#, possible-boost-format msgid "For \"%1%\", change \"%2%\" to \"%3%\" " msgstr "Para \"%1%\", mude \"%2%\" para \"%3%\" " -#, boost-format +#, possible-boost-format msgid "For \"%1%\", add \"%2%\" as a new preset" msgstr "Para \"%1%\", adicione \"%2%\" como um novo perfil" -#, boost-format +#, possible-boost-format msgid "Simply switch to \"%1%\"" msgstr "Simplesmente mude para \"%1%\"" @@ -7144,90 +6440,49 @@ msgid "Synchronizing device information time out" msgstr "Tempo limite de sincronização das informações do dispositivo" msgid "Cannot send the print job when the printer is updating firmware" -msgstr "" -"Não é possível enviar o trabalho de impressão quando a impressora está " -"atualizando o firmware" +msgstr "Não é possível enviar o trabalho de impressão quando a impressora está atualizando o firmware" -msgid "" -"The printer is executing instructions. Please restart printing after it ends" -msgstr "" -"A impressora está executando instruções. Por favor, reinicie a impressão " -"após terminar" +msgid "The printer is executing instructions. Please restart printing after it ends" +msgstr "A impressora está executando instruções. Por favor, reinicie a impressão após terminar" msgid "The printer is busy on other print job" msgstr "A impressora está ocupada com outro trabalho de impressão" -#, c-format, boost-format -msgid "" -"Filament %s exceeds the number of AMS slots. Please update the printer " -"firmware to support AMS slot assignment." -msgstr "" -"O filamento %s excede o número de slots AMS. Por favor, atualize o firmware " -"da impressora para suportar a atribuição de slots AMS." +#, possible-c-format, possible-boost-format +msgid "Filament %s exceeds the number of AMS slots. Please update the printer firmware to support AMS slot assignment." +msgstr "O filamento %s excede o número de slots AMS. Por favor, atualize o firmware da impressora para suportar a atribuição de slots AMS." -msgid "" -"Filament exceeds the number of AMS slots. Please update the printer firmware " -"to support AMS slot assignment." -msgstr "" -"O filamento excede o número de slots AMS. Por favor, atualize o firmware da " -"impressora para suportar a atribuição de slots AMS." +msgid "Filament exceeds the number of AMS slots. Please update the printer firmware to support AMS slot assignment." +msgstr "O filamento excede o número de slots AMS. Por favor, atualize o firmware da impressora para suportar a atribuição de slots AMS." -msgid "" -"Filaments to AMS slots mappings have been established. You can click a " -"filament above to change its mapping AMS slot" -msgstr "" -"Foram estabelecidos mapeamentos de filamentos para slots AMS. Você pode " -"clicar em um filamento acima para mudar seu slot AMS mapeado" +msgid "Filaments to AMS slots mappings have been established. You can click a filament above to change its mapping AMS slot" +msgstr "Foram estabelecidos mapeamentos de filamentos para slots AMS. Você pode clicar em um filamento acima para mudar seu slot AMS mapeado" -msgid "" -"Please click each filament above to specify its mapping AMS slot before " -"sending the print job" -msgstr "" -"Por favor, clique em cada filamento acima para especificar seu slot AMS " -"mapeado antes de enviar o trabalho de impressão" +msgid "Please click each filament above to specify its mapping AMS slot before sending the print job" +msgstr "Por favor, clique em cada filamento acima para especificar seu slot AMS mapeado antes de enviar o trabalho de impressão" -#, c-format, boost-format -msgid "" -"Filament %s does not match the filament in AMS slot %s. Please update the " -"printer firmware to support AMS slot assignment." -msgstr "" -"O filamento %s não corresponde ao filamento no slot AMS %s. Por favor, " -"atualize o firmware da impressora para suportar a atribuição de slots AMS." +#, possible-c-format, possible-boost-format +msgid "Filament %s does not match the filament in AMS slot %s. Please update the printer firmware to support AMS slot assignment." +msgstr "O filamento %s não corresponde ao filamento no slot AMS %s. Por favor, atualize o firmware da impressora para suportar a atribuição de slots AMS." -msgid "" -"Filament does not match the filament in AMS slot. Please update the printer " -"firmware to support AMS slot assignment." -msgstr "" -"O filamento não corresponde ao filamento no slot AMS. Por favor, atualize o " -"firmware da impressora para suportar a atribuição de slots AMS." +msgid "Filament does not match the filament in AMS slot. Please update the printer firmware to support AMS slot assignment." +msgstr "O filamento não corresponde ao filamento no slot AMS. Por favor, atualize o firmware da impressora para suportar a atribuição de slots AMS." -msgid "" -"The printer firmware only supports sequential mapping of filament => AMS " -"slot." -msgstr "" -"O firmware da impressora só suporta mapeamento sequencial de filamento => " -"slot AMS." +msgid "The printer firmware only supports sequential mapping of filament => AMS slot." +msgstr "O firmware da impressora só suporta mapeamento sequencial de filamento => slot AMS." msgid "An SD card needs to be inserted before printing." msgstr "Um cartão SD precisa ser inserido antes de imprimir." -#, c-format, boost-format -msgid "" -"The selected printer (%s) is incompatible with the chosen printer profile in " -"the slicer (%s)." -msgstr "" -"A impressora selecionada (%s) é incompatível com o perfil escolhido de " -"impressora no fatiador (%s)." +#, possible-c-format, possible-boost-format +msgid "The selected printer (%s) is incompatible with the chosen printer profile in the slicer (%s)." +msgstr "A impressora selecionada (%s) é incompatível com o perfil escolhido de impressora no fatiador (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "Um cartão SD precisa ser inserido para gravar o timelapse." -msgid "" -"Cannot send the print job to a printer whose firmware is required to get " -"updated." -msgstr "" -"Não é possível enviar o trabalho de impressão para uma impressora cujo " -"firmware precisa ser atualizado." +msgid "Cannot send the print job to a printer whose firmware is required to get updated." +msgstr "Não é possível enviar o trabalho de impressão para uma impressora cujo firmware precisa ser atualizado." msgid "Cannot send the print job for empty plate" msgstr "Não é possível enviar o trabalho de impressão para uma mesa vazia" @@ -7235,18 +6490,11 @@ msgstr "Não é possível enviar o trabalho de impressão para uma mesa vazia" msgid "This printer does not support printing all plates" msgstr "Esta impressora não suporta a impressão em todas as mesas" -msgid "" -"When enable spiral vase mode, machines with I3 structure will not generate " -"timelapse videos." -msgstr "" -"Quando o modo vaso espiral está ativado, máquinas com estrutura I3 não irão " -"gerar vídeos timelapse." +msgid "When enable spiral vase mode, machines with I3 structure will not generate timelapse videos." +msgstr "Quando o modo vaso espiral está ativado, máquinas com estrutura I3 não irão gerar vídeos timelapse." -msgid "" -"Timelapse is not supported because Print sequence is set to \"By object\"." -msgstr "" -"Timelapse não é suportado porque a sequência de impressão está configurada " -"para \"Por objeto\"." +msgid "Timelapse is not supported because Print sequence is set to \"By object\"." +msgstr "Timelapse não é suportado porque a sequência de impressão está configurada para \"Por objeto\"." msgid "Errors" msgstr "Erros" @@ -7254,72 +6502,38 @@ msgstr "Erros" msgid "Please check the following:" msgstr "Por favor, verifique o seguinte:" -msgid "" -"The printer type selected when generating G-Code is not consistent with the " -"currently selected printer. It is recommended that you use the same printer " -"type for slicing." -msgstr "" -"O tipo de impressora selecionado ao gerar o G-Code não está consistente com " -"a impressora atualmente selecionada. É recomendado que você use o mesmo tipo " -"de impressora para fatiar." +msgid "The printer type selected when generating G-Code is not consistent with the currently selected printer. It is recommended that you use the same printer type for slicing." +msgstr "O tipo de impressora selecionado ao gerar o G-Code não está consistente com a impressora atualmente selecionada. É recomendado que você use o mesmo tipo de impressora para fatiar." -msgid "" -"There are some unknown filaments in the AMS mappings. Please check whether " -"they are the required filaments. If they are okay, press \"Confirm\" to " -"start printing." -msgstr "" -"Há alguns filamentos desconhecidos nos mapeamentos AMS. Por favor, verifique " -"se eles são os filamentos necessários. Se estiverem corretos, pressione " -"\"Confirmar\" para iniciar a impressão." +msgid "There are some unknown filaments in the AMS mappings. Please check whether they are the required filaments. If they are okay, press \"Confirm\" to start printing." +msgstr "Há alguns filamentos desconhecidos nos mapeamentos AMS. Por favor, verifique se eles são os filamentos necessários. Se estiverem corretos, pressione \"Confirmar\" para iniciar a impressão." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "nozzle in preset: %s %s" msgstr "bico no perfil: %s %s" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "nozzle memorized: %.1f %s" msgstr "bico memorizado: %.1f %s" -msgid "" -"Your nozzle diameter in sliced file is not consistent with memorized nozzle. " -"If you changed your nozzle lately, please go to Device > Printer Parts to " -"change settings." -msgstr "" -"Seu diâmetro de bico no arquivo fatiado não é consistente com o bico " -"memorizado. Se você mudou seu bico recentemente, vá para Dispositivo > " -"Partes da impressora para alterar as configurações." +msgid "Your nozzle diameter in sliced file is not consistent with memorized nozzle. If you changed your nozzle lately, please go to Device > Printer Parts to change settings." +msgstr "Seu diâmetro de bico no arquivo fatiado não é consistente com o bico memorizado. Se você mudou seu bico recentemente, vá para Dispositivo > Partes da impressora para alterar as configurações." -#, c-format, boost-format -msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " -"damage" -msgstr "" -"Imprimir material de temperatura alta (material %s) com %s poderá causar " -"danos ao bico" +#, possible-c-format, possible-boost-format +msgid "Printing high temperature material(%s material) with %s may cause nozzle damage" +msgstr "Imprimir material de temperatura alta (material %s) com %s poderá causar danos ao bico" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "" -"Por favor, corrija o erro acima, caso contrário a impressão não poderá " -"continuar." +msgstr "Por favor, corrija o erro acima, caso contrário a impressão não poderá continuar." -msgid "" -"Please click the confirm button if you still want to proceed with printing." -msgstr "" -"Por favor, clique no botão de confirmação se ainda deseja prosseguir com a " -"impressão." +msgid "Please click the confirm button if you still want to proceed with printing." +msgstr "Por favor, clique no botão de confirmação se ainda deseja prosseguir com a impressão." -msgid "" -"Connecting to the printer. Unable to cancel during the connection process." -msgstr "" -"Conectando à impressora. Não é possível cancelar durante o processo de " -"conexão." +msgid "Connecting to the printer. Unable to cancel during the connection process." +msgstr "Conectando à impressora. Não é possível cancelar durante o processo de conexão." -msgid "" -"Caution to use! Flow calibration on Textured PEI Plate may fail due to the " -"scattered surface." -msgstr "" -"Cuidado ao usar! A calibração de fluxo no PEI Texturizado pode falhar devido " -"à superfície irregular." +msgid "Caution to use! Flow calibration on Textured PEI Plate may fail due to the scattered surface." +msgstr "Cuidado ao usar! A calibração de fluxo no PEI Texturizado pode falhar devido à superfície irregular." msgid "Automatic flow calibration using Micro Lidar" msgstr "Calibração automática de fluxo usando Micro Lidar" @@ -7328,25 +6542,19 @@ msgid "Modifying the device name" msgstr "Modificando o nome do dispositivo" msgid "Bind with Pin Code" -msgstr "" +msgstr "Vincular com Código PIN" msgid "Send to Printer SD card" msgstr "Enviar para o cartão SD da impressora" msgid "Cannot send the print task when the upgrade is in progress" -msgstr "" -"Não é possível enviar a tarefa de impressão quando a atualização está em " -"progresso" +msgstr "Não é possível enviar a tarefa de impressão quando a atualização está em progresso" msgid "The selected printer is incompatible with the chosen printer presets." -msgstr "" -"A impressora selecionada é incompatível com os perfis de impressora " -"escolhidos." +msgstr "A impressora selecionada é incompatível com os perfis de impressora escolhidos." msgid "An SD card needs to be inserted before send to printer SD card." -msgstr "" -"Um cartão SD precisa ser inserido antes de enviar para o cartão SD da " -"impressora." +msgstr "Um cartão SD precisa ser inserido antes de enviar para o cartão SD da impressora." msgid "The printer is required to be in the same LAN as Orca Slicer." msgstr "A impressora deve estar na mesma LAN do Orca Slicer." @@ -7387,25 +6595,25 @@ msgstr "Tempo esgotado ao receber o relatório de login" msgid "Unknown Failure" msgstr "Falha desconhecida" -msgid "" -"Please Find the Pin Code in Account page on printer screen,\n" +msgid "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." -msgstr "" +msgstr "Encontre o Código PIN na página da conta na tela da impressora,\n" +" e digite o Código PIN abaixo." msgid "Can't find Pin Code?" -msgstr "" +msgstr "Não consegue encontrar o Código PIN?" msgid "Pin Code" -msgstr "" +msgstr "Código PIN" msgid "Binding..." -msgstr "" +msgstr "Vinculando..." msgid "Please confirm on the printer screen" -msgstr "" +msgstr "Confirme na tela da impressora" msgid "Log in failed. Please check the Pin Code." -msgstr "" +msgstr "Login falhou. Por favor, verifique o Código PIN." msgid "Log in printer" msgstr "Entrar na impressora" @@ -7422,19 +6630,8 @@ msgstr "Ler e aceitar" msgid "Terms and Conditions" msgstr "Termos e Condições" -msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the termsand conditions.By clicking to agree to use your " -"Bambu Lab device, you agree to abide by the Privacy Policyand Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " -"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." -msgstr "" -"Obrigado por adquirir um dispositivo Bambu Lab. Antes de usar seu " -"dispositivo Bambu Lab, leia os termos e condições. Ao clicar para concordar " -"em usar seu dispositivo Bambu Lab, você concorda em cumprir a Política de " -"Privacidade e os Termos de Uso (coletivamente, os \"Termos\"). Se você não " -"concordar ou não cumprir com a Política de Privacidade da Bambu Lab, não use " -"os equipamentos e serviços da Bambu Lab." +msgid "Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab device, please read the termsand conditions.By clicking to agree to use your Bambu Lab device, you agree to abide by the Privacy Policyand Terms of Use(collectively, the \"Terms\"). If you do not comply with or agree to the Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." +msgstr "Obrigado por adquirir um dispositivo Bambu Lab. Antes de usar seu dispositivo Bambu Lab, leia os termos e condições. Ao clicar para concordar em usar seu dispositivo Bambu Lab, você concorda em cumprir a Política de Privacidade e os Termos de Uso (coletivamente, os \"Termos\"). Se você não concordar ou não cumprir com a Política de Privacidade da Bambu Lab, não use os equipamentos e serviços da Bambu Lab." msgid "and" msgstr "e" @@ -7448,33 +6645,9 @@ msgstr "Pedimos sua ajuda para melhorar a impressora de todos" msgid "Statement about User Experience Improvement Program" msgstr "Declaração sobre o Programa de Melhoria da Experiência do Usuário" -#, c-format, boost-format -msgid "" -"In the 3D Printing community, we learn from each other's successes and " -"failures to adjust our own slicing parameters and settings. %s follows the " -"same principle and uses machine learning to improve its performance from the " -"successes and failures of the vast number of prints by our users. We are " -"training %s to be smarter by feeding them the real-world data. If you are " -"willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " -"not collect any Personal Data by which an individual can be identified " -"directly or indirectly, including without limitation names, addresses, " -"payment information, or phone numbers. By enabling this service, you agree " -"to these terms and the statement about Privacy Policy." -msgstr "" -"Na comunidade de Impressão 3D, aprendemos com os sucessos e falhas uns dos " -"outros para ajustar nossos próprios parâmetros de fatiamento e " -"configurações. %s segue o mesmo princípio e utiliza aprendizado de máquina " -"para melhorar seu desempenho a partir dos sucessos e falhas do grande número " -"de impressões feitas por nossos usuários. Estamos treinando %s para ser mais " -"inteligente alimentando-os com dados do mundo real. Se você concordar, este " -"serviço acessará informações de seus registros de erros e registros de uso, " -"que podem incluir informações descritas na Política de Privacidade. Não " -"coletaremos quaisquer Dados Pessoais pelos quais um indivíduo possa ser " -"identificado diretamente ou indiretamente, incluindo, sem limitação, nomes, " -"endereços, informações de pagamento ou números de telefone. Ao ativar este " -"serviço, você concorda com estes termos e com a declaração sobre a Política " -"de Privacidade." +#, possible-c-format, possible-boost-format +msgid "In the 3D Printing community, we learn from each other's successes and failures to adjust our own slicing parameters and settings. %s follows the same principle and uses machine learning to improve its performance from the successes and failures of the vast number of prints by our users. We are training %s to be smarter by feeding them the real-world data. If you are willing, this service will access information from your error logs and usage logs, which may include information described in Privacy Policy. We will not collect any Personal Data by which an individual can be identified directly or indirectly, including without limitation names, addresses, payment information, or phone numbers. By enabling this service, you agree to these terms and the statement about Privacy Policy." +msgstr "Na comunidade de Impressão 3D, aprendemos com os sucessos e falhas uns dos outros para ajustar nossos próprios parâmetros de fatiamento e configurações. %s segue o mesmo princípio e utiliza aprendizado de máquina para melhorar seu desempenho a partir dos sucessos e falhas do grande número de impressões feitas por nossos usuários. Estamos treinando %s para ser mais inteligente alimentando-os com dados do mundo real. Se você concordar, este serviço acessará informações de seus registros de erros e registros de uso, que podem incluir informações descritas na Política de Privacidade. Não coletaremos quaisquer Dados Pessoais pelos quais um indivíduo possa ser identificado diretamente ou indiretamente, incluindo, sem limitação, nomes, endereços, informações de pagamento ou números de telefone. Ao ativar este serviço, você concorda com estes termos e com a declaração sobre a Política de Privacidade." msgid "Statement on User Experience Improvement Plan" msgstr "Declaração sobre o Plano de Melhoria da Experiência do Usuário" @@ -7492,113 +6665,69 @@ msgid "Please log in first." msgstr "Por favor, faça login primeiro." msgid "There was a problem connecting to the printer. Please try again." -msgstr "" -"Houve um problema ao conectar-se à impressora. Por favor, tente novamente." +msgstr "Houve um problema ao conectar-se à impressora. Por favor, tente novamente." msgid "Failed to log out." msgstr "Falha ao desconectar." #. TRN "Save current Settings" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Save current %s" msgstr "Salvar %s atual" msgid "Delete this preset" -msgstr "Excluir este predefinido" +msgstr "Excluir este preset" msgid "Search in preset" -msgstr "Pesquisar nos predefinidos" +msgstr "Pesquisar nos presets" msgid "Click to reset all settings to the last saved preset." -msgstr "" -"Clique para redefinir todas as configurações para o último predefinido salvo." +msgstr "Clique para redefinir todas as configurações para o último preset salvo." -msgid "" -"Prime tower is required for smooth timeplase. There may be flaws on the " -"model without prime tower. Are you sure you want to disable prime tower?" -msgstr "" -"A torre de purga é necessária para um timelapse suave. Pode haver falhas no " -"modelo sem a torre de purga. Tem certeza de que deseja desativar a torre de " -"purga?" +msgid "Prime tower is required for smooth timeplase. There may be flaws on the model without prime tower. Are you sure you want to disable prime tower?" +msgstr "A torre de purga é necessária para um timelapse suave. Pode haver falhas no modelo sem a torre de purga. Tem certeza de que deseja desativar a torre de purga?" -msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " -"model without prime tower. Do you want to enable prime tower?" -msgstr "" -"A torre de purga é necessária para um timelapse suave. Pode haver falhas no " -"modelo sem a torre de purga. Deseja ativar a torre de purga?" +msgid "Prime tower is required for smooth timelapse. There may be flaws on the model without prime tower. Do you want to enable prime tower?" +msgstr "A torre de purga é necessária para um timelapse suave. Pode haver falhas no modelo sem a torre de purga. Deseja ativar a torre de purga?" msgid "Still print by object?" msgstr "Ainda imprimir por objeto?" -msgid "" -"We have added an experimental style \"Tree Slim\" that features smaller " -"support volume but weaker strength.\n" +msgid "We have added an experimental style \"Tree Slim\" that features smaller support volume but weaker strength.\n" "We recommend using it with: 0 interface layers, 0 top distance, 2 walls." -msgstr "" -"Adicionamos um estilo experimental \"Tree Slim\" que apresenta um volume de " -"suporte menor, mas uma resistência mais fraca.\n" -"Recomendamos usar com: 0 camadas de interface, 0 distância superior, 2 " -"paredes." +msgstr "Adicionamos um estilo experimental \"Tree Slim\" que apresenta um volume de suporte menor, mas uma resistência mais fraca.\n" +"Recomendamos usar com: 0 camadas de interface, 0 distância superior, 2 paredes." -msgid "" -"Change these settings automatically? \n" +msgid "Change these settings automatically? \n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" -msgstr "" -"Alterar essas configurações automaticamente? \n" +msgstr "Alterar essas configurações automaticamente? \n" "Sim - Alterar essas configurações automaticamente\n" "Não - Não alterar essas configurações para mim" -msgid "" -"For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the following " -"settings: at least 2 interface layers, at least 0.1mm top z distance or " -"using support materials on interface." -msgstr "" -"Para os estilos \"Tree Strong\" e \"Tree Hybrid\", recomendamos as seguintes " -"configurações: pelo menos 2 camadas de interface, pelo menos 0.1mm de " -"distância superior em z ou uso de materiais de suporte na interface." +msgid "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the following settings: at least 2 interface layers, at least 0.1mm top z distance or using support materials on interface." +msgstr "Para os estilos \"Tree Strong\" e \"Tree Hybrid\", recomendamos as seguintes configurações: pelo menos 2 camadas de interface, pelo menos 0.1mm de distância superior em z ou uso de materiais de suporte na interface." -msgid "" -"When using support material for the support interface, We recommend the " -"following settings:\n" -"0 top z distance, 0 interface spacing, concentric pattern and disable " -"independent support layer height" -msgstr "" -"Ao usar material de suporte para a interface de suporte, recomendamos as " -"seguintes configurações:\n" -"distância z superior 0, espaçamento de interface 0, padrão concêntrico e " -"desabilitar altura de camada de suporte independente" +msgid "When using support material for the support interface, We recommend the following settings:\n" +"0 top z distance, 0 interface spacing, concentric pattern and disable independent support layer height" +msgstr "Ao usar material de suporte para a interface de suporte, recomendamos as seguintes configurações:\n" +"distância z superior 0, espaçamento de interface 0, padrão concêntrico e desabilitar altura de camada de suporte independente" -msgid "" -"Enabling this option will modify the model's shape. If your print requires " -"precise dimensions or is part of an assembly, it's important to double-check " -"whether this change in geometry impacts the functionality of your print." -msgstr "" -"Habilitar esta opção modificará a forma do modelo. Se sua impressão exigir " -"dimensões precisas ou fizer parte de uma montagem, é importante verificar " -"duplamente se essa mudança na geometria afeta a funcionalidade da sua " -"impressão." +msgid "Enabling this option will modify the model's shape. If your print requires precise dimensions or is part of an assembly, it's important to double-check whether this change in geometry impacts the functionality of your print." +msgstr "Habilitar esta opção modificará a forma do modelo. Se sua impressão exigir dimensões precisas ou fizer parte de uma montagem, é importante verificar duplamente se essa mudança na geometria afeta a funcionalidade da sua impressão." msgid "Are you sure you want to enable this option?" msgstr "Tem certeza de que deseja habilitar esta opção?" -msgid "" -"Layer height is too small.\n" +msgid "Layer height is too small.\n" "It will set to min_layer_height\n" -msgstr "" -"A altura da camada é muito pequena.\n" +msgstr "A altura da camada é muito pequena.\n" "Ela será definida como altura mínima da camada\n" "A altura da camada é muito pequena.\n" "Ela será definida como altura mínima da camada\n" -msgid "" -"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." -msgstr "" -"A altura da camada excede o limite em Configurações da Impressora -> " -"Extrusora -> Limites de altura da camada, isso pode causar problemas de " -"qualidade de impressão." +msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits ,this may cause printing quality issues." +msgstr "A altura da camada excede o limite em Configurações da Impressora -> Extrusora -> Limites de altura da camada, isso pode causar problemas de qualidade de impressão." msgid "Adjust to the set range automatically? \n" msgstr "Ajustar automaticamente à faixa definida? \n" @@ -7609,39 +6738,16 @@ msgstr "Ajustar" msgid "Ignore" msgstr "Ignorar" -msgid "" -"Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " -"printing complications." -msgstr "" -"Recurso experimental: Retrair e cortar o filamento a uma distância maior " -"durante mudanças de filamento para minimizar a descarga. Embora possa " -"reduzir notavelmente a descarga, ele também pode elevar o risco de bolhas no " -"bico ou outras complicações de impressão." +msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush.Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications." +msgstr "Recurso experimental: Retrair e cortar o filamento a uma distância maior durante as trocas de filamento para minimizar a limpeza. Embora isso possa reduzir consideravelmente a limpeza, também pode aumentar o risco de obstruções no bico ou outras complicações de impressão." -msgid "" -"Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." -msgstr "" -"Recurso experimental: Retrair e cortar o filamento a uma distância maior " -"durante mudanças de filamento para minimizar a descarga. Embora possa " -"reduzir notavelmente a descarga, ele também pode elevar o risco de bolhas no " -"bico ou outras complicações de impressão. Por favor, use com o firmware mais " -"recente da impressora." +msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush.Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications.Please use with the latest printer firmware." +msgstr "Recurso experimental: Retrair e cortar o filamento a uma distância maior durante as trocas de filamento para minimizar a limpeza. Embora isso possa reduzir consideravelmente a limpeza, também pode aumentar o risco de obstruções no bico ou outras complicações de impressão. Por favor, use com o firmware mais recente da impressora." -msgid "" -"When recording timelapse without toolhead, it is recommended to add a " -"\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add Primitive" -"\"->\"Timelapse Wipe Tower\"." -msgstr "" -"Ao gravar um timelapse sem aparecer a hotend, é recomendável adicionar uma " -"\"Torre de Limpeza de Timelapse\" \n" -"clique com o botão direito na posição vazia da mesa e escolha \"Adicionar " -"Primitivo\"->\"Torre de Limpeza de Timelapse\"." +msgid "When recording timelapse without toolhead, it is recommended to add a \"Timelapse Wipe Tower\" \n" +"by right-click the empty position of build plate and choose \"Add Primitive\"->\"Timelapse Wipe Tower\"." +msgstr "Ao gravar um timelapse sem aparecer a hotend, é recomendável adicionar uma \"Torre de Limpeza de Timelapse\" \n" +"clique com o botão direito na posição vazia da mesa e escolha \"Adicionar Primitivo\"->\"Torre de Limpeza de Timelapse\"." msgid "Line width" msgstr "Largura da linha" @@ -7679,15 +6785,8 @@ msgstr "Velocidade de outras camadas" msgid "Overhang speed" msgstr "Velocidade em overhangs" -msgid "" -"This is the speed for various overhang degrees. Overhang degrees are " -"expressed as a percentage of line width. 0 speed means no slowing down for " -"the overhang degree range and wall speed is used" -msgstr "" -"Esta é a velocidade para vários graus de avanço. Os graus de avanço são " -"expressos como uma porcentagem da largura da linha. A velocidade 0 significa " -"que não há desaceleração para o intervalo de graus de avanço e a velocidade " -"do perímetro é usada" +msgid "This is the speed for various overhang degrees. Overhang degrees are expressed as a percentage of line width. 0 speed means no slowing down for the overhang degree range and wall speed is used" +msgstr "Esta é a velocidade para vários graus de avanço. Os graus de avanço são expressos como uma porcentagem da largura da linha. A velocidade 0 significa que não há desaceleração para o intervalo de graus de avanço e a velocidade do perímetro é usada" msgid "Bridge" msgstr "Ponte" @@ -7717,7 +6816,7 @@ msgid "Skirt" msgstr "Saia" msgid "Prime tower" -msgstr "Torre de purga" +msgstr "Torre de limpeza" msgid "Special mode" msgstr "Modo especial" @@ -7734,23 +6833,15 @@ msgstr "Notas" msgid "Frequent" msgstr "Frequente" -#, c-format, boost-format -msgid "" -"Following line %s contains reserved keywords.\n" -"Please remove it, or will beat G-code visualization and printing time " -"estimation." -msgid_plural "" -"Following lines %s contain reserved keywords.\n" -"Please remove them, or will beat G-code visualization and printing time " -"estimation." -msgstr[0] "" -"A linha %s seguinte contém palavras-chave reservadas.\n" -"Por favor, remova-a, ou afetará a visualização do código G e a estimativa de " -"tempo de impressão." -msgstr[1] "" -"As linhas %s seguintes contêm palavras-chave reservadas.\n" -"Por favor, remova-as, ou afetará a visualização do código G e a estimativa " -"de tempo de impressão." +#, possible-c-format, possible-boost-format +msgid "Following line %s contains reserved keywords.\n" +"Please remove it, or will beat G-code visualization and printing time estimation." +msgid_plural "Following lines %s contain reserved keywords.\n" +"Please remove them, or will beat G-code visualization and printing time estimation." +msgstr[0] "A linha %s seguinte contém palavras-chave reservadas.\n" +"Por favor, remova-a, ou afetará a visualização do código G e a estimativa de tempo de impressão." +msgstr[1] "As linhas %s seguintes contêm palavras-chave reservadas.\n" +"Por favor, remova-as, ou afetará a visualização do código G e a estimativa de tempo de impressão." msgid "Reserved keywords found" msgstr "Palavras-chave reservadas encontradas" @@ -7768,8 +6859,7 @@ msgid "Recommended nozzle temperature" msgstr "Temperatura recomendada do bico" msgid "Recommended nozzle temperature range of this filament. 0 means no set" -msgstr "" -"Faixa de temperatura recomendada para esta boquilha. 0 significa não definido" +msgstr "Faixa de temperatura recomendada para esta boquilha. 0 significa não definido" msgid "Print chamber temperature" msgstr "Temperatura da câmara de impressão" @@ -7784,46 +6874,28 @@ msgid "Nozzle temperature when printing" msgstr "Temperatura do bico ao imprimir" msgid "Cool plate" -msgstr "Cool plate (Mesa fria)" +msgstr "Mesa fria" -msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" -msgstr "" -"Temperatura da mesa quando a cool plate (mesa fria) está instalada. Valor 0 " -"significa que o filamento não suporta impressão na cool plate" +msgid "Bed temperature when cool plate is installed. Value 0 means the filament does not support to print on the Cool Plate" +msgstr "Temperatura da mesa quando a cool plate (mesa fria) está instalada. Valor 0 significa que o filamento não suporta impressão na cool plate" msgid "Engineering plate" msgstr "Mesa de engenharia" -msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" -msgstr "" -"Temperatura da mesa quando a mesa de engenharia está instalada. Valor 0 " -"significa que o filamento não suporta impressão na Mesa de Engenharia" +msgid "Bed temperature when engineering plate is installed. Value 0 means the filament does not support to print on the Engineering Plate" +msgstr "Temperatura da mesa quando a mesa de engenharia está instalada. Valor 0 significa que o filamento não suporta impressão na Mesa de Engenharia" msgid "Smooth PEI Plate / High Temp Plate" msgstr "Mesa PEI lisa / Mesa de alta temperatura" -msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" -msgstr "" -"Temperatura da mesa quando a mesa PEI lisa/ de alta temperatura está " -"instalada. O valor 0 significa que o filamento não suporta a impressão na " -"Mesa PEI lisa/Mesa de Alta Temperatura" +msgid "Bed temperature when Smooth PEI Plate/High temperature plate is installed. Value 0 means the filament does not support to print on the Smooth PEI Plate/High Temp Plate" +msgstr "Temperatura da mesa quando a mesa PEI lisa/ de alta temperatura está instalada. O valor 0 significa que o filamento não suporta a impressão na Mesa PEI lisa/Mesa de Alta Temperatura" msgid "Textured PEI Plate" msgstr "Mesa PEI Texturizada" -msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" -msgstr "" -"Temperatura da mesa quando a mesa PEI texturizada está instalada. O valor 0 " -"significa que o filamento não suporta impressão na mesa PEI texturizada" +msgid "Bed temperature when Textured PEI Plate is installed. Value 0 means the filament does not support to print on the Textured PEI Plate" +msgstr "Temperatura da mesa quando a mesa PEI texturizada está instalada. O valor 0 significa que o filamento não suporta impressão na mesa PEI texturizada" msgid "Volumetric speed limitation" msgstr "Limitação de fluxo volumétrico" @@ -7840,27 +6912,14 @@ msgstr "Ventilador de resfriamento da peça" msgid "Min fan speed threshold" msgstr "Limiar de velocidade mínima do ventilador" -msgid "" -"Part cooling fan speed will start to run at min speed when the estimated " -"layer time is no longer than the layer time in setting. When layer time is " -"shorter than threshold, fan speed is interpolated between the minimum and " -"maximum fan speed according to layer printing time" -msgstr "" -"A velocidade do ventilador de resfriamento da peça começará a funcionar na " -"velocidade mínima quando o tempo estimado da camada não for mais longo do " -"que o tempo da camada ajustado. Quando o tempo da camada for menor que o " -"limite, a velocidade do ventilador é interpolada entre a velocidade mínima e " -"máxima de acordo com o tempo de impressão da camada" +msgid "Part cooling fan speed will start to run at min speed when the estimated layer time is no longer than the layer time in setting. When layer time is shorter than threshold, fan speed is interpolated between the minimum and maximum fan speed according to layer printing time" +msgstr "A velocidade do ventilador de resfriamento da peça começará a funcionar na velocidade mínima quando o tempo estimado da camada não for mais longo do que o tempo da camada ajustado. Quando o tempo da camada for menor que o limite, a velocidade do ventilador é interpolada entre a velocidade mínima e máxima de acordo com o tempo de impressão da camada" msgid "Max fan speed threshold" msgstr "Limiar de velocidade máxima do ventilador" -msgid "" -"Part cooling fan speed will be max when the estimated layer time is shorter " -"than the setting value" -msgstr "" -"A velocidade do ventilador de resfriamento da peça será máxima quando o " -"tempo estimado da camada for menor que o valor ajustado" +msgid "Part cooling fan speed will be max when the estimated layer time is shorter than the setting value" +msgstr "A velocidade do ventilador de resfriamento da peça será máxima quando o tempo estimado da camada for menor que o valor ajustado" msgid "Auxiliary part cooling fan" msgstr "Ventilador auxiliar de resfriamento da peça" @@ -7887,15 +6946,13 @@ msgid "Wipe tower parameters" msgstr "Parâmetros da torre de limpeza" msgid "Toolchange parameters with single extruder MM printers" -msgstr "" -"Parâmetros de troca de ferramentas com impressoras MM de extrusora única" +msgstr "Parâmetros de troca de ferramentas com impressoras MM de extrusora única" msgid "Ramming settings" msgstr "Configurações de empurrar" msgid "Toolchange parameters with multi extruder MM printers" -msgstr "" -"Parâmetros de troca de ferramentas com impressoras MM de múltiplas extrusoras" +msgstr "Parâmetros de troca de ferramentas com impressoras MM de múltiplas extrusoras" msgid "Printable space" msgstr "Espaço de impressão" @@ -7981,14 +7038,9 @@ msgstr "Aplicação do Z hop" msgid "Retraction when switching material" msgstr "Retração ao trocar material" -msgid "" -"The Wipe option is not available when using the Firmware Retraction mode.\n" -"\n" +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 "" -"A opção de Limpeza não está disponível ao usar o modo de Retração de " -"Firmware.\n" -"\n" +msgstr "A opção de Limpeza não está disponível ao usar o modo de Retração de Firmware.\n\n" "Deseja desativá-lo para habilitar a Retração de Firmware?" msgid "Firmware Retraction" @@ -7997,13 +7049,9 @@ msgstr "Retração de Firmware" msgid "Detached" msgstr "Desanexado" -#, c-format, boost-format -msgid "" -"%d Filament Preset and %d Process Preset is attached to this printer. Those " -"presets would be deleted if the printer is deleted." -msgstr "" -"%d Preset de Filamento e %d Preset de Processo estão vinculados a esta " -"impressora. Esses presets serão excluídos se a impressora for deletada." +#, possible-c-format, possible-boost-format +msgid "%d Filament Preset and %d Process Preset is attached to this printer. Those presets would be deleted if the printer is deleted." +msgstr "%d Preset de Filamento e %d Preset de Processo estão vinculados a esta impressora. Esses presets serão excluídos se a impressora for deletada." msgid "Presets inherited by other presets can not be deleted!" msgstr "Os perfis herdados por outros perfis não podem ser excluídos!" @@ -8014,7 +7062,7 @@ msgstr[0] "Os seguintes perfis herdam este perfil." msgstr[1] "O seguinte perfil herda este perfil." #. TRN Remove/Delete -#, boost-format +#, possible-boost-format msgid "%1% Preset" msgstr "%1% Perfil" @@ -8023,16 +7071,12 @@ msgid_plural "Following presets will be deleted too." msgstr[0] "O seguinte perfil também será excluído." msgstr[1] "Os seguintes perfis também serão excluídos." -msgid "" -"Are you sure to delete the selected preset? \n" -"If the preset corresponds to a filament currently in use on your printer, " -"please reset the filament information for that slot." -msgstr "" -"Tem certeza de que deseja excluir o perfil selecionado? \n" -"Se o perfil corresponde a um filamento atualmente em uso em sua impressora, " -"redefina as informações do filamento para esse slot." +msgid "Are you sure to delete the selected preset? \n" +"If the preset corresponds to a filament currently in use on your printer, please reset the filament information for that slot." +msgstr "Tem certeza de que deseja excluir o perfil selecionado? \n" +"Se o perfil corresponde a um filamento atualmente em uso em sua impressora, redefina as informações do filamento para esse slot." -#, boost-format +#, possible-boost-format msgid "Are you sure to %1% the selected preset?" msgstr "Tem certeza de %1% o perfil selecionado?" @@ -8046,8 +7090,7 @@ msgid "Click to reset current value and attach to the global value." msgstr "Clique para redefinir o valor atual e anexá-lo ao valor global." msgid "Click to drop current modify and reset to saved value." -msgstr "" -"Clique para descartar a modificação atual e redefinir para o valor salvo." +msgstr "Clique para descartar a modificação atual e redefinir para o valor salvo." msgid "Process Settings" msgstr "Configurações do Processo" @@ -8059,13 +7102,13 @@ msgid "Unsaved Changes" msgstr "Alterações não salvas" msgid "Transfer or discard changes" -msgstr "" +msgstr "Transferir ou descartar alterações" msgid "Old Value" -msgstr "" +msgstr "Valor Antigo" msgid "New Value" -msgstr "" +msgstr "Novo Valor" msgid "Transfer" msgstr "Transferir" @@ -8094,65 +7137,51 @@ msgstr "Manter as opções selecionadas." msgid "Transfer the selected options to the newly selected preset." msgstr "Transferir as opções selecionadas para o perfil recém-selecionado." -#, boost-format -msgid "" -"Save the selected options to preset \n" +#, possible-boost-format +msgid "Save the selected options to preset \n" "\"%1%\"." -msgstr "" -"Salvar as opções selecionadas para o perfil \n" +msgstr "Salvar as opções selecionadas para o perfil \n" "\"%1%\"." -#, boost-format -msgid "" -"Transfer the selected options to the newly selected preset \n" +#, possible-boost-format +msgid "Transfer the selected options to the newly selected preset \n" "\"%1%\"." -msgstr "" -"Transferir as opções selecionadas para o perfil recém-selecionado \n" +msgstr "Transferir as opções selecionadas para o perfil recém-selecionado \n" "\"%1%\"." -#, boost-format +#, possible-boost-format msgid "Preset \"%1%\" contains the following unsaved changes:" msgstr "O perfil \"%1%\" contém as seguintes alterações não salvas:" -#, boost-format -msgid "" -"Preset \"%1%\" is not compatible with the new printer profile and it " -"contains the following unsaved changes:" -msgstr "" -"O perfil \"%1%\" não é compatível com o novo perfil da impressora e contém " -"as seguintes alterações não salvas:" +#, possible-boost-format +msgid "Preset \"%1%\" is not compatible with the new printer profile and it contains the following unsaved changes:" +msgstr "O perfil \"%1%\" não é compatível com o novo perfil da impressora e contém as seguintes alterações não salvas:" -#, boost-format -msgid "" -"Preset \"%1%\" is not compatible with the new process profile and it " -"contains the following unsaved changes:" -msgstr "" -"O perfil \"%1%\" não é compatível com o novo perfil de processo e contém as " -"seguintes alterações não salvas:" +#, possible-boost-format +msgid "Preset \"%1%\" is not compatible with the new process profile and it contains the following unsaved changes:" +msgstr "O perfil \"%1%\" não é compatível com o novo perfil de processo e contém as seguintes alterações não salvas:" -#, boost-format +#, possible-boost-format msgid "You have changed some settings of preset \"%1%\". " msgstr "Você alterou algumas configurações do preset \"%1%\". " -msgid "" -"\n" +msgid "\n" "You can save or discard the preset values you have modified." -msgstr "" +msgstr "\n" +"Você pode salvar ou descartar os valores predefinidos que você modificou." -msgid "" -"\n" -"You can save or discard the preset values you have modified, or choose to " -"transfer the values you have modified to the new preset." -msgstr "" +msgid "\n" +"You can save or discard the preset values you have modified, or choose to transfer the values you have modified to the new preset." +msgstr "\n" +"Você pode salvar ou descartar os valores predefinidos que você modificou, ou escolher transferir os valores modificados para o novo preset." msgid "You have previously modified your settings." -msgstr "" +msgstr "Você modificou suas configurações anteriormente." -msgid "" -"\n" -"You can discard the preset values you have modified, or choose to transfer " -"the modified values to the new project" -msgstr "" +msgid "\n" +"You can discard the preset values you have modified, or choose to transfer the modified values to the new project" +msgstr "\n" +"Você pode descartar os valores predefinidos que você modificou, ou escolher transferir os valores modificados para o novo projeto." msgid "Extruders count" msgstr "Número de extrusoras" @@ -8169,29 +7198,19 @@ msgstr "Mostrar todos os perfis (incluindo os incompatíveis)" msgid "Select presets to compare" msgstr "Selecione os perfis para comparar" -msgid "" -"You can only transfer to current active profile because it has been modified." -msgstr "" -"Só é possível transferir para o perfil ativo atual porque ele foi modificado." +msgid "You can only transfer to current active profile because it has been modified." +msgstr "Só é possível transferir para o perfil ativo atual porque ele foi modificado." -msgid "" -"Transfer the selected options from left preset to the right.\n" -"Note: New modified presets will be selected in settings tabs after close " -"this dialog." -msgstr "" -"Transfira as opções selecionadas do perfil à esquerda para o da direita.\n" -"Nota: Novos perfis modificados serão selecionados nas guias de configurações " -"após fechar este diálogo." +msgid "Transfer the selected options from left preset to the right.\n" +"Note: New modified presets will be selected in settings tabs after close this dialog." +msgstr "Transfira as opções selecionadas do perfil à esquerda para o da direita.\n" +"Nota: Novos perfis modificados serão selecionados nas guias de configurações após fechar este diálogo." msgid "Transfer values from left to right" msgstr "Transferir valores da esquerda para a direita" -msgid "" -"If enabled, this dialog can be used for transfer selected values from left " -"to right preset." -msgstr "" -"Se ativo, este diálogo pode ser usado para transferir valores selecionados " -"do perfil à esquerda para o da direita." +msgid "If enabled, this dialog can be used for transfer selected values from left to right preset." +msgstr "Se ativo, este diálogo pode ser usado para transferir valores selecionados do perfil à esquerda para o da direita." msgid "Add File" msgstr "Adicionar arquivo" @@ -8202,7 +7221,7 @@ msgstr "Definir como capa" msgid "Cover" msgstr "Capa" -#, boost-format +#, possible-boost-format msgid "The name \"%1%\" already exists." msgstr "O nome \"%1%\" já existe." @@ -8224,7 +7243,7 @@ msgstr "Autor" msgid "Model Name" msgstr "Nome do Modelo" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%s Update" msgstr "%s Atualizar" @@ -8246,16 +7265,13 @@ msgstr "Configuração incompatível" msgid "the configuration package is incompatible with current application." msgstr "o pacote de configuração é incompatível com a aplicação atual." -#, c-format, boost-format -msgid "" -"The configuration package is incompatible with current application.\n" +#, possible-c-format, possible-boost-format +msgid "The configuration package is incompatible with current application.\n" "%s will update the configuration package, Otherwise it won't be able to start" -msgstr "" -"O pacote de configuração é incompatível com a aplicação atual.\n" -"%s atualizará o pacote de configuração, caso contrário, não será possível " -"iniciar" +msgstr "O pacote de configuração é incompatível com a aplicação atual.\n" +"%s atualizará o pacote de configuração, caso contrário, não será possível iniciar" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Exit %s" msgstr "Sair %s" @@ -8274,28 +7290,10 @@ msgstr "A configuração está atualizada." msgid "Ramming customization" msgstr "Customização de ramming" -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 "" -"O moldeamento de extremidade denota a extrusão rápida logo antes de uma " -"troca de ferramentas em uma impressora MM de extrusão única. Seu propósito é " -"dar forma adequadamente à extremidade do filamento descarregado para que não " -"impeça a inserção do novo filamento e possa ser reinserido posteriormente. " -"Essa fase é importante e diferentes materiais podem exigir velocidades de " -"extrusão diferentes para obter uma boa forma. Por esse motivo, as taxas de " -"extrusão durante o moldeamento de extremidade são ajustáveis.\n" -"\n" -"Esta é uma configuração de nível especialista, ajustes incorretos " -"provavelmente resultarão em travamentos, moagem da roda de extrusão no " -"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 "O moldeamento de extremidade denota a extrusão rápida logo antes de uma troca de ferramentas em uma impressora MM de extrusão única. Seu propósito é dar forma adequadamente à extremidade do filamento descarregado para que não impeça a inserção do novo filamento e possa ser reinserido posteriormente. Essa fase é importante e diferentes materiais podem exigir velocidades de extrusão diferentes para obter uma boa forma. Por esse motivo, as taxas de extrusão durante o moldeamento de extremidade são ajustáveis.\n\n" +"Esta é uma configuração de nível especialista, ajustes incorretos provavelmente resultarão em travamentos, moagem da roda de extrusão no filamento, etc." msgid "Total ramming time" msgstr "Tempo total de moldeamento de extremidade" @@ -8321,22 +7319,17 @@ msgstr "Recalcular" msgid "Flushing volumes for filament change" msgstr "Volumes de limpeza para troca de filamento" -msgid "" -"Orca would re-calculate your flushing volumes everytime the filaments color " -"changed. You could disable the auto-calculate in Orca Slicer > Preferences" -msgstr "" -"O Orca recalculará seus volumes de limpeza toda vez que a cor dos filamentos " -"for alterada. Você pode desativar o cálculo automático em Orca Slicer > " -"Preferências" +msgid "Orca would re-calculate your flushing volumes everytime the filaments color changed. You could disable the auto-calculate in Orca Slicer > Preferences" +msgstr "O Orca recalculará seus volumes de limpeza toda vez que a cor dos filamentos for alterada. Você pode desativar o cálculo automático em Orca Slicer > Preferências" msgid "Flushing volume (mm³) for each filament pair." msgstr "Volume de limpeza (mm³) para cada par de filamentos." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Suggestion: Flushing Volume in range [%d, %d]" msgstr "Sugestão: Volume de Limpeza no intervalo [%d, %d]" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "The multiplier should be in range [%.2f, %.2f]." msgstr "O multiplicador deve estar no intervalo [%.2f, %.2f]." @@ -8421,14 +7414,8 @@ msgstr "Shift+A" msgid "Shift+R" msgstr "Shift+R" -msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." -msgstr "" -"Orienta automaticamente os objetos selecionados ou todos os objetos. Se " -"houver objetos selecionados, ele apenas orientará os selecionados. Caso " -"contrário, orientará todos os objetos no disco atual." +msgid "Auto orientates selected objects or all objects.If there are selected objects, it just orientates the selected ones.Otherwise, it will orientates all objects in the current disk." +msgstr "Orienta automaticamente os objetos selecionados ou todos os objetos. Se houver objetos selecionados, ele apenas orientará os selecionados. Caso contrário, orientará todos os objetos no disco atual." msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8533,7 +7520,7 @@ msgid "Gizmo scale" msgstr "Escala do gizmo" msgid "Gizmo rotate" -msgstr "Rodar gizmo" +msgstr "Rotacionar gizmo" msgid "Gizmo cut" msgstr "Cortar gizmo" @@ -8629,28 +7616,25 @@ msgid "Shift+Mouse wheel" msgstr "Shift+Roda do mouse" msgid "Horizontal slider - Move to start position" -msgstr "" +msgstr "Barra deslizante horizontal — Mover para a posição inicial" msgid "Horizontal slider - Move to last position" -msgstr "" +msgstr "Barra deslizante horizontal — Mover para a última posição" msgid "Release Note" msgstr "Nota de lançamento" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "version %s update information :" msgstr "informações de atualização da versão %s:" msgid "Network plug-in update" msgstr "Atualização do plug-in de rede" -msgid "" -"Click OK to update the Network plug-in when Orca Slicer launches next time." -msgstr "" -"Clique em OK para atualizar o plug-in de rede quando o Orca Slicer for " -"iniciado novamente." +msgid "Click OK to update the Network plug-in when Orca Slicer launches next time." +msgstr "Clique em OK para atualizar o plug-in de rede quando o Orca Slicer for iniciado novamente." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "A new Network plug-in(%s) available, Do you want to install it?" msgstr "Um novo plug-in de rede (%s) está disponível. Deseja instalá-lo?" @@ -8667,37 +7651,37 @@ msgid "resume" msgstr "retomar" msgid "Resume Printing" -msgstr "" +msgstr "Retomar impressão" msgid "Resume Printing(defects acceptable)" -msgstr "" +msgstr "Retomar Impressão (defeitos aceitáveis)" msgid "Resume Printing(problem solved)" -msgstr "" +msgstr "Retomar Impressão (problema resolvido)" msgid "Stop Printing" -msgstr "" +msgstr "Parar impressão" msgid "Check Assistant" -msgstr "" +msgstr "Checar Assistente" msgid "Filament Extruded, Continue" -msgstr "" +msgstr "Filamento Extrudado, Continuar" msgid "Not Extruded Yet, Retry" -msgstr "" +msgstr "Não Extrudado, Tente Novamente" msgid "Finished, Continue" -msgstr "" +msgstr "Concluído, Continuar" msgid "Load Filament" msgstr "Carregar Filamento" msgid "Filament Loaded, Resume" -msgstr "" +msgstr "Filamento Carregado, Retomar" msgid "View Liveview" -msgstr "" +msgstr "Exibir vista ao vivo" msgid "Confirm and Update Nozzle" msgstr "Confirmar e Atualizar Bico" @@ -8705,18 +7689,11 @@ msgstr "Confirmar e Atualizar Bico" msgid "LAN Connection Failed (Sending print file)" msgstr "Falha na conexão LAN (enviando arquivo de impressão)" -msgid "" -"Step 1, please confirm Orca Slicer and your printer are in the same LAN." -msgstr "" -"Passo 1, por favor, confirme se o Orca Slicer e sua impressora estão na " -"mesma LAN." +msgid "Step 1, please confirm Orca Slicer and your printer are in the same LAN." +msgstr "Passo 1, por favor, confirme se o Orca Slicer e sua impressora estão na mesma LAN." -msgid "" -"Step 2, if the IP and Access Code below are different from the actual values " -"on your printer, please correct them." -msgstr "" -"Passo 2, se o IP e o Código de Acesso abaixo forem diferentes dos valores " -"reais na sua impressora, corrija-os." +msgid "Step 2, if the IP and Access Code below are different from the actual values on your printer, please correct them." +msgstr "Passo 2, se o IP e o Código de Acesso abaixo forem diferentes dos valores reais na sua impressora, corrija-os." msgid "IP" msgstr "PI" @@ -8728,8 +7705,7 @@ msgid "Where to find your printer's IP and Access Code?" msgstr "Onde encontrar o IP e o Código de Acesso da sua impressora?" msgid "Step 3: Ping the IP address to check for packet loss and latency." -msgstr "" -"Passo 3: Pingue o endereço IP para verificar a perda de pacotes e a latência." +msgstr "Passo 3: Pingue o endereço IP para verificar a perda de pacotes e a latência." msgid "Test" msgstr "Testar" @@ -8740,11 +7716,9 @@ msgstr "IP e Código de Acesso Verificados! Você pode fechar a janela" msgid "Connection failed, please double check IP and Access Code" msgstr "Falha na conexão, por favor, verifique o IP e o Código de Acesso" -msgid "" -"Connection failed! If your IP and Access Code is correct, \n" +msgid "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" -msgstr "" -"Conexão falhou! Se o seu IP e Código de Acesso estão corretos, \n" +msgstr "Conexão falhou! Se o seu IP e Código de Acesso estão corretos, \n" "por favor, passe para o passo 3 para resolver problemas de rede" msgid "Model:" @@ -8774,30 +7748,14 @@ msgstr "Falha na atualização" msgid "Updating successful" msgstr "Atualização bem-sucedida" -msgid "" -"Are you sure you want to update? This will take about 10 minutes. Do not " -"turn off the power while the printer is updating." -msgstr "" -"Tem certeza de que deseja atualizar? Isso levará cerca de 10 minutos. Não " -"desligue a energia enquanto a impressora estiver atualizando." +msgid "Are you sure you want to update? This will take about 10 minutes. Do not turn off the power while the printer is updating." +msgstr "Tem certeza de que deseja atualizar? Isso levará cerca de 10 minutos. Não desligue a energia enquanto a impressora estiver atualizando." -msgid "" -"An important update was detected and needs to be run before printing can " -"continue. Do you want to update now? You can also update later from 'Upgrade " -"firmware'." -msgstr "" -"Uma atualização importante foi detectada e precisa ser executada antes que a " -"impressão possa continuar. Deseja atualizar agora? Você também pode " -"atualizar posteriormente em 'Atualizar firmware'." +msgid "An important update was detected and needs to be run before printing can continue. Do you want to update now? You can also update later from 'Upgrade firmware'." +msgstr "Uma atualização importante foi detectada e precisa ser executada antes que a impressão possa continuar. Deseja atualizar agora? Você também pode atualizar posteriormente em 'Atualizar firmware'." -msgid "" -"The firmware version is abnormal. Repairing and updating are required before " -"printing. Do you want to update now? You can also update later on printer or " -"update next time starting Orca." -msgstr "" -"A versão do firmware está anormal. É necessário reparar e atualizar antes de " -"imprimir. Deseja atualizar agora? Você também pode atualizar mais tarde na " -"impressora ou na próxima vez que iniciar o estúdio." +msgid "The firmware version is abnormal. Repairing and updating are required before printing. Do you want to update now? You can also update later on printer or update next time starting Orca." +msgstr "A versão do firmware está anormal. Reparar e atualizar é necessário antes de imprimir. Você deseja atualizar agora? Você também pode atualizar mais tarde na impressora ou atualizar da próxima vez que iniciar o Orca." msgid "Extension Board" msgstr "Mesa de Extensão" @@ -8850,14 +7808,12 @@ msgstr "Reparo concluído" msgid "Repair canceled" msgstr "Reparo cancelado" -#, boost-format +#, possible-boost-format msgid "Copying of file %1% to %2% failed: %3%" msgstr "Falha ao copiar o arquivo %1% para %2%: %3%" msgid "Need to check the unsaved changes before configuration updates." -msgstr "" -"É necessário verificar as alterações não salvas antes das atualizações de " -"configuração." +msgstr "É necessário verificar as alterações não salvas antes das atualizações de configuração." msgid "Configuration package: " msgstr "Pacote de configuração: " @@ -8868,43 +7824,30 @@ msgstr " atualizado para " msgid "Open G-code file:" msgstr "Abrir arquivo G-code:" -msgid "" -"One object has empty initial layer and can't be printed. Please Cut the " -"bottom or enable supports." -msgstr "" -"Um objeto tem uma primeira camada vazia e não pode ser impresso. Por favor, " -"corte a base ou habilite os suportes." +msgid "One object has empty initial layer and can't be printed. Please Cut the bottom or enable supports." +msgstr "Um objeto tem uma primeira camada vazia e não pode ser impresso. Por favor, corte a base ou habilite os suportes." -#, boost-format +#, possible-boost-format msgid "Object can't be printed for empty layer between %1% and %2%." -msgstr "" -"O objeto não pode ser impresso devido a uma camada vazia entre %1% e %2%." +msgstr "O objeto não pode ser impresso devido a uma camada vazia entre %1% e %2%." -#, boost-format +#, possible-boost-format msgid "Object: %1%" msgstr "Objeto: %1%" -msgid "" -"Maybe parts of the object at these height are too thin, or the object has " -"faulty mesh" -msgstr "" -"Talvez partes do objeto nessa altura sejam muito finas, ou o objeto tenha " -"uma malha com falhas" +msgid "Maybe parts of the object at these height are too thin, or the object has faulty mesh" +msgstr "Talvez partes do objeto nessa altura sejam muito finas, ou o objeto tenha uma malha com falhas" msgid "No object can be printed. Maybe too small" msgstr "Nenhum objeto pode ser impresso. Talvez seja muito pequeno" -msgid "" -"Failed to generate gcode for invalid custom G-code.\n" -"\n" -msgstr "" -"Falha ao gerar o código G para um G-code personalizado inválido.\n" -"\n" +msgid "Failed to generate gcode for invalid custom G-code.\n\n" +msgstr "Falha ao gerar o código G para um G-code personalizado inválido.\n\n" msgid "Please check the custom G-code or use the default custom G-code." msgstr "Verifique o G-code personalizado ou use o G-code personalizado padrão." -#, boost-format +#, possible-boost-format msgid "Generating G-code: layer %1%" msgstr "Gerando código G: camada %1%" @@ -8944,18 +7887,12 @@ msgstr "Transição de suporte" msgid "Multiple" msgstr "Múltiplo" -#, boost-format +#, possible-boost-format msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " -msgstr "" -"Falha ao calcular a largura da linha de %1%. Não é possível obter o valor de " -"\"%2%\". " +msgstr "Falha ao calcular a largura da linha de %1%. Não é possível obter o valor de \"%2%\". " -msgid "" -"Invalid spacing supplied to Flow::with_spacing(), check your layer height " -"and extrusion width" -msgstr "" -"Espaçamento inválido fornecido para Flow::with_spacing(), verifique a altura " -"da camada e a largura da extrusão." +msgid "Invalid spacing supplied to Flow::with_spacing(), check your layer height and extrusion width" +msgstr "Espaçamento inválido fornecido para Flow::with_spacing(), verifique a altura da camada e a largura da extrusão." msgid "undefined error" msgstr "erro indefinido" @@ -9050,18 +7987,15 @@ msgstr "validação falhou" msgid "write callback failed" msgstr "falha na chamada de escrita" -#, boost-format -msgid "" -"%1% is too close to exclusion area, there may be collisions when printing." -msgstr "" -"%1% está muito perto da área de exclusão, pode haver colisões durante a " -"impressão." +#, possible-boost-format +msgid "%1% is too close to exclusion area, there may be collisions when printing." +msgstr "%1% está muito perto da área de exclusão, pode haver colisões durante a impressão." -#, boost-format +#, possible-boost-format msgid "%1% is too close to others, and collisions may be caused." msgstr "%1% está muito perto de outros, e colisões podem ocorrer." -#, boost-format +#, possible-boost-format msgid "%1% is too tall, and collisions will be caused." msgstr "%1% está muito alto, e ocorrerão colisões." @@ -9069,9 +8003,7 @@ msgid " is too close to others, there may be collisions when printing." msgstr " está muito perto de outros, pode haver colisões durante a impressão." msgid " is too close to exclusion area, there may be collisions when printing." -msgstr "" -" está muito perto da área de exclusão, pode haver colisões durante a " -"impressão." +msgstr " está muito perto da área de exclusão, pode haver colisões durante a impressão." msgid "Prime Tower" msgstr "Torre Principal" @@ -9082,128 +8014,67 @@ msgstr " está muito perto de outros, e colisões podem ocorrer.\n" msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr " está muito perto da área de exclusão, e ocorrerão colisões.\n" -msgid "" -"Can not print multiple filaments which have large difference of temperature " -"together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" -msgstr "" -"Não é possível imprimir vários filamentos que têm grande diferença de " -"temperatura juntos. Caso contrário, o extrusor e a bocal podem ficar " -"bloqueados ou danificados durante a impressão" +msgid "Can not print multiple filaments which have large difference of temperature together. Otherwise, the extruder and nozzle may be blocked or damaged during printing" +msgstr "Não é possível imprimir vários filamentos que têm grande diferença de temperatura juntos. Caso contrário, o extrusor e a bocal podem ficar bloqueados ou danificados durante a impressão" msgid "No extrusions under current settings." msgstr "Nenhuma extrusão com as configurações atuais." -msgid "" -"Smooth mode of timelapse is not supported when \"by object\" sequence is " -"enabled." -msgstr "" -"O modo suave do timelapse não é suportado quando a sequência \"por objeto\" " -"está ativada." +msgid "Smooth mode of timelapse is not supported when \"by object\" sequence is enabled." +msgstr "O modo suave do timelapse não é suportado quando a sequência \"por objeto\" está ativada." -msgid "" -"Please select \"By object\" print sequence to print multiple objects in " -"spiral vase mode." -msgstr "" -"Por favor, selecione a sequência de impressão \"Por objeto\" para imprimir " -"vários objetos no modo vaso espiral." +msgid "Please select \"By object\" print sequence to print multiple objects in spiral vase mode." +msgstr "Por favor, selecione a sequência de impressão \"Por objeto\" para imprimir vários objetos no modo vaso espiral." -msgid "" -"The spiral vase mode does not work when an object contains more than one " -"materials." -msgstr "" -"O modo de vaso espiral não funciona quando um objeto contém mais de um " -"material." +msgid "The spiral vase mode does not work when an object contains more than one materials." +msgstr "O modo de vaso espiral não funciona quando um objeto contém mais de um material." -#, boost-format +#, possible-boost-format msgid "The object %1% exceeds the maximum build volume height." msgstr "O objeto %1% excede a altura máxima do volume de impressão." -#, boost-format -msgid "" -"While the object %1% itself fits the build volume, its last layer exceeds " -"the maximum build volume height." -msgstr "" -"Embora o objeto %1% em si se ajuste ao volume de impressão, sua última " -"camada excede a altura máxima do volume de impressão." +#, possible-boost-format +msgid "While the object %1% itself fits the build volume, its last layer exceeds the maximum build volume height." +msgstr "Embora o objeto %1% em si se ajuste ao volume de impressão, sua última camada excede a altura máxima do volume de impressão." -msgid "" -"You might want to reduce the size of your model or change current print " -"settings and retry." -msgstr "" -"Você pode querer reduzir o tamanho do seu modelo ou alterar as configurações " -"de impressão atuais e tentar novamente." +msgid "You might want to reduce the size of your model or change current print settings and retry." +msgstr "Você pode querer reduzir o tamanho do seu modelo ou alterar as configurações de impressão atuais e tentar novamente." msgid "Variable layer height is not supported with Organic supports." msgstr "A altura de camada variável não é suportada com suportes orgânicos." -msgid "" -"Different nozzle diameters and different filament diameters is not allowed " -"when prime tower is enabled." -msgstr "" -"Diâmetros de bocal diferentes e diâmetros de filamento diferentes não são " -"permitidos quando a torre principal está ativada." +msgid "Different nozzle diameters and different filament diameters is not allowed when prime tower is enabled." +msgstr "Diâmetros de bocal diferentes e diâmetros de filamento diferentes não são permitidos quando a torre principal está ativada." -msgid "" -"The Wipe Tower is currently only supported with the relative extruder " -"addressing (use_relative_e_distances=1)." -msgstr "" -"A Torre de Limpeza atualmente só é suportada com o endereçamento relativo do " -"extrusor (use_relative_e_distances=1)." +msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)." +msgstr "A Torre de Limpeza atualmente só é suportada com o endereçamento relativo do extrusor (use_relative_e_distances=1)." -msgid "" -"Ooze prevention is currently not supported with the prime tower enabled." -msgstr "" -"A prevenção de oozing não é atualmente suportada com a torre principal " -"ativada." +msgid "Ooze prevention is currently not supported with the prime tower enabled." +msgstr "A prevenção de oozing não é atualmente suportada com a torre principal ativada." -msgid "" -"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " -"RepRapFirmware and Repetier G-code flavors." -msgstr "" -"A torre principal atualmente só é suportada para os G-code tipo Marlin, " -"RepRap/Sprinter, RepRapFirmware e Repetier." +msgid "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, RepRapFirmware and Repetier G-code flavors." +msgstr "A torre principal atualmente só é suportada para os G-code tipo Marlin, RepRap/Sprinter, RepRapFirmware e Repetier." msgid "The prime tower is not supported in \"By object\" print." msgstr "A torre principal não é suportada na impressão \"Por objeto\"." -msgid "" -"The prime tower is not supported when adaptive layer height is on. It " -"requires that all objects have the same layer height." -msgstr "" -"A torre principal não é suportada quando a altura de camada adaptativa está " -"ativada. Requer que todos os objetos tenham a mesma altura de camada." +msgid "The prime tower is not supported when adaptive layer height is on. It requires that all objects have the same layer height." +msgstr "A torre principal não é suportada quando a altura de camada adaptativa está ativada. Requer que todos os objetos tenham a mesma altura de camada." msgid "The prime tower requires \"support gap\" to be multiple of layer height" -msgstr "" -"A torre principal requer que o \"espaço de suporte\" seja múltiplo da altura " -"da camada" +msgstr "A torre principal requer que o \"espaço de suporte\" seja múltiplo da altura da camada" msgid "The prime tower requires that all objects have the same layer heights" -msgstr "" -"A torre principal requer que todos os objetos tenham as mesmas alturas de " -"camada" +msgstr "A torre principal requer que todos os objetos tenham as mesmas alturas de camada" -msgid "" -"The prime tower requires that all objects are printed over the same number " -"of raft layers" -msgstr "" -"A torre principal requer que todos os objetos sejam impressos sobre o mesmo " -"número de camadas de base" +msgid "The prime tower requires that all objects are printed over the same number of raft layers" +msgstr "A torre principal requer que todos os objetos sejam impressos sobre o mesmo número de camadas de base" -msgid "" -"The prime tower requires that all objects are sliced with the same layer " -"heights." -msgstr "" -"A torre principal requer que todos os objetos sejam fatiados com as mesmas " -"alturas de camada." +msgid "The prime tower requires that all objects are sliced with the same layer heights." +msgstr "A torre principal requer que todos os objetos sejam fatiados com as mesmas alturas de camada." -msgid "" -"The prime tower is only supported if all objects have the same variable " -"layer height" -msgstr "" -"A torre principal só é suportada se todos os objetos tiverem a mesma altura " -"de camada variável" +msgid "The prime tower is only supported if all objects have the same variable layer height" +msgstr "A torre principal só é suportada se todos os objetos tiverem a mesma altura de camada variável" msgid "Too small line width" msgstr "Largura de linha muito pequena" @@ -9211,119 +8082,60 @@ msgstr "Largura de linha muito pequena" msgid "Too large line width" msgstr "Largura de linha muito grande" -msgid "" -"The prime tower requires that support has the same layer height with object." -msgstr "" -"A torre principal requer que o suporte tenha a mesma altura de camada do " -"objeto." +msgid "The prime tower requires that support has the same layer height with object." +msgstr "A torre principal requer que o suporte tenha a mesma altura de camada do objeto." -msgid "" -"Organic support tree tip diameter must not be smaller than support material " -"extrusion width." -msgstr "" -"O diâmetro da ponta da árvore de suporte orgânico não deve ser menor do que " -"a largura de extrusão do material de suporte." +msgid "Organic support tree tip diameter must not be smaller than support material extrusion width." +msgstr "O diâmetro da ponta da árvore de suporte orgânico não deve ser menor do que a largura de extrusão do material de suporte." -msgid "" -"Organic support branch diameter must not be smaller than 2x support material " -"extrusion width." -msgstr "" -"O diâmetro do ramo de suporte orgânico não deve ser menor do que 2x a " -"largura de extrusão do material de suporte." +msgid "Organic support branch diameter must not be smaller than 2x support material extrusion width." +msgstr "O diâmetro do ramo de suporte orgânico não deve ser menor do que 2x a largura de extrusão do material de suporte." -msgid "" -"Organic support branch diameter must not be smaller than support tree tip " -"diameter." -msgstr "" -"O diâmetro do ramo de suporte orgânico não deve ser menor do que o diâmetro " -"da ponta da árvore de suporte." +msgid "Organic support branch diameter must not be smaller than support tree tip diameter." +msgstr "O diâmetro do ramo de suporte orgânico não deve ser menor do que o diâmetro da ponta da árvore de suporte." -msgid "" -"Support enforcers are used but support is not enabled. Please enable support." -msgstr "" -"Os reforços de suporte são usados, mas o suporte não está habilitado. Por " -"favor, habilite o suporte." +msgid "Support enforcers are used but support is not enabled. Please enable support." +msgstr "Os reforços de suporte são usados, mas o suporte não está habilitado. Por favor, habilite o suporte." msgid "Layer height cannot exceed nozzle diameter" msgstr "A altura da camada não pode exceder o diâmetro da bocal" -msgid "" -"Relative extruder addressing requires resetting the extruder position at " -"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " -"layer_gcode." -msgstr "" -"O endereçamento relativo do extrusor requer a reinicialização da posição do " -"extrusor em cada camada para evitar perda de precisão de ponto flutuante. " -"Adicione \"G92 E0\" ao código de camada." +msgid "Relative extruder addressing requires resetting the extruder position at each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to layer_gcode." +msgstr "O endereçamento relativo do extrusor requer a reinicialização da posição do extrusor em cada camada para evitar perda de precisão de ponto flutuante. Adicione \"G92 E0\" ao código de camada." -msgid "" -"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " -"absolute extruder addressing." -msgstr "" -"\"G92 E0\" foi encontrado em before_layer_gcode, o que é incompatível com o " -"endereçamento absoluto do extrusor." +msgid "\"G92 E0\" was found in before_layer_gcode, which is incompatible with absolute extruder addressing." +msgstr "\"G92 E0\" foi encontrado em before_layer_gcode, o que é incompatível com o endereçamento absoluto do extrusor." -msgid "" -"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " -"extruder addressing." -msgstr "" -"\"G92 E0\" foi encontrado em layer_gcode, o que é incompatível com o " -"endereçamento absoluto do extrusor." +msgid "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute extruder addressing." +msgstr "\"G92 E0\" foi encontrado em layer_gcode, o que é incompatível com o endereçamento absoluto do extrusor." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Plate %d: %s does not support filament %s" msgstr "Mesa %d: %s não suporta filamento %s" -msgid "" -"Setting the jerk speed too low could lead to artifacts on curved surfaces" -msgstr "" -"Definir a velocidade de jerk muito baixa pode levar a artefatos em " -"superfícies curvas" +msgid "Setting the jerk speed too low could lead to artifacts on curved surfaces" +msgstr "Definir a velocidade de jerk muito baixa pode levar a artefatos em superfícies curvas" -msgid "" -"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/" -"machine_max_jerk_y).\n" -"Orca will automatically cap the jerk speed to ensure it doesn't surpass the " -"printer's capabilities.\n" -"You can adjust the maximum jerk setting in your printer's configuration to " -"get higher speeds." -msgstr "" -"A configuração de jerk excede o jerk máximo da impressora " -"(machine_max_jerk_x/machine_max_jerk_y).\n" -"Orca automaticamente limitará a velocidade do jerk para garantir que não " -"ultrapasse as capacidades da impressora.\n" -"Você pode ajustar a configuração de jerk máximo na configuração da sua " -"impressora para obter velocidades mais altas." +msgid "The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/machine_max_jerk_y).\n" +"Orca will automatically cap the jerk speed to ensure it doesn't surpass the printer's capabilities.\n" +"You can adjust the maximum jerk setting in your printer's configuration to get higher speeds." +msgstr "A configuração de jerk excede o jerk máximo da impressora (machine_max_jerk_x/machine_max_jerk_y).\n" +"Orca automaticamente limitará a velocidade do jerk para garantir que não ultrapasse as capacidades da impressora.\n" +"Você pode ajustar a configuração de jerk máximo na configuração da sua impressora para obter velocidades mais altas." -msgid "" -"The acceleration setting exceeds the printer's maximum acceleration " -"(machine_max_acceleration_extruding).\n" -"Orca will automatically cap the acceleration speed to ensure it doesn't " -"surpass the printer's capabilities.\n" -"You can adjust the machine_max_acceleration_extruding value in your " -"printer's configuration to get higher speeds." -msgstr "" -"A configuração de aceleração excede a aceleração máxima da impressora " -"(machine_max_acceleration_extruding).\n" -"Orca automaticamente limitará a velocidade de aceleração para garantir que " -"não ultrapasse as capacidades da impressora.\n" -"Você pode ajustar o valor de machine_max_acceleration_extruding na " -"configuração da sua impressora para obter velocidades mais altas." +msgid "The acceleration setting exceeds the printer's maximum acceleration (machine_max_acceleration_extruding).\n" +"Orca will automatically cap the acceleration speed to ensure it doesn't surpass the printer's capabilities.\n" +"You can adjust the machine_max_acceleration_extruding value in your printer's configuration to get higher speeds." +msgstr "A configuração de aceleração excede a aceleração máxima da impressora (machine_max_acceleration_extruding).\n" +"Orca automaticamente limitará a velocidade de aceleração para garantir que não ultrapasse as capacidades da impressora.\n" +"Você pode ajustar o valor de machine_max_acceleration_extruding na configuração da sua impressora para obter velocidades mais altas." -msgid "" -"The travel acceleration setting exceeds the printer's maximum travel " -"acceleration (machine_max_acceleration_travel).\n" -"Orca will automatically cap the travel acceleration speed to ensure it " -"doesn't surpass the printer's capabilities.\n" -"You can adjust the machine_max_acceleration_travel value in your printer's " -"configuration to get higher speeds." -msgstr "" -"A configuração de aceleração de deslocamento excede a aceleração máxima de " -"deslocamento da impressora (machine_max_acceleration_travel).\n" -"O Orca irá automaticamente limitar a velocidade de aceleração de " -"deslocamento para garantir que não ultrapasse as capacidades da impressora.\n" -"Você pode ajustar o valor de machine_max_acceleration_travel na configuração " -"da sua impressora para obter velocidades mais altas." +msgid "The travel acceleration setting exceeds the printer's maximum travel acceleration (machine_max_acceleration_travel).\n" +"Orca will automatically cap the travel acceleration speed to ensure it doesn't surpass the printer's capabilities.\n" +"You can adjust the machine_max_acceleration_travel value in your printer's configuration to get higher speeds." +msgstr "A configuração de aceleração de deslocamento excede a aceleração máxima de deslocamento da impressora (machine_max_acceleration_travel).\n" +"O Orca irá automaticamente limitar a velocidade de aceleração de deslocamento para garantir que não ultrapasse as capacidades da impressora.\n" +"Você pode ajustar o valor de machine_max_acceleration_travel na configuração da sua impressora para obter velocidades mais altas." msgid "Generating skirt & brim" msgstr "Gerando saia e borda" @@ -9343,15 +8155,8 @@ msgstr "Área de impressão" msgid "Bed exclude area" msgstr "Área de exclusão da mesa" -msgid "" -"Unprintable area in XY plane. For example, X1 Series printers use the front " -"left corner to cut filament during filament change. The area is expressed as " -"polygon by points in following format: \"XxY, XxY, ...\"" -msgstr "" -"Área não imprimível no plano XY. Por exemplo, impressoras da série X1 usam o " -"canto esquerdo frontal para cortar o filamento durante a troca de filamento. " -"A área é expressa como um polígono por pontos no seguinte formato: \"XxY, " -"XxY, ...\"" +msgid "Unprintable area in XY plane. For example, X1 Series printers use the front left corner to cut filament during filament change. The area is expressed as polygon by points in following format: \"XxY, XxY, ...\"" +msgstr "Área não imprimível no plano XY. Por exemplo, impressoras da série X1 usam o canto esquerdo frontal para cortar o filamento durante a troca de filamento. A área é expressa como um polígono por pontos no seguinte formato: \"XxY, XxY, ...\"" msgid "Bed custom texture" msgstr "Textura personalizada da mesa" @@ -9362,35 +8167,20 @@ msgstr "Modelo personalizado da mesa" msgid "Elephant foot compensation" msgstr "Compensação de pé de elefante" -msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" -msgstr "" -"Reduza a primeira camada na mesa para compensar o efeito de pé de elefante" +msgid "Shrink the initial layer on build plate to compensate for elephant foot effect" +msgstr "Reduza a primeira camada na mesa para compensar o efeito de pé de elefante" msgid "Elephant foot compensation layers" msgstr "Camadas de compensação de pé de elefante" -msgid "" -"The number of layers on which the elephant foot compensation will be active. " -"The first layer will be shrunk by the elephant foot compensation value, then " -"the next layers will be linearly shrunk less, up to the layer indicated by " -"this value." -msgstr "" -"O número de camadas em que a compensação de pé de elefante estará ativa. A " -"primeira camada será reduzida pelo valor de compensação de pé de elefante, e " -"então as próximas camadas serão reduzidas linearmente, até a camada indicada " -"por este valor." +msgid "The number of layers on which the elephant foot compensation will be active. The first layer will be shrunk by the elephant foot compensation value, then the next layers will be linearly shrunk less, up to the layer indicated by this value." +msgstr "O número de camadas em que a compensação de pé de elefante estará ativa. A primeira camada será reduzida pelo valor de compensação de pé de elefante, e então as próximas camadas serão reduzidas linearmente, até a camada indicada por este valor." msgid "layers" msgstr "camadas" -msgid "" -"Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" -msgstr "" -"Altura de fatiamento para cada camada. Altura de camada menor significa mais " -"precisão e mais tempo de impressão" +msgid "Slicing height for each layer. Smaller layer height means more accurate and more printing time" +msgstr "Altura de fatiamento para cada camada. Altura de camada menor significa mais precisão e mais tempo de impressão" msgid "Printable height" msgstr "Altura de impressão" @@ -9402,9 +8192,7 @@ msgid "Preferred orientation" msgstr "Orientação preferida" msgid "Automatically orient stls on the Z-axis upon initial import" -msgstr "" -"Orientar automaticamente os arquivos STL no eixo Z durante a importação " -"inicial" +msgstr "Orientar automaticamente os arquivos STL no eixo Z durante a importação inicial" msgid "Printer preset names" msgstr "Nomes de presets da impressora" @@ -9413,44 +8201,25 @@ msgid "Use 3rd-party print host" msgstr "Usar host de impressão de terceiros" msgid "Allow controlling BambuLab's printer through 3rd party print hosts" -msgstr "" -"Permitir o controle da impressora BambuLab por meio de hosts de impressão de " -"terceiros" +msgstr "Permitir o controle da impressora BambuLab por meio de hosts de impressão de terceiros" msgid "Hostname, IP or URL" msgstr "Nome do host, IP ou URL" -msgid "" -"Orca Slicer can upload G-code files to a printer host. This field should " -"contain the hostname, IP address or URL of the printer host instance. Print " -"host behind HAProxy with basic auth enabled can be accessed by putting the " -"user name and password into the URL in the following format: https://" -"username:password@your-octopi-address/" -msgstr "" -"O Orca Slicer pode enviar arquivos G-code para um host de impressora. Este " -"campo deve conter o nome do host, o endereço IP ou a URL da instância do " -"host de impressora. O host de impressão atrás do HAProxy com autenticação " -"básica ativada pode ser acessado colocando o nome de usuário e senha na URL " -"no seguinte formato: https://username:password@your-octopi-address/" +msgid "Orca Slicer can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance. Print host behind HAProxy with basic auth enabled can be accessed by putting the user name and password into the URL in the following format: https://username:password@your-octopi-address/" +msgstr "O Orca Slicer pode enviar arquivos G-code para um host de impressora. Este campo deve conter o nome do host, o endereço IP ou a URL da instância do host de impressora. O host de impressão atrás do HAProxy com autenticação básica ativada pode ser acessado colocando o nome de usuário e senha na URL no seguinte formato: https://username:password@your-octopi-address/" msgid "Device UI" msgstr "Interface do dispositivo" -msgid "" -"Specify the URL of your device user interface if it's not same as print_host" -msgstr "" -"Especifique a URL da interface do usuário do seu dispositivo se não for a " -"mesma do print_host" +msgid "Specify the URL of your device user interface if it's not same as print_host" +msgstr "Especifique a URL da interface do usuário do seu dispositivo se não for a mesma do print_host" msgid "API Key / Password" msgstr "Chave da API / Senha" -msgid "" -"Orca Slicer can upload G-code files to a printer host. This field should " -"contain the API Key or the password required for authentication." -msgstr "" -"O Orca Slicer pode enviar arquivos G-code para um host de impressora. Este " -"campo deve conter a Chave da API ou a senha necessária para autenticação." +msgid "Orca Slicer can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication." +msgstr "O Orca Slicer pode enviar arquivos G-code para um host de impressora. Este campo deve conter a Chave da API ou a senha necessária para autenticação." msgid "Name of the printer" msgstr "Nome da impressora" @@ -9458,14 +8227,8 @@ msgstr "Nome da impressora" msgid "HTTPS CA File" msgstr "Arquivo CA HTTPS" -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 "" -"O arquivo de certificado CA personalizado pode ser especificado para " -"conexões HTTPS OctoPrint, no formato crt/pem. Se deixado em branco, o " -"repositório de certificados CA padrão do sistema operacional é usado." +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 "O arquivo de certificado CA personalizado pode ser especificado para conexões HTTPS OctoPrint, no formato crt/pem. Se deixado em branco, o repositório de certificados CA padrão do sistema operacional é usado." msgid "User" msgstr "Usuário" @@ -9476,14 +8239,8 @@ msgstr "Senha" msgid "Ignore HTTPS certificate revocation checks" msgstr "Ignorar verificações de revogação de certificado HTTPS" -msgid "" -"Ignore HTTPS certificate revocation checks in case of missing or offline " -"distribution points. One may want to enable this option for self signed " -"certificates if connection fails." -msgstr "" -"Ignorar verificações de revogação de certificado HTTPS em caso de pontos de " -"distribuição ausentes ou offline. Pode-se querer habilitar esta opção para " -"certificados autoassinados se a conexão falhar." +msgid "Ignore HTTPS certificate revocation checks in case of missing or offline distribution points. One may want to enable this option for self signed certificates if connection fails." +msgstr "Ignorar verificações de revogação de certificado HTTPS em caso de pontos de distribuição ausentes ou offline. Pode-se querer habilitar esta opção para certificados autoassinados se a conexão falhar." msgid "Names of presets related to the physical printer" msgstr "Nomes dos presets relacionados à impressora física" @@ -9501,23 +8258,13 @@ msgid "Avoid crossing wall" msgstr "Evitar perímetros" msgid "Detour and avoid to travel across wall which may cause blob on surface" -msgstr "" -"Desvio e evite viajar através do perímetro que pode causar irregularidade na " -"superfície" +msgstr "Desvio e evite viajar através do perímetro que pode causar irregularidade na superfície" msgid "Avoid crossing wall - Max detour length" msgstr "Evitar perímetros - Distância máximo do desvio" -msgid "" -"Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " -"either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" -msgstr "" -"Distância máxima de desvio para evitar atravessar o perímetro. Não desviar " -"se a distância de desvio for maior que esse valor. A distancia do desvio " -"pode ser especificada como um valor absoluto ou como porcentagem (por " -"exemplo, 50%) de um caminho de deslocamento direto. Zero para desativar" +msgid "Maximum detour distance for avoiding crossing wall. Don't detour if the detour distance is large than this value. Detour length could be specified either as an absolute value or as percentage (for example 50%) of a direct travel path. Zero to disable" +msgstr "Distância máxima de desvio para evitar atravessar o perímetro. Não desviar se a distância de desvio for maior que esse valor. A distancia do desvio pode ser especificada como um valor absoluto ou como porcentagem (por exemplo, 50%) de um caminho de deslocamento direto. Zero para desativar" msgid "mm or %" msgstr "mm ou %" @@ -9525,36 +8272,20 @@ msgstr "mm ou %" msgid "Other layers" msgstr "Outras camadas" -msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" -msgstr "" -"Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o " -"filamento não suporta a impressão na Cool Plate (Mesa Fria)" +msgid "Bed temperature for layers except the initial one. Value 0 means the filament does not support to print on the Cool Plate" +msgstr "Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o filamento não suporta a impressão na Cool Plate (Mesa Fria)" msgid "°C" msgstr "°C" -msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" -msgstr "" -"Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o " -"filamento não suporta a impressão no Engenharia Plate" +msgid "Bed temperature for layers except the initial one. Value 0 means the filament does not support to print on the Engineering Plate" +msgstr "Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o filamento não suporta a impressão no Engenharia Plate" -msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" -msgstr "" -"Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o " -"filamento não suporta a impressão no Plate de Alta Temperatura" +msgid "Bed temperature for layers except the initial one. Value 0 means the filament does not support to print on the High Temp Plate" +msgstr "Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o filamento não suporta a impressão no Plate de Alta Temperatura" -msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" -msgstr "" -"Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o " -"filamento não suporta a impressão no Plate de PEI Texturizado" +msgid "Bed temperature for layers except the initial one. Value 0 means the filament does not support to print on the Textured PEI Plate" +msgstr "Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o filamento não suporta a impressão no Plate de PEI Texturizado" msgid "Initial layer" msgstr "Primeira camada" @@ -9562,39 +8293,23 @@ msgstr "Primeira camada" msgid "Initial layer bed temperature" msgstr "Temperatura da mesa da primeira camada" -msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" -msgstr "" -"Temperatura da mesa na primeira camada. O valor 0 significa que o filamento " -"não suporta a impressão na Cool Plate (Mesa Fria)" +msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the Cool Plate" +msgstr "Temperatura da mesa na primeira camada. O valor 0 significa que o filamento não suporta a impressão na Cool Plate (Mesa Fria)" -msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" -msgstr "" -"Temperatura da mesa na primeira camada. O valor 0 significa que o filamento " -"não suporta a impressão no Engenharia Plate" +msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the Engineering Plate" +msgstr "Temperatura da mesa na primeira camada. O valor 0 significa que o filamento não suporta a impressão no Engenharia Plate" -msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" -msgstr "" -"Temperatura da mesa na primeira camada. O valor 0 significa que o filamento " -"não suporta a impressão no Plate de Alta Temperatura" +msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the High Temp Plate" +msgstr "Temperatura da mesa na primeira camada. O valor 0 significa que o filamento não suporta a impressão no Plate de Alta Temperatura" -msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" -msgstr "" -"Temperatura da mesa na primeira camada. O valor 0 significa que o filamento " -"não suporta a impressão no Plate de PEI Texturizado" +msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the Textured PEI Plate" +msgstr "Temperatura da mesa na primeira camada. O valor 0 significa que o filamento não suporta a impressão no Plate de PEI Texturizado" msgid "Bed types supported by the printer" msgstr "Tipos de mesa suportadas pela impressora" msgid "Cool Plate" -msgstr "Cool Plate (Mesa fria)" +msgstr "Mesa Fria" msgid "Engineering Plate" msgstr "Engenharia Plate" @@ -9617,53 +8332,27 @@ msgstr "Este código G é inserido em cada mudança de camada antes de levantar msgid "Bottom shell layers" msgstr "Camadas de base" -msgid "" -"This is the number of solid layers of bottom shell, including the bottom " -"surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" -msgstr "" -"Este é o número de camadas sólidas da base, incluindo a primeira camada. " -"Quando a espessura calculada por este valor for mais fina do que a espessura " -"da base, o número das camadas da base serão aumentadas" +msgid "This is the number of solid layers of bottom shell, including the bottom surface layer. When the thickness calculated by this value is thinner than bottom shell thickness, the bottom shell layers will be increased" +msgstr "Este é o número de camadas sólidas da base, incluindo a primeira camada. Quando a espessura calculada por este valor for mais fina do que a espessura da base, o número das camadas da base serão aumentadas" msgid "Bottom shell thickness" msgstr "Espessura da base" -msgid "" -"The number of bottom solid layers is increased when slicing if the thickness " -"calculated by bottom shell layers is thinner than this value. This can avoid " -"having too thin shell when layer height is small. 0 means that this setting " -"is disabled and thickness of bottom shell is absolutely determained by " -"bottom shell layers" -msgstr "" -"O número de camadas sólidas da base é aumentado ao fatiar se a espessura " -"calculada pelas camadas da base for mais fina do que este valor. Isso pode " -"evitar que a base seja muito fina quando a altura da camada é pequena. 0 " -"significa que esta configuração está desativada e a espessura da base é " -"absolutamente determinada pelas camadas da base" +msgid "The number of bottom solid layers is increased when slicing if the thickness calculated by bottom shell layers is thinner than this value. This can avoid having too thin shell when layer height is small. 0 means that this setting is disabled and thickness of bottom shell is absolutely determained by bottom shell layers" +msgstr "O número de camadas sólidas da base é aumentado ao fatiar se a espessura calculada pelas camadas da base for mais fina do que este valor. Isso pode evitar que a base seja muito fina quando a altura da camada é pequena. 0 significa que esta configuração está desativada e a espessura da base é absolutamente determinada pelas camadas da base" msgid "Apply gap fill" msgstr "Preenchimento de vão" -msgid "" -"Enables gap fill for the selected surfaces. The minimum gap length that will " -"be filled can be controlled from the filter out tiny gaps option below.\n" -"\n" +msgid "Enables gap fill for the selected surfaces. The minimum gap length that will be filled can be controlled from the filter out tiny gaps option below.\n\n" "Options:\n" "1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces\n" -"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " -"only\n" +"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces only\n" "3. Nowhere: Disables gap fill\n" -msgstr "" -"Ativa o preenchimento de vão para as superfícies selecionadas. O comprimento " -"mínimo do vão que será preenchida pode ser controlado a partir da opção de " -"filtrar pequenas s abaixo.\n" -"\n" +msgstr "Ativa o preenchimento de vão para as superfícies selecionadas. O comprimento mínimo do vão que será preenchida pode ser controlado a partir da opção de filtrar pequenas s abaixo.\n\n" "Opções:\n" -"1. Em todos os lugares: Aplica preenchimento de s às superfícies sólidas " -"superior, inferior e interna\n" -"2. Superfícies superior e inferior: Aplica preenchimento de s apenas às " -"superfícies superior e inferior\n" +"1. Em todos os lugares: Aplica preenchimento de s às superfícies sólidas superior, inferior e interna\n" +"2. Superfícies superior e inferior: Aplica preenchimento de s apenas às superfícies superior e inferior\n" "3. Em nenhum lugar: Desativa o preenchimento de s\n" msgid "Everywhere" @@ -9678,170 +8367,92 @@ msgstr "Nunca" msgid "Force cooling for overhang and bridge" msgstr "Forçar resfriamento para overhangs e pontes" -msgid "" -"Enable this option to optimize part cooling fan speed for overhang and " -"bridge to get better cooling" -msgstr "" -"Ative esta opção para otimizar a velocidade do ventilador de resfriamento de " -"peças para overhangs e ponte para obter melhor resfriamento" +msgid "Enable this option to optimize part cooling fan speed for overhang and bridge to get better cooling" +msgstr "Ative esta opção para otimizar a velocidade do ventilador de resfriamento de peças para overhangs e ponte para obter melhor resfriamento" msgid "Fan speed for overhang" msgstr "Velocidade do ventilador para overhangs" -msgid "" -"Force part cooling fan to be this speed when printing bridge or overhang " -"wall which has large overhang degree. Forcing cooling for overhang and " -"bridge can get better quality for these part" -msgstr "" -"Forçar o ventilador de resfriamento da peça a ser nesta velocidade ao " -"imprimir ponte ou overhang que tenha um grande grau de inclinação. Forçar o " -"resfriamento para overhang e ponte pode obter melhor qualidade para estas " -"partes" +msgid "Force part cooling fan to be this speed when printing bridge or overhang wall which has large overhang degree. Forcing cooling for overhang and bridge can get better quality for these part" +msgstr "Forçar o ventilador de resfriamento da peça a ser nesta velocidade ao imprimir ponte ou overhang que tenha um grande grau de inclinação. Forçar o resfriamento para overhang e ponte pode obter melhor qualidade para estas partes" msgid "Cooling overhang threshold" -msgstr "Limiar de resfriamento de Overhang" +msgstr "Overhang limiar de resfriamento" -#, c-format -msgid "" -"Force cooling fan to be specific speed when overhang degree of printed part " -"exceeds this value. Expressed as percentage which indicides how much width " -"of the line without support from lower layer. 0% means forcing cooling for " -"all outer wall no matter how much overhang degree" -msgstr "" -"Forçar o ventilador de resfriamento a ser uma velocidade específica quando o " -"grau de inclinação da peça impressa excede este valor. Expresso como " -"porcentagem, que indica quanto da largura da linha sem suporte da camada " -"inferior.Zero significa forçar o resfriamento para toda o perímetro externo, " -"não importa quanto seja o grau de inclinação" +#, possible-c-format +msgid "Force cooling fan to be specific speed when overhang degree of printed part exceeds this value. Expressed as percentage which indicides how much width of the line without support from lower layer. 0% means forcing cooling for all outer wall no matter how much overhang degree" +msgstr "Forçar o ventilador de resfriamento a ser uma velocidade específica quando o grau de inclinação da peça impressa excede este valor. Expresso como porcentagem, que indica quanto da largura da linha sem suporte da camada inferior.Zero significa forçar o resfriamento para toda o perímetro externo, não importa quanto seja o grau de inclinação" msgid "Bridge infill direction" msgstr "Direção de preenchimento de ponte" -msgid "" -"Bridging angle override. If left to zero, the bridging angle will be " -"calculated automatically. Otherwise the provided angle will be used for " -"external bridges. Use 180°for zero angle." -msgstr "" -"Substituição de ângulo de ponte. Se deixado em zero, o ângulo de ponte será " -"calculado automaticamente. Caso contrário, o ângulo fornecido será usado " -"para pontes externas. Use 180° para ângulo zero." +msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for external bridges. Use 180°for zero angle." +msgstr "Substituição de ângulo de ponte. Se deixado em zero, o ângulo de ponte será calculado automaticamente. Caso contrário, o ângulo fornecido será usado para pontes externas. Use 180° para ângulo zero." msgid "Bridge density" msgstr "Densidade de ponte" msgid "Density of external bridges. 100% means solid bridge. Default is 100%." -msgstr "" -"Densidade de pontes externas. 100% significa ponte sólida. O padrão é 100%." +msgstr "Densidade de pontes externas. 100% significa ponte sólida. O padrão é 100%." msgid "Bridge flow ratio" msgstr "Fluxo em ponte" -msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag" -msgstr "" -"Diminua ligeiramente este valor (por exemplo, 0.9) para reduzir a quantidade " -"de material para ponte, para melhorar a flacidez" +msgid "Decrease this value slightly(for example 0.9) to reduce the amount of material for bridge, to improve sag" +msgstr "Diminua ligeiramente este valor (por exemplo, 0.9) para reduzir a quantidade de material para ponte, para melhorar a flacidez" msgid "Internal bridge flow ratio" msgstr "Fluxo em ponte interna" -msgid "" -"This value governs the thickness of the internal bridge layer. This is the " -"first layer over sparse infill. Decrease this value slightly (for example " -"0.9) to improve surface quality over sparse infill." -msgstr "" -"Este valor governa a espessura da camada interna da ponte. Esta é a primeira " -"camada sobre o preenchimento. Diminua ligeiramente este valor (por exemplo, " -"0.9) para melhorar a qualidade da superfície sobre o preenchimento " -"esparsamente." +msgid "This value governs the thickness of the internal bridge layer. This is the first layer over sparse infill. Decrease this value slightly (for example 0.9) to improve surface quality over sparse infill." +msgstr "Este valor governa a espessura da camada interna da ponte. Esta é a primeira camada sobre o preenchimento. Diminua ligeiramente este valor (por exemplo, 0.9) para melhorar a qualidade da superfície sobre o preenchimento esparsamente." msgid "Top surface flow ratio" msgstr "Fluxo em superfície superior" -msgid "" -"This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish" -msgstr "" -"Este fator afeta a quantidade de material para o preenchimento sólido " -"superior. Você pode diminuí-lo ligeiramente para ter um acabamento de " -"superfície suave" +msgid "This factor affects the amount of material for top solid infill. You can decrease it slightly to have smooth surface finish" +msgstr "Este fator afeta a quantidade de material para o preenchimento sólido superior. Você pode diminuí-lo ligeiramente para ter um acabamento de superfície suave" msgid "Bottom surface flow ratio" msgstr "Fluxo em superfície inferior" msgid "This factor affects the amount of material for bottom solid infill" -msgstr "" -"Este fator afeta a quantidade de material para o preenchimento sólido " -"inferior" +msgstr "Este fator afeta a quantidade de material para o preenchimento sólido inferior" msgid "Precise wall" msgstr "Parede precisa" -msgid "" -"Improve shell precision by adjusting outer wall spacing. This also improves " -"layer consistency.\n" -"Note: This setting will only take effect if the wall sequence is configured " -"to Inner-Outer" -msgstr "" -"Melhore a precisão da parede ajustando o espaçamento do perímetro externo. " -"Isso também melhora a consistência da camada.\n" -"Nota: Esta configuração só terá efeito se a sequência do perímetro estiver " -"configurada para Interior-Exterior" +msgid "Improve shell precision by adjusting outer wall spacing. This also improves layer consistency.\n" +"Note: This setting will only take effect if the wall sequence is configured to Inner-Outer" +msgstr "Melhore a precisão da parede ajustando o espaçamento do perímetro externo. Isso também melhora a consistência da camada.\n" +"Nota: Esta configuração só terá efeito se a sequência do perímetro estiver configurada para Interior-Exterior" msgid "Only one wall on top surfaces" msgstr "Perímetro único em superfícies superiores" -msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" -msgstr "" -"Use apenas um perímetro em superfície superior, para dar mais espaço ao " -"padrão de preenchimento superior" +msgid "Use only one wall on flat top surface, to give more space to the top infill pattern" +msgstr "Use apenas um perímetro em superfície superior, para dar mais espaço ao padrão de preenchimento superior" msgid "One wall threshold" msgstr "Limite de perímetro único" #, no-c-format, no-boost-format -msgid "" -"If a top surface has to be printed and it's partially covered by another " -"layer, it won't be considered at a top layer where its width is below this " -"value. This can be useful to not let the 'one perimeter on top' trigger on " -"surface that should be covered only by perimeters. This value can be a mm or " -"a % of the perimeter extrusion width.\n" -"Warning: If enabled, artifacts can be created if you have some thin features " -"on the next layer, like letters. Set this setting to 0 to remove these " -"artifacts." -msgstr "" -"Se uma superfície superior tiver que ser impressa e estiver parcialmente " -"coberta por outra camada, ela não será considerada em uma camada superior " -"onde sua largura estiver abaixo deste valor. Isso pode ser útil para não " -"permitir que o 'um perímetro no topo' seja ativado em uma superfície que " -"deve ser coberta apenas por perímetros. Este valor pode ser em mm ou % da " -"largura de extrusão do perímetro.\n" -"Aviso: Se habilitado, artefatos podem ser criados se você tiver algumas " -"características finas na próxima camada, como letras. Defina esta " -"configuração para 0 para remover esses artefatos." +msgid "If a top surface has to be printed and it's partially covered by another layer, it won't be considered at a top layer where its width is below this value. This can be useful to not let the 'one perimeter on top' trigger on surface that should be covered only by perimeters. This value can be a mm or a % of the perimeter extrusion width.\n" +"Warning: If enabled, artifacts can be created if you have some thin features on the next layer, like letters. Set this setting to 0 to remove these artifacts." +msgstr "Se uma superfície superior tiver que ser impressa e estiver parcialmente coberta por outra camada, ela não será considerada em uma camada superior onde sua largura estiver abaixo deste valor. Isso pode ser útil para não permitir que o 'um perímetro no topo' seja ativado em uma superfície que deve ser coberta apenas por perímetros. Este valor pode ser em mm ou % da largura de extrusão do perímetro.\n" +"Aviso: Se habilitado, artefatos podem ser criados se você tiver algumas características finas na próxima camada, como letras. Defina esta configuração para 0 para remover esses artefatos." msgid "Only one wall on first layer" msgstr "Perímetro único na primeira camada" -msgid "" -"Use only one wall on first layer, to give more space to the bottom infill " -"pattern" -msgstr "" -"Use apenas um perímetro na primeira camada, para dar mais espaço ao padrão " -"de preenchimento inferior" +msgid "Use only one wall on first layer, to give more space to the bottom infill pattern" +msgstr "Use apenas um perímetro na primeira camada, para dar mais espaço ao padrão de preenchimento inferior" msgid "Extra perimeters on overhangs" msgstr "Perímetros extras em overhangs" -msgid "" -"Create additional perimeter paths over steep overhangs and areas where " -"bridges cannot be anchored. " -msgstr "" -"Crie caminhos de perímetro adicionais em overhangs íngremes e áreas onde " -"pontes não podem ser ancoradas. " +msgid "Create additional perimeter paths over steep overhangs and areas where bridges cannot be anchored. " +msgstr "Crie caminhos de perímetro adicionais em overhangs íngremes e áreas onde pontes não podem ser ancoradas. " msgid "Reverse on odd" msgstr "Inverter em ímpares" @@ -9849,66 +8460,31 @@ msgstr "Inverter em ímpares" msgid "Overhang reversal" msgstr "Reversão de suspensão" -msgid "" -"Extrude perimeters that have a part over an overhang in the reverse " -"direction on odd layers. This alternating pattern can drastically improve " -"steep overhangs.\n" -"\n" -"This setting can also help reduce part warping due to the reduction of " -"stresses in the part walls." -msgstr "" -"Extruir perímetros, que tenham uma parte sobre um overhang, na direção " -"reversa em camadas ímpares. Este padrão alternado pode melhorar " -"drasticamente perímetros íngremes.\n" -"\n" -"Este ajuste também pode ajudar a reduzir a deformação da peça devido à " -"redução das tensões nas paredes da peça." +msgid "Extrude perimeters that have a part over an overhang in the reverse direction on odd layers. This alternating pattern can drastically improve steep overhangs.\n\n" +"This setting can also help reduce part warping due to the reduction of stresses in the part walls." +msgstr "Extruir perímetros, que tenham uma parte sobre um overhang, na direção reversa em camadas ímpares. Este padrão alternado pode melhorar drasticamente perímetros íngremes.\n\n" +"Este ajuste também pode ajudar a reduzir a deformação da peça devido à redução das tensões nas paredes da peça." msgid "Reverse only internal perimeters" msgstr "Inverter apenas os perímetros internos" -msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" -"\n" -"This setting greatly reduces part stresses as they are now distributed in " -"alternating directions. This should reduce part warping while also " -"maintaining external wall quality. This feature can be very useful for warp " -"prone material, like ABS/ASA, and also for elastic filaments, like TPU and " -"Silk PLA. It can also help reduce warping on floating regions over " -"supports.\n" -"\n" -"For this setting to be the most effective, it is recomended to set the " -"Reverse Threshold to 0 so that all internal walls print in alternating " -"directions on odd layers irrespective of their overhang degree." -msgstr "" -"Aplicar a lógica de perímetros reversos apenas em perímetros internos.\n" -"\n" -"Este ajuste reduz muito as tensões na peça, já que agora são distribuídas em " -"direções alternadas. Isso deve reduzir a deformação da peça, mantendo a " -"qualidade do perímetro externo. Este recurso pode ser muito útil para " -"materiais propensos a deformações, como ABS/ASA, e também para filamentos " -"elásticos, como TPU e Silk PLA. Também pode ajudar a reduzir a deformação em " -"regiões flutuantes sobre suportes.\n" -"\n" -"Para que este ajuste seja mais eficaz, recomenda-se definir o Limiar Reverso " -"como 0 para que todos os perímetros internos sejam impressos em direções " -"alternadas em camadas ímpares, independentemente de seu grau de ." +msgid "Apply the reverse perimeters logic only on internal perimeters. \n\n" +"This setting greatly reduces part stresses as they are now distributed in alternating directions. This should reduce part warping while also maintaining external wall quality. This feature can be very useful for warp prone material, like ABS/ASA, and also for elastic filaments, like TPU and Silk PLA. It can also help reduce warping on floating regions over supports.\n\n" +"For this setting to be the most effective, it is recomended to set the Reverse Threshold to 0 so that all internal walls print in alternating directions on odd layers irrespective of their overhang degree." +msgstr "Aplicar a lógica de perímetros reversos apenas em perímetros internos.\n\n" +"Este ajuste reduz muito as tensões na peça, já que agora são distribuídas em direções alternadas. Isso deve reduzir a deformação da peça, mantendo a qualidade do perímetro externo. Este recurso pode ser muito útil para materiais propensos a deformações, como ABS/ASA, e também para filamentos elásticos, como TPU e Silk PLA. Também pode ajudar a reduzir a deformação em regiões flutuantes sobre suportes.\n\n" +"Para que este ajuste seja mais eficaz, recomenda-se definir o Limiar Reverso como 0 para que todos os perímetros internos sejam impressos em direções alternadas em camadas ímpares, independentemente de seu grau de ." msgid "Bridge counterbore holes" msgstr "Pontes para furos rebaixados" -msgid "" -"This option creates bridges for counterbore holes, allowing them to be " -"printed without support. Available modes include:\n" +msgid "This option creates bridges for counterbore holes, allowing them to be printed without support. Available modes include:\n" "1. None: No bridge is created.\n" "2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" "3. Sacrificial Layer: A full sacrificial bridge layer is created." -msgstr "" -"Esta opção cria pontes para furos rebaixados, permitindo que sejam impressos " -"sem suporte. Os modos disponíveis incluem:\n" +msgstr "Esta opção cria pontes para furos rebaixados, permitindo que sejam impressos sem suporte. Os modos disponíveis incluem:\n" "1. Nenhum: Nenhuma ponte é criada.\n" -"2. Parcialmente Ponteada: Apenas uma parte da área não suportada será " -"ponteada.\n" +"2. Parcialmente Ponteada: Apenas uma parte da área não suportada será ponteada.\n" "3. Camada Sacrificial: Uma camada completa de ponte sacrificial é criada." msgid "Partially bridged" @@ -9924,13 +8500,9 @@ msgid "Overhang reversal threshold" msgstr "Limiar de inversão de overhang" #, no-c-format, no-boost-format -msgid "" -"Number of mm the overhang need to be for the reversal to be considered " -"useful. Can be a % of the perimeter width.\n" +msgid "Number of mm the overhang need to be for the reversal to be considered useful. Can be a % of the perimeter width.\n" "Value 0 enables reversal on every odd layers regardless." -msgstr "" -"Número de milímetros que o precisa ter para que a reversão seja considerada " -"útil. Pode ser um % da largura do perímetro.\n" +msgstr "Número de milímetros que o precisa ter para que a reversão seja considerada útil. Pode ser um % da largura do perímetro.\n" "O valor 0 permite a reversão em todas as camadas ímpares independentemente." msgid "Classic mode" @@ -9943,19 +8515,13 @@ msgid "Slow down for overhang" msgstr "Reduzir velocidade em overhangs" msgid "Enable this option to slow printing down for different overhang degree" -msgstr "" -"Ative esta opção para diminuir a velocidade de impressão em diferentes graus " -"de inclinação" +msgstr "Ative esta opção para diminuir a velocidade de impressão em diferentes graus de inclinação" msgid "Slow down for curled perimeters" msgstr "Reduzir vel. para perímetros encurvados" -msgid "" -"Enable this option to slow printing down in areas where potential curled " -"perimeters may exist" -msgstr "" -"Ative esta opção para diminuir a velocidade de impressão em áreas onde podem " -"existir potenciais perímetros curvados (warping)" +msgid "Enable this option to slow printing down in areas where potential curled perimeters may exist" +msgstr "Ative esta opção para diminuir a velocidade de impressão em áreas onde podem existir potenciais perímetros curvados (warping)" msgid "mm/s or %" msgstr "mm/s ou %" @@ -9972,12 +8538,8 @@ msgstr "mm/s" msgid "Internal" msgstr "Interno" -msgid "" -"Speed of internal bridge. If the value is expressed as a percentage, it will " -"be calculated based on the bridge_speed. Default value is 150%." -msgstr "" -"Velocidade da ponte interna. Se o valor for expresso como porcentagem, será " -"calculado com base na velocidade da ponte. O valor padrão é 150%." +msgid "Speed of internal bridge. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%." +msgstr "Velocidade da ponte interna. Se o valor for expresso como porcentagem, será calculado com base na velocidade da ponte. O valor padrão é 150%." msgid "Brim width" msgstr "Largura da borda" @@ -9988,23 +8550,14 @@ msgstr "Distância do modelo até a linha da borda mais externa" msgid "Brim type" msgstr "Tipo de borda" -msgid "" -"This controls the generation of the brim at outer and/or inner side of " -"models. Auto means the brim width is analysed and calculated automatically." -msgstr "" -"Isso controla a geração da borda no lado externo e/ou interno dos modelos. " -"Automático significa que a largura da borda é analisada e calculada " -"automaticamente." +msgid "This controls the generation of the brim at outer and/or inner side of models. Auto means the brim width is analysed and calculated automatically." +msgstr "Isso controla a geração da borda no lado externo e/ou interno dos modelos. Automático significa que a largura da borda é analisada e calculada automaticamente." msgid "Brim-object gap" msgstr "Espaço entre a borda e objeto" -msgid "" -"A gap between innermost brim line and object can make brim be removed more " -"easily" -msgstr "" -"Um espaço entre a linha da borda mais interna e o objeto pode facilitar a " -"remoção da borda" +msgid "A gap between innermost brim line and object can make brim be removed more easily" +msgstr "Um espaço entre a linha da borda mais interna e o objeto pode facilitar a remoção da borda" msgid "Brim ears" msgstr "Orelhas da borda" @@ -10015,25 +8568,19 @@ msgstr "Desenhe a borda apenas sobre as bordas afiadas do modelo." msgid "Brim ear max angle" msgstr "Ângulo máximo da orelha da borda" -msgid "" -"Maximum angle to let a brim ear appear. \n" +msgid "Maximum angle to let a brim ear appear. \n" "If set to 0, no brim will be created. \n" "If set to ~180, brim will be created on everything but straight sections." -msgstr "" -"Ângulo máximo para permitir que uma orelha da borda apareça. \n" +msgstr "Ângulo máximo para permitir que uma orelha da borda apareça. \n" "Se definido como 0, nenhuma borda será criado. \n" "Se definido como ~180, a borda será criada em tudo, exceto em seções retas." msgid "Brim ear detection radius" msgstr "Raio de detecção da orelha da borda" -msgid "" -"The geometry will be decimated before dectecting sharp angles. This " -"parameter indicates the minimum length of the deviation for the decimation.\n" +msgid "The geometry will be decimated before dectecting sharp angles. This parameter indicates the minimum length of the deviation for the decimation.\n" "0 to deactivate" -msgstr "" -"A geometria será decimada antes de detectar ângulos agudos. Este parâmetro " -"indica o comprimento mínimo da divergência para a decimação.\n" +msgstr "A geometria será decimada antes de detectar ângulos agudos. Este parâmetro indica o comprimento mínimo da divergência para a decimação.\n" "0 para desativar" msgid "Compatible machine" @@ -10072,27 +8619,14 @@ msgstr "Como lista de objetos" msgid "Slow printing down for better layer cooling" msgstr "Diminuir a velocidade de impressão para melhor resfriamento da camada" -msgid "" -"Enable this option to slow printing speed down to make the final layer time " -"not shorter than the layer time threshold in \"Max fan speed threshold\", so " -"that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" -msgstr "" -"Ative esta opção para diminuir a velocidade de impressão para que o tempo da " -"camada final não seja menor do que o limite de tempo da camada em \"Limiar " -"de velocidade máxima do ventilador\", para que a camada possa ser resfriada " -"por mais tempo. Isso pode melhorar a qualidade de resfriamento para detalhes " -"pequenos" +msgid "Enable this option to slow printing speed down to make the final layer time not shorter than the layer time threshold in \"Max fan speed threshold\", so that layer can be cooled for longer time. This can improve the cooling quality for needle and small details" +msgstr "Ative esta opção para diminuir a velocidade de impressão para que o tempo da camada final não seja menor do que o limite de tempo da camada em \"Limiar de velocidade máxima do ventilador\", para que a camada possa ser resfriada por mais tempo. Isso pode melhorar a qualidade de resfriamento para detalhes pequenos" msgid "Normal printing" msgstr "Impressão normal" -msgid "" -"The default acceleration of both normal printing and travel except initial " -"layer" -msgstr "" -"A aceleração padrão tanto para a impressão normal quanto para o movimento, " -"exceto na primeira camada" +msgid "The default acceleration of both normal printing and travel except initial layer" +msgstr "A aceleração padrão tanto para a impressão normal quanto para o movimento, exceto na primeira camada" msgid "mm/s²" msgstr "mm/s²" @@ -10113,18 +8647,13 @@ msgid "Activate air filtration" msgstr "Ativar filtragem de ar" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" -msgstr "" -"Ative para uma melhor filtragem de ar. Comando G-code: M106 P3 S(0-255)" +msgstr "Ative para uma melhor filtragem de ar. Comando G-code: M106 P3 S(0-255)" msgid "Fan speed" msgstr "Velocidade do ventilador" -msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" -msgstr "" -"Velocidade do ventilador de exaustão durante a impressão. Esta velocidade " -"substituirá a velocidade no gcode personalizado do filamento" +msgid "Speed of exhaust fan during printing.This speed will overwrite the speed in filament custom gcode" +msgstr "Velocidade do ventilador de exaustão durante a impressão. Esta velocidade substituirá a velocidade no gcode personalizado do filamento" msgid "Speed of exhaust fan after printing completes" msgstr "Velocidade do ventilador de exaustão após a conclusão da impressão" @@ -10132,107 +8661,44 @@ msgstr "Velocidade do ventilador de exaustão após a conclusão da impressão" msgid "No cooling for the first" msgstr "Sem resfriamento para o primeiro" -msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" -msgstr "" -"Feche todos os ventiladores de resfriamento para as primeiras camadas. O " -"ventilador de resfriamento da primeira camada costuma ser desligado para " -"obter uma melhor adesão à mesa" +msgid "Close all cooling fan for the first certain layers. Cooling fan of the first layer used to be closed to get better build plate adhesion" +msgstr "Feche todos os ventiladores de resfriamento para as primeiras camadas. O ventilador de resfriamento da primeira camada costuma ser desligado para obter uma melhor adesão à mesa" msgid "Don't support bridges" msgstr "Não suportar pontes" -msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" -msgstr "" -"Não suportar toda a área da ponte que faz com que o suporte seja muito " -"grande. Ponte geralmente pode ser impressa diretamente sem suporte se não " -"for muito longa" +msgid "Don't support the whole bridge area which make support very large. Bridge usually can be printing directly without support if not very long" +msgstr "Não suportar toda a área da ponte que faz com que o suporte seja muito grande. Ponte geralmente pode ser impressa diretamente sem suporte se não for muito longa" msgid "Thick bridges" msgstr "Ponte grossa" -msgid "" -"If enabled, bridges are more reliable, can bridge longer distances, but may " -"look worse. If disabled, bridges look better but are reliable just for " -"shorter bridged distances." -msgstr "" -"Se ativado, as pontes são mais confiáveis, podem cobrir distâncias maiores, " -"mas podem parecer piores. Se desativado, as pontes ficam melhores, mas são " -"confiáveis apenas para distâncias de ponte mais curtas." +msgid "If enabled, bridges are more reliable, can bridge longer distances, but may look worse. If disabled, bridges look better but are reliable just for shorter bridged distances." +msgstr "Se ativado, as pontes são mais confiáveis, podem cobrir distâncias maiores, mas podem parecer piores. Se desativado, as pontes ficam melhores, mas são confiáveis apenas para distâncias de ponte mais curtas." msgid "Thick internal bridges" msgstr "Ponte interna grossa" -msgid "" -"If enabled, thick internal bridges will be used. It's usually recommended to " -"have this feature turned on. However, consider turning it off if you are " -"using large nozzles." -msgstr "" -"Se ativado, serão usadas pontes internas grossas. Geralmente é recomendado " -"ter este recurso ativado. No entanto, considere desativá-lo se estiver " -"usando bocais grandes." +msgid "If enabled, thick internal bridges will be used. It's usually recommended to have this feature turned on. However, consider turning it off if you are using large nozzles." +msgstr "Se ativado, serão usadas pontes internas grossas. Geralmente é recomendado ter este recurso ativado. No entanto, considere desativá-lo se estiver usando bocais grandes." msgid "Don't filter out small internal bridges (beta)" msgstr "Não filtrar pequenas pontes internas (beta)" -msgid "" -"This option can help reducing pillowing on top surfaces in heavily slanted " -"or curved models.\n" -"\n" -"By default, small internal bridges are filtered out and the internal solid " -"infill is printed directly over the sparse infill. This works well in most " -"cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" -"However, in heavily slanted or curved models especially where too low sparse " -"infill density is used, this may result in curling of the unsupported solid " -"infill, causing pillowing.\n" -"\n" -"Enabling this option will print internal bridge layer over slightly " -"unsupported internal solid infill. The options below control the amount of " -"filtering, i.e. the amount of internal bridges created.\n" -"\n" -"Disabled - Disables this option. This is the default behaviour and works " -"well in most cases.\n" -"\n" -"Limited filtering - Creates internal bridges on heavily slanted surfaces, " -"while avoiding creating uncessesary interal bridges. This works well for " -"most difficult models.\n" -"\n" -"No filtering - Creates internal bridges on every potential internal " -"overhang. This option is useful for heavily slanted top surface models. " -"However, in most cases it creates too many unecessary bridges." -msgstr "" -"Esta opção pode ajudar a reduzir o pillowing nas superfícies superiores em " -"modelos fortemente inclinados ou curvos.\n" -"\n" -"Por padrão, pequenas pontes internas são filtradas e o preenchimento sólido " -"interno é impresso diretamente sobre o preenchimento não sólido. Isso " -"funciona bem na maioria dos casos, acelerando a impressão sem comprometer " -"muito a qualidade da superfície superior. \n" -"\n" -"No entanto, em modelos fortemente inclinados ou curvos, especialmente quando " -"a densidade de preenchimento não sólido é muito baixa, isso pode resultar em " -"enrolamento do preenchimento sólido não suportado, causando pillowing.\n" -"\n" -"Ativar esta opção imprimirá uma camada de ponte interna sobre o " -"preenchimento sólido interno ligeiramente não suportado. As opções abaixo " -"controlam a quantidade de filtragem, ou seja, a quantidade de pontes " -"internas criadas.\n" -"\n" -"Desativado - Desativa esta opção. Este é o comportamento padrão e funciona " -"bem na maioria dos casos.\n" -"\n" -"Filtragem limitada - Cria pontes internas em superfícies fortemente " -"inclinadas, evitando a criação de pontes internas desnecessárias. Isso " -"funciona bem para a maioria dos modelos difíceis.\n" -"\n" -"Sem filtragem - Cria pontes internas em cada inclinação interna potencial. " -"Esta opção é útil para modelos com superfície superior fortemente inclinada. " -"No entanto, na maioria dos casos, cria pontes desnecessárias demais." +msgid "This option can help reducing pillowing on top surfaces in heavily slanted or curved models.\n\n" +"By default, small internal bridges are filtered out and the internal solid infill is printed directly over the sparse infill. This works well in most cases, speeding up printing without too much compromise on top surface quality. \n\n" +"However, in heavily slanted or curved models especially where too low sparse infill density is used, this may result in curling of the unsupported solid infill, causing pillowing.\n\n" +"Enabling this option will print internal bridge layer over slightly unsupported internal solid infill. The options below control the amount of filtering, i.e. the amount of internal bridges created.\n\n" +"Disabled - Disables this option. This is the default behaviour and works well in most cases.\n\n" +"Limited filtering - Creates internal bridges on heavily slanted surfaces, while avoiding creating uncessesary interal bridges. This works well for most difficult models.\n\n" +"No filtering - Creates internal bridges on every potential internal overhang. This option is useful for heavily slanted top surface models. However, in most cases it creates too many unecessary bridges." +msgstr "Esta opção pode ajudar a reduzir o pillowing nas superfícies superiores em modelos fortemente inclinados ou curvos.\n\n" +"Por padrão, pequenas pontes internas são filtradas e o preenchimento sólido interno é impresso diretamente sobre o preenchimento não sólido. Isso funciona bem na maioria dos casos, acelerando a impressão sem comprometer muito a qualidade da superfície superior. \n\n" +"No entanto, em modelos fortemente inclinados ou curvos, especialmente quando a densidade de preenchimento não sólido é muito baixa, isso pode resultar em enrolamento do preenchimento sólido não suportado, causando pillowing.\n\n" +"Ativar esta opção imprimirá uma camada de ponte interna sobre o preenchimento sólido interno ligeiramente não suportado. As opções abaixo controlam a quantidade de filtragem, ou seja, a quantidade de pontes internas criadas.\n\n" +"Desativado - Desativa esta opção. Este é o comportamento padrão e funciona bem na maioria dos casos.\n\n" +"Filtragem limitada - Cria pontes internas em superfícies fortemente inclinadas, evitando a criação de pontes internas desnecessárias. Isso funciona bem para a maioria dos modelos difíceis.\n\n" +"Sem filtragem - Cria pontes internas em cada inclinação interna potencial. Esta opção é útil para modelos com superfície superior fortemente inclinada. No entanto, na maioria dos casos, cria pontes desnecessárias demais." msgid "Disabled" msgstr "Desativado" @@ -10246,14 +8712,8 @@ msgstr "Sem filtragem" msgid "Max bridge length" msgstr "Distância de ponte máxima" -msgid "" -"Max length of bridges that don't need support. Set it to 0 if you want all " -"bridges to be supported, and set it to a very large value if you don't want " -"any bridges to be supported." -msgstr "" -"Comprimento máximo de pontes que não precisam de suporte. Defina-o como 0 se " -"desejar que todas as pontes tenham suporte, e defina-o como um valor muito " -"grande se não desejar que nenhuma ponte tenha suporte." +msgid "Max length of bridges that don't need support. Set it to 0 if you want all bridges to be supported, and set it to a very large value if you don't want any bridges to be supported." +msgstr "Comprimento máximo de pontes que não precisam de suporte. Defina-o como 0 se desejar que todas as pontes tenham suporte, e defina-o como um valor muito grande se não desejar que nenhuma ponte tenha suporte." msgid "End G-code" msgstr "G-code de finalização" @@ -10264,12 +8724,8 @@ msgstr "G-code de finalização ao terminar a impressão completa" msgid "Between Object Gcode" msgstr "G-code entre objetos" -msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" -msgstr "" -"Insira o G-code entre objetos. Este parâmetro só terá efeito quando você " -"imprimir seus modelos objeto por objeto" +msgid "Insert Gcode between objects. This parameter will only come into effect when you print your models object by object" +msgstr "Insira o G-code entre objetos. Este parâmetro só terá efeito quando você imprimir seus modelos objeto por objeto" msgid "End G-code when finish the printing of this filament" msgstr "G-code de finalização ao terminar a impressão deste filamento" @@ -10277,26 +8733,17 @@ msgstr "G-code de finalização ao terminar a impressão deste filamento" msgid "Ensure vertical shell thickness" msgstr "Garantir a espessura vertical do perímetro" -msgid "" -"Add solid infill near sloping surfaces to guarantee the vertical shell " -"thickness (top+bottom solid layers)\n" -"None: No solid infill will be added anywhere. Caution: Use this option " -"carefully if your model has sloped surfaces\n" +msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)\n" +"None: No solid infill will be added anywhere. Caution: Use this option carefully if your model has sloped surfaces\n" "Critical Only: Avoid adding solid infill for walls\n" "Moderate: Add solid infill for heavily sloping surfaces only\n" "All: Add solid infill for all suitable sloping surfaces\n" "Default value is All." -msgstr "" -"Adicione preenchimento sólido próximo a superfícies inclinadas para garantir " -"a espessura vertical (camadas de topo+base)\n" -"Nenhum: Nenhum preenchimento sólido será adicionado em nenhum lugar. " -"Cuidado: Use esta opção com cuidado se o seu modelo tiver superfícies " -"inclinadas\n" +msgstr "Adicione preenchimento sólido próximo a superfícies inclinadas para garantir a espessura vertical (camadas de topo+base)\n" +"Nenhum: Nenhum preenchimento sólido será adicionado em nenhum lugar. Cuidado: Use esta opção com cuidado se o seu modelo tiver superfícies inclinadas\n" "Apenas crítico: Evite adicionar preenchimento sólido para paredes\n" -"Moderado: Adicione preenchimento sólido apenas para superfícies fortemente " -"inclinadas\n" -"Todos: Adicione preenchimento sólido para todas as superfícies inclinadas " -"adequadas\n" +"Moderado: Adicione preenchimento sólido apenas para superfícies fortemente inclinadas\n" +"Todos: Adicione preenchimento sólido para todas as superfícies inclinadas adequadas\n" "O valor padrão é Todos." msgid "Critical Only" @@ -10339,108 +8786,44 @@ msgid "Bottom surface pattern" msgstr "Padrão de superfície inferior" msgid "Line pattern of bottom surface infill, not bridge infill" -msgstr "" -"Padrão de linha do preenchimento da superfície inferior, não do " -"preenchimento da ponte" +msgstr "Padrão de linha do preenchimento da superfície inferior, não do preenchimento da ponte" msgid "Internal solid infill pattern" msgstr "Padrão de preenchimento sólido interno" -msgid "" -"Line pattern of internal solid infill. if the detect narrow internal solid " -"infill be enabled, the concentric pattern will be used for the small area." -msgstr "" -"Padrão de linha do preenchimento sólido interno. Se a detecção de " -"preenchimento sólido interno estreito estiver ativada, o padrão concêntrico " -"será usado para a área pequena." +msgid "Line pattern of internal solid infill. if the detect narrow internal solid infill be enabled, the concentric pattern will be used for the small area." +msgstr "Padrão de linha do preenchimento sólido interno. Se a detecção de preenchimento sólido interno estreito estiver ativada, o padrão concêntrico será usado para a área pequena." -msgid "" -"Line width of outer wall. If expressed as a %, it will be computed over the " -"nozzle diameter." -msgstr "" -"Largura da linha do perímetro externo. Se expresso como porcentagem, será " -"calculado sobre o diâmetro do bico." +msgid "Line width of outer wall. If expressed as a %, it will be computed over the nozzle diameter." +msgstr "Largura da linha do perímetro externo. Se expresso como porcentagem, será calculado sobre o diâmetro do bico." -msgid "" -"Speed of outer wall which is outermost and visible. It's used to be slower " -"than inner wall speed to get better quality." -msgstr "" -"Velocidade do perímetro externo que é o mais externo e visível. Geralmente é " -"mais lenta que a velocidade do perímetro interno para obter melhor qualidade." +msgid "Speed of outer wall which is outermost and visible. It's used to be slower than inner wall speed to get better quality." +msgstr "Velocidade do perímetro externo que é o mais externo e visível. Geralmente é mais lenta que a velocidade do perímetro interno para obter melhor qualidade." msgid "Small perimeters" msgstr "Pequenos perímetros" -msgid "" -"This separate setting will affect the speed of perimeters having radius <= " -"small_perimeter_threshold (usually holes). If expressed as percentage (for " -"example: 80%) it will be calculated on the outer wall speed setting above. " -"Set to zero for auto." -msgstr "" -"Essa configuração separada afetará a velocidade dos perímetros com raio <= " -"small_perimeter_threshold (geralmente buracos). Se expresso como porcentagem " -"(por exemplo: 80%), será calculado com base na configuração de velocidade do " -"perímetro externo acima. Defina como zero para automático." +msgid "This separate setting will affect the speed of perimeters having radius <= small_perimeter_threshold (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the outer wall speed setting above. Set to zero for auto." +msgstr "Essa configuração separada afetará a velocidade dos perímetros com raio <= small_perimeter_threshold (geralmente buracos). Se expresso como porcentagem (por exemplo: 80%), será calculado com base na configuração de velocidade do perímetro externo acima. Defina como zero para automático." msgid "Small perimeters threshold" msgstr "Limiar de pequenos perímetros" -msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" -msgstr "" -"Isso define o limite para o comprimento do perímetro pequeno. O limite " -"padrão é 0mm" +msgid "This sets the threshold for small perimeter length. Default threshold is 0mm" +msgstr "Isso define o limite para o comprimento do perímetro pequeno. O limite padrão é 0mm" msgid "Walls printing order" msgstr "Ordem de impressão dos perímetros" -msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" -"\n" -"Use Inner/Outer for best overhangs. This is because the overhanging walls " -"can adhere to a neighouring perimeter while printing. However, this option " -"results in slightly reduced surface quality as the external perimeter is " -"deformed by being squashed to the internal perimeter.\n" -"\n" -"Use Inner/Outer/Inner for the best external surface finish and dimensional " -"accuracy as the external wall is printed undisturbed from an internal " -"perimeter. However, overhang performance will reduce as there is no internal " -"perimeter to print the external wall against. This option requires a minimum " -"of 3 walls to be effective as it prints the internal walls from the 3rd " -"perimeter onwards first, then the external perimeter and, finally, the first " -"internal perimeter. This option is recomended against the Outer/Inner option " -"in most cases. \n" -"\n" -"Use Outer/Inner for the same external wall quality and dimensional accuracy " -"benefits of Inner/Outer/Inner option. However, the z seams will appear less " -"consistent as the first extrusion of a new layer starts on a visible " -"surface.\n" -"\n" +msgid "Print sequence of the internal (inner) and external (outer) walls. \n\n" +"Use Inner/Outer for best overhangs. This is because the overhanging walls can adhere to a neighouring perimeter while printing. However, this option results in slightly reduced surface quality as the external perimeter is deformed by being squashed to the internal perimeter.\n\n" +"Use Inner/Outer/Inner for the best external surface finish and dimensional accuracy as the external wall is printed undisturbed from an internal perimeter. However, overhang performance will reduce as there is no internal perimeter to print the external wall against. This option requires a minimum of 3 walls to be effective as it prints the internal walls from the 3rd perimeter onwards first, then the external perimeter and, finally, the first internal perimeter. This option is recomended against the Outer/Inner option in most cases. \n\n" +"Use Outer/Inner for the same external wall quality and dimensional accuracy benefits of Inner/Outer/Inner option. However, the z seams will appear less consistent as the first extrusion of a new layer starts on a visible surface.\n\n" " " -msgstr "" -"Sequência de impressão dos perímetros internos e externos. \n" -"\n" -"Use Interior/Exterior para melhores overhangs. Isso ocorre porque os " -"perímetros salientes podem aderir a um perímetro vizinho durante a " -"impressão. No entanto, esta opção resulta em uma qualidade superficial " -"ligeiramente reduzida, pois o perímetro externo é deformado ao ser esmagado " -"pelo perímetro interno.\n" -"\n" -"Use Interior/Exterior/Interior para o melhor acabamento superficial externo " -"e precisão dimensional, pois o perímetro externo é impresso sem interrupções " -"a partir de um perímetro interno. No entanto, o desempenho da inclinaçãoserá " -"reduzido, pois não há perímetro interno para imprimir o perímetro externo. " -"Esta opção requer um mínimo de 3 perímetros para ser eficaz, pois imprime os " -"perímetros internos a partir do terceiro perímetro em diante primeiro, " -"depois o perímetro externo e, por fim, o primeiro perímetro interno. Esta " -"opção é recomendada em relação à opção Exterior/Interior na maioria dos " -"casos. \n" -"\n" -"Use Exterior/Interior para obter os mesmos benefícios de qualidade de parede " -"externa e precisão dimensional da opção Interior/Exterior/Interior. No " -"entanto, as costuras z aparecerão menos consistentes, pois a primeira " -"extrusão de uma nova camada começa em uma superfície visível.\n" -"\n" +msgstr "Sequência de impressão dos perímetros internos e externos. \n\n" +"Use Interior/Exterior para melhores overhangs. Isso ocorre porque os perímetros salientes podem aderir a um perímetro vizinho durante a impressão. No entanto, esta opção resulta em uma qualidade superficial ligeiramente reduzida, pois o perímetro externo é deformado ao ser esmagado pelo perímetro interno.\n\n" +"Use Interior/Exterior/Interior para o melhor acabamento superficial externo e precisão dimensional, pois o perímetro externo é impresso sem interrupções a partir de um perímetro interno. No entanto, o desempenho da inclinaçãoserá reduzido, pois não há perímetro interno para imprimir o perímetro externo. Esta opção requer um mínimo de 3 perímetros para ser eficaz, pois imprime os perímetros internos a partir do terceiro perímetro em diante primeiro, depois o perímetro externo e, por fim, o primeiro perímetro interno. Esta opção é recomendada em relação à opção Exterior/Interior na maioria dos casos. \n\n" +"Use Exterior/Interior para obter os mesmos benefícios de qualidade de parede externa e precisão dimensional da opção Interior/Exterior/Interior. No entanto, as costuras z aparecerão menos consistentes, pois a primeira extrusão de uma nova camada começa em uma superfície visível.\n\n" " " msgid "Inner/Outer" @@ -10455,47 +8838,19 @@ msgstr "Interior/Exterior/Interior" msgid "Print infill first" msgstr "Preenchimento primeiro" -msgid "" -"Order of wall/infill. When the tickbox is unchecked the walls are printed " -"first, which works best in most cases.\n" -"\n" -"Printing walls first may help with extreme overhangs as the walls have the " -"neighbouring infill to adhere to. However, the infill will slighly push out " -"the printed walls where it is attached to them, resulting in a worse " -"external surface finish. It can also cause the infill to shine through the " -"external surfaces of the part." -msgstr "" -"Ordem de perímetro/preenchimento. Quando a caixa de seleção não está " -"marcada, as paredes são impressas primeiro, o que funciona melhor na maioria " -"dos casos.\n" -"\n" -"Imprimir as paredes primeiro pode ajudar com overhangs extremos, pois as " -"paredes têm o preenchimento vizinho para aderir. No entanto, o preenchimento " -"empurrará levemente as paredes impressas onde está conectado a elas, " -"resultando em um acabamento de superfície externa pior. Também pode fazer " -"com que o preenchimento apareça através das superfícies externas da peça." +msgid "Order of wall/infill. When the tickbox is unchecked the walls are printed first, which works best in most cases.\n\n" +"Printing walls first may help with extreme overhangs as the walls have the neighbouring infill to adhere to. However, the infill will slighly push out the printed walls where it is attached to them, resulting in a worse external surface finish. It can also cause the infill to shine through the external surfaces of the part." +msgstr "Ordem de perímetro/preenchimento. Quando a caixa de seleção não está marcada, as paredes são impressas primeiro, o que funciona melhor na maioria dos casos.\n\n" +"Imprimir as paredes primeiro pode ajudar com overhangs extremos, pois as paredes têm o preenchimento vizinho para aderir. No entanto, o preenchimento empurrará levemente as paredes impressas onde está conectado a elas, resultando em um acabamento de superfície externa pior. Também pode fazer com que o preenchimento apareça através das superfícies externas da peça." msgid "Wall loop direction" msgstr "Direção da volta do perímetro" -msgid "" -"The direction which the wall loops are extruded when looking down from the " -"top.\n" -"\n" -"By default all walls are extruded in counter-clockwise, unless Reverse on " -"odd is enabled. Set this to any option other than Auto will force the wall " -"direction regardless of the Reverse on odd.\n" -"\n" +msgid "The direction which the wall loops are extruded when looking down from the top.\n\n" +"By default all walls are extruded in counter-clockwise, unless Reverse on odd is enabled. Set this to any option other than Auto will force the wall direction regardless of the Reverse on odd.\n\n" "This option will be disabled if sprial vase mode is enabled." -msgstr "" -"A direção na qual os loops da perímetro são extrudados quando vistos de " -"cima.\n" -"\n" -"Por padrão, todas as paredes são extrudadas no sentido anti-horário, a menos " -"que o Reverso em ímpar esteja ativado. Definir isso como qualquer opção que " -"não seja Automático forçará a direção do perímetro, independentemente do " -"Reverso em ímpar.\n" -"\n" +msgstr "A direção na qual os loops da perímetro são extrudados quando vistos de cima.\n\n" +"Por padrão, todas as paredes são extrudadas no sentido anti-horário, a menos que o Reverso em ímpar esteja ativado. Definir isso como qualquer opção que não seja Automático forçará a direção do perímetro, independentemente do Reverso em ímpar.\n\n" "Esta opção será desativada se o modo de vaso espiral estiver ativado." msgid "Counter clockwise" @@ -10507,102 +8862,47 @@ msgstr "Sentido horário" msgid "Height to rod" msgstr "Altura até a haste" -msgid "" -"Distance of the nozzle tip to the lower rod. Used for collision avoidance in " -"by-object printing." -msgstr "" -"Distância da ponta do bico ao tubo inferior. Usado para evitar colisões na " -"impressão por objeto." +msgid "Distance of the nozzle tip to the lower rod. Used for collision avoidance in by-object printing." +msgstr "Distância da ponta do bico ao tubo inferior. Usado para evitar colisões na impressão por objeto." msgid "Height to lid" msgstr "Altura até a tampa" -msgid "" -"Distance of the nozzle tip to the lid. Used for collision avoidance in by-" -"object printing." -msgstr "" -"Distância da ponta do bico à tampa. Usado para evitar colisões na impressão " -"por objeto." +msgid "Distance of the nozzle tip to the lid. Used for collision avoidance in by-object printing." +msgstr "Distância da ponta do bico à tampa. Usado para evitar colisões na impressão por objeto." -msgid "" -"Clearance radius around extruder. Used for collision avoidance in by-object " -"printing." -msgstr "" -"Raio de folga ao redor do extrusor. Usado para evitar colisões na impressão " -"por objeto." +msgid "Clearance radius around extruder. Used for collision avoidance in by-object printing." +msgstr "Raio de folga ao redor do extrusor. Usado para evitar colisões na impressão por objeto." msgid "Nozzle height" msgstr "Altura do bico" msgid "The height of nozzle tip." -msgstr "Altura da ponta do bico" +msgstr "Altura da ponta do bico." msgid "Bed mesh min" msgstr "Mínimo do bed mesh" -msgid "" -"This option sets the min point for the allowed bed mesh area. Due to the " -"probe's XY offset, most printers are unable to probe the entire bed. To " -"ensure the probe point does not go outside the bed area, the minimum and " -"maximum points of the bed mesh should be set appropriately. OrcaSlicer " -"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " -"exceed these min/max points. This information can usually be obtained from " -"your printer manufacturer. The default setting is (-99999, -99999), which " -"means there are no limits, thus allowing probing across the entire bed." -msgstr "" -"Esta opção define o ponto mínimo para a área permitida do bed mesh. Devido " -"ao deslocamento XY da sonda, a maioria das impressoras não consegue sondar " -"toda a mesa. Para garantir que o ponto da sonda não saia da área da mesa, os " -"pontos mínimo e máximo do bed mesh devem ser configurados adequadamente. O " -"OrcaSlicer garante que os valores adaptive_bed_mesh_min/" -"adaptive_bed_mesh_max não excedam esses pontos mínimo/máximo. Essas " -"informações geralmente podem ser obtidas com o fabricante da sua impressora. " -"A configuração padrão é (-99999, -99999), o que significa que não há " -"limites, permitindo a sondagem em toda a mesa." +msgid "This option sets the min point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (-99999, -99999), which means there are no limits, thus allowing probing across the entire bed." +msgstr "Esta opção define o ponto mínimo para a área permitida do bed mesh. Devido ao deslocamento XY da sonda, a maioria das impressoras não consegue sondar toda a mesa. Para garantir que o ponto da sonda não saia da área da mesa, os pontos mínimo e máximo do bed mesh devem ser configurados adequadamente. O OrcaSlicer garante que os valores adaptive_bed_mesh_min/adaptive_bed_mesh_max não excedam esses pontos mínimo/máximo. Essas informações geralmente podem ser obtidas com o fabricante da sua impressora. A configuração padrão é (-99999, -99999), o que significa que não há limites, permitindo a sondagem em toda a mesa." msgid "Bed mesh max" msgstr "Máximo do bed mesh" -msgid "" -"This option sets the max point for the allowed bed mesh area. Due to the " -"probe's XY offset, most printers are unable to probe the entire bed. To " -"ensure the probe point does not go outside the bed area, the minimum and " -"maximum points of the bed mesh should be set appropriately. OrcaSlicer " -"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " -"exceed these min/max points. This information can usually be obtained from " -"your printer manufacturer. The default setting is (99999, 99999), which " -"means there are no limits, thus allowing probing across the entire bed." -msgstr "" -"Esta opção define o ponto máximo para a área permitida do bed mesh. Devido " -"ao deslocamento XY da sonda, a maioria das impressoras não consegue sondar " -"toda a mesa. Para garantir que o ponto da sonda não saia da área da mesa, os " -"pontos mínimo e máximo do bed mesh devem ser configurados adequadamente. O " -"OrcaSlicer garante que os valores adaptive_bed_mesh_min/" -"adaptive_bed_mesh_max não excedam esses pontos mínimo/máximo. Essas " -"informações geralmente podem ser obtidas com o fabricante da sua impressora. " -"A configuração padrão é (99999, 99999), o que significa que não há limites, " -"permitindo a sondagem em toda a mesa." +msgid "This option sets the max point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (99999, 99999), which means there are no limits, thus allowing probing across the entire bed." +msgstr "Esta opção define o ponto máximo para a área permitida do bed mesh. Devido ao deslocamento XY da sonda, a maioria das impressoras não consegue sondar toda a mesa. Para garantir que o ponto da sonda não saia da área da mesa, os pontos mínimo e máximo do bed mesh devem ser configurados adequadamente. O OrcaSlicer garante que os valores adaptive_bed_mesh_min/adaptive_bed_mesh_max não excedam esses pontos mínimo/máximo. Essas informações geralmente podem ser obtidas com o fabricante da sua impressora. A configuração padrão é (99999, 99999), o que significa que não há limites, permitindo a sondagem em toda a mesa." msgid "Probe point distance" msgstr "Distância entre pontos de sonda" -msgid "" -"This option sets the preferred distance between probe points (grid size) for " -"the X and Y directions, with the default being 50mm for both X and Y." -msgstr "" -"Esta opção define a distância preferencial entre pontos de sonda (tamanho da " -"grade) para as direções X e Y, sendo o padrão 50mm para ambas as direções X " -"e Y." +msgid "This option sets the preferred distance between probe points (grid size) for the X and Y directions, with the default being 50mm for both X and Y." +msgstr "Esta opção define a distância preferencial entre pontos de sonda (tamanho da grade) para as direções X e Y, sendo o padrão 50mm para ambas as direções X e Y." msgid "Mesh margin" msgstr "Margem da malha" -msgid "" -"This option determines the additional distance by which the adaptive bed " -"mesh area should be expanded in the XY directions." -msgstr "" -"Esta opção determina a distância adicional pela qual a área do bed mesh " -"adaptável deve ser expandida nas direções XY." +msgid "This option determines the additional distance by which the adaptive bed mesh area should be expanded in the XY directions." +msgstr "Esta opção determina a distância adicional pela qual a área do bed mesh adaptável deve ser expandida nas direções XY." msgid "Extruder Color" msgstr "Cor do extrusor" @@ -10616,63 +8916,32 @@ msgstr "Deslocamento do extrusor" msgid "Flow ratio" msgstr "Fluxo" -msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" -msgstr "" -"O material pode ter mudança volumétrica após a troca entre o estado fundido " -"e o estado cristalino. Esta configuração altera todo o fluxo de extrusão " -"deste filamento no gcode proporcionalmente. A faixa de valores recomendada " -"está entre 0.95 e 1.05. Talvez você possa ajustar esse valor para obter uma " -"superfície plana agradável quando houver um leve transbordamento ou subfluxo" +msgid "The material may have volumetric change after switching between molten state and crystalline state. This setting changes all extrusion flow of this filament in gcode proportionally. Recommended value range is between 0.95 and 1.05. Maybe you can tune this value to get nice flat surface when there has slight overflow or underflow" +msgstr "O material pode ter mudança volumétrica após a troca entre o estado fundido e o estado cristalino. Esta configuração altera todo o fluxo de extrusão deste filamento no gcode proporcionalmente. A faixa de valores recomendada está entre 0.95 e 1.05. Talvez você possa ajustar esse valor para obter uma superfície plana agradável quando houver um leve transbordamento ou subfluxo" msgid "Enable pressure advance" msgstr "Habilitar Pressure advance" -msgid "" -"Enable pressure advance, auto calibration result will be overwriten once " -"enabled." -msgstr "" -"Habilitar Pressure advance, o resultado da calibração automática será " -"sobrescrito uma vez habilitado." +msgid "Enable pressure advance, auto calibration result will be overwriten once enabled." +msgstr "Habilitar Pressure advance, o resultado da calibração automática será sobrescrito uma vez habilitado." msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" -msgstr "" -"Pressure advance(Klipper) também conhecido como Linear advance factor(Marlin)" +msgstr "Pressure advance(Klipper) também conhecido como Linear advance factor(Marlin)" -msgid "" -"Default line width if other line widths are set to 0. If expressed as a %, " -"it will be computed over the nozzle diameter." -msgstr "" -"Largura de linha padrão se outras larguras de linha estiverem definidas como " -"0. Se expresso como %, será calculado sobre o diâmetro do bico." +msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." +msgstr "Largura de linha padrão se outras larguras de linha estiverem definidas como 0. Se expresso como %, será calculado sobre o diâmetro do bico." msgid "Keep fan always on" msgstr "Manter o ventilador sempre ligado" -msgid "" -"If enable this setting, part cooling fan will never be stoped and will run " -"at least at minimum speed to reduce the frequency of starting and stoping" -msgstr "" -"Se habilitar esta configuração, o ventilador de resfriamento da peça nunca " -"será desligado e funcionará pelo menos na velocidade mínima para reduzir a " -"frequência de início e parada" +msgid "If enable this setting, part cooling fan will never be stoped and will run at least at minimum speed to reduce the frequency of starting and stoping" +msgstr "Se habilitar esta configuração, o ventilador de resfriamento da peça nunca será desligado e funcionará pelo menos na velocidade mínima para reduzir a frequência de início e parada" msgid "Layer time" msgstr "Tempo da camada" -msgid "" -"Part cooling fan will be enabled for layers of which estimated time is " -"shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" -msgstr "" -"O ventilador de resfriamento da peça será ativado para camadas cujo tempo " -"estimado seja menor que esse valor. A velocidade do ventilador é interpolada " -"entre as velocidades mínima e máxima do ventilador de acordo com o tempo de " -"impressão da camada" +msgid "Part cooling fan will be enabled for layers of which estimated time is shorter than this value. Fan speed is interpolated between the minimum and maximum fan speeds according to layer printing time" +msgstr "O ventilador de resfriamento da peça será ativado para camadas cujo tempo estimado seja menor que esse valor. A velocidade do ventilador é interpolada entre as velocidades mínima e máxima do ventilador de acordo com o tempo de impressão da camada" msgid "Default color" msgstr "Cor padrão" @@ -10689,22 +8958,11 @@ msgstr "Você pode colocar suas observações sobre o filamento aqui." msgid "Required nozzle HRC" msgstr "HRC do bico requerido" -msgid "" -"Minimum HRC of nozzle required to print the filament. Zero means no checking " -"of nozzle's HRC." -msgstr "" -"HRC mínimo do bico necessário para imprimir o filamento. Zero significa que " -"não há verificação do HRC do bico." +msgid "Minimum HRC of nozzle required to print the filament. Zero means no checking of nozzle's HRC." +msgstr "HRC mínimo do bico necessário para imprimir o filamento. Zero significa que não há verificação do HRC do bico." -msgid "" -"This setting stands for how much volume of filament can be melted and " -"extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" -msgstr "" -"Essa configuração representa quanto volume de filamento pode ser derretido e " -"extrudado por segundo. A velocidade de impressão é limitada pela fluxo " -"volumétrico máximo, no caso de configurações de velocidade muito altas e " -"irrazoáveis. Não pode ser zero" +msgid "This setting stands for how much volume of filament can be melted and extruded per second. Printing speed is limited by max volumetric speed, in case of too high and unreasonable speed setting. Can't be zero" +msgstr "Essa configuração representa quanto volume de filamento pode ser derretido e extrudado por segundo. A velocidade de impressão é limitada pela fluxo volumétrico máximo, no caso de configurações de velocidade muito altas e irrazoáveis. Não pode ser zero" msgid "mm³/s" msgstr "mm³/s" @@ -10713,42 +8971,25 @@ msgid "Filament load time" msgstr "Tempo de carga do filamento" msgid "Time to load new filament when switch filament. For statistics only" -msgstr "" -"Tempo para carregar novo filamento ao trocar de filamento. Apenas para " -"estatísticas" +msgstr "Tempo para carregar novo filamento ao trocar de filamento. Apenas para estatísticas" msgid "Filament unload time" msgstr "Tempo de descarga do filamento" msgid "Time to unload old filament when switch filament. For statistics only" -msgstr "" -"Tempo para descarregar o filamento antigo ao trocar de filamento. Apenas " -"para estatísticas" +msgstr "Tempo para descarregar o filamento antigo ao trocar de filamento. Apenas para estatísticas" -msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" -msgstr "" -"O diâmetro do filamento é usado para calcular a extrusão no gcode, portanto, " -"é importante e deve ser preciso" +msgid "Filament diameter is used to calculate extrusion in gcode, so it's important and should be accurate" +msgstr "O diâmetro do filamento é usado para calcular a extrusão no gcode, portanto, é importante e deve ser preciso" msgid "Shrinkage" msgstr "Retração" #, no-c-format, no-boost-format -msgid "" -"Enter the shrinkage percentage that the filament will get after cooling (94% " -"if you measure 94mm instead of 100mm). The part will be scaled in xy to " -"compensate. Only the filament used for the perimeter is taken into account.\n" -"Be sure to allow enough space between objects, as this compensation is done " -"after the checks." -msgstr "" -"Informe a porcentagem de retração que o filamento terá após o resfriamento " -"(94% se você medir 94mm em vez de 100mm). A peça será escalada em xy para " -"compensar. Apenas o filamento usado para o perímetro é levado em " -"consideração.\n" -"Certifique-se de permitir espaço suficiente entre objetos, pois essa " -"compensação é feita após as verificações." +msgid "Enter the shrinkage percentage that the filament will get after cooling (94% if you measure 94mm instead of 100mm). The part will be scaled in xy to compensate. Only the filament used for the perimeter is taken into account.\n" +"Be sure to allow enough space between objects, as this compensation is done after the checks." +msgstr "Informe a porcentagem de retração que o filamento terá após o resfriamento (94% se você medir 94mm em vez de 100mm). A peça será escalada em xy para compensar. Apenas o filamento usado para o perímetro é levado em consideração.\n" +"Certifique-se de permitir espaço suficiente entre objetos, pois essa compensação é feita após as verificações." msgid "Loading speed" msgstr "Velocidade de carregamento" @@ -10765,121 +9006,62 @@ msgstr "Velocidade usada no início da fase de carregamento." msgid "Unloading speed" msgstr "Velocidade de descarregamento" -msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " -"initial part of unloading just after ramming)." -msgstr "" -"Velocidade usada para descarregar o filamento na torre de limpeza (não afeta " -"a parte inicial do descarregamento logo após o esmagamento)." +msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." +msgstr "Velocidade usada para descarregar o filamento na torre de limpeza (não afeta a parte inicial do descarregamento logo após o esmagamento)." msgid "Unloading speed at the start" msgstr "Velocidade de descarregamento no início" -msgid "" -"Speed used for unloading the tip of the filament immediately after ramming." -msgstr "" -"Velocidade usada para descarregar a ponta do filamento imediatamente após o " -"esmagamento." +msgid "Speed used for unloading the tip of the filament immediately after ramming." +msgstr "Velocidade usada para descarregar a ponta do filamento imediatamente após o esmagamento." msgid "Delay after unloading" msgstr "Atraso após o descarregamento" -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 de espera após o filamento ser descarregado. Pode ajudar a obter " -"trocas de ferramentas confiáveis com materiais flexíveis que podem precisar " -"de mais tempo para encolher para as dimensões originais." +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 de espera após o filamento ser descarregado. Pode ajudar a obter trocas de ferramentas confiáveis com materiais flexíveis que podem precisar de mais tempo para encolher para as dimensões originais." msgid "Number of cooling moves" msgstr "Número de movimentos de resfriamento" -msgid "" -"Filament is cooled by being moved back and forth in the cooling tubes. " -"Specify desired number of these moves." -msgstr "" -"O filamento é resfriado movendo-se para frente e para trás nos tubos de " -"resfriamento. Especifique o número desejado desses movimentos." +msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves." +msgstr "O filamento é resfriado movendo-se para frente e para trás nos tubos de resfriamento. Especifique o número desejado desses movimentos." msgid "Speed of the first cooling move" msgstr "Velocidade do primeiro movimento de resfriamento" msgid "Cooling moves are gradually accelerating beginning at this speed." -msgstr "" -"Os movimentos de resfriamento estão gradualmente acelerando a partir desta " -"velocidade." +msgstr "Os movimentos de resfriamento estão gradualmente acelerando a partir desta velocidade." msgid "Minimal purge on wipe tower" msgstr "Purga mínima na torre de limpeza" -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, Orca Slicer will always prime this amount of material into the wipe " -"tower to produce successive infill or sacrificial object extrusions reliably." -msgstr "" -"Após uma troca de ferramenta, a posição exata do filamento recém-carregado " -"dentro do bico pode não ser conhecida e a pressão do filamento provavelmente " -"ainda não está estável. Antes de purgar a cabeça de impressão em um " -"preenchimento ou objeto sacrificial, o Orca Slicer sempre irá primear essa " -"quantidade de material na torre de limpeza para produzir extrusões de " -"preenchimento ou objeto sacrificial sucessivas de forma confiável." +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, Orca Slicer will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably." +msgstr "Após uma troca de ferramenta, a posição exata do filamento recém-carregado dentro do bico pode não ser conhecida e a pressão do filamento provavelmente ainda não está estável. Antes de purgar a cabeça de impressão em um preenchimento ou objeto sacrificial, o Orca Slicer sempre irá primear essa quantidade de material na torre de limpeza para produzir extrusões de preenchimento ou objeto sacrificial sucessivas de forma confiável." msgid "Speed of the last cooling move" msgstr "Velocidade do último movimento de resfriamento" msgid "Cooling moves are gradually accelerating towards this speed." -msgstr "" -"Os movimentos de resfriamento estão gradualmente acelerando em direção a " -"esta velocidade." +msgstr "Os movimentos de resfriamento estão gradualmente acelerando em direção a esta velocidade." -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 para o firmware da impressora (ou a Unidade de Material Multi 2.0) " -"carregar um novo filamento durante uma troca de ferramenta (ao executar o " -"código T). Este tempo é adicionado ao tempo total de impressão pelo " -"estimador de tempo do G-code." +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 para o firmware da impressora (ou a Unidade de Material Multi 2.0) carregar um novo filamento durante uma troca de ferramenta (ao executar o código T). Este tempo é adicionado ao tempo total de impressão pelo estimador de tempo do G-code." msgid "Ramming parameters" msgstr "Parâmetros de esmagamento" -msgid "" -"This string is edited by RammingDialog and contains ramming specific " -"parameters." -msgstr "" -"Esta frase é editada pelo RammingDialog e contém parâmetros específicos de " -"esmagamento." +msgid "This string is edited by RammingDialog and contains ramming specific parameters." +msgstr "Esta frase é editada pelo RammingDialog e contém parâmetros específicos de esmagamento." -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 para o firmware da impressora (ou a Unidade de Material Multi 2.0) " -"descarregar um filamento durante uma troca de ferramenta (ao executar o " -"código T). Este tempo é adicionado ao tempo total de impressão pelo " -"estimador de tempo do G-code." +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 para o firmware da impressora (ou a Unidade de Material Multi 2.0) descarregar um filamento durante uma troca de ferramenta (ao executar o código T). Este tempo é adicionado ao tempo total de impressão pelo estimador de tempo do G-code." msgid "Enable ramming for multitool setups" msgstr "Habilitar esmagamento para configurações de várias ferramentas" -msgid "" -"Perform ramming when using multitool printer (i.e. when the 'Single Extruder " -"Multimaterial' in Printer Settings is unchecked). When checked, a small " -"amount of filament is rapidly extruded on the wipe tower just before the " -"toolchange. This option is only used when the wipe tower is enabled." -msgstr "" -"Realizar esmagamento ao usar impressora multitool (ou seja, quando a opção " -"'Único Extrusor Multimaterial' em Configurações de Impressora está " -"desmarcada). Quando ativado, uma pequena quantidade de filamento é " -"rapidamente extrudada na torre de limpeza logo antes da troca de ferramenta. " -"Esta opção é usada apenas quando a torre de limpeza está habilitada." +msgid "Perform ramming when using multitool printer (i.e. when the 'Single Extruder Multimaterial' in Printer Settings is unchecked). When checked, a small amount of filament is rapidly extruded on the wipe tower just before the toolchange. This option is only used when the wipe tower is enabled." +msgstr "Realizar esmagamento ao usar impressora multitool (ou seja, quando a opção 'Único Extrusor Multimaterial' em Configurações de Impressora está desmarcada). Quando ativado, uma pequena quantidade de filamento é rapidamente extrudada na torre de limpeza logo antes da troca de ferramenta. Esta opção é usada apenas quando a torre de limpeza está habilitada." msgid "Multitool ramming volume" msgstr "Volume de esmagamento multitool" @@ -10908,32 +9090,20 @@ msgstr "O tipo de material do filamento" msgid "Soluble material" msgstr "Material solúvel" -msgid "" -"Soluble material is commonly used to print support and support interface" -msgstr "" -"O material solúvel é comumente usado para imprimir suporte e interface de " -"suporte" +msgid "Soluble material is commonly used to print support and support interface" +msgstr "O material solúvel é comumente usado para imprimir suporte e interface de suporte" msgid "Support material" msgstr "Material de suporte" -msgid "" -"Support material is commonly used to print support and support interface" -msgstr "" -"O material de suporte é comumente usado para imprimir suporte e interface de " -"suporte" +msgid "Support material is commonly used to print support and support interface" +msgstr "O material de suporte é comumente usado para imprimir suporte e interface de suporte" msgid "Softening temperature" msgstr "Temperatura de amolecimento" -msgid "" -"The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid cloggings." -msgstr "" -"O material amolece a esta temperatura, portanto, quando a temperatura da " -"mesa for igual ou maior que ela, é altamente recomendável abrir a porta da " -"frente e/ou remover o vidro superior para evitar entupimentos." +msgid "The material softens at this temperature, so when the bed temperature is equal to or greater than it, it's highly recommended to open the front door and/or remove the upper glass to avoid cloggings." +msgstr "O material amolece a esta temperatura, portanto, quando a temperatura da mesa for igual ou maior que ela, é altamente recomendável abrir a porta da frente e/ou remover o vidro superior para evitar entupimentos." msgid "Price" msgstr "Preço" @@ -10954,40 +9124,29 @@ msgid "(Undefined)" msgstr "(Indefinido)" msgid "Sparse infill direction" -msgstr "" +msgstr "Direção do preenchimento" -msgid "" -"Angle for sparse infill pattern, which controls the start or main direction " -"of line" -msgstr "" -"Ângulo para o padrão de preenchimento não sólido, que controla o início ou a " -"direção principal da linha" +msgid "Angle for sparse infill pattern, which controls the start or main direction of line" +msgstr "Ângulo para o padrão de preenchimento não sólido, que controla o início ou a direção principal da linha" msgid "Solid infill direction" -msgstr "" +msgstr "Direção do preenchimento sólido" -msgid "" -"Angle for solid infill pattern, which controls the start or main direction " -"of line" -msgstr "" +msgid "Angle for solid infill pattern, which controls the start or main direction of line" +msgstr "Ângulo para padrão de preenchimento sólido, que controla a direção inicial ou principal da linha" msgid "Rotate solid infill direction" -msgstr "" +msgstr "Rotaciona a direção do preenchimento sólido" msgid "Rotate the solid infill direction by 90° for each layer." -msgstr "" +msgstr "Rotaciona a direção do preenchimento em 90° para cada camada." msgid "Sparse infill density" msgstr "Densidade do preenchimento" #, no-c-format, no-boost-format -msgid "" -"Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" -msgstr "" -"Densidade do preenchimento não sólido interno, 100% transforma todo o " -"preenchimento não sólido em preenchimento sólido e será usado o padrão de " -"preenchimento sólido interno" +msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used" +msgstr "Densidade do preenchimento não sólido interno, 100% transforma todo o preenchimento não sólido em preenchimento sólido e será usado o padrão de preenchimento sólido interno" msgid "Sparse infill pattern" msgstr "Padrão de preenchimento" @@ -11026,34 +9185,15 @@ msgid "Lightning" msgstr "Relâmpago" msgid "Cross Hatch" -msgstr "" +msgstr "Padrão Cruzado" msgid "Sparse infill anchor length" msgstr "Comp. da âncora de preenchimento" -msgid "" -"Connect an infill line to an internal perimeter with a short segment of an " -"additional perimeter. If expressed as percentage (example: 15%) it is " -"calculated over infill extrusion width. Orca Slicer tries to connect two " -"close infill lines to a short perimeter segment. If no such perimeter " -"segment shorter than infill_anchor_max is found, the infill line is " -"connected to a perimeter segment at just one side and the length of the " -"perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" -"Set this parameter to zero to disable anchoring perimeters connected to a " -"single infill line." -msgstr "" -"Conecte uma linha de preenchimento a um perímetro interno com um segmento " -"curto de um perímetro adicional. Se expresso como porcentagem (exemplo: " -"15%), é calculado sobre a largura de extrusão do preenchimento. O Orca " -"Slicer tenta conectar duas linhas de preenchimento próximas a um segmento " -"curto de perímetro. Se nenhum segmento de perímetro mais curto que " -"infill_anchor_max for encontrado, a linha de preenchimento é conectada a um " -"segmento de perímetro em apenas um lado e o comprimento do segmento de " -"perímetro tomado é limitado a este parâmetro, mas não mais do que " -"anchor_length_max. \n" -"Defina este parâmetro como zero para desabilitar os perímetros de ancoragem " -"conectados a uma única linha de preenchimento." +msgid "Connect an infill line to an internal perimeter with a short segment of an additional perimeter. If expressed as percentage (example: 15%) it is calculated over infill extrusion width. Orca Slicer tries to connect two close infill lines to a short perimeter segment. If no such perimeter segment shorter than infill_anchor_max is found, the infill line is connected to a perimeter segment at just one side and the length of the perimeter segment taken is limited to this parameter, but no longer than anchor_length_max. \n" +"Set this parameter to zero to disable anchoring perimeters connected to a single infill line." +msgstr "Conecte uma linha de preenchimento a um perímetro interno com um segmento curto de um perímetro adicional. Se expresso como porcentagem (exemplo: 15%), é calculado sobre a largura de extrusão do preenchimento. O Orca Slicer tenta conectar duas linhas de preenchimento próximas a um segmento curto de perímetro. Se nenhum segmento de perímetro mais curto que infill_anchor_max for encontrado, a linha de preenchimento é conectada a um segmento de perímetro em apenas um lado e o comprimento do segmento de perímetro tomado é limitado a este parâmetro, mas não mais do que anchor_length_max. \n" +"Defina este parâmetro como zero para desabilitar os perímetros de ancoragem conectados a uma única linha de preenchimento." msgid "0 (no open anchors)" msgstr "0 (sem ancoras abertas)" @@ -11064,28 +9204,10 @@ msgstr "1000 (ilimitado)" msgid "Maximum length of the infill anchor" msgstr "Comp. máx. da âncora de preench." -msgid "" -"Connect an infill line to an internal perimeter with a short segment of an " -"additional perimeter. If expressed as percentage (example: 15%) it is " -"calculated over infill extrusion width. Orca Slicer tries to connect two " -"close infill lines to a short perimeter segment. If no such perimeter " -"segment shorter than this parameter is found, the infill line is connected " -"to a perimeter segment at just one side and the length of the perimeter " -"segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" -"If set to 0, the old algorithm for infill connection will be used, it should " -"create the same result as with 1000 & 0." -msgstr "" -"Conecte uma linha de preenchimento a um perímetro interno com um segmento " -"curto de um perímetro adicional. Se expresso como porcentagem (exemplo: " -"15%), é calculado sobre a largura de extrusão do preenchimento. O Orca " -"Slicer tenta conectar duas linhas de preenchimento próximas a um segmento " -"curto de perímetro. Se nenhum segmento de perímetro mais curto que este " -"parâmetro for encontrado, a linha de preenchimento é conectada a um segmento " -"de perímetro em apenas um lado e o comprimento do segmento de perímetro " -"tomado é limitado a infill_anchor, mas não mais do que este parâmetro. \n" -"Se definido como 0, o antigo algoritmo de conexão de preenchimento será " -"usado, ele deve criar o mesmo resultado que com 1000 e 0." +msgid "Connect an infill line to an internal perimeter with a short segment of an additional perimeter. If expressed as percentage (example: 15%) it is calculated over infill extrusion width. Orca Slicer tries to connect two close infill lines to a short perimeter segment. If no such perimeter segment shorter than this parameter is found, the infill line is connected to a perimeter segment at just one side and the length of the perimeter segment taken is limited to infill_anchor, but no longer than this parameter. \n" +"If set to 0, the old algorithm for infill connection will be used, it should create the same result as with 1000 & 0." +msgstr "Conecte uma linha de preenchimento a um perímetro interno com um segmento curto de um perímetro adicional. Se expresso como porcentagem (exemplo: 15%), é calculado sobre a largura de extrusão do preenchimento. O Orca Slicer tenta conectar duas linhas de preenchimento próximas a um segmento curto de perímetro. Se nenhum segmento de perímetro mais curto que este parâmetro for encontrado, a linha de preenchimento é conectada a um segmento de perímetro em apenas um lado e o comprimento do segmento de perímetro tomado é limitado a infill_anchor, mas não mais do que este parâmetro. \n" +"Se definido como 0, o antigo algoritmo de conexão de preenchimento será usado, ele deve criar o mesmo resultado que com 1000 e 0." msgid "0 (Simple connect)" msgstr "0 (Conexão simples)" @@ -11099,51 +9221,26 @@ msgstr "Aceleração das paredes internas" msgid "Acceleration of travel moves" msgstr "Aceleração dos movimentos de deslocamento" -msgid "" -"Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" -msgstr "" -"Aceleração do preenchimento da superfície superior. Usar um valor menor pode " -"melhorar a qualidade da superfície superior" +msgid "Acceleration of top surface infill. Using a lower value may improve top surface quality" +msgstr "Aceleração do preenchimento da superfície superior. Usar um valor menor pode melhorar a qualidade da superfície superior" msgid "Acceleration of outer wall. Using a lower value can improve quality" -msgstr "" -"Aceleração do perímetro externo. Usar um valor menor pode melhorar a " -"qualidade" +msgstr "Aceleração do perímetro externo. Usar um valor menor pode melhorar a qualidade" -msgid "" -"Acceleration of bridges. If the value is expressed as a percentage (e.g. " -"50%), it will be calculated based on the outer wall acceleration." -msgstr "" -"Aceleração das pontes. Se o valor for expresso como uma porcentagem (por " -"exemplo, 50%), será calculado com base na aceleração do perímetro externo." +msgid "Acceleration of bridges. If the value is expressed as a percentage (e.g. 50%), it will be calculated based on the outer wall acceleration." +msgstr "Aceleração das pontes. Se o valor for expresso como uma porcentagem (por exemplo, 50%), será calculado com base na aceleração do perímetro externo." msgid "mm/s² or %" msgstr "mm/s² ou %" -msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage (e." -"g. 100%), it will be calculated based on the default acceleration." -msgstr "" -"Aceleração do preenchimento não sólido. Se o valor for expresso como uma " -"porcentagem (por exemplo, 100%), será calculado com base na aceleração " -"padrão." +msgid "Acceleration of sparse infill. If the value is expressed as a percentage (e.g. 100%), it will be calculated based on the default acceleration." +msgstr "Aceleração do preenchimento não sólido. Se o valor for expresso como uma porcentagem (por exemplo, 100%), será calculado com base na aceleração padrão." -msgid "" -"Acceleration of internal solid infill. If the value is expressed as a " -"percentage (e.g. 100%), it will be calculated based on the default " -"acceleration." -msgstr "" -"Aceleração do preenchimento sólido interno. Se o valor for expresso como uma " -"porcentagem (por exemplo, 100%), será calculado com base na aceleração " -"padrão." +msgid "Acceleration of internal solid infill. If the value is expressed as a percentage (e.g. 100%), it will be calculated based on the default acceleration." +msgstr "Aceleração do preenchimento sólido interno. Se o valor for expresso como uma porcentagem (por exemplo, 100%), será calculado com base na aceleração padrão." -msgid "" -"Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" -msgstr "" -"Aceleração da primeira camada. Usar um valor menor pode melhorar a adesão à " -"mesa" +msgid "Acceleration of initial layer. Using a lower value can improve build plate adhesive" +msgstr "Aceleração da primeira camada. Usar um valor menor pode melhorar a adesão à mesa" msgid "Enable accel_to_decel" msgstr "Habilitar accel_to_decel" @@ -11154,11 +9251,9 @@ msgstr "O max_accel_to_decel do Klipper será ajustado automaticamente" msgid "accel_to_decel" msgstr "accel_to_decel" -#, c-format, boost-format -msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" -msgstr "" -"O max_accel_to_decel do Klipper será ajustado para esse %% de aceleração" +#, possible-c-format, possible-boost-format +msgid "Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +msgstr "O max_accel_to_decel do Klipper será ajustado para esse %% de aceleração" msgid "Jerk of outer walls" msgstr "Jerk nas paredes externas" @@ -11178,22 +9273,14 @@ msgstr "Jerk na primeira camada" msgid "Jerk for travel" msgstr "Jerk no deslocamento" -msgid "" -"Line width of initial layer. If expressed as a %, it will be computed over " -"the nozzle diameter." -msgstr "" -"Largura da linha da primeira camada. Se expresso como uma %, será calculado " -"sobre o diâmetro do bico." +msgid "Line width of initial layer. If expressed as a %, it will be computed over the nozzle diameter." +msgstr "Largura da linha da primeira camada. Se expresso como uma %, será calculado sobre o diâmetro do bico." msgid "Initial layer height" msgstr "Altura da primeira camada" -msgid "" -"Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhension" -msgstr "" -"Altura da primeira camada. Tornar a altura da primeira camada ligeiramente " -"espessa pode melhorar a adesão à mesa" +msgid "Height of initial layer. Making initial layer height to be thick slightly can improve build plate adhension" +msgstr "Altura da primeira camada. Tornar a altura da primeira camada ligeiramente espessa pode melhorar a adesão à mesa" msgid "Speed of initial layer except the solid infill part" msgstr "Velocidade da primeira camada, exceto a parte de preenchimento sólido" @@ -11213,60 +9300,33 @@ msgstr "Velocidade de deslocamento da primeira camada" msgid "Number of slow layers" msgstr "Número de camadas lentas" -msgid "" -"The first few layers are printed slower than normal. The speed is gradually " -"increased in a linear fashion over the specified number of layers." -msgstr "" -"As primeiras camadas são impressas mais lentamente do que o normal. A " -"velocidade é aumentada gradualmente de forma linear sobre o número " -"especificado de camadas." +msgid "The first few layers are printed slower than normal. The speed is gradually increased in a linear fashion over the specified number of layers." +msgstr "As primeiras camadas são impressas mais lentamente do que o normal. A velocidade é aumentada gradualmente de forma linear sobre o número especificado de camadas." msgid "Initial layer nozzle temperature" msgstr "Temperatura do bico da primeira camada" msgid "Nozzle temperature to print initial layer when using this filament" -msgstr "" -"Temperatura do bico para imprimir a primeira camada ao usar este filamento" +msgstr "Temperatura do bico para imprimir a primeira camada ao usar este filamento" msgid "Full fan speed at layer" msgstr "Velocidade total do ventilador na camada" -msgid "" -"Fan speed will be ramped up linearly from zero at layer " -"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer" -"\". \"full_fan_speed_layer\" will be ignored if lower than " -"\"close_fan_the_first_x_layers\", in which case the fan will be running at " -"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." -msgstr "" -"A velocidade do ventilador aumentará linearmente de zero na camada " -"\"close_fan_the_first_x_layers\" para o máximo na camada " -"\"full_fan_speed_layer\". \"full_fan_speed_layer\" será ignorado se for " -"menor que \"close_fan_the_first_x_layers\", caso em que o ventilador " -"funcionará na velocidade máxima permitida na camada " -"\"close_fan_the_first_x_layers\" + 1." +msgid "Fan speed will be ramped up linearly from zero at layer \"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower than \"close_fan_the_first_x_layers\", in which case the fan will be running at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +msgstr "A velocidade do ventilador aumentará linearmente de zero na camada \"close_fan_the_first_x_layers\" para o máximo na camada \"full_fan_speed_layer\". \"full_fan_speed_layer\" será ignorado se for menor que \"close_fan_the_first_x_layers\", caso em que o ventilador funcionará na velocidade máxima permitida na camada \"close_fan_the_first_x_layers\" + 1." msgid "Support interface fan speed" msgstr "Velocidade do ventilador de interface de suporte" -msgid "" -"This fan speed is enforced during all support interfaces, to be able to " -"weaken their bonding with a high fan speed.\n" +msgid "This fan speed is enforced during all support interfaces, to be able to weaken their bonding with a high fan speed.\n" "Set to -1 to disable this override.\n" "Can only be overriden by disable_fan_first_layers." -msgstr "" -"Esta velocidade do ventilador é aplicada durante todas as interfaces de " -"suporte, para enfraquecer sua ligação com uma alta velocidade do " -"ventilador.\n" +msgstr "Esta velocidade do ventilador é aplicada durante todas as interfaces de suporte, para enfraquecer sua ligação com uma alta velocidade do ventilador.\n" "Defina como -1 para desativar esta substituição.\n" "Só pode ser substituído por disable_fan_first_layers." -msgid "" -"Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" -msgstr "" -"Movimento aleatório durante a impressão do perímetro, de modo que a " -"superfície tenha uma aparência áspera. Essa configuração controla a textura " -"fuzzy" +msgid "Randomly jitter while printing the wall, so that the surface has a rough look. This setting controls the fuzzy position" +msgstr "Movimento aleatório durante a impressão do perímetro, de modo que a superfície tenha uma aparência áspera. Essa configuração controla a textura fuzzy" msgid "Contour" msgstr "Contorno" @@ -11280,22 +9340,14 @@ msgstr "Todas as paredes" msgid "Fuzzy skin thickness" msgstr "Espessura da textura fuzzy" -msgid "" -"The width within which to jitter. It's adversed to be below outer wall line " -"width" -msgstr "" -"A largura dentro da qual tremer. É desaconselhável que seja menor do que a " -"largura da linha do perímetro externo" +msgid "The width within which to jitter. It's adversed to be below outer wall line width" +msgstr "A largura dentro da qual tremer. É desaconselhável que seja menor do que a largura da linha do perímetro externo" msgid "Fuzzy skin point distance" msgstr "Distância do ponto da textura fuzzy" -msgid "" -"The average diatance between the random points introducded on each line " -"segment" -msgstr "" -"A distância média entre os pontos aleatórios introduzidos em cada segmento " -"de linha" +msgid "The average diatance between the random points introducded on each line segment" +msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha" msgid "Apply fuzzy skin to first layer" msgstr "Aplicar texture fuzzy à primeira camada" @@ -11312,66 +9364,40 @@ msgstr "Camadas e Perímetros" msgid "Filter out gaps smaller than the threshold specified" msgstr "Filtrar vazios menores que o limite especificado" -msgid "" -"Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" -msgstr "" -"Velocidade de preenchimento de vão. Vazios geralmente têm largura de linha " -"irregular e devem ser impressas mais lentamente" +msgid "Speed of gap infill. Gap usually has irregular line width and should be printed more slowly" +msgstr "Velocidade de preenchimento de vão. Vazios geralmente têm largura de linha irregular e devem ser impressas mais lentamente" msgid "Precise Z height" msgstr "Altura Z precisa" -msgid "" -"Enable this to get precise z height of object after slicing. It will get the " -"precise object height by fine-tuning the layer heights of the last few " -"layers. Note that this is an experimental parameter." -msgstr "" -"Ative isto para obter altura Z precisa do objeto após fatiar. Ele obterá a " -"altura do objeto exata ajustando as alturas da camada das últimas camadas. " -"Observe que este é um parâmetro experimental." +msgid "Enable this to get precise z height of object after slicing. It will get the precise object height by fine-tuning the layer heights of the last few layers. Note that this is an experimental parameter." +msgstr "Ative isto para obter altura Z precisa do objeto após fatiar. Ele obterá a altura do objeto exata ajustando as alturas da camada das últimas camadas. Observe que este é um parâmetro experimental." msgid "Arc fitting" msgstr "Ajuste de arco (Arc fitting)" -msgid "" -"Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" -"\n" -"Note: For klipper machines, this option is recomended to be disabled. " -"Klipper does not benefit from arc commands as these are split again into " -"line segments by the firmware. This results in a reduction in surface " -"quality as line segments are converted to arcs by the slicer and then back " -"to line segments by the firmware." -msgstr "" +msgid "Enable this to get a G-code file which has G2 and G3 moves. The fitting tolerance is same as the resolution. \n\n" +"Note: For klipper machines, this option is recomended to be disabled. Klipper does not benefit from arc commands as these are split again into line segments by the firmware. This results in a reduction in surface quality as line segments are converted to arcs by the slicer and then back to line segments by the firmware." +msgstr "Habilite isso para obter um arquivo de código G, que tenha movimentos G2 e G3. A tolerância adequada é a mesma que a resolução. \n\n" +"Nota: Para máquinas klipper, esta opção é recomendada estar desativada. Klipper não beneficia de comandos de arco pois eles são divididos novamente em segmentos de linha pelo firmware. Isso resulta em uma redução da qualidade de superfície à medida que os segmentos de linha são convertidos em arcos pelo fatiador e depois revertem para segmentos de linha pelo firmware." msgid "Add line number" msgstr "Adicionar número da linha" msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" -msgstr "" -"Habilitar isso para adicionar o número da linha (Nx) no início de cada linha " -"do G-Code" +msgstr "Habilitar isso para adicionar o número da linha (Nx) no início de cada linha do G-Code" msgid "Scan first layer" msgstr "Escanear primeira camada" -msgid "" -"Enable this to enable the camera on printer to check the quality of first " -"layer" -msgstr "" -"Habilitar isso para ativar a câmera na impressora para verificar a qualidade " -"da primeira camada" +msgid "Enable this to enable the camera on printer to check the quality of first layer" +msgstr "Habilitar isso para ativar a câmera na impressora para verificar a qualidade da primeira camada" msgid "Nozzle type" msgstr "Tipo de bico" -msgid "" -"The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" -msgstr "" -"O material metálico do bico. Isso determina a resistência ao desgaste do " -"bico e que tipo de filamento pode ser impresso" +msgid "The metallic material of nozzle. This determines the abrasive resistance of nozzle, and what kind of filament can be printed" +msgstr "O material metálico do bico. Isso determina a resistência ao desgaste do bico e que tipo de filamento pode ser impresso" msgid "Undefine" msgstr "Não definido" @@ -11388,12 +9414,8 @@ msgstr "Latão" msgid "Nozzle HRC" msgstr "Bico HRC" -msgid "" -"The nozzle's hardness. Zero means no checking for nozzle's hardness during " -"slicing." -msgstr "" -"A dureza do bico. Zero significa que não há verificação da dureza do bico " -"durante a fatiamento." +msgid "The nozzle's hardness. Zero means no checking for nozzle's hardness during slicing." +msgstr "A dureza do bico. Zero significa que não há verificação da dureza do bico durante a fatiamento." msgid "HRC" msgstr "RH" @@ -11420,36 +9442,18 @@ msgid "Best object position" msgstr "Melhor posição do objeto" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." -msgstr "" -"Melhor posição de arranjo automático na faixa [0,1] em relação ao formato da " -"mesa." +msgstr "Melhor posição de arranjo automático na faixa [0,1] em relação ao formato da mesa." -msgid "" -"Enable this option if machine has auxiliary part cooling fan. G-code " -"command: M106 P2 S(0-255)." -msgstr "" -"Habilitar esta opção se a máquina tiver ventilador auxiliar de resfriamento " -"da peça. Comando G-code: M106 P2 S(0-255)." +msgid "Enable this option if machine has auxiliary part cooling fan. G-code command: M106 P2 S(0-255)." +msgstr "Habilitar esta opção se a máquina tiver ventilador auxiliar de resfriamento da peça. Comando G-code: M106 P2 S(0-255)." -msgid "" -"Start the fan this number of seconds earlier than its target start time (you " -"can use fractional seconds). It assumes infinite acceleration for this time " -"estimation, and will only take into account G1 and G0 moves (arc fitting is " -"unsupported).\n" -"It won't move fan comands from custom gcodes (they act as a sort of " -"'barrier').\n" -"It won't move fan comands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +msgid "Start the fan this number of seconds earlier than its target start time (you can use fractional seconds). It assumes infinite acceleration for this time estimation, and will only take into account G1 and G0 moves (arc fitting is unsupported).\n" +"It won't move fan comands from custom gcodes (they act as a sort of 'barrier').\n" +"It won't move fan comands into the start gcode if the 'only custom start gcode' is activated.\n" "Use 0 to deactivate." -msgstr "" -"Comece o ventilador este número de segundos antes do tempo de início do alvo " -"(você pode usar segundos fracionários). Ele assume aceleração infinita para " -"esta estimativa de tempo e só levará em conta os movimentos G1 e G0 (o " -"ajuste de arco não é suportado).\n" -"Não moverá comandos do ventilador de gcodes personalizados (eles funcionam " -"como uma espécie de 'barreira').\n" -"Não moverá comandos do ventilador para o início do gcode se o 'apenas gcode " -"de início personalizado' estiver ativado.\n" +msgstr "Comece o ventilador este número de segundos antes do tempo de início do alvo (você pode usar segundos fracionários). Ele assume aceleração infinita para esta estimativa de tempo e só levará em conta os movimentos G1 e G0 (o ajuste de arco não é suportado).\n" +"Não moverá comandos do ventilador de gcodes personalizados (eles funcionam como uma espécie de 'barreira').\n" +"Não moverá comandos do ventilador para o início do gcode se o 'apenas gcode de início personalizado' estiver ativado.\n" "Use 0 para desativar." msgid "Only overhangs" @@ -11461,19 +9465,11 @@ msgstr "Levará em conta apenas o atraso para o resfriamento dos s." msgid "Fan kick-start time" msgstr "Tempo de inicialização do ventilador" -msgid "" -"Emit a max fan speed command for this amount of seconds before reducing to " -"target speed to kick-start the cooling fan.\n" -"This is useful for fans where a low PWM/power may be insufficient to get the " -"fan started spinning from a stop, or to get the fan up to speed faster.\n" +msgid "Emit a max fan speed command for this amount of seconds before reducing to target speed to kick-start the cooling fan.\n" +"This is useful for fans where a low PWM/power may be insufficient to get the fan started spinning from a stop, or to get the fan up to speed faster.\n" "Set to 0 to deactivate." -msgstr "" -"Emita um comando de velocidade máxima do ventilador por esta quantidade de " -"segundos antes de reduzir para a velocidade alvo para iniciar o ventilador " -"de resfriamento.\n" -"Isto é útil para ventiladores onde um baixo PWM/potência pode ser " -"insuficiente para fazer o ventilador começar a girar a partir de uma parada, " -"ou para fazer o ventilador alcançar a velocidade mais rapidamente.\n" +msgstr "Emita um comando de velocidade máxima do ventilador por esta quantidade de segundos antes de reduzir para a velocidade alvo para iniciar o ventilador de resfriamento.\n" +"Isto é útil para ventiladores onde um baixo PWM/potência pode ser insuficiente para fazer o ventilador começar a girar a partir de uma parada, ou para fazer o ventilador alcançar a velocidade mais rapidamente.\n" "Defina como 0 para desativar." msgid "Time cost" @@ -11488,23 +9484,17 @@ msgstr "dinheiro/h" msgid "Support control chamber temperature" msgstr "Controlar a temperatura da câmara de suporte" -msgid "" -"This option is enabled if machine support controlling chamber temperature\n" +msgid "This option is enabled if machine support controlling chamber temperature\n" "G-code command: M141 S(0-255)" -msgstr "" -"Esta opção está habilitada se a máquina suportar o controle da temperatura " -"da câmara.\n" +msgstr "Esta opção está habilitada se a máquina suportar o controle da temperatura da câmara.\n" "Comando G-code: M141 S(0-255)" msgid "Support air filtration" msgstr "Filtragem de ar de suporte" -msgid "" -"Enable this if printer support air filtration\n" +msgid "Enable this if printer support air filtration\n" "G-code command: M106 P3 S(0-255)" -msgstr "" -"Esta opção está habilitada se a máquina suportar o controle da temperatura " -"da câmara.\n" +msgstr "Esta opção está habilitada se a máquina suportar o controle da temperatura da câmara.\n" "Comando G-code: M141 S(0-255)" msgid "G-code flavor" @@ -11525,17 +9515,8 @@ msgstr "Ative esta opção se quiser usar vários tipos de mesa" msgid "Label objects" msgstr "Etiquetar objetos" -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 "" -"Ative isso para adicionar comentários no G-Code etiquetando movimentos de " -"impressão com a qual objeto eles pertencem, o que é útil para o plugin " -"CancelObject do Octoprint. Esta configuração NÃO é compatível com a " -"configuração de Material Múltiplo de Extrusora Única e Limpeza em Objeto / " -"Limpeza em Preenchimento." +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 "Ative isso para adicionar comentários no G-Code etiquetando movimentos de impressão com a qual objeto eles pertencem, o que é útil para o plugin CancelObject do Octoprint. Esta configuração NÃO é compatível com a configuração de Material Múltiplo de Extrusora Única e Limpeza em Objeto / Limpeza em Preenchimento." msgid "Exclude objects" msgstr "Excluir objetos" @@ -11546,58 +9527,34 @@ msgstr "Ative esta opção para adicionar o comando EXCLUDE OBJECT no g-code" msgid "Verbose G-code" msgstr "G-code detalhado" -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 "" -"Ative isso para obter um arquivo G-code comentado, com cada linha explicada " -"por um texto descritivo. Se você imprimir do cartão SD, o peso adicional do " -"arquivo pode fazer com que o firmware fique mais lento." +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 "Ative isso para obter um arquivo G-code comentado, com cada linha explicada por um texto descritivo. Se você imprimir do cartão SD, o peso adicional do arquivo pode fazer com que o firmware fique mais lento." msgid "Infill combination" msgstr "Combinar preenchimento" -msgid "" -"Automatically Combine sparse infill of several layers to print together to " -"reduce time. Wall is still printed with original layer height." -msgstr "" -"Combina automaticamente o preenchimento não sólido de várias camadas para " -"imprimir juntas e reduzir o tempo. O perímetro ainda é impresso com a altura " -"original da camada." +msgid "Automatically Combine sparse infill of several layers to print together to reduce time. Wall is still printed with original layer height." +msgstr "Combina automaticamente o preenchimento não sólido de várias camadas para imprimir juntas e reduzir o tempo. O perímetro ainda é impresso com a altura original da camada." msgid "Filament to print internal sparse infill." msgstr "Filamento para imprimir preenchimento interno não sólido." -msgid "" -"Line width of internal sparse infill. If expressed as a %, it will be " -"computed over the nozzle diameter." -msgstr "" -"Largura da linha do preenchimento interno não sólido. Se expresso como %, " -"será calculado sobre o diâmetro do bico." +msgid "Line width of internal sparse infill. If expressed as a %, it will be computed over the nozzle diameter." +msgstr "Largura da linha do preenchimento interno não sólido. Se expresso como %, será calculado sobre o diâmetro do bico." msgid "Infill/Wall overlap" msgstr "Sobreposição de preenchimento/perímetro" #, no-c-format, no-boost-format -msgid "" -"Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill. Set this " -"value to ~10-15% to minimize potential over extrusion and accumulation of " -"material resulting in rough top surfaces." -msgstr "" +msgid "Infill area is enlarged slightly to overlap with wall for better bonding. The percentage value is relative to line width of sparse infill. Set this value to ~10-15% to minimize potential over extrusion and accumulation of material resulting in rough top surfaces." +msgstr "A área de preenchimento é aumentada ligeiramente para se sobrepor à parede para uma melhor ligação. O valor percentual é relativo à largura da linha do preencimento. Defina este valor como ~10-15% para minimizar uma potencial sobre extrusão e acumulo de material resultando em superfícies superiores ásperas." msgid "Top/Bottom solid infill/wall overlap" -msgstr "" +msgstr "Sobreposição Superior/Inferior de preenchimento sólido/parede" #, no-c-format, no-boost-format -msgid "" -"Top solid infill area is enlarged slightly to overlap with wall for better " -"bonding and to minimize the appearance of pinholes where the top infill " -"meets the walls. A value of 25-30% is a good starting point, minimising the " -"appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" -msgstr "" +msgid "Top solid infill area is enlarged slightly to overlap with wall for better bonding and to minimize the appearance of pinholes where the top infill meets the walls. A value of 25-30% is a good starting point, minimising the appearance of pinholes. The percentage value is relative to line width of sparse infill" +msgstr "A área de preenchimento sólido é ligeiramente alargada para se sobrepor à parede para melhor ligação e para minimizar a aparência de buracos onde o preenchimento encontra as paredes. Um valor de 25-30% é um bom ponto de partida, minimizando a aparência dos buracos. O valor percentual é relativo à largura da linha do preenchimento" msgid "Speed of internal sparse infill" msgstr "Velocidade do preenchimento" @@ -11605,40 +9562,26 @@ msgstr "Velocidade do preenchimento" msgid "Interface shells" msgstr "Paredes de interface" -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 "" -"Força a geração de perímetros sólidos entre materiais/volumes adjacentes. " -"Útil para impressões com múltiplos extrusores com materiais translúcidos ou " -"suporte solúvel manual" +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 "Força a geração de perímetros sólidos entre materiais/volumes adjacentes. Útil para impressões com múltiplos extrusores com materiais translúcidos ou suporte solúvel manual" msgid "Maximum width of a segmented region" msgstr "Largura máxima de uma região segmentada" msgid "Maximum width of a segmented region. Zero disables this feature." -msgstr "" -"Largura máxima de uma região segmentada. Zero desativa essa funcionalidade." +msgstr "Largura máxima de uma região segmentada. Zero desativa essa funcionalidade." msgid "Interlocking depth of a segmented region" msgstr "Profundidade de entrelaçamento de uma região segmentada" msgid "Interlocking depth of a segmented region. Zero disables this feature." -msgstr "" -"Profundidade de entrelaçamento de uma região segmentada. Zero desativa essa " -"funcionalidade." +msgstr "Profundidade de entrelaçamento de uma região segmentada. Zero desativa essa funcionalidade." msgid "Ironing Type" msgstr "Tipo do passar ferro" -msgid "" -"Ironing is using small flow to print on same height of surface again to make " -"flat surface more smooth. This setting controls which layer being ironed" -msgstr "" -"Passar a ferro utiliza um pequeno fluxo para imprimir na mesma altura da " -"superfície novamente para deixá-la mais lisa. Esta configuração controla " -"qual camada está sendo passada a ferro" +msgid "Ironing is using small flow to print on same height of surface again to make flat surface more smooth. This setting controls which layer being ironed" +msgstr "Passar a ferro utiliza um pequeno fluxo para imprimir na mesma altura da superfície novamente para deixá-la mais lisa. Esta configuração controla qual camada está sendo passada a ferro" msgid "No ironing" msgstr "Desativado" @@ -11661,13 +9604,8 @@ msgstr "O padrão que será usado ao passar a ferro" msgid "Ironing flow" msgstr "Fluxo do passar ferro" -msgid "" -"The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" -msgstr "" -"A quantidade de material a extrudar durante o passar a ferro. Relativo ao " -"fluxo da altura normal da camada. Um valor muito alto resulta em " -"superextrusão na superfície" +msgid "The amount of material to extrude during ironing. Relative to flow of normal layer height. Too high value results in overextrusion on the surface" +msgstr "A quantidade de material a extrudar durante o passar a ferro. Relativo ao fluxo da altura normal da camada. Um valor muito alto resulta em superextrusão na superfície" msgid "Ironing line spacing" msgstr "Espaçamento de linha do passar ferro" @@ -11684,26 +9622,17 @@ msgstr "Velocidade de impressão das linhas do passar ferro" msgid "Ironing angle" msgstr "Ângulo do passar ferro" -msgid "" -"The angle ironing is done at. A negative number disables this function and " -"uses the default method." -msgstr "" -"O ângulo em que o passar a ferro é feito. Um número negativo desativa essa " -"função e usa o método padrão." +msgid "The angle ironing is done at. A negative number disables this function and uses the default method." +msgstr "O ângulo em que o passar a ferro é feito. Um número negativo desativa essa função e usa o método padrão." msgid "This gcode part is inserted at every layer change after lift z" -msgstr "" -"Esta parte do gcode é inserida em cada mudança de camada após levantar z" +msgstr "Esta parte do gcode é inserida em cada mudança de camada após levantar z" msgid "Supports silent mode" msgstr "Suporta modo silencioso" -msgid "" -"Whether the machine supports silent mode in which machine use lower " -"acceleration to print" -msgstr "" -"Se a máquina suporta o modo silencioso, no qual a máquina usa uma aceleração " -"mais baixa para imprimir" +msgid "Whether the machine supports silent mode in which machine use lower acceleration to print" +msgstr "Se a máquina suporta o modo silencioso, no qual a máquina usa uma aceleração mais baixa para imprimir" msgid "Emit limits to G-code" msgstr "Emitir limites para o G-code" @@ -11711,19 +9640,13 @@ msgstr "Emitir limites para o G-code" msgid "Machine limits" msgstr "Limites da máquina" -msgid "" -"If enabled, the machine limits will be emitted to G-code file.\n" +msgid "If enabled, the machine limits will be emitted to G-code file.\n" "This option will be ignored if the g-code flavor is set to Klipper." -msgstr "" -"Se ativado, os limites da máquina serão emitidos para o arquivo de G-code.\n" +msgstr "Se ativado, os limites da máquina serão emitidos para o arquivo de G-code.\n" "Esta opção será ignorada se o tipo do G-code estiver definido para Klipper." -msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" -msgstr "" -"Este G-code será usado como um código para pausar a impressão. O usuário " -"pode inserir o G-code de pausa no visualizador de G-code" +msgid "This G-code will be used as a code for the pause print. User can insert pause G-code in gcode viewer" +msgstr "Este G-code será usado como um código para pausar a impressão. O usuário pode inserir o G-code de pausa no visualizador de G-code" msgid "This G-code will be used as a custom code" msgstr "Este G-code será usado como um código personalizado" @@ -11737,16 +9660,8 @@ msgstr "Habilitar compensação de fluxo para áreas de preenchimento pequenas" msgid "Flow Compensation Model" msgstr "Modelo de Compensação de Fluxo" -msgid "" -"Flow Compensation Model, used to adjust the flow for small infill areas. The " -"model is expressed as a comma separated pair of values for extrusion length " -"and flow correction factors, one per line, in the following format: " -"\"1.234,5.678\"" -msgstr "" -"Modelo de Compensação de Fluxo, usado para ajustar o fluxo para áreas de " -"preenchimento pequenas. O modelo é expresso como um par de valores separados " -"por vírgula para o comprimento de extrusão e os fatores de correção de " -"fluxo, um por linha, no seguinte formato: \"1.234,5.678\"" +msgid "Flow Compensation Model, used to adjust the flow for small infill areas. The model is expressed as a comma separated pair of values for extrusion length and flow correction factors, one per line, in the following format: \"1.234,5.678\"" +msgstr "Modelo de Compensação de Fluxo, usado para ajustar o fluxo para áreas de preenchimento pequenas. O modelo é expresso como um par de valores separados por vírgula para o comprimento de extrusão e os fatores de correção de fluxo, um por linha, no seguinte formato: \"1.234,5.678\"" msgid "Maximum speed X" msgstr "Velocidade máxima X" @@ -11848,85 +9763,33 @@ msgid "Maximum acceleration for travel" msgstr "Aceleração máxima para deslocamento" msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" -msgstr "" -"Aceleração máxima para deslocamento (M204 T), aplica-se apenas ao Marlin 2" +msgstr "Aceleração máxima para deslocamento (M204 T), aplica-se apenas ao Marlin 2" -msgid "" -"Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" -msgstr "" -"A velocidade do ventilador de resfriamento da peça pode ser aumentada quando " -"o resfriamento automático está habilitado. Este é o limite máximo de " -"velocidade do ventilador de resfriamento da peça" +msgid "Part cooling fan speed may be increased when auto cooling is enabled. This is the maximum speed limitation of part cooling fan" +msgstr "A velocidade do ventilador de resfriamento da peça pode ser aumentada quando o resfriamento automático está habilitado. Este é o limite máximo de velocidade do ventilador de resfriamento da peça" msgid "Max" msgstr "Máx" -msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" -msgstr "" -"A maior altura de camada imprimível para o extrusor. Usado para limitar a " -"altura máxima da camada quando a altura da camada adaptativa está ativada" +msgid "The largest printable layer height for extruder. Used tp limits the maximum layer hight when enable adaptive layer height" +msgstr "A maior altura de camada imprimível para o extrusor. Usado para limitar a altura máxima da camada quando a altura da camada adaptativa está ativada" msgid "Extrusion rate smoothing" msgstr "Suavização da extrusão" -msgid "" -"This parameter smooths out sudden extrusion rate changes that happen when " -"the printer transitions from printing a high flow (high speed/larger width) " -"extrusion to a lower flow (lower speed/smaller width) extrusion and vice " -"versa.\n" -"\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " -"can change over time. Higher values mean higher extrusion rate changes are " -"allowed, resulting in faster speed transitions.\n" -"\n" -"A value of 0 disables the feature. \n" -"\n" -"For a high speed, high flow direct drive printer (like the Bambu lab or " -"Voron) this value is usually not needed. However it can provide some " -"marginal benefit in certain cases where feature speeds vary greatly. For " -"example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " -"transition.\n" -"\n" -"For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" -"\n" -"This feature is known as Pressure Equalizer in Prusa slicer.\n" -"\n" +msgid "This parameter smooths out sudden extrusion rate changes that happen when the printer transitions from printing a high flow (high speed/larger width) extrusion to a lower flow (lower speed/smaller width) extrusion and vice versa.\n\n" +"It defines the maximum rate by which the extruded volumetric flow in mm3/sec can change over time. Higher values mean higher extrusion rate changes are allowed, resulting in faster speed transitions.\n\n" +"A value of 0 disables the feature. \n\n" +"For a high speed, high flow direct drive printer (like the Bambu lab or Voron) this value is usually not needed. However it can provide some marginal benefit in certain cases where feature speeds vary greatly. For example, when there are aggressive slowdowns due to overhangs. In these cases a high value of around 300-350mm3/s2 is recommended as this allows for just enough smoothing to assist pressure advance achieve a smoother flow transition.\n\n" +"For slower printers without pressure advance, the value should be set much lower. A value of 10-15mm3/s2 is a good starting point for direct drive extruders and 5-10mm3/s2 for Bowden style. \n\n" +"This feature is known as Pressure Equalizer in Prusa slicer.\n\n" "Note: this parameter disables arc fitting." -msgstr "" -"Este parâmetro suaviza as mudanças súbitas na taxa de extrusão que ocorrem " -"quando a impressora faz a transição de uma extrusão de alto fluxo (alta " -"velocidade/maior largura) para uma extrusão de baixo fluxo (baixa velocidade/" -"menor largura) e vice-versa.\n" -"\n" -"Define a taxa máxima pela qual o fluxo volumétrico extrudado em mm3/seg pode " -"mudar ao longo do tempo. Valores mais altos significam que mudanças de taxa " -"de extrusão mais altas são permitidas, resultando em transições de " -"velocidade mais rápidas.\n" -"\n" -"Um valor de 0 desativa o recurso.\n" -"\n" -"Para uma impressora de acionamento direto de alta velocidade e alto fluxo " -"(como a Bambu lab ou Voron), esse valor geralmente não é necessário. No " -"entanto, pode fornecer alguns benefícios marginais em certos casos em que as " -"velocidades das características variam muito. Por exemplo, quando há " -"desacelerações agressivas devido a overhangs. Nesses casos, um valor alto de " -"cerca de 300-350mm3/s2 é recomendado, pois isso permite apenas suavização " -"suficiente para ajudar o Pressure advance a alcançar uma transição de fluxo " -"mais suave.\n" -"\n" -"Para impressoras mais lentas sem Pressure advance, o valor deve ser definido " -"muito mais baixo. Um valor de 10-15mm3/s2 é um bom ponto de partida para " -"extrusoras de acionamento direto e 5-10mm3/s2 para estilo Bowden.\n" -"\n" -"Este recurso é conhecido como Equalizador de Pressão no slicer Prusa.\n" -"\n" +msgstr "Este parâmetro suaviza as mudanças súbitas na taxa de extrusão que ocorrem quando a impressora faz a transição de uma extrusão de alto fluxo (alta velocidade/maior largura) para uma extrusão de baixo fluxo (baixa velocidade/menor largura) e vice-versa.\n\n" +"Define a taxa máxima pela qual o fluxo volumétrico extrudado em mm3/seg pode mudar ao longo do tempo. Valores mais altos significam que mudanças de taxa de extrusão mais altas são permitidas, resultando em transições de velocidade mais rápidas.\n\n" +"Um valor de 0 desativa o recurso.\n\n" +"Para uma impressora de acionamento direto de alta velocidade e alto fluxo (como a Bambu lab ou Voron), esse valor geralmente não é necessário. No entanto, pode fornecer alguns benefícios marginais em certos casos em que as velocidades das características variam muito. Por exemplo, quando há desacelerações agressivas devido a overhangs. Nesses casos, um valor alto de cerca de 300-350mm3/s2 é recomendado, pois isso permite apenas suavização suficiente para ajudar o Pressure advance a alcançar uma transição de fluxo mais suave.\n\n" +"Para impressoras mais lentas sem Pressure advance, o valor deve ser definido muito mais baixo. Um valor de 10-15mm3/s2 é um bom ponto de partida para extrusoras de acionamento direto e 5-10mm3/s2 para estilo Bowden.\n\n" +"Este recurso é conhecido como Equalizador de Pressão no slicer Prusa.\n\n" "Nota: este parâmetro desativa o ajuste de arco." msgid "mm³/s²" @@ -11935,64 +9798,32 @@ msgstr "mm3/s2" msgid "Smoothing segment length" msgstr "Distancia do segmento de suavização" -msgid "" -"A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" -"\n" -"Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" -"\n" +msgid "A lower value results in smoother extrusion rate transitions. However, this results in a significantly larger gcode file and more instructions for the printer to process. \n\n" +"Default value of 3 works well for most cases. If your printer is stuttering, increase this value to reduce the number of adjustments made\n\n" "Allowed values: 1-5" -msgstr "" -"Um valor menor resulta em transições de extrusão mais suaves. No entanto, " -"isso resulta em um arquivo Gcode significativamente maior e mais instruções " -"para a impressora processar.\n" -"\n" -"O valor padrão de 3 funciona bem para a maioria dos casos. Se sua impressora " -"estiver engasgando, aumente este valor para reduzir o número de ajustes " -"feitos.\n" -"\n" +msgstr "Um valor menor resulta em transições de extrusão mais suaves. No entanto, isso resulta em um arquivo Gcode significativamente maior e mais instruções para a impressora processar.\n\n" +"O valor padrão de 3 funciona bem para a maioria dos casos. Se sua impressora estiver engasgando, aumente este valor para reduzir o número de ajustes feitos.\n\n" "Valores permitidos: 1-5" msgid "Minimum speed for part cooling fan" msgstr "Velocidade mínima para o ventilador de resfriamento da peça" -msgid "" -"Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed " -"during printing except the first several layers which is defined by no " -"cooling layers.\n" -"Please enable auxiliary_fan in printer settings to use this feature. G-code " -"command: M106 P2 S(0-255)" -msgstr "" -"Velocidade do ventilador auxiliar de resfriamento de peças. O ventilador " -"auxiliar funcionará nesta velocidade durante a impressão, exceto nas " -"primeiras camadas, que são definidas por camadas sem resfriamento.\n" -"\n" -"Por favor, habilite o ventilador auxiliar nas configurações da impressora " -"para usar esta função. Comando G-code: M106 P2 S(0-255)" +msgid "Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed during printing except the first several layers which is defined by no cooling layers.\n" +"Please enable auxiliary_fan in printer settings to use this feature. G-code command: M106 P2 S(0-255)" +msgstr "Velocidade do ventilador auxiliar de resfriamento de peças. O ventilador auxiliar funcionará nesta velocidade durante a impressão, exceto nas primeiras camadas, que são definidas por camadas sem resfriamento.\n\n" +"Por favor, habilite o ventilador auxiliar nas configurações da impressora para usar esta função. Comando G-code: M106 P2 S(0-255)" msgid "Min" msgstr "Mín" -msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" -msgstr "" -"A menor altura de camada imprimível para o extrusor. Usado para limitar a " -"altura mínima da camada ao habilitar a altura de camada adaptativa" +msgid "The lowest printable layer height for extruder. Used tp limits the minimum layer hight when enable adaptive layer height" +msgstr "A menor altura de camada imprimível para o extrusor. Usado para limitar a altura mínima da camada ao habilitar a altura de camada adaptativa" msgid "Min print speed" msgstr "Velocidade de impressão mínima" -msgid "" -"The minimum printing speed that the printer will slow down to to attempt to " -"maintain the minimum layer time above, when slow down for better layer " -"cooling is enabled." -msgstr "" -"A velocidade de impressão mínima para a qual a impressora diminuirá a " -"velocidade para tentar manter o tempo mínimo de camada acima, quando a " -"desaceleração para um melhor resfriamento da camada estiver habilitada." +msgid "The minimum printing speed that the printer will slow down to to attempt to maintain the minimum layer time above, when slow down for better layer cooling is enabled." +msgstr "A velocidade de impressão mínima para a qual a impressora diminuirá a velocidade para tentar manter o tempo mínimo de camada acima, quando a desaceleração para um melhor resfriamento da camada estiver habilitada." msgid "Nozzle diameter" msgstr "Diâmetro do bico" @@ -12003,22 +9834,14 @@ msgstr "Diâmetro do bico" msgid "Configuration notes" msgstr "Notas de configuração" -msgid "" -"You can put here your personal notes. This text will be added to the G-code " -"header comments." -msgstr "" -"Você pode colocar aqui suas notas pessoais. Este texto será adicionado aos " -"comentários do cabeçalho do G-code." +msgid "You can put here your personal notes. This text will be added to the G-code header comments." +msgstr "Você pode colocar aqui suas notas pessoais. Este texto será adicionado aos comentários do cabeçalho do G-code." msgid "Host Type" msgstr "Tipo de Host" -msgid "" -"Orca Slicer can upload G-code files to a printer host. This field must " -"contain the kind of the host." -msgstr "" -"O Orca Slicer pode carregar arquivos de código G para um hospedeiro de " -"impressora. Este campo deve conter o tipo de hospedeiro." +msgid "Orca Slicer can upload G-code files to a printer host. This field must contain the kind of the host." +msgstr "O Orca Slicer pode carregar arquivos de código G para um hospedeiro de impressora. Este campo deve conter o tipo de hospedeiro." msgid "Nozzle volume" msgstr "Volume do bico" @@ -12030,74 +9853,43 @@ msgid "Cooling tube position" msgstr "Posição do tubo de resfriamento" msgid "Distance of the center-point of the cooling tube from the extruder tip." -msgstr "" -"Distância do ponto central do tubo de resfriamento da ponta do extrusor." +msgstr "Distância do ponto central do tubo de resfriamento da ponta do extrusor." msgid "Cooling tube length" msgstr "Comprimento do tubo de resfriamento" msgid "Length of the cooling tube to limit space for cooling moves inside it." -msgstr "" -"Comprimento do tubo de resfriamento para limitar o espaço para movimentos de " -"resfriamento dentro dele." +msgstr "Comprimento do tubo de resfriamento para limitar o espaço para movimentos de resfriamento dentro dele." msgid "High extruder current on filament swap" msgstr "Corrente do extrusor alta na troca de filamento" -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 "" -"Pode ser benéfico aumentar a corrente do motor do extrusor durante a " -"sequência de troca de filamento para permitir taxas de avanço rápidas e para " -"superar a resistência ao carregar um filamento com uma ponta com forma " -"desagradável." +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 "Pode ser benéfico aumentar a corrente do motor do extrusor durante a sequência de troca de filamento para permitir taxas de avanço rápidas e para superar a resistência ao carregar um filamento com uma ponta com forma desagradável." msgid "Filament parking position" msgstr "Posição de estacionamento do filamento" -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 "" -"Distância da ponta do extrusor da posição onde o filamento é estacionado " -"quando descarregado. Isso deve corresponder ao valor no firmware da " -"impressora." +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 "Distância da ponta do extrusor da posição onde o filamento é estacionado quando descarregado. Isso deve corresponder ao valor no firmware da impressora." msgid "Extra loading distance" msgstr "Distância de carregamento extra" -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 definido como zero, a distância que o filamento é movido da posição " -"de estacionamento durante o carregamento é exatamente a mesma que foi movida " -"durante o descarregamento. Quando positivo, é carregado mais longe, se " -"negativo, o movimento de carregamento é mais curto do que o descarregamento." +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 definido como zero, a distância que o filamento é movido da posição de estacionamento durante o carregamento é exatamente a mesma que foi movida durante o descarregamento. Quando positivo, é carregado mais longe, se negativo, o movimento de carregamento é mais curto do que o descarregamento." msgid "Start end points" msgstr "Pontos de início e fim" msgid "The start and end points which is from cutter area to garbage can." -msgstr "" -"Os pontos de início e fim que vão da área do cortador até a lata de lixo." +msgstr "Os pontos de início e fim que vão da área do cortador até a lata de lixo." msgid "Reduce infill retraction" msgstr "Reduzir retração durante o preenchimento" -msgid "" -"Don't retract when the travel is in infill area absolutely. That means the " -"oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" -msgstr "" -"Não retrair quando o movimento está na área de preenchimento completamente. " -"Isso significa que o vazamento não pode ser visto. Isso pode reduzir o " -"número de retratações para modelos complexos e economizar tempo de " -"impressão, mas torna a geração de fatiamento e G-code mais lenta" +msgid "Don't retract when the travel is in infill area absolutely. That means the oozing can't been seen. This can reduce times of retraction for complex model and save printing time, but make slicing and G-code generating slower" +msgstr "Não retrair quando o movimento está na área de preenchimento completamente. Isso significa que o vazamento não pode ser visto. Isso pode reduzir o número de retratações para modelos complexos e economizar tempo de impressão, mas torna a geração de fatiamento e G-code mais lenta" msgid "Filename format" msgstr "Formato do nome do arquivo" @@ -12114,24 +9906,14 @@ msgstr "Modifica a geometria para imprimir overhangs sem suporte." msgid "Make overhangs printable - Maximum angle" msgstr "Overhangs imprimíveis - ângulo máx" -msgid "" -"Maximum angle of overhangs to allow after making more steep overhangs " -"printable.90° will not change the model at all and allow any overhang, while " -"0 will replace all overhangs with conical material." -msgstr "" -"Ângulo máximo do overhang permitido antes de fazer ângulos mais íngremes " -"imprimíveis. 90° não vai fazer nenhuma mudança no modelo e vai permitir " -"qualquer overhang. 0 vai substituir todos overhangs por uma forma cônica." +msgid "Maximum angle of overhangs to allow after making more steep overhangs printable.90° will not change the model at all and allow any overhang, while 0 will replace all overhangs with conical material." +msgstr "Ângulo máximo do overhang permitido antes de fazer ângulos mais íngremes imprimíveis. 90° não vai fazer nenhuma mudança no modelo e vai permitir qualquer overhang. 0 vai substituir todos overhangs por uma forma cônica." msgid "Make overhangs printable - Hole area" msgstr "Overhangs imprimíveis - área do furo" -msgid "" -"Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." -msgstr "" -"Área maxima de um furo na base do modelo antes que ele seja preenchido por " -"uma forma cônica. Um valor 0 irá preencher todos os furos do modelo." +msgid "Maximum area of a hole in the base of the model before it's filled by conical material.A value of 0 will fill all the holes in the model base." +msgstr "Área maxima de um furo na base do modelo antes que ele seja preenchido por uma forma cônica. Um valor 0 irá preencher todos os furos do modelo." msgid "mm²" msgstr "mm2" @@ -12139,21 +9921,12 @@ msgstr "mm2" msgid "Detect overhang wall" msgstr "Detectar overhangs" -#, c-format, boost-format -msgid "" -"Detect the overhang percentage relative to line width and use different " -"speed to print. For 100%% overhang, bridge speed is used." -msgstr "" -"Detecta a porcentagem relativa de overhang em relação a largura do perímetro " -"e usa uma velocidade diferente de impressão. Para overhangs 100%%, a " -"velocidade de ponte é usada." +#, possible-c-format, possible-boost-format +msgid "Detect the overhang percentage relative to line width and use different speed to print. For 100%% overhang, bridge speed is used." +msgstr "Detecta a porcentagem relativa de overhang em relação a largura do perímetro e usa uma velocidade diferente de impressão. Para overhangs 100%%, a velocidade de ponte é usada." -msgid "" -"Line width of inner wall. If expressed as a %, it will be computed over the " -"nozzle diameter." -msgstr "" -"Largura do perímetro interno. Se expressado como %, será computado de acordo " -"com o diâmetro do bico." +msgid "Line width of inner wall. If expressed as a %, it will be computed over the nozzle diameter." +msgstr "Largura do perímetro interno. Se expressado como %, será computado de acordo com o diâmetro do bico." msgid "Speed of inner wall" msgstr "Velocidade do perímetro interno" @@ -12164,38 +9937,15 @@ msgstr "Número de perímetros em cada camada" msgid "Alternate extra wall" msgstr "Parede extra alternada" -msgid "" -"This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" -"\n" -"When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" -"\n" -"Using lightning infill together with this option is not recommended as there " -"is limited infill to anchor the extra perimeters to." -msgstr "" -"Esta configuração adiciona um perímetro extra a cada duas camadas. Dessa " -"forma, o preenchimento fica encaixado verticalmente entre as paredes, " -"resultando em impressões mais resistentes. \n" -"\n" -"Quando esta opção está ativada, a opção de garantir a espessura vertical do " -"perímetro precisa ser desativada. \n" -"\n" -"Não é recomendado usar o preenchimento rápido juntamente com esta opção, " -"pois há preenchimento limitado para ancorar os perímetros extras." +msgid "This setting adds an extra wall to every other layer. This way the infill gets wedged vertically between the walls, resulting in stronger prints. \n\n" +"When this option is enabled, the ensure vertical shell thickness option needs to be disabled. \n\n" +"Using lightning infill together with this option is not recommended as there is limited infill to anchor the extra perimeters to." +msgstr "Esta configuração adiciona um perímetro extra a cada duas camadas. Dessa forma, o preenchimento fica encaixado verticalmente entre as paredes, resultando em impressões mais resistentes. \n\n" +"Quando esta opção está ativada, a opção de garantir a espessura vertical do perímetro precisa ser desativada. \n\n" +"Não é recomendado usar o preenchimento rápido juntamente com esta opção, pois há preenchimento limitado para ancorar os perímetros extras." -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 Orca Slicer config settings by reading " -"environment variables." -msgstr "" -"Se você deseja processar o G-code de saída por meio de scripts " -"personalizados, basta listar seus caminhos absolutos aqui. Separe vários " -"scripts com um ponto e vírgula. Os scripts receberão o caminho absoluto para " -"o arquivo G-code como primeiro argumento, e eles podem acessar as " -"configurações do Orca Slicer lendo variáveis de ambiente." +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 Orca Slicer config settings by reading environment variables." +msgstr "Se você deseja processar o G-code de saída por meio de scripts personalizados, basta listar seus caminhos absolutos aqui. Separe vários scripts com um ponto e vírgula. Os scripts receberão o caminho absoluto para o arquivo G-code como primeiro argumento, e eles podem acessar as configurações do Orca Slicer lendo variáveis de ambiente." msgid "Printer notes" msgstr "Notas da impressora" @@ -12225,47 +9975,28 @@ msgid "Initial layer expansion" msgstr "Expansão da primeira camada" msgid "Expand the first raft or support layer to improve bed plate adhesion" -msgstr "" -"Expanda a primeira camada da base ou suporte para melhorar a adesão à mesa " -"de impressão" +msgstr "Expanda a primeira camada da base ou suporte para melhorar a adesão à mesa de impressão" msgid "Raft layers" msgstr "Camadas da base" -msgid "" -"Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" -msgstr "" -"O objeto será elevado por este número de camadas de suporte. Use esta função " -"para evitar o enrugamento ao imprimir ABS" +msgid "Object will be raised by this number of support layers. Use this function to avoid wrapping when print ABS" +msgstr "O objeto será elevado por este número de camadas de suporte. Use esta função para evitar o enrugamento ao imprimir ABS" -msgid "" -"G-code path is genereated after simplifing the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" -msgstr "" -"O caminho do G-code é gerado após simplificar o contorno do modelo para " -"evitar muitos pontos e linhas de código G no arquivo de código G. Um valor " -"menor significa maior resolução e mais tempo para fatiar" +msgid "G-code path is genereated after simplifing the contour of model to avoid too much points and gcode lines in gcode file. Smaller value means higher resolution and more time to slice" +msgstr "O caminho do G-code é gerado após simplificar o contorno do modelo para evitar muitos pontos e linhas de código G no arquivo de código G. Um valor menor significa maior resolução e mais tempo para fatiar" msgid "Travel distance threshold" msgstr "Limiar de distância de deslocamento" -msgid "" -"Only trigger retraction when the travel distance is longer than this " -"threshold" -msgstr "" -"Disparar a retração somente quando a distância da deslocamento for maior que " -"este limite" +msgid "Only trigger retraction when the travel distance is longer than this threshold" +msgstr "Disparar a retração somente quando a distância da deslocamento for maior que este limite" msgid "Retract amount before wipe" msgstr "Quantidade de retração antes da limpeza" -msgid "" -"The length of fast retraction before wipe, relative to retraction length" -msgstr "" -"O comprimento da retração rápida antes da limpeza, em relação ao comprimento " -"da retração" +msgid "The length of fast retraction before wipe, relative to retraction length" +msgstr "O comprimento da retração rápida antes da limpeza, em relação ao comprimento da retração" msgid "Retract when change layer" msgstr "Retrair ao mudar de camada" @@ -12276,68 +10007,38 @@ msgstr "Forçar uma retração ao mudar de camada" msgid "Retraction Length" msgstr "Distância de retração" -msgid "" -"Some amount of material in extruder is pulled back to avoid ooze during long " -"travel. Set zero to disable retraction" -msgstr "" -"Alguma quantidade de material no extrusor é puxada para trás para evitar " -"oozing durante viagens longas. Defina zero para desativar a retração" +msgid "Some amount of material in extruder is pulled back to avoid ooze during long travel. Set zero to disable retraction" +msgstr "Alguma quantidade de material no extrusor é puxada para trás para evitar oozing durante viagens longas. Defina zero para desativar a retração" msgid "Long retraction when cut(experimental)" msgstr "Retração longa quando cortado(experimental)" -msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " -"significantly, it may also raise the risk of nozzle clogs or other printing " -"problems." -msgstr "" -"Recurso experimental. Retrair e cortar o filamento a uma distância mais " -"longa durante mudanças para minimizar a purgação. Isto reduz " -"significativamente o destaque, pode também aumentar o risco de bolhas no " -"bico ou de outros problemas de impressão." +msgid "Experimental feature.Retracting and cutting off the filament at a longer distance during changes to minimize purge.While this reduces flush significantly, it may also raise the risk of nozzle clogs or other printing problems." +msgstr "Recurso experimental: Retrair e cortar o filamento a uma distância maior durante as trocas para minimizar a limpeza. Embora isso reduza significativamente a limpeza, também pode aumentar o risco de obstruções no bico ou outros problemas de impressão." msgid "Retraction distance when cut" msgstr "Distância de retração ao cortar" -msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" -msgstr "" -"Funcionalidade experimental. Comprimento de retração antes de cortar durante " -"a mudança de filamento" +msgid "Experimental feature.Retraction length before cutting off during filament change" +msgstr "Funcionalidade experimental. Comprimento de retração antes de cortar durante a mudança de filamento" msgid "Z hop when retract" msgstr "Z hop ao retrair" -msgid "" -"Whenever the retraction is done, the nozzle is lifted a little to create " -"clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" -msgstr "" -"Sempre que a retração é feita, o bico é levantado um pouco para criar folga " -"entre o bico e a impressão. Isso evita que o bico atinja a impressão ao se " -"mover. Usar linha espiral para levantar z pode evitar stringing" +msgid "Whenever the retraction is done, the nozzle is lifted a little to create clearance between nozzle and the print. It prevents nozzle from hitting the print when travel move. Using spiral line to lift z can prevent stringing" +msgstr "Sempre que a retração é feita, o bico é levantado um pouco para criar folga entre o bico e a impressão. Isso evita que o bico atinja a impressão ao se mover. Usar linha espiral para levantar z pode evitar stringing" msgid "Z hop lower boundary" msgstr "Limite inferior do Z hop" -msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" -msgstr "" -"O Z hop só entrará em vigor quando Z estiver acima deste valor e abaixo do " -"parâmetro: \"Limite superior do Z hop\"" +msgid "Z hop will only come into effect when Z is above this value and is below the parameter: \"Z hop upper boundary\"" +msgstr "O Z hop só entrará em vigor quando Z estiver acima deste valor e abaixo do parâmetro: \"Limite superior do Z hop\"" msgid "Z hop upper boundary" msgstr "Limite superior do Z hop" -msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" -msgstr "" -"Se este valor for positivo, o Z hop só entrará em vigor quando Z estiver " -"acima do parâmetro: \"Limite inferior do Z hop\" e abaixo deste valor" +msgid "If this value is positive, Z hop will only come into effect when Z is above the parameter: \"Z hop lower boundary\" and is below this value" +msgstr "Se este valor for positivo, o Z hop só entrará em vigor quando Z estiver acima do parâmetro: \"Limite inferior do Z hop\" e abaixo deste valor" msgid "Z hop type" msgstr "Tipo de Z hop" @@ -12351,32 +10052,20 @@ msgstr "Espiral" msgid "Only lift Z above" msgstr "Elevar Z apenas acima de" -msgid "" -"If you set this to a positive value, Z lift will only take place above the " -"specified absolute Z." -msgstr "" -"Se você definir isso como um valor positivo, a elevação de Z só ocorrerá " -"acima do Z absoluto especificado." +msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z." +msgstr "Se você definir isso como um valor positivo, a elevação de Z só ocorrerá acima do Z absoluto especificado." msgid "Only lift Z below" msgstr "Elevar Z apenas abaixo de" -msgid "" -"If you set this to a positive value, Z lift will only take place below the " -"specified absolute Z." -msgstr "" -"Se você definir isso como um valor positivo, a elevação de Z só ocorrerá " -"abaixo do Z absoluto especificado." +msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z." +msgstr "Se você definir isso como um valor positivo, a elevação de Z só ocorrerá abaixo do Z absoluto especificado." msgid "On surfaces" msgstr "Nas superfícies" -msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " -"lift Z above/below)." -msgstr "" -"Forçar Z Hop. Essa configuração é impactada pelas configurações acima " -"(Somente elevar Z acima/abaixo)" +msgid "Enforce Z Hop behavior. This setting is impacted by the above settings (Only lift Z above/below)." +msgstr "Forçar Z Hop. Essa configuração é impactada pelas configurações acima (Somente elevar Z acima/abaixo)" msgid "All Surfaces" msgstr "Todas as superfícies" @@ -12393,20 +10082,11 @@ msgstr "Parte superior e inferior" msgid "Extra length on restart" msgstr "Comprimento extra na reinicialização" -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 a retração é compensada após o movimento de deslocamento, o extrusor " -"empurrará essa quantidade adicional de filamento. Esta configuração é " -"raramente necessária." +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 a retração é compensada após o movimento de deslocamento, o extrusor empurrará essa quantidade adicional de filamento. Esta configuração é raramente necessária." -msgid "" -"When the retraction is compensated after changing tool, the extruder will " -"push this additional amount of filament." -msgstr "" -"Quando a retração é compensada após a troca de ferramenta, o extrusor " -"empurrará essa quantidade adicional de filamento." +msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." +msgstr "Quando a retração é compensada após a troca de ferramenta, o extrusor empurrará essa quantidade adicional de filamento." msgid "Retraction Speed" msgstr "Velocidade de retração" @@ -12417,23 +10097,14 @@ msgstr "Velocidade das retratações" msgid "Deretraction Speed" msgstr "Velocidade de desretração" -msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" -msgstr "" -"Velocidade para recarregar o filamento no extrusor. Zero significa mesma " -"velocidade de retração" +msgid "Speed for reloading filament into extruder. Zero means same speed with retraction" +msgstr "Velocidade para recarregar o filamento no extrusor. Zero significa mesma velocidade de retração" msgid "Use firmware retraction" msgstr "Usar retração de firmware" -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 configuração experimental usa os comandos G10 e G11 para fazer com que " -"o firmware gerencie a retração. Isso é suportado apenas no Marlin mais " -"recente." +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 configuração experimental usa os comandos G10 e G11 para fazer com que o firmware gerencie a retração. Isso é suportado apenas no Marlin mais recente." msgid "Show auto-calibration marks" msgstr "Mostrar marcas de autocalibração automática" @@ -12441,11 +10112,8 @@ msgstr "Mostrar marcas de autocalibração automática" msgid "Disable set remaining print time" msgstr "Desabilitar definir tempo de impressão restante" -msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" -msgstr "" -"Desativar a geração do M73: Definir tempo restante de impressão no código " -"final" +msgid "Disable generating of the M73: Set remaining print time in the final gcode" +msgstr "Desativar a geração do M73: Definir tempo restante de impressão no código final" msgid "Seam position" msgstr "Posição da costura" @@ -12468,100 +10136,49 @@ msgstr "Aleatório" msgid "Staggered inner seams" msgstr "Costuras internas escalonadas" -msgid "" -"This option causes the inner seams to be shifted backwards based on their " -"depth, forming a zigzag pattern." -msgstr "" -"Esta opção faz com que as costuras internas sejam deslocadas para trás com " -"base em sua profundidade, formando um padrão de zigue-zague." +msgid "This option causes the inner seams to be shifted backwards based on their depth, forming a zigzag pattern." +msgstr "Esta opção faz com que as costuras internas sejam deslocadas para trás com base em sua profundidade, formando um padrão de zigue-zague." msgid "Seam gap" msgstr "Espaço entre costuras" -msgid "" -"In order to reduce the visibility of the seam in a closed loop extrusion, " -"the loop is interrupted and shortened by a specified amount.\n" -"This amount can be specified in millimeters or as a percentage of the " -"current extruder diameter. The default value for this parameter is 10%." -msgstr "" -"Para reduzir a visibilidade da costura em uma extrusão de loop fechado, o " -"loop é interrompido e encurtado por uma quantidade especificada.\n" -"Esta quantidade pode ser especificada em milímetros ou como uma porcentagem " -"do diâmetro atual do extrusor. O valor padrão para este parâmetro é 10%." +msgid "In order to reduce the visibility of the seam in a closed loop extrusion, the loop is interrupted and shortened by a specified amount.\n" +"This amount can be specified in millimeters or as a percentage of the current extruder diameter. The default value for this parameter is 10%." +msgstr "Para reduzir a visibilidade da costura em uma extrusão de loop fechado, o loop é interrompido e encurtado por uma quantidade especificada.\n" +"Esta quantidade pode ser especificada em milímetros ou como uma porcentagem do diâmetro atual do extrusor. O valor padrão para este parâmetro é 10%." msgid "Scarf joint seam (beta)" msgstr "Junta Scarf (beta)" msgid "Use scarf joint to minimize seam visibility and increase seam strength." -msgstr "" -"Use a junta Scarf para minimizar a visibilidade da costura e aumentar a " -"resistência da costura." +msgstr "Use a junta Scarf para minimizar a visibilidade da costura e aumentar a resistência da costura." msgid "Conditional scarf joint" msgstr "Junta Scarf condicional" -msgid "" -"Apply scarf joints only to smooth perimeters where traditional seams do not " -"conceal the seams at sharp corners effectively." -msgstr "" -"Aplique juntas Scarf apenas em perímetros suaves onde costuras tradicionais " -"não escondem as costuras em cantos agudos de forma eficaz." +msgid "Apply scarf joints only to smooth perimeters where traditional seams do not conceal the seams at sharp corners effectively." +msgstr "Aplique juntas Scarf apenas em perímetros suaves onde costuras tradicionais não escondem as costuras em cantos agudos de forma eficaz." msgid "Conditional angle threshold" msgstr "Ângulo condicional" -msgid "" -"This option sets the threshold angle for applying a conditional scarf joint " -"seam.\n" -"If the maximum angle within the perimeter loop exceeds this value " -"(indicating the absence of sharp corners), a scarf joint seam will be used. " -"The default value is 155°." -msgstr "" -"Esta opção define o ângulo limite para aplicar uma costura de junta de " -"cachecol condicional.\n" -"Se o ângulo máximo dentro do loop do perímetro exceder esse valor (indicando " -"a ausência de cantos afiados), será usada uma costura de junta Scarf. O " -"valor padrão é 155°." +msgid "This option sets the threshold angle for applying a conditional scarf joint seam.\n" +"If the maximum angle within the perimeter loop exceeds this value (indicating the absence of sharp corners), a scarf joint seam will be used. The default value is 155°." +msgstr "Esta opção define o ângulo limite para aplicar uma costura de junta de cachecol condicional.\n" +"Se o ângulo máximo dentro do loop do perímetro exceder esse valor (indicando a ausência de cantos afiados), será usada uma costura de junta Scarf. O valor padrão é 155°." msgid "Conditional overhang threshold" msgstr "Overhang condicional" #, no-c-format, no-boost-format -msgid "" -"This option determines the overhang threshold for the application of scarf " -"joint seams. If the unsupported portion of the perimeter is less than this " -"threshold, scarf joint seams will be applied. The default threshold is set " -"at 40% of the external wall's width. Due to performance considerations, the " -"degree of overhang is estimated." -msgstr "" -"Esta opção determina o limiar de inclinação para a aplicação de juntas " -"Scarf. Se a parte sem suporte do perímetro for inferior a esse limite, as " -"juntas Scarf serão aplicadas. O limite padrão é definido em 40% da largura " -"do perímetro externo. Devido a considerações de desempenho, o grau de " -"inclinação é estimado." +msgid "This option determines the overhang threshold for the application of scarf joint seams. If the unsupported portion of the perimeter is less than this threshold, scarf joint seams will be applied. The default threshold is set at 40% of the external wall's width. Due to performance considerations, the degree of overhang is estimated." +msgstr "Esta opção determina o limiar de inclinação para a aplicação de juntas Scarf. Se a parte sem suporte do perímetro for inferior a esse limite, as juntas Scarf serão aplicadas. O limite padrão é definido em 40% da largura do perímetro externo. Devido a considerações de desempenho, o grau de inclinação é estimado." msgid "Scarf joint speed" msgstr "Velocidade da junta Scarf" -msgid "" -"This option sets the printing speed for scarf joints. It is recommended to " -"print scarf joints at a slow speed (less than 100 mm/s). It's also " -"advisable to enable 'Extrusion rate smoothing' if the set speed varies " -"significantly from the speed of the outer or inner walls. If the speed " -"specified here is higher than the speed of the outer or inner walls, the " -"printer will default to the slower of the two speeds. When specified as a " -"percentage (e.g., 80%), the speed is calculated based on the respective " -"outer or inner wall speed. The default value is set to 100%." -msgstr "" -"Esta opção define a velocidade de impressão para as juntas Scarf. É " -"recomendável imprimir as juntas Scarf em uma velocidade baixa (menor que 100 " -"mm/s). Também é aconselhável habilitar 'Suavização da taxa de extrusão' se a " -"velocidade definida variar significativamente da velocidade das paredes " -"externas ou internas. Se a velocidade especificada aqui for maior que a " -"velocidade das paredes externas ou internas, a impressora utilizará a mais " -"lenta das duas velocidades. Quando especificado como uma porcentagem (por " -"exemplo, 80%), a velocidade é calculada com base na velocidade do perímetro " -"externo ou interna respectiva. O valor padrão é definido como 100%." +msgid "This option sets the printing speed for scarf joints. It is recommended to print scarf joints at a slow speed (less than 100 mm/s). It's also advisable to enable 'Extrusion rate smoothing' if the set speed varies significantly from the speed of the outer or inner walls. If the speed specified here is higher than the speed of the outer or inner walls, the printer will default to the slower of the two speeds. When specified as a percentage (e.g., 80%), the speed is calculated based on the respective outer or inner wall speed. The default value is set to 100%." +msgstr "Esta opção define a velocidade de impressão para as juntas Scarf. É recomendável imprimir as juntas Scarf em uma velocidade baixa (menor que 100 mm/s). Também é aconselhável habilitar 'Suavização da taxa de extrusão' se a velocidade definida variar significativamente da velocidade das paredes externas ou internas. Se a velocidade especificada aqui for maior que a velocidade das paredes externas ou internas, a impressora utilizará a mais lenta das duas velocidades. Quando especificado como uma porcentagem (por exemplo, 80%), a velocidade é calculada com base na velocidade do perímetro externo ou interna respectiva. O valor padrão é definido como 100%." msgid "Scarf joint flow ratio" msgstr "Fluxo da junta Scarf" @@ -12572,14 +10189,10 @@ msgstr "Este fator afeta a quantidade de material para as juntas Scarf." msgid "Scarf start height" msgstr "Altura inicial da junta Scarf" -msgid "" -"Start height of the scarf.\n" -"This amount can be specified in millimeters or as a percentage of the " -"current layer height. The default value for this parameter is 0." -msgstr "" -"Altura inicial da junta Scarf.\n" -"Esta quantidade pode ser especificada em milímetros ou como uma porcentagem " -"da altura atual da camada. O valor padrão para este parâmetro é 0." +msgid "Start height of the scarf.\n" +"This amount can be specified in millimeters or as a percentage of the current layer height. The default value for this parameter is 0." +msgstr "Altura inicial da junta Scarf.\n" +"Esta quantidade pode ser especificada em milímetros ou como uma porcentagem da altura atual da camada. O valor padrão para este parâmetro é 0." msgid "Scarf around entire wall" msgstr "Junta Scarf em todo o perímetro" @@ -12590,12 +10203,8 @@ msgstr "A junta Scarf se estende por todo o comprimento do perímetro." msgid "Scarf length" msgstr "Comprimento da junta Scarf" -msgid "" -"Length of the scarf. Setting this parameter to zero effectively disables the " -"scarf." -msgstr "" -"Comprimento da junta Scarf. Definir este parâmetro como zero efetivamente " -"desabilita a junta Scarf." +msgid "Length of the scarf. Setting this parameter to zero effectively disables the scarf." +msgstr "Comprimento da junta Scarf. Definir este parâmetro como zero efetivamente desabilita a junta Scarf." msgid "Scarf steps" msgstr "Passos da junta Scarf" @@ -12612,64 +10221,28 @@ msgstr "Usar junta Scarf em paredes internas também." msgid "Role base wipe speed" msgstr "Velocidade de limpeza baseada no tipo de extrusão" -msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " -"if a wipe action is executed immediately following an outer wall extrusion, " -"the speed of the outer wall extrusion will be utilized for the wipe action." -msgstr "" -"A velocidade de limpeza é determinada pela velocidade do tipo de extrusão " -"atual. Por exemplo, se uma ação de limpeza for executada imediatamente após " -"uma extrusão de perímetro externo, a velocidade da extrusão do perímetro " -"externo será utilizada para a ação de limpeza." +msgid "The wipe speed is determined by the speed of the current extrusion role.e.g. if a wipe action is executed immediately following an outer wall extrusion, the speed of the outer wall extrusion will be utilized for the wipe action." +msgstr "A velocidade de limpeza é determinada pela velocidade do tipo de extrusão atual. Por exemplo, se uma ação de limpeza for executada imediatamente após uma extrusão de perímetro externo, a velocidade da extrusão do perímetro externo será utilizada para a ação de limpeza." msgid "Wipe on loops" msgstr "Limpeza em loops" -msgid "" -"To minimize the visibility of the seam in a closed loop extrusion, a small " -"inward movement is executed before the extruder leaves the loop." -msgstr "" -"Para minimizar a visibilidade da costura em uma extrusão de loop fechado, é " -"executado um pequeno movimento para dentro antes que o extrusor saia do loop." +msgid "To minimize the visibility of the seam in a closed loop extrusion, a small inward movement is executed before the extruder leaves the loop." +msgstr "Para minimizar a visibilidade da costura em uma extrusão de loop fechado, é executado um pequeno movimento para dentro antes que o extrusor saia do loop." msgid "Wipe before external loop" msgstr "Limpeza antes do loop externo" -msgid "" -"To minimise visibility of potential overextrusion at the start of an " -"external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " -"print order, the deretraction is performed slightly on the inside from the " -"start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" -"\n" -"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " -"print order as in these modes it is more likely an external perimeter is " -"printed immediately after a deretraction move." -msgstr "" -"Para minimizar a visibilidade de sobreextrusão potencial no início de um " -"perímetro externo ao imprimir com a ordem de impressão de perímetro Externo/" -"Interno ou Interno/Externo/Interno, a desretração é executada ligeiramente " -"no interior a partir do início do perímetro externo. Dessa forma, qualquer " -"sobreextrusão potencial é ocultada da superfície externa. \n" -"\n" -"Isso é útil ao imprimir com a ordem de impressão de perímetro Externa/" -"Interna ou Interna/Externa/Interna, pois nesses modos é mais provável que um " -"perímetro externo seja impresso imediatamente após um movimento de " -"desretração." +msgid "To minimise visibility of potential overextrusion at the start of an external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall print order, the deretraction is performed slightly on the inside from the start of the external perimeter. That way any potential over extrusion is hidden from the outside surface. \n\n" +"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall print order as in these modes it is more likely an external perimeter is printed immediately after a deretraction move." +msgstr "Para minimizar a visibilidade de sobreextrusão potencial no início de um perímetro externo ao imprimir com a ordem de impressão de perímetro Externo/Interno ou Interno/Externo/Interno, a desretração é executada ligeiramente no interior a partir do início do perímetro externo. Dessa forma, qualquer sobreextrusão potencial é ocultada da superfície externa. \n\n" +"Isso é útil ao imprimir com a ordem de impressão de perímetro Externa/Interna ou Interna/Externa/Interna, pois nesses modos é mais provável que um perímetro externo seja impresso imediatamente após um movimento de desretração." msgid "Wipe speed" msgstr "Velocidade de limpeza" -msgid "" -"The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" -msgstr "" -"A velocidade de limpeza é determinada pela velocidade especificada nesta " -"configuração. Se o valor for expresso como uma porcentagem (por exemplo, " -"80%), será calculado com base na configuração de velocidade de deslocamento " -"acima. O valor padrão para este parâmetro é 80%" +msgid "The wipe speed is determined by the speed setting specified in this configuration.If the value is expressed as a percentage (e.g. 80%), it will be calculated based on the travel speed setting above.The default value for this parameter is 80%" +msgstr "A velocidade de limpeza é determinada pela velocidade especificada nesta configuração. Se o valor for expresso como uma porcentagem (por exemplo, 80%), será calculado com base na configuração de velocidade de deslocamento acima. O valor padrão para este parâmetro é 80%" msgid "Skirt distance" msgstr "Distância da saia" @@ -12684,27 +10257,24 @@ msgid "How many layers of skirt. Usually only one layer" msgstr "Quantas camadas de saia. Geralmente apenas uma camada" msgid "Draft shield" -msgstr "Escudo de proteção" +msgstr "Escudo" -msgid "" -"A draft shield is useful to protect an ABS or ASA print from warping and " -"detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" -"\n" +msgid "A draft shield is useful to protect an ABS or ASA print from warping and detaching from print bed due to wind draft. It is usually needed only with open frame printers, i.e. without an enclosure. \n\n" "Options:\n" "Enabled = skirt is as tall as the highest printed object.\n" -"Limited = skirt is as tall as specified by skirt height.\n" -"\n" -"Note: With the draft shield active, the skirt will be printed at skirt " -"distance from the object. Therefore, if brims are active it may intersect " -"with them. To avoid this, increase the skirt distance value.\n" -msgstr "" +"Limited = skirt is as tall as specified by skirt height.\n\n" +"Note: With the draft shield active, the skirt will be printed at skirt distance from the object. Therefore, if brims are active it may intersect with them. To avoid this, increase the skirt distance value.\n" +msgstr "Um escudo é útil para proteger uma impressão ABS ou ASA de empenamento e de se descolar da mesa de impressão devido à corrrentes de ar. Normalmente, só é necessária com impressoras abertas, ou seja, sem câmara fechada. \n\n" +"Opções:\n" +"Ativado = saia tem a mesma altura que o maior objeto a ser impresso.\n" +"Limitado = saia tem altura especificada pela altura de saia.\n\n" +"Nota: Com o escudo ativo, a saia será impressa na distância de saia do objeto. Portanto, se bordas estiverem ativas, pode se interceptar com eles. Para evitar isso, aumente o valor da distância da saia.\n" msgid "Limited" -msgstr "Limitado" +msgstr "Limitada" msgid "Enabled" -msgstr "Habilitado" +msgstr "Ativado" msgid "Skirt loops" msgstr "Voltas da saia" @@ -12716,98 +10286,48 @@ msgid "Skirt speed" msgstr "Velocidade da saia" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." -msgstr "" -"Velocidade da saia, em mm/s. Zero significa usar a velocidade padrão de " -"extrusão da camada." +msgstr "Velocidade da saia, em mm/s. Zero significa usar a velocidade padrão de extrusão da camada." msgid "Skirt minimum extrusion length" -msgstr "" +msgstr "Comprimento mínimo de extrusão da saia" -msgid "" -"Minimum filament extrusion length in mm when printing the skirt. Zero means " -"this feature is disabled.\n" -"\n" -"Using a non zero value is useful if the printer is set up to print without a " -"prime line." -msgstr "" +msgid "Minimum filament extrusion length in mm when printing the skirt. Zero means this feature is disabled.\n\n" +"Using a non zero value is useful if the printer is set up to print without a prime line." +msgstr "Comprimento mínimo de extrusão de filamento em mm ao imprimir a saia. Zero significa que esta característica está desabilitada.\n\n" +"Usar um valor não zero é útil se a impressora estiver configurada para imprimir sem uma linha de limpeza." -msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" -msgstr "" -"A velocidade de impressão no gcode exportado será reduzida quando o tempo " -"estimado da camada for menor que esse valor, para obter uma melhor " -"resfriamento para essas camadas" +msgid "The printing speed in exported gcode will be slowed down, when the estimated layer time is shorter than this value, to get better cooling for these layers" +msgstr "A velocidade de impressão no gcode exportado será reduzida quando o tempo estimado da camada for menor que esse valor, para obter uma melhor resfriamento para essas camadas" msgid "Minimum sparse infill threshold" msgstr "Limiar mínimo de preenchimento" -msgid "" -"Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" -msgstr "" -"A área de preenchimento não sólido que é menor que o valor de limiar é " -"substituída por preenchimento sólido interno" +msgid "Sparse infill area which is smaller than threshold value is replaced by internal solid infill" +msgstr "A área de preenchimento não sólido que é menor que o valor de limiar é substituída por preenchimento sólido interno" -msgid "" -"Line width of internal solid infill. If expressed as a %, it will be " -"computed over the nozzle diameter." -msgstr "" -"Largura da linha de preenchimento sólido interno. Se expresso como uma %, " -"será calculado sobre o diâmetro do bico." +msgid "Line width of internal solid infill. If expressed as a %, it will be computed over the nozzle diameter." +msgstr "Largura da linha de preenchimento sólido interno. Se expresso como uma %, será calculado sobre o diâmetro do bico." msgid "Speed of internal solid infill, not the top and bottom surface" -msgstr "" -"Velocidade de preenchimento sólido interno, não a superfície superior e " -"inferior" +msgstr "Velocidade de preenchimento sólido interno, não a superfície superior e inferior" -msgid "" -"Spiralize smooths out the z moves of the outer contour. And turns a solid " -"model into a single walled print with solid bottom layers. The final " -"generated model has no seam" -msgstr "" -"A espiralização suaviza os movimentos z do contorno externo. E transforma um " -"modelo sólido em uma impressão de perímetro único com camadas inferiores " -"sólidas. O modelo final gerado não tem costura" +msgid "Spiralize smooths out the z moves of the outer contour. And turns a solid model into a single walled print with solid bottom layers. The final generated model has no seam" +msgstr "A espiralização suaviza os movimentos z do contorno externo. E transforma um modelo sólido em uma impressão de perímetro único com camadas inferiores sólidas. O modelo final gerado não tem costura" msgid "Smooth Spiral" msgstr "Espiral Suave" -msgid "" -"Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam " -"at all, even in the XY directions on walls that are not vertical" -msgstr "" -"A Espiral Suave suaviza os movimentos X e Y, resultando em nenhuma costura " -"visível, mesmo nas direções XY em paredes que não são verticais" +msgid "Smooth Spiral smoothes out X and Y moves as wellresulting in no visible seam at all, even in the XY directions on walls that are not vertical" +msgstr "A Espiral Suave suaviza os movimentos X e Y, resultando em nenhuma costura visível, mesmo nas direções XY em paredes que não são verticais" msgid "Max XY Smoothing" msgstr "Suavização Máxima XY" -msgid "" -"Maximum distance to move points in XY to try to achieve a smooth spiralIf " -"expressed as a %, it will be computed over nozzle diameter" -msgstr "" -"Distância máxima para mover pontos em XY para tentar obter uma espiral " -"suave. Se expresso como uma %, será calculado sobre o diâmetro do bico" +msgid "Maximum distance to move points in XY to try to achieve a smooth spiralIf expressed as a %, it will be computed over nozzle diameter" +msgstr "Distância máxima para mover pontos em XY para tentar obter uma espiral suave. Se expresso como uma %, será calculado sobre o diâmetro do bico" -msgid "" -"If smooth or traditional mode is selected, a timelapse video will be " -"generated for each print. After each layer is printed, a snapshot is taken " -"with the chamber camera. All of these snapshots are composed into a " -"timelapse video when printing completes. If smooth mode is selected, the " -"toolhead will move to the excess chute after each layer is printed and then " -"take a snapshot. Since the melt filament may leak from the nozzle during the " -"process of taking a snapshot, prime tower is required for smooth mode to " -"wipe nozzle." -msgstr "" -"Se o modo suave ou tradicional for selecionado, um vídeo em time-lapse será " -"gerado para cada impressão. Após cada camada ser impressa, uma captura de " -"tela é feita com a câmera da câmara. Todas essas capturas de tela são " -"compostas em um vídeo em time-lapse quando a impressão é concluída. Se o " -"modo suave for selecionado, a extrusora se moverá para fora após cada camada " -"ser impressa e então tirará uma captura de tela. Como o filamento derretido " -"pode vazar do bico durante o processo de tirar uma captura de tela, é " -"necessário uma torre de priming para o modo suave para limpar o bico." +msgid "If smooth or traditional mode is selected, a timelapse video will be generated for each print. After each layer is printed, a snapshot is taken with the chamber camera. All of these snapshots are composed into a timelapse video when printing completes. If smooth mode is selected, the toolhead will move to the excess chute after each layer is printed and then take a snapshot. Since the melt filament may leak from the nozzle during the process of taking a snapshot, prime tower is required for smooth mode to wipe nozzle." +msgstr "Se o modo suave ou tradicional for selecionado, um vídeo em time-lapse será gerado para cada impressão. Após cada camada ser impressa, uma captura de tela é feita com a câmera da câmara. Todas essas capturas de tela são compostas em um vídeo em time-lapse quando a impressão é concluída. Se o modo suave for selecionado, a extrusora se moverá para fora após cada camada ser impressa e então tirará uma captura de tela. Como o filamento derretido pode vazar do bico durante o processo de tirar uma captura de tela, é necessário uma torre de priming para o modo suave para limpar o bico." msgid "Traditional" msgstr "Tradicional" @@ -12833,18 +10353,8 @@ msgstr "Use um único bico para imprimir múltiplos filamentos" msgid "Manual Filament Change" msgstr "Troca Manual de Filamento" -msgid "" -"Enable this option to omit the custom Change filament G-code only at the " -"beginning of the print. The tool change command (e.g., T0) will be skipped " -"throughout the entire print. This is useful for manual multi-material " -"printing, where we use M600/PAUSE to trigger the manual filament change " -"action." -msgstr "" -"Ative esta opção para omitir o código G de troca de filamento personalizado " -"apenas no início da impressão. O comando de troca de ferramenta (por " -"exemplo, T0) será ignorado durante toda a impressão. Isso é útil para " -"impressão manual de vários materiais, onde usamos M600/PAUSE para acionar a " -"ação de troca manual de filamento." +msgid "Enable this option to omit the custom Change filament G-code only at the beginning of the print. The tool change command (e.g., T0) will be skipped throughout the entire print. This is useful for manual multi-material printing, where we use M600/PAUSE to trigger the manual filament change action." +msgstr "Ative esta opção para omitir o código G de troca de filamento personalizado apenas no início da impressão. O comando de troca de ferramenta (por exemplo, T0) será ignorado durante toda a impressão. Isso é útil para impressão manual de vários materiais, onde usamos M600/PAUSE para acionar a ação de troca manual de filamento." msgid "Purge in prime tower" msgstr "Purgar na torre de priming" @@ -12858,49 +10368,26 @@ msgstr "Ativar inserção de filamento" msgid "No sparse layers (beta)" msgstr "Sem camadas esparsas (beta)" -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 ativado, a torre de limpeza não será impressa em camadas sem trocas de " -"ferramentas. Em camadas com uma troca de ferramentas, o extrusor viajará " -"para baixo para imprimir a torre de limpeza. O usuário é responsável por " -"garantir que não haja colisão com a impressão." +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 ativado, a torre de limpeza não será impressa em camadas sem trocas de ferramentas. Em camadas com uma troca de ferramentas, o extrusor viajará para baixo para imprimir a torre de limpeza. O usuário é responsável por garantir que não haja colisão com a impressão." msgid "Prime all printing extruders" msgstr "Primer todos os extrusores de impressão" -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 ativado, todos os extrusores de impressão serão iniciados na borda " -"frontal da mesa de impressão no início da impressão." +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 ativado, todos os extrusores de impressão serão iniciados na borda frontal da mesa de impressão no início da impressão." msgid "Slice gap closing radius" msgstr "Tolerância do fatiamento" -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 "" -"Espaços menores que 2x a tolerância de fatiamentoo serão preenchidas durante " -"o fatiamento da malha. Aumentar a tolerância de fatiamento pode reduzir a " -"resolução final da impressão, portanto, é aconselhável manter o valor " -"razoavelmente baixo." +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 "Espaços menores que 2x a tolerância de fatiamentoo serão preenchidas durante o fatiamento da malha. Aumentar a tolerância de fatiamento pode reduzir a resolução final da impressão, portanto, é aconselhável manter o valor razoavelmente baixo." msgid "Slicing Mode" msgstr "Modo de Fatiamento" -msgid "" -"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " -"close all holes in the model." -msgstr "" -"Use \"Par-impar\" para modelos de avião 3DLabPrint. Use \"Fechar buracos\" " -"para fechar todos os buracos no modelo." +msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." +msgstr "Use \"Par-impar\" para modelos de avião 3DLabPrint. Use \"Fechar buracos\" para fechar todos os buracos no modelo." msgid "Regular" msgstr "Padrão" @@ -12914,16 +10401,8 @@ msgstr "Fechar buracos" msgid "Z offset" msgstr "Deslocamento Z" -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á adicionado (ou subtraído) de todas as coordenadas Z no G-" -"code de saída. É usado para compensar a má posição do fim de curso Z: por " -"exemplo, se o zero do seu fim de curso na verdade deixa o bico 0,3 mm longe " -"da mesa de impressão, ajuste isso para -0,3 (ou corrija o seu fim de curso)." +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á adicionado (ou subtraído) de todas as coordenadas Z no G-code de saída. É usado para compensar a má posição do fim de curso Z: por exemplo, se o zero do seu fim de curso na verdade deixa o bico 0,3 mm longe da mesa de impressão, ajuste isso para -0,3 (ou corrija o seu fim de curso)." msgid "Enable support" msgstr "Ativar suporte" @@ -12931,14 +10410,8 @@ msgstr "Ativar suporte" msgid "Enable support generation." msgstr "Ativar a geração de suporte." -msgid "" -"normal(auto) and tree(auto) is used to generate support automatically. If " -"normal(manual) or tree(manual) is selected, only support enforcers are " -"generated" -msgstr "" -"normal(auto) e tree(auto) são usados para gerar suporte automaticamente. Se " -"normal(manual) ou tree(manual) for selecionado, apenas os suportes são " -"gerados" +msgid "normal(auto) and tree(auto) is used to generate support automatically. If normal(manual) or tree(manual) is selected, only support enforcers are generated" +msgstr "normal(auto) e tree(auto) são usados para gerar suporte automaticamente. Se normal(manual) ou tree(manual) for selecionado, apenas os suportes são gerados" msgid "normal(auto)" msgstr "normal(automático)" @@ -12962,8 +10435,7 @@ msgid "Pattern angle" msgstr "Ângulo de padrão" msgid "Use this setting to rotate the support pattern on the horizontal plane." -msgstr "" -"Use esta configuração para girar o padrão de suporte no plano horizontal." +msgstr "Use esta configuração para girar o padrão de suporte no plano horizontal." msgid "On build plate only" msgstr "Somente na mesa" @@ -12974,12 +10446,8 @@ msgstr "Não criar suporte na superfície do modelo, apenas na mesa" msgid "Support critical regions only" msgstr "Suportar apenas regiões críticas" -msgid "" -"Only create support for critical regions including sharp tail, cantilever, " -"etc." -msgstr "" -"Crie suporte apenas para regiões críticas, incluindo cauda afiada, balanço, " -"etc." +msgid "Only create support for critical regions including sharp tail, cantilever, etc." +msgstr "Crie suporte apenas para regiões críticas, incluindo cauda afiada, balanço, etc." msgid "Remove small overhangs" msgstr "Remover pequenos overhangs" @@ -13002,47 +10470,29 @@ msgstr "A diferença z entre a interface inferior de suporte e o objeto" msgid "Support/raft base" msgstr "Suporte/base" -msgid "" -"Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" -msgstr "" -"Filamento para imprimir a base e suporte. \"Padrão\" significa nenhum " -"filamento específico para suporte e o filamento atual será usado" +msgid "Filament to print support base and raft. \"Default\" means no specific filament for support and current filament is used" +msgstr "Filamento para imprimir a base e suporte. \"Padrão\" significa nenhum filamento específico para suporte e o filamento atual será usado" msgid "Avoid interface filament for base" msgstr "Evitar o filamento da interface para a base" -msgid "" -"Avoid using support interface filament to print support base if possible." -msgstr "" -"Evite usar o filamento da interface de suporte para imprimir a base, se " -"possível." +msgid "Avoid using support interface filament to print support base if possible." +msgstr "Evite usar o filamento da interface de suporte para imprimir a base, se possível." -msgid "" -"Line width of support. If expressed as a %, it will be computed over the " -"nozzle diameter." -msgstr "" -"Largura da linha de suporte. Se expresso como %, será calculado sobre o " -"diâmetro do bico." +msgid "Line width of support. If expressed as a %, it will be computed over the nozzle diameter." +msgstr "Largura da linha de suporte. Se expresso como %, será calculado sobre o diâmetro do bico." msgid "Interface use loop pattern" msgstr "Interface usa padrão de loop" -msgid "" -"Cover the top contact layer of the supports with loops. Disabled by default." -msgstr "" -"Cubra a camada de contato superior dos suportes com loops. Desativado por " -"padrão." +msgid "Cover the top contact layer of the supports with loops. Disabled by default." +msgstr "Cubra a camada de contato superior dos suportes com loops. Desativado por padrão." msgid "Support/raft interface" msgstr "Interface de suporte/plataforma" -msgid "" -"Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" -msgstr "" -"Filamento para imprimir a interface de suporte. \"Padrão\" significa nenhum " -"filamento específico para a interface de suporte e o filamento atual é usado" +msgid "Filament to print support interface. \"Default\" means no specific filament for support interface and current filament is used" +msgstr "Filamento para imprimir a interface de suporte. \"Padrão\" significa nenhum filamento específico para a interface de suporte e o filamento atual é usado" msgid "Top interface layers" msgstr "Camadas de interface superior" @@ -13069,8 +10519,7 @@ msgid "Bottom interface spacing" msgstr "Espaçamento da interface inferior" msgid "Spacing of bottom interface lines. Zero means solid interface" -msgstr "" -"Espaçamento das linhas de interface inferior. Zero significa interface sólida" +msgstr "Espaçamento das linhas de interface inferior. Zero significa interface sólida" msgid "Speed of support interface" msgstr "Velocidade da interface de suporte" @@ -13090,14 +10539,8 @@ msgstr "Oco" msgid "Interface pattern" msgstr "Padrão de interface" -msgid "" -"Line pattern of support interface. Default pattern for non-soluble support " -"interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" -msgstr "" -"Padrão de linha de interface de suporte. O padrão padrão para interface de " -"suporte não solúvel é reticulado, enquanto o padrão padrão para interface de " -"suporte solúvel é concêntrico" +msgid "Line pattern of support interface. Default pattern for non-soluble support interface is Rectilinear, while default pattern for soluble support interface is Concentric" +msgstr "Padrão de linha de interface de suporte. O padrão padrão para interface de suporte não solúvel é reticulado, enquanto o padrão padrão para interface de suporte solúvel é concêntrico" msgid "Rectilinear Interlaced" msgstr "Reticulado Interligado" @@ -13117,23 +10560,10 @@ msgstr "Expanda (+) ou contraia (-) a extensão horizontal do suporte normal" msgid "Speed of support" msgstr "Velocidade do suporte" -msgid "" -"Style and shape of the support. For normal support, projecting the supports " -"into a regular grid will create more stable supports (default), while snug " -"support towers will save material and reduce object scarring.\n" -"For tree support, slim and organic style will merge branches more " -"aggressively and save a lot of material (default organic), while hybrid " -"style will create similar structure to normal support under large flat " -"overhangs." -msgstr "" -"Estilo e forma do suporte. Para suporte normal, projetar os suportes em uma " -"grade regular criará suportes mais estáveis (padrão), enquanto torres de " -"suporte ajustadas economizarão material e reduzirão a cicatrização do " -"objeto.\n" -"Para suporte de árvore, estilo fino e orgânico mesclarão os galhos de forma " -"mais agressiva e economizarão muito material (orgânico padrão), enquanto o " -"estilo híbrido criará uma estrutura semelhante ao suporte normal em grandes " -"overhangs planas." +msgid "Style and shape of the support. For normal support, projecting the supports into a regular grid will create more stable supports (default), while snug support towers will save material and reduce object scarring.\n" +"For tree support, slim and organic style will merge branches more aggressively and save a lot of material (default organic), while hybrid style will create similar structure to normal support under large flat overhangs." +msgstr "Estilo e forma do suporte. Para suporte normal, projetar os suportes em uma grade regular criará suportes mais estáveis (padrão), enquanto torres de suporte ajustadas economizarão material e reduzirão a cicatrização do objeto.\n" +"Para suporte de árvore, estilo fino e orgânico mesclarão os galhos de forma mais agressiva e economizarão muito material (orgânico padrão), enquanto o estilo híbrido criará uma estrutura semelhante ao suporte normal em grandes overhangs planas." msgid "Snug" msgstr "Ajustado" @@ -13153,98 +10583,52 @@ msgstr "Orgânico" msgid "Independent support layer height" msgstr "Altura independente da camada de suporte" -msgid "" -"Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " -"when the prime tower is enabled." -msgstr "" -"A camada de suporte usa uma altura de camada independente da camada do " -"objeto. Isso é para suportar a personalização do z-gap e economizar tempo de " -"impressão. Esta opção será inválida quando a torre de priming estiver " -"ativada." +msgid "Support layer uses layer height independent with object layer. This is to support customizing z-gap and save print time.This option will be invalid when the prime tower is enabled." +msgstr "A camada de suporte usa uma altura de camada independente da camada do objeto. Isso é para suportar a personalização do z-gap e economizar tempo de impressão. Esta opção será inválida quando a torre de priming estiver ativada." msgid "Threshold angle" msgstr "Ângulo de limite" -msgid "" -"Support will be generated for overhangs whose slope angle is below the " -"threshold." -msgstr "" -"O suporte será gerado para overhangs cujo ângulo de inclinação estiver " -"abaixo do limite." +msgid "Support will be generated for overhangs whose slope angle is below the threshold." +msgstr "O suporte será gerado para overhangs cujo ângulo de inclinação estiver abaixo do limite." msgid "Tree support branch angle" msgstr "Ângulo da ramificação" -msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " -"printed more horizontally, allowing them to reach farther." -msgstr "" -"Esta configuração determina o ângulo máximo de inclinação que as " -"ramificações de suporte de árvore podem fazer. Se o ângulo for aumentado, as " -"ramificações podem ser impressas de forma mais horizontal, permitindo que " -"alcancem mais longe." +msgid "This setting determines the maximum overhang angle that t he branches of tree support allowed to make.If the angle is increased, the branches can be printed more horizontally, allowing them to reach farther." +msgstr "Esta configuração determina o ângulo máximo de inclinação que as ramificações de suporte de árvore podem fazer. Se o ângulo for aumentado, as ramificações podem ser impressas de forma mais horizontal, permitindo que alcancem mais longe." msgid "Preferred Branch Angle" msgstr "Ângulo preferido da ramificação" #. TRN PrintSettings: "Organic supports" > "Preferred Branch Angle" -msgid "" -"The preferred angle of the branches, when they do not have to avoid the " -"model. Use a lower angle to make them more vertical and more stable. Use a " -"higher angle for branches to merge faster." -msgstr "" -"O ângulo preferido das ramificações, quando eles não precisam evitar o " -"modelo. Use um ângulo mais baixo para torná-los mais verticais e mais " -"estáveis. Use um ângulo mais alto para que as ramificações se fundam mais " -"rápido." +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "O ângulo preferido das ramificações, quando eles não precisam evitar o modelo. Use um ângulo mais baixo para torná-los mais verticais e mais estáveis. Use um ângulo mais alto para que as ramificações se fundam mais rápido." msgid "Tree support branch distance" msgstr "Distância entre ramificações" -msgid "" -"This setting determines the distance between neighboring tree support nodes." -msgstr "" -"Essa configuração determina a distância entre os nós de suporte de árvore " -"vizinhos." +msgid "This setting determines the distance between neighboring tree support nodes." +msgstr "Essa configuração determina a distância entre os nós de suporte de árvore vizinhos." msgid "Branch Density" msgstr "Densidade da ramificação" #. TRN PrintSettings: "Organic supports" > "Branch Density" -msgid "" -"Adjusts the density of the support structure used to generate the tips of " -"the branches. A higher value results in better overhangs but the supports " -"are harder to remove, thus it is recommended to enable top support " -"interfaces instead of a high branch density value if dense interfaces are " -"needed." -msgstr "" -"Ajusta a densidade da estrutura de suporte usada para gerar as pontas das " -"ramificações. Um valor mais alto resulta em overhangs melhores, mas os " -"suportes são mais difíceis de remover, portanto, é recomendável ativar as " -"interfaces superiores de suporte em vez de um valor de densidade de ramo " -"alto se forem necessárias interfaces densas." +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs but the supports are harder to remove, thus it is recommended to enable top support interfaces instead of a high branch density value if dense interfaces are needed." +msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas das ramificações. Um valor mais alto resulta em overhangs melhores, mas os suportes são mais difíceis de remover, portanto, é recomendável ativar as interfaces superiores de suporte em vez de um valor de densidade de ramo alto se forem necessárias interfaces densas." msgid "Adaptive layer height" msgstr "Altura de camada adaptativa" -msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " -msgstr "" -"Ao ativar essa opção, a altura da camada de suporte de árvore, exceto a " -"primeira, será calculada automaticamente " +msgid "Enabling this option means the height of tree support layer except the first will be automatically calculated " +msgstr "Ao ativar essa opção, a altura da camada de suporte de árvore, exceto a primeira, será calculada automaticamente " msgid "Auto brim width" msgstr "Largura de borda automática" -msgid "" -"Enabling this option means the width of the brim for tree support will be " -"automatically calculated" -msgstr "" -"Ao ativar essa opção, a largura da borda para suporte de árvore será " -"calculada automaticamente" +msgid "Enabling this option means the width of the brim for tree support will be automatically calculated" +msgstr "Ao ativar essa opção, a largura da borda para suporte de árvore será calculada automaticamente" msgid "Tree support brim width" msgstr "Largura da borda de suporte de árvore" @@ -13270,29 +10654,15 @@ msgid "Branch Diameter Angle" msgstr "Ângulo do diâmetro da ramificação" #. TRN PrintSettings: "Organic supports" > "Branch Diameter Angle" -msgid "" -"The angle of the branches' diameter as they gradually become thicker towards " -"the bottom. An angle of 0 will cause the branches to have uniform thickness " -"over their length. A bit of an angle can increase stability of the organic " -"support." -msgstr "" -"O ângulo das ramificações à medida que elas gradualmente se tornam mais " -"espessos em direção à base. Um ângulo de 0 fará com que as ramificações " -"tenham espessura uniforme ao longo de seu comprimento. Um pequeno ângulo " -"pode aumentar a estabilidade do suporte orgânico." +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the organic support." +msgstr "O ângulo das ramificações à medida que elas gradualmente se tornam mais espessos em direção à base. Um ângulo de 0 fará com que as ramificações tenham espessura uniforme ao longo de seu comprimento. Um pequeno ângulo pode aumentar a estabilidade do suporte orgânico." msgid "Branch Diameter with double walls" msgstr "Diâmetro da ramificação com perí. duplo" #. TRN PrintSettings: "Organic supports" > "Branch Diameter" -msgid "" -"Branches with area larger than the area of a circle of this diameter will be " -"printed with double walls for stability. Set this value to zero for no " -"double walls." -msgstr "" -"Ramificações com área maior do que a área de um círculo com este diâmetro " -"serão impressas com paredes duplas para estabilidade. Defina este valor como " -"zero para não ter paredes duplas." +msgid "Branches with area larger than the area of a circle of this diameter will be printed with double walls for stability. Set this value to zero for no double walls." +msgstr "Ramificações com área maior do que a área de um círculo com este diâmetro serão impressas com paredes duplas para estabilidade. Defina este valor como zero para não ter paredes duplas." msgid "Support wall loops" msgstr "Perímetros de suporte" @@ -13303,44 +10673,22 @@ msgstr "Esta configuração especifica a contagem de paredes ao redor do suporte msgid "Tree support with infill" msgstr "Suporte de árvore com preenchimento" -msgid "" -"This setting specifies whether to add infill inside large hollows of tree " -"support" -msgstr "" -"Essa configuração especifica se deve adicionar preenchimento dentro de " -"grandes cavidades do suporte de árvore" +msgid "This setting specifies whether to add infill inside large hollows of tree support" +msgstr "Essa configuração especifica se deve adicionar preenchimento dentro de grandes cavidades do suporte de árvore" msgid "Activate temperature control" msgstr "Ativar controle de temperatura" -msgid "" -"Enable this option for chamber temperature control. An M191 command will be " -"added before \"machine_start_gcode\"\n" +msgid "Enable this option for chamber temperature control. An M191 command will be added before \"machine_start_gcode\"\n" "G-code commands: M141/M191 S(0-255)" -msgstr "" -"Ative esta opção para controle de temperatura da câmara. Um comando M191 " -"será adicionado antes de \"machine_start_gcode\"\n" +msgstr "Ative esta opção para controle de temperatura da câmara. Um comando M191 será adicionado antes de \"machine_start_gcode\"\n" "Comandos G-code: M141/M191 S(0-255)" msgid "Chamber temperature" msgstr "Temperatura da câmara" -msgid "" -"Higher chamber temperature can help suppress or reduce warping and " -"potentially lead to higher interlayer bonding strength for high temperature " -"materials like ABS, ASA, PC, PA and so on.At the same time, the air " -"filtration of ABS and ASA will get worse.While for PLA, PETG, TPU, PVA and " -"other low temperature materials,the actual chamber temperature should not be " -"high to avoid cloggings, so 0 which stands for turning off is highly " -"recommended" -msgstr "" -"Uma temperatura mais alta na câmara pode ajudar a suprimir ou reduzir o " -"empenamento e potencialmente levar a uma maior resistência de ligação entre " -"camadas para materiais de alta temperatura como ABS, ASA, PC, PA e assim por " -"diante. Ao mesmo tempo, a filtragem de ar de ABS e ASA ficará pior. Para " -"PLA, PETG, TPU, PVA e outros materiais de baixa temperatura, a temperatura " -"real da câmara não deve ser alta para evitar obstruções, portanto, é " -"altamente recomendável usar 0, que significa desligado" +msgid "Higher chamber temperature can help suppress or reduce warping and potentially lead to higher interlayer bonding strength for high temperature materials like ABS, ASA, PC, PA and so on.At the same time, the air filtration of ABS and ASA will get worse.While for PLA, PETG, TPU, PVA and other low temperature materials,the actual chamber temperature should not be high to avoid cloggings, so 0 which stands for turning off is highly recommended" +msgstr "Uma temperatura mais alta na câmara pode ajudar a suprimir ou reduzir o empenamento e potencialmente levar a uma maior resistência de ligação entre camadas para materiais de alta temperatura como ABS, ASA, PC, PA e assim por diante. Ao mesmo tempo, a filtragem de ar de ABS e ASA ficará pior. Para PLA, PETG, TPU, PVA e outros materiais de baixa temperatura, a temperatura real da câmara não deve ser alta para evitar obstruções, portanto, é altamente recomendável usar 0, que significa desligado" msgid "Nozzle temperature for layers after the initial one" msgstr "Temperatura do bico para camadas após a inicial" @@ -13348,30 +10696,17 @@ msgstr "Temperatura do bico para camadas após a inicial" msgid "Detect thin wall" msgstr "Detectar perímetro fino" -msgid "" -"Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" -msgstr "" -"Detecta paredes finas que não podem conter duas larguras de linha. E usa uma " -"linha única para imprimir. Talvez seja impresso não muito bem, porque não é " -"um loop fechado" +msgid "Detect thin wall which can't contain two line width. And use single line to print. Maybe printed not very well, because it's not closed loop" +msgstr "Detecta paredes finas que não podem conter duas larguras de linha. E usa uma linha única para imprimir. Talvez seja impresso não muito bem, porque não é um loop fechado" -msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" -msgstr "" -"Este gcode é inserido ao trocar o filamento, incluindo o comando T para " -"acionar a troca de ferramenta" +msgid "This gcode is inserted when change filament, including T command to trigger tool change" +msgstr "Este gcode é inserido ao trocar o filamento, incluindo o comando T para acionar a troca de ferramenta" msgid "This gcode is inserted when the extrusion role is changed" msgstr "Esse gcode é inserido quando o tipo de extrusão muda" -msgid "" -"Line width for top surfaces. If expressed as a %, it will be computed over " -"the nozzle diameter." -msgstr "" -"Largura da linha para superfícies superiores. Se expressa em %, será " -"calculada sobre o diâmetro do bico." +msgid "Line width for top surfaces. If expressed as a %, it will be computed over the nozzle diameter." +msgstr "Largura da linha para superfícies superiores. Se expressa em %, será calculada sobre o diâmetro do bico." msgid "Speed of top surface infill which is solid" msgstr "Velocidade de preenchimento da superfície superior, que é sólida" @@ -13379,15 +10714,8 @@ msgstr "Velocidade de preenchimento da superfície superior, que é sólida" msgid "Top shell layers" msgstr "Camadas de topo" -msgid "" -"This is the number of solid layers of top shell, including the top surface " -"layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" -msgstr "" -"Este é o número de camadas sólidas do perímetro superior, incluindo a camada " -"da superfície superior. Quando a espessura calculada por este valor for " -"menor do que a espessura do perímetro superior, as camadas do perímetro " -"superior serão aumentadas" +msgid "This is the number of solid layers of top shell, including the top surface layer. When the thickness calculated by this value is thinner than top shell thickness, the top shell layers will be increased" +msgstr "Este é o número de camadas sólidas do perímetro superior, incluindo a camada da superfície superior. Quando a espessura calculada por este valor for menor do que a espessura do perímetro superior, as camadas do perímetro superior serão aumentadas" msgid "Top solid layers" msgstr "Camadas sólidas superiores" @@ -13395,18 +10723,8 @@ msgstr "Camadas sólidas superiores" msgid "Top shell thickness" msgstr "Espessura da parede de topo" -msgid "" -"The number of top solid layers is increased when slicing if the thickness " -"calculated by top shell layers is thinner than this value. This can avoid " -"having too thin shell when layer height is small. 0 means that this setting " -"is disabled and thickness of top shell is absolutely determained by top " -"shell layers" -msgstr "" -"O número de camadas sólidas superiores é aumentado ao fatiar se a espessura " -"calculada pelas camadas da parede superior for menor do que este valor. Isso " -"pode evitar que a parede seja muito fina quando a altura da camada é " -"pequena. 0 significa que esta configuração está desativada e a espessura da " -"parede superior é determinada exclusivamente pelas camadas da parede superior" +msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is absolutely determained by top shell layers" +msgstr "O número de camadas sólidas superiores é aumentado ao fatiar se a espessura calculada pelas camadas da parede superior for menor do que este valor. Isso pode evitar que a parede seja muito fina quando a altura da camada é pequena. 0 significa que esta configuração está desativada e a espessura da parede superior é determinada exclusivamente pelas camadas da parede superior" msgid "Speed of travel which is faster and without extrusion" msgstr "Velocidade de deslocamento mais rápida e sem extrusão" @@ -13414,60 +10732,30 @@ msgstr "Velocidade de deslocamento mais rápida e sem extrusão" msgid "Wipe while retracting" msgstr "Limpeza ao retrair" -msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" -msgstr "" -"Movimentar o bico ao longo do último caminho de extrusão ao retrair para " -"limpar o material vazado no bico. Isso pode minimizar a formação de blob " -"quando imprimir uma nova peça após o deslocamento" +msgid "Move nozzle along the last extrusion path when retracting to clean leaked material on nozzle. This can minimize blob when print new part after travel" +msgstr "Movimentar o bico ao longo do último caminho de extrusão ao retrair para limpar o material vazado no bico. Isso pode minimizar a formação de blob quando imprimir uma nova peça após o deslocamento" msgid "Wipe Distance" msgstr "Distância de limpeza" -msgid "" -"Discribe how long the nozzle will move along the last path when " -"retracting. \n" -"\n" -"Depending on how long the wipe operation lasts, how fast and long the " -"extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" -"\n" -"Setting a value in the retract amount before wipe setting below will perform " -"any excess retraction before the wipe, else it will be performed after." -msgstr "" -"Descreva por quanto tempo o bico se moverá ao longo do último caminho ao " -"retrair. \n" -"\n" -"Dependendo de quanto tempo dura a operação de limpeza, quão rápidas e longas " -"são as configurações de retração do extrusor/filamento, pode ser necessário " -"um movimento de retração para recolher o filamento restante. \n" -"\n" -"Definir um valor na configuração de quantidade de retração antes da limpeza " -"abaixo executará qualquer retração em excesso antes da limpeza, caso " -"contrário, será realizada após." +msgid "Discribe how long the nozzle will move along the last path when retracting. \n\n" +"Depending on how long the wipe operation lasts, how fast and long the extruder/filament retraction settings are, a retraction move may be needed to retract the remaining filament. \n\n" +"Setting a value in the retract amount before wipe setting below will perform any excess retraction before the wipe, else it will be performed after." +msgstr "Descreva por quanto tempo o bico se moverá ao longo do último caminho ao retrair. \n\n" +"Dependendo de quanto tempo dura a operação de limpeza, quão rápidas e longas são as configurações de retração do extrusor/filamento, pode ser necessário um movimento de retração para recolher o filamento restante. \n\n" +"Definir um valor na configuração de quantidade de retração antes da limpeza abaixo executará qualquer retração em excesso antes da limpeza, caso contrário, será realizada após." -msgid "" -"The wiping tower can be used to clean up the residue on the nozzle and " -"stabilize the chamber pressure inside the nozzle, in order to avoid " -"appearance defects when printing objects." -msgstr "" -"A torre de limpeza pode ser usada para limpar o resíduo no bico e " -"estabilizar a pressão na câmara dentro do bico, a fim de evitar defeitos de " -"aparência ao imprimir objetos." +msgid "The wiping tower can be used to clean up the residue on the nozzle and stabilize the chamber pressure inside the nozzle, in order to avoid appearance defects when printing objects." +msgstr "A torre de limpeza pode ser usada para limpar o resíduo no bico e estabilizar a pressão na câmara dentro do bico, a fim de evitar defeitos de aparência ao imprimir objetos." msgid "Purging volumes" msgstr "Volumes de purga" msgid "Flush multiplier" -msgstr "Multiplicador de descarga" +msgstr "Multiplicador de limpeza" -msgid "" -"The actual flushing volumes is equal to the flush multiplier multiplied by " -"the flushing volumes in the table." -msgstr "" -"Os volumes de descarga reais são iguais ao multiplicador de descarga " -"multiplicado pelos volumes de descarga na tabela." +msgid "The actual flushing volumes is equal to the flush multiplier multiplied by the flushing volumes in the table." +msgstr "Os volumes de purga reais são iguais ao multiplicador de purga multiplicado pelos volumes de purga na tabela." msgid "Prime volume" msgstr "Volume de priming" @@ -13487,12 +10775,8 @@ msgstr "Ângulo de rotação da torre de limpeza em relação ao eixo x." msgid "Stabilization cone apex angle" msgstr "Ângulo do ápice do cone de estabilização" -msgid "" -"Angle at the apex of the cone that is used to stabilize the wipe tower. " -"Larger angle means wider base." -msgstr "" -"Ângulo no ápice do cone que é usado para estabilizar a torre de limpeza. Um " -"ângulo maior significa uma base mais larga." +msgid "Angle at the apex of the cone that is used to stabilize the wipe tower. Larger angle means wider base." +msgstr "Ângulo no ápice do cone que é usado para estabilizar a torre de limpeza. Um ângulo maior significa uma base mais larga." msgid "Wipe tower purge lines spacing" msgstr "Espaçamento das linhas de purga da torre de limpeza" @@ -13501,82 +10785,39 @@ msgid "Spacing of purge lines on the wipe tower." msgstr "Espaçamento das linhas de purga na torre de limpeza." msgid "Maximum wipe tower print speed" -msgstr "" +msgstr "Velocidade máxima de impressão da torre de limpeza" -msgid "" -"The maximum print speed when purging in the wipe tower and printing the wipe " -"tower sparse layers. When purging, if the sparse infill speed or calculated " -"speed from the filament max volumetric speed is lower, the lowest will be " -"used instead.\n" -"\n" -"When printing the sparse layers, if the internal perimeter speed or " -"calculated speed from the filament max volumetric speed is lower, the lowest " -"will be used instead.\n" -"\n" -"Increasing this speed may affect the tower's stability as well as increase " -"the force with which the nozzle collides with any blobs that may have formed " -"on the wipe tower.\n" -"\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " -"your printer can reliably bridge at the increased speeds and that ooze when " -"tool changing is well controlled.\n" -"\n" -"For the wipe tower external perimeters the internal perimeter speed is used " -"regardless of this setting." -msgstr "" +msgid "The maximum print speed when purging in the wipe tower and printing the wipe tower sparse layers. When purging, if the sparse infill speed or calculated speed from the filament max volumetric speed is lower, the lowest will be used instead.\n\n" +"When printing the sparse layers, if the internal perimeter speed or calculated speed from the filament max volumetric speed is lower, the lowest will be used instead.\n\n" +"Increasing this speed may affect the tower's stability as well as increase the force with which the nozzle collides with any blobs that may have formed on the wipe tower.\n\n" +"Before increasing this parameter beyond the default of 90mm/sec, make sure your printer can reliably bridge at the increased speeds and that ooze when tool changing is well controlled.\n\n" +"For the wipe tower external perimeters the internal perimeter speed is used regardless of this setting." +msgstr "A velocidade máxima de impressão ao purgar na torre de limpeza e ao imprimir as camadas esparsas da torre de limpeza. Ao purgar, se a velocidade do preenchimento ou a velocidade calculada a partir da velocidade volumétrica máxima do filamento for menor, a menor será utilizada.\n\n" +"Ao imprimir as camadas esparsas, se a velocidade do perímetro interno ou a velocidade calculada a partir da velocidade volumétrica máxima do filamento for menor, a menor será utilizada.\n\n" +"Aumentar essa velocidade pode afetar a estabilidade da torre, bem como aumentar a força com que o bico colide com quaisquer bolhas que possam ter se formado na torre de limpeza.\n\n" +"Antes de aumentar esse parâmetro além do padrão de 90mm/s, certifique-se de que sua impressora pode realizar pontes de forma confiável nas velocidades aumentadas e que a extrusão ao trocar a ferramenta está bem controlada.\n\n" +"Para os perímetros externos da torre de limpeza, a velocidade do perímetro interno é utilizada independentemente dessa configuração." msgid "Wipe tower extruder" msgstr "Extrusor da torre de limpeza" -msgid "" -"The extruder to use when printing perimeter of the wipe tower. Set to 0 to " -"use the one that is available (non-soluble would be preferred)." -msgstr "" -"O extrusor a ser usado ao imprimir o perímetro da torre de limpeza. Defina " -"como 0 para usar o disponível (não solúvel é preferido)." +msgid "The extruder to use when printing perimeter of the wipe tower. Set to 0 to use the one that is available (non-soluble would be preferred)." +msgstr "O extrusor a ser usado ao imprimir o perímetro da torre de limpeza. Defina como 0 para usar o disponível (não solúvel é preferido)." msgid "Purging volumes - load/unload volumes" msgstr "Volumes de purga - volumes de carga/descarga" -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 vetor salva os volumes necessários para mudar de/para cada ferramenta " -"usada na torre de limpeza. Esses valores são usados para simplificar a " -"criação dos volumes de purga completos abaixo." +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 vetor salva os volumes necessários para mudar de/para cada ferramenta usada na torre de limpeza. Esses valores são usados para simplificar a criação dos volumes de purga completos abaixo." -msgid "" -"Purging after filament change will be done inside objects' infills. This may " -"lower the amount of waste and decrease the print time. If the walls are " -"printed with transparent filament, the mixed color infill will be seen " -"outside. It will not take effect, unless the prime tower is enabled." -msgstr "" -"A purga após a troca de filamento será feita dentro do preenchimento dos " -"objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de " -"impressão. Se as paredes forem impressas com filamento transparente, o " -"preenchimento de cor mista será visto por fora. Isso não terá efeito, a " -"menos que a torre de inicialização esteja ativada." +msgid "Purging after filament change will be done inside objects' infills. This may lower the amount of waste and decrease the print time. If the walls are printed with transparent filament, the mixed color infill will be seen outside. It will not take effect, unless the prime tower is enabled." +msgstr "A purga após a troca de filamento será feita dentro do preenchimento dos objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. Se as paredes forem impressas com filamento transparente, o preenchimento de cor mista será visto por fora. Isso não terá efeito, a menos que a torre de inicialização esteja ativada." -msgid "" -"Purging after filament change will be done inside objects' support. This may " -"lower the amount of waste and decrease the print time. It will not take " -"effect, unless the prime tower is enabled." -msgstr "" -"A purga após a troca de filamento será feita dentro do suporte dos objetos. " -"Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. " -"Isso não terá efeito, a menos que a torre de inicialização esteja ativada." +msgid "Purging after filament change will be done inside objects' support. This may lower the amount of waste and decrease the print time. It will not take effect, unless the prime tower is enabled." +msgstr "A purga após a troca de filamento será feita dentro do suporte dos objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. Isso não terá efeito, a menos que a torre de inicialização esteja ativada." -msgid "" -"This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." -msgstr "" -"Este objeto será usado para purgar o bico após a troca de filamento para " -"economizar filamento e diminuir o tempo de impressão. As cores dos objetos " -"serão misturadas como resultado. Isso não terá efeito, a menos que a torre " -"de inicialização esteja ativada." +msgid "This object will be used to purge the nozzle after a filament change to save filament and decrease the print time. Colours of the objects will be mixed as a result. It will not take effect, unless the prime tower is enabled." +msgstr "Este objeto será usado para purgar o bico após a troca de filamento para economizar filamento e diminuir o tempo de impressão. As cores dos objetos serão misturadas como resultado. Isso não terá efeito, a menos que a torre de inicialização esteja ativada." msgid "Maximal bridging distance" msgstr "Distância máxima de ponte" @@ -13587,59 +10828,32 @@ msgstr "Distância máxima entre suportes em seções de preenchimento não sól msgid "X-Y hole compensation" msgstr "Compensação XY de furos" -msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" -msgstr "" -"Os furos do objeto serão aumentados ou reduzidos no plano XY pelo valor " -"configurado. Valor positivo aumenta os furos. Valor negativo reduz os furos. " -"Essa função é usada para ajustar ligeiramente o tamanho quando o objeto tem " -"problema de montagem" +msgid "Holes of object will be grown or shrunk in XY plane by the configured value. Positive value makes holes bigger. Negative value makes holes smaller. This function is used to adjust size slightly when the object has assembling issue" +msgstr "Os furos do objeto serão aumentados ou reduzidos no plano XY pelo valor configurado. Valor positivo aumenta os furos. Valor negativo reduz os furos. Essa função é usada para ajustar ligeiramente o tamanho quando o objeto tem problema de montagem" msgid "X-Y contour compensation" msgstr "Compensação XY de contornos" -msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" -msgstr "" -"O contorno do objeto será expandido ou reduzido no plano XY pelo valor " -"configurado. Valor positivo aumenta o contorno. Valor negativo diminui o " -"contorno. Essa função é usada para ajustar ligeiramente o tamanho quando o " -"objeto tem problemas de montagem" +msgid "Contour of object will be grown or shrunk in XY plane by the configured value. Positive value makes contour bigger. Negative value makes contour smaller. This function is used to adjust size slightly when the object has assembling issue" +msgstr "O contorno do objeto será expandido ou reduzido no plano XY pelo valor configurado. Valor positivo aumenta o contorno. Valor negativo diminui o contorno. Essa função é usada para ajustar ligeiramente o tamanho quando o objeto tem problemas de montagem" msgid "Convert holes to polyholes" msgstr "Converter furos em polifuros" -msgid "" -"Search for almost-circular holes that span more than one layer and convert " -"the geometry to polyholes. Use the nozzle size and the (biggest) diameter to " -"compute the polyhole.\n" +msgid "Search for almost-circular holes that span more than one layer and convert the geometry to polyholes. Use the nozzle size and the (biggest) diameter to compute the polyhole.\n" "See http://hydraraptor.blogspot.com/2011/02/polyholes.html" -msgstr "" -"Procura por furos quase circulares que abrangem mais de uma camada e " -"converta a geometria em polifuros. Usa o tamanho do bico e o diâmetro " -"(maior) para calcular o polifuro.\n" +msgstr "Procura por furos quase circulares que abrangem mais de uma camada e converta a geometria em polifuros. Usa o tamanho do bico e o diâmetro (maior) para calcular o polifuro.\n" "Consulte http://hydraraptor.blogspot.com/2011/02/polyholes.html" msgid "Polyhole detection margin" msgstr "Margem de detecção de polifuros" #, no-c-format, no-boost-format -msgid "" -"Maximum defection of a point to the estimated radius of the circle.\n" -"As cylinders are often exported as triangles of varying size, points may not " -"be on the circle circumference. This setting allows you some leway to " -"broaden the detection.\n" +msgid "Maximum defection of a point to the estimated radius of the circle.\n" +"As cylinders are often exported as triangles of varying size, points may not be on the circle circumference. This setting allows you some leway to broaden the detection.\n" "In mm or in % of the radius." -msgstr "" -"Máxima deflexão de um ponto para o raio estimado do círculo.\n" -"Como os cilindros frequentemente são exportados como triângulos de tamanho " -"variável, os pontos podem não estar na circunferência do círculo. Esta " -"configuração permite-lhe alguma margem para alargar a detecção.\n" +msgstr "Máxima deflexão de um ponto para o raio estimado do círculo.\n" +"Como os cilindros frequentemente são exportados como triângulos de tamanho variável, os pontos podem não estar na circunferência do círculo. Esta configuração permite-lhe alguma margem para alargar a detecção.\n" "Em milímetros ou em % do raio." msgid "Polyhole twist" @@ -13651,45 +10865,23 @@ msgstr "Girar o polifuro a cada camada." msgid "G-code thumbnails" msgstr "Miniaturas de G-code" -msgid "" -"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the " -"following format: \"XxY, XxY, ...\"" -msgstr "" -"Tamanhos das imagens a serem armazenados em arquivos .gcode e .sl1 / .sl1s, " -"no seguinte formato: \"XxY, XxY, ...\"" +msgid "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the following format: \"XxY, XxY, ...\"" +msgstr "Tamanhos das imagens a serem armazenados em arquivos .gcode e .sl1 / .sl1s, no seguinte formato: \"XxY, XxY, ...\"" msgid "Format of G-code thumbnails" msgstr "Formato das miniaturas de G-code" -msgid "" -"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" -msgstr "" -"Formato das miniaturas de G-code: PNG para melhor qualidade, JPG para menor " -"tamanho, QOI para firmware de baixa memória" +msgid "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, QOI for low memory firmware" +msgstr "Formato das miniaturas de G-code: PNG para melhor qualidade, JPG para menor tamanho, QOI para firmware de baixa memória" msgid "Use relative E distances" msgstr "Usar distâncias E relativas" -msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " -"extruders work better with this option unckecked (absolute extrusion mode). " -"Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" -msgstr "" -"A extrusão relativa é recomendada ao usar a opção \"label_objects\". Algumas " -"extrusoras funcionam melhor com esta opção desmarcada (modo de extrusão " -"absoluta). A torre de limpeza é compatível apenas com o modo relativo. É " -"recomendado na maioria das impressoras. O padrão é ativado" +msgid "Relative extrusion is recommended when using \"label_objects\" option.Some extruders work better with this option unckecked (absolute extrusion mode). Wipe tower is only compatible with relative mode. It is recommended on most printers. Default is checked" +msgstr "A extrusão relativa é recomendada ao usar a opção \"label_objects\". Algumas extrusoras funcionam melhor com esta opção desmarcada (modo de extrusão absoluta). A torre de limpeza é compatível apenas com o modo relativo. É recomendado na maioria das impressoras. O padrão é ativado" -msgid "" -"Classic wall generator produces walls with constant extrusion width and for " -"very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" -msgstr "" -"O gerador de perímetro clássico produz paredes com largura de extrusão " -"constante e para áreas muito finas é usado preenchimento de vão. O motor " -"Arachne produz perímetros com largura de extrusão variável" +msgid "Classic wall generator produces walls with constant extrusion width and for very thin areas is used gap-fill. Arachne engine produces walls with variable extrusion width" +msgstr "O gerador de perímetro clássico produz paredes com largura de extrusão constante e para áreas muito finas é usado preenchimento de vão. O motor Arachne produz perímetros com largura de extrusão variável" msgid "Classic" msgstr "Clássico" @@ -13700,140 +10892,58 @@ msgstr "Arachne" msgid "Wall transition length" msgstr "Comprimento da transição de perímetro" -msgid "" -"When transitioning between different numbers of walls as the part becomes " -"thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" -msgstr "" -"Ao fazer a transição entre diferentes números de paredes à medida que a peça " -"fica mais fina, uma certa quantidade de espaço é designada para dividir ou " -"unir os segmentos do perímetro. É expresso como uma porcentagem sobre o " -"diâmetro do bico" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall segments. It's expressed as a percentage over nozzle diameter" +msgstr "Ao fazer a transição entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é designada para dividir ou unir os segmentos do perímetro. É expresso como uma porcentagem sobre o diâmetro do bico" msgid "Wall transitioning filter margin" msgstr "Margem de filtro de transição de perímetro" -msgid "" -"Prevent transitioning back and forth between one extra wall and one less. " -"This margin extends the range of extrusion widths which follow to [Minimum " -"wall width - margin, 2 * Minimum wall width + margin]. Increasing this " -"margin reduces the number of transitions, which reduces the number of " -"extrusion starts/stops and travel time. However, large extrusion width " -"variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" -msgstr "" -"Evita a transição de ida e volta entre um perímetro extra e um a menos. Esta " -"margem amplia o intervalo de larguras de extrusão que seguem para [Largura " -"mínima da perímetro - margem, 2 * Largura mínima da perímetro + margem]. " -"Aumentar esta margem reduz o número de transições, o que reduz o número de " -"inícios / paradas de extrusão e o tempo de deslocamento. No entanto, uma " -"grande variação na largura de extrusão pode levar a problemas de subextrusão " -"ou superextrusão. É expresso como uma porcentagem sobre o diâmetro do bico" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of extrusion widths which follow to [Minimum wall width - margin, 2 * Minimum wall width + margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large extrusion width variation can lead to under- or overextrusion problems. It's expressed as a percentage over nozzle diameter" +msgstr "Evita a transição de ida e volta entre um perímetro extra e um a menos. Esta margem amplia o intervalo de larguras de extrusão que seguem para [Largura mínima da perímetro - margem, 2 * Largura mínima da perímetro + margem]. Aumentar esta margem reduz o número de transições, o que reduz o número de inícios / paradas de extrusão e o tempo de deslocamento. No entanto, uma grande variação na largura de extrusão pode levar a problemas de subextrusão ou superextrusão. É expresso como uma porcentagem sobre o diâmetro do bico" msgid "Wall transitioning threshold angle" msgstr "Ângulo de limite de transição de perímetro" -msgid "" -"When to create transitions between even and odd numbers of walls. A wedge " -"shape with an angle greater than this setting will not have transitions and " -"no walls will be printed in the center to fill the remaining space. Reducing " -"this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" -msgstr "" -"Quando criar transições entre números pares e ímpares de paredes. Uma forma " -"de cunha com um ângulo maior do que esta configuração não terá transições e " -"nenhumo perímetro será impresso no centro para preencher o espaço restante. " -"Reduzir esta configuração reduz o número e o comprimento dessas paredes " -"centrais, mas pode deixar vazios ou extrusão excessiva" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude" +msgstr "Quando criar transições entre números pares e ímpares de paredes. Uma forma de cunha com um ângulo maior do que esta configuração não terá transições e nenhumo perímetro será impresso no centro para preencher o espaço restante. Reduzir esta configuração reduz o número e o comprimento dessas paredes centrais, mas pode deixar vazios ou extrusão excessiva" msgid "Wall distribution count" msgstr "Contagem de distribuição de perímetro" -msgid "" -"The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" -msgstr "" -"O número de paredes, contadas a partir do centro, sobre as quais a variação " -"precisa ser espalhada. Valores menores significam que as paredes externas " -"não mudam de largura" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width" +msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação precisa ser espalhada. Valores menores significam que as paredes externas não mudam de largura" msgid "Minimum feature size" msgstr "Tamanho mínimo do elemento" -msgid "" -"Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" -msgstr "" -"Espessura mínima de elementos finos. Elementos do modelo que são mais finos " -"do que este valor não serão impressos, enquanto elementos mais espessos que " -"o tamanho mínimo do elemento serão alargados até a largura mínima do " -"perímetro. É expresso como uma porcentagem sobre o diâmetro do bico" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum feature size will be widened to the Minimum wall width. It's expressed as a percentage over nozzle diameter" +msgstr "Espessura mínima de elementos finos. Elementos do modelo que são mais finos do que este valor não serão impressos, enquanto elementos mais espessos que o tamanho mínimo do elemento serão alargados até a largura mínima do perímetro. É expresso como uma porcentagem sobre o diâmetro do bico" msgid "Minimum wall length" msgstr "Comprimento mínimo do perímetro" -msgid "" -"Adjust this value to prevent short, unclosed walls from being printed, which " -"could increase print time. Higher values remove more and longer walls.\n" -"\n" -"NOTE: Bottom and top surfaces will not be affected by this value to prevent " -"visual gaps on the ouside of the model. Adjust 'One wall threshold' in the " -"Advanced settings below to adjust the sensitivity of what is considered a " -"top-surface. 'One wall threshold' is only visibile if this setting is set " -"above the default value of 0.5, or if single-wall top surfaces is enabled." -msgstr "" -"Ajuste este valor para evitar que perímetros curtos e não fechados sejam " -"impressos, o que poderia aumentar o tempo de impressão. Valores mais altos " -"removem perímetros mais longos.\n" -"\n" -"NOTA: As superfícies inferior e superior não serão afetadas por este valor " -"para evitar lacunas visuais no exterior do modelo. Ajuste o 'Limiar de um " -"perímetro' nas configurações avançadas abaixo para ajustar a sensibilidade " -"do que é considerado uma superfície superior. 'Limiar de um perímetro' só é " -"visível se esta configuração estiver acima do valor padrão de 0,5, ou se " -"superfícies superiores de uma única parede estiverem habilitadas." +msgid "Adjust this value to prevent short, unclosed walls from being printed, which could increase print time. Higher values remove more and longer walls.\n\n" +"NOTE: Bottom and top surfaces will not be affected by this value to prevent visual gaps on the ouside of the model. Adjust 'One wall threshold' in the Advanced settings below to adjust the sensitivity of what is considered a top-surface. 'One wall threshold' is only visibile if this setting is set above the default value of 0.5, or if single-wall top surfaces is enabled." +msgstr "Ajuste este valor para evitar que perímetros curtos e não fechados sejam impressos, o que poderia aumentar o tempo de impressão. Valores mais altos removem perímetros mais longos.\n\n" +"NOTA: As superfícies inferior e superior não serão afetadas por este valor para evitar lacunas visuais no exterior do modelo. Ajuste o 'Limiar de um perímetro' nas configurações avançadas abaixo para ajustar a sensibilidade do que é considerado uma superfície superior. 'Limiar de um perímetro' só é visível se esta configuração estiver acima do valor padrão de 0,5, ou se superfícies superiores de uma única parede estiverem habilitadas." msgid "First layer minimum wall width" msgstr "Largura mínima do perímetro da primeira camada" -msgid "" -"The minimum wall width that should be used for the first layer is " -"recommended to be set to the same size as the nozzle. This adjustment is " -"expected to enhance adhesion." -msgstr "" -"A largura mínima do perímetro que deve ser usada para a primeira camada é " -"recomendada para ser definida com o mesmo tamanho do bico. Este ajuste é " -"esperado para melhorar a aderência." +msgid "The minimum wall width that should be used for the first layer is recommended to be set to the same size as the nozzle. This adjustment is expected to enhance adhesion." +msgstr "A largura mínima do perímetro que deve ser usada para a primeira camada é recomendada para ser definida com o mesmo tamanho do bico. Este ajuste é esperado para melhorar a aderência." msgid "Minimum wall width" msgstr "Largura mínima do perímetro" -msgid "" -"Width of the wall that will replace thin features (according to the Minimum " -"feature size) of the model. If the Minimum wall width is thinner than the " -"thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" -msgstr "" -"Largura do perímetro que substituirá elementos finos (de acordo com o " -"tamanho mínimo do elemento) do modelo. Se a Largura mínima do perímetro for " -"mais fina do que a espessura do elemento, o perímetro será tão espesso " -"quanto o próprio elemento. É expresso como uma porcentagem sobre o diâmetro " -"do bico" +msgid "Width of the wall that will replace thin features (according to the Minimum feature size) of the model. If the Minimum wall width is thinner than the thickness of the feature, the wall will become as thick as the feature itself. It's expressed as a percentage over nozzle diameter" +msgstr "Largura do perímetro que substituirá elementos finos (de acordo com o tamanho mínimo do elemento) do modelo. Se a Largura mínima do perímetro for mais fina do que a espessura do elemento, o perímetro será tão espesso quanto o próprio elemento. É expresso como uma porcentagem sobre o diâmetro do bico" msgid "Detect narrow internal solid infill" msgstr "Detectar preenchimento sólido interno estreito" -msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used defaultly." -msgstr "" -"Esta opção irá detectar automaticamente áreas de preenchimento sólido " -"interno estreito. Se ativada, o padrão concêntrico será usado para a área " -"para acelerar a impressão. Caso contrário, o padrão reticulado é usado por " -"padrão." +msgid "This option will auto detect narrow internal solid infill area. If enabled, concentric pattern will be used for the area to speed printing up. Otherwise, rectilinear pattern is used defaultly." +msgstr "Esta opção irá detectar automaticamente áreas de preenchimento sólido interno estreito. Se ativada, o padrão concêntrico será usado para a área para acelerar a impressão. Caso contrário, o padrão reticulado é usado por padrão." msgid "invalid value " msgstr "valor inválido " @@ -13857,18 +10967,13 @@ msgid "No check" msgstr "Sem verificação" msgid "Do not run any validity checks, such as gcode path conflicts check." -msgstr "" -"Não execute nenhuma verificação de validade, como a verificação de conflitos " -"de caminho do gcode." +msgstr "Não execute nenhuma verificação de validade, como a verificação de conflitos de caminho do gcode." msgid "Ensure on bed" msgstr "Garantir na mesa" -msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" -msgstr "" -"Eleve o objeto acima da mesa quando estiver parcialmente abaixo. Desativado " -"por padrão" +msgid "Lift the object above the bed when it is partially below. Disabled by default" +msgstr "Eleve o objeto acima da mesa quando estiver parcialmente abaixo. Desativado por padrão" msgid "Orient Options" msgstr "Opções de Orientação" @@ -13888,14 +10993,8 @@ msgstr "Ângulo de rotação ao redor do eixo Y em graus." msgid "Data directory" msgstr "Diretório de dados" -msgid "" -"Load and store settings at the given directory. This is useful for " -"maintaining different profiles or including configurations from a network " -"storage." -msgstr "" -"Carregar e armazenar configurações no diretório fornecido. Isso é útil para " -"manter diferentes perfis ou incluir configurações de um armazenamento em " -"rede." +msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." +msgstr "Carregar e armazenar configurações no diretório fornecido. Isso é útil para manter diferentes perfis ou incluir configurações de um armazenamento em rede." msgid "Load custom gcode" msgstr "Carregar gcode personalizado" @@ -13909,23 +11008,11 @@ msgstr "Z-hop atual" msgid "Contains z-hop present at the beginning of the custom G-code block." msgstr "Contém o z-hop presente no início do bloco de G-code personalizado." -msgid "" -"Position of the extruder at the beginning of the custom G-code block. If the " -"custom G-code travels somewhere else, it should write to this variable so " -"PrusaSlicer knows where it travels from when it gets control back." -msgstr "" -"Posição do extrusor no início do bloco de G-code personalizado. Se o G-code " -"personalizado se deslocar para outro lugar, ele deve escrever nesta variável " -"para que o PrusaSlicer saiba de onde se desloca quando recupera o controle." +msgid "Position of the extruder at the beginning of the custom G-code block. If the custom G-code travels somewhere else, it should write to this variable so PrusaSlicer knows where it travels from when it gets control back." +msgstr "Posição do extrusor no início do bloco de G-code personalizado. Se o G-code personalizado se deslocar para outro lugar, ele deve escrever nesta variável para que o PrusaSlicer saiba de onde se desloca quando recupera o controle." -msgid "" -"Retraction state at the beginning of the custom G-code block. If the custom " -"G-code moves the extruder axis, it should write to this variable so " -"PrusaSlicer deretracts correctly when it gets control back." -msgstr "" -"Estado de retração no início do bloco de G-code personalizado. Se o G-code " -"personalizado mover o eixo do extrusor, ele deve escrever nesta variável " -"para que o PrusaSlicer desretraia corretamente quando recupera o controle." +msgid "Retraction state at the beginning of the custom G-code block. If the custom G-code moves the extruder axis, it should write to this variable so PrusaSlicer deretracts correctly when it gets control back." +msgstr "Estado de retração no início do bloco de G-code personalizado. Se o G-code personalizado mover o eixo do extrusor, ele deve escrever nesta variável para que o PrusaSlicer desretraia corretamente quando recupera o controle." msgid "Extra deretraction" msgstr "Desretração extra" @@ -13942,12 +11029,8 @@ msgstr "Índice base zero da extrusora atualmente utilizada." msgid "Current object index" msgstr "Índice do objeto atual" -msgid "" -"Specific for sequential printing. Zero-based index of currently printed " -"object." -msgstr "" -"Específico para impressão sequencial. Índice base zero do objeto atualmente " -"impresso." +msgid "Specific for sequential printing. Zero-based index of currently printed object." +msgstr "Específico para impressão sequencial. Índice base zero do objeto atualmente impresso." msgid "Has wipe tower" msgstr "Tem torre de limpeza" @@ -13958,36 +11041,26 @@ msgstr "Se a torre de limpeza está sendo gerada ou não na impressão." msgid "Initial extruder" msgstr "Extrusora inicial" -msgid "" -"Zero-based index of the first extruder used in the print. Same as " -"initial_tool." -msgstr "" -"Índice base zero da primeira extrusora utilizada na impressão. Mesmo que " -"ferramenta_inicial." +msgid "Zero-based index of the first extruder used in the print. Same as initial_tool." +msgstr "Índice base zero da primeira extrusora utilizada na impressão. Mesmo que ferramenta_inicial." msgid "Initial tool" msgstr "Ferramenta inicial" -msgid "" -"Zero-based index of the first extruder used in the print. Same as " -"initial_extruder." -msgstr "" -"Índice base zero da primeira extrusora utilizada na impressão. Mesmo que " -"extrusora_inicial." +msgid "Zero-based index of the first extruder used in the print. Same as initial_extruder." +msgstr "Índice base zero da primeira extrusora utilizada na impressão. Mesmo que extrusora_inicial." msgid "Is extruder used?" msgstr "Extrusora utilizada?" msgid "Vector of bools stating whether a given extruder is used in the print." -msgstr "" -"Vetor de booleanos indicando se uma dada extrusora é utilizada na impressão." +msgstr "Vetor de booleanos indicando se uma dada extrusora é utilizada na impressão." msgid "Volume per extruder" msgstr "Volume por extrusora" msgid "Total filament volume extruded per extruder during the entire print." -msgstr "" -"Volume total de filamento extrudado por extrusora durante toda a impressão." +msgstr "Volume total de filamento extrudado por extrusora durante toda a impressão." msgid "Total toolchanges" msgstr "Total de trocas de ferramenta" @@ -14004,22 +11077,14 @@ msgstr "Volume total de filamento usado durante toda a impressão." msgid "Weight per extruder" msgstr "Peso por extrusora" -msgid "" -"Weight per extruder extruded during the entire print. Calculated from " -"filament_density value in Filament Settings." -msgstr "" -"Peso por extrusora extrudido durante toda a impressão. Calculado a partir do " -"valor de densidade do filamento nas configurações de filamento." +msgid "Weight per extruder extruded during the entire print. Calculated from filament_density value in Filament Settings." +msgstr "Peso por extrusora extrudido durante toda a impressão. Calculado a partir do valor de densidade do filamento nas configurações de filamento." msgid "Total weight" msgstr "Peso total" -msgid "" -"Total weight of the print. Calculated from filament_density value in " -"Filament Settings." -msgstr "" -"Peso total da impressão. Calculado a partir do valor de densidade do " -"filamento nas configurações de filamento." +msgid "Total weight of the print. Calculated from filament_density value in Filament Settings." +msgstr "Peso total da impressão. Calculado a partir do valor de densidade do filamento nas configurações de filamento." msgid "Total layer count" msgstr "Total de camadas" @@ -14037,22 +11102,14 @@ msgid "Number of instances" msgstr "Número de instâncias" msgid "Total number of object instances in the print, summed over all objects." -msgstr "" -"Número total de instâncias de objeto na impressão, somadas sobre todos os " -"objetos." +msgstr "Número total de instâncias de objeto na impressão, somadas sobre todos os objetos." msgid "Scale per object" msgstr "Escala por objeto" -msgid "" -"Contains a string with the information about what scaling was applied to the " -"individual objects. Indexing of the objects is zero-based (first object has " -"index 0).\n" +msgid "Contains a string with the information about what scaling was applied to the individual objects. Indexing of the objects is zero-based (first object has index 0).\n" "Example: 'x:100% y:50% z:100'." -msgstr "" -"Contém uma frase com informações sobre qual escala foi aplicada aos objetos " -"individuais. A indexação dos objetos é baseada em zero (o primeiro objeto " -"tem índice 0).\n" +msgstr "Contém uma frase com informações sobre qual escala foi aplicada aos objetos individuais. A indexação dos objetos é baseada em zero (o primeiro objeto tem índice 0).\n" "Exemplo: 'x:100% y:50% z:100'." msgid "Input filename without extension" @@ -14061,27 +11118,17 @@ msgstr "Nome do arquivo de entrada sem extensão" msgid "Source filename of the first object, without extension." msgstr "Nome do arquivo de origem do primeiro objeto, sem extensão." -msgid "" -"The vector has two elements: x and y coordinate of the point. Values in mm." -msgstr "" -"O vetor possui dois elementos: coordenada x e y do ponto. Valores em mm." +msgid "The vector has two elements: x and y coordinate of the point. Values in mm." +msgstr "O vetor possui dois elementos: coordenada x e y do ponto. Valores em mm." -msgid "" -"The vector has two elements: x and y dimension of the bounding box. Values " -"in mm." -msgstr "" -"O vetor tem dois elementos: dimensão x e y da caixa delimitadora. Valores em " -"mm." +msgid "The vector has two elements: x and y dimension of the bounding box. Values in mm." +msgstr "O vetor tem dois elementos: dimensão x e y da caixa delimitadora. Valores em mm." msgid "First layer convex hull" msgstr "Parede convexa da primeira camada" -msgid "" -"Vector of points of the first layer convex hull. Each element has the " -"following format:'[x, y]' (x and y are floating-point numbers in mm)." -msgstr "" -"Vetor de pontos do perímetro convexo da primeira camada. Cada elemento tem o " -"seguinte formato: '[x, y]' (x e y são números em ponto flutuante em mm)." +msgid "Vector of points of the first layer convex hull. Each element has the following format:'[x, y]' (x and y are floating-point numbers in mm)." +msgstr "Vetor de pontos do perímetro convexo da primeira camada. Cada elemento tem o seguinte formato: '[x, y]' (x e y são números em ponto flutuante em mm)." msgid "Bottom-left corner of first layer bounding box" msgstr "Canto inferior esquerdo da caixa delimitadora da primeira camada" @@ -14125,12 +11172,8 @@ msgstr "Nome do perfil de impressão usado para fatiar." msgid "Filament preset name" msgstr "Nome do perfil de filamento" -msgid "" -"Names of the filament presets used for slicing. The variable is a vector " -"containing one name for each extruder." -msgstr "" -"Nomes dos perfis de filamento usados para fatiar. A variável é um vetor " -"contendo um nome para cada extrusora." +msgid "Names of the filament presets used for slicing. The variable is a vector containing one name for each extruder." +msgstr "Nomes dos perfis de filamento usados para fatiar. A variável é um vetor contendo um nome para cada extrusora." msgid "Printer preset name" msgstr "Nome do perfil de impressora" @@ -14148,19 +11191,13 @@ msgid "Layer number" msgstr "Número da camada" msgid "Index of the current layer. One-based (i.e. first layer is number 1)." -msgstr "" -"Índice da camada atual. Baseado em um (ou seja, a primeira camada é o número " -"1)." +msgstr "Índice da camada atual. Baseado em um (ou seja, a primeira camada é o número 1)." msgid "Layer z" msgstr "Camada z" -msgid "" -"Height of the current layer above the print bed, measured to the top of the " -"layer." -msgstr "" -"Altura da camada atual acima da mesa de impressão, medida até o topo da " -"camada." +msgid "Height of the current layer above the print bed, measured to the top of the layer." +msgstr "Altura da camada atual acima da mesa de impressão, medida até o topo da camada." msgid "Maximal layer z" msgstr "Altura máxima da camada z" @@ -14204,13 +11241,9 @@ msgstr "balanço flutuante" msgid "large overhangs" msgstr "overhangs grandes" -#, c-format, boost-format -msgid "" -"It seems object %s has %s. Please re-orient the object or enable support " -"generation." -msgstr "" -"Parece que o objeto %s tem %s. Por favor, reoriente o objeto ou habilite a " -"geração de suporte." +#, possible-c-format, possible-boost-format +msgid "It seems object %s has %s. Please re-orient the object or enable support generation." +msgstr "Parece que o objeto %s tem %s. Por favor, reoriente o objeto ou habilite a geração de suporte." msgid "Optimizing toolpath" msgstr "Otimizando caminho da ferramenta" @@ -14218,23 +11251,15 @@ msgstr "Otimizando caminho da ferramenta" msgid "Slicing mesh" msgstr "Fatiando malha" -msgid "" -"No layers were detected. You might want to repair your STL file(s) or check " -"their size or thickness and retry.\n" -msgstr "" -"Nenhuma camada foi detectada. Você pode querer reparar seu(s) arquivo(s) STL " -"ou verificar seu tamanho ou espessura e tentar novamente.\n" +msgid "No layers were detected. You might want to repair your STL file(s) or check their size or thickness and retry.\n" +msgstr "Nenhuma camada foi detectada. Você pode querer reparar seu(s) arquivo(s) STL ou verificar seu tamanho ou espessura e tentar novamente.\n" -msgid "" -"An object's XY size compensation will not be used because it is also color-" -"painted.\n" +msgid "An object's XY size compensation will not be used because it is also color-painted.\n" "XY Size compensation can not be combined with color-painting." -msgstr "" -"A compensação de tamanho XY de um objeto não será usada porque ele também " -"está pintado com cor.\n" +msgstr "A compensação de tamanho XY de um objeto não será usada porque ele também está pintado com cor.\n" "A compensação de tamanho XY não pode ser combinada com pintura colorida." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Support: generate toolpath at layer %d" msgstr "Suporte: gerar caminho da ferramenta na camada %d" @@ -14253,23 +11278,20 @@ msgstr "Suporte: desenhar polígonos" msgid "Support: generate toolpath" msgstr "Suporte: gerar caminho da ferramenta" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Support: generate polygons at layer %d" msgstr "Suporte: gerar polígonos na camada %d" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Support: fix holes at layer %d" msgstr "Suporte: corrigir buracos na camada %d" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Support: propagate branches at layer %d" msgstr "Suporte: propagar ramificações na camada %d" -msgid "" -"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." -msgstr "" -"Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão ." -"stl, .obj, .amf(.xml)." +msgid "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." +msgstr "Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão .stl, .obj, .amf(.xml)." msgid "Loading of a model file failed." msgstr "Falha ao carregar um arquivo de modelo." @@ -14278,9 +11300,7 @@ msgid "The supplied file couldn't be read because it's empty" msgstr "O arquivo fornecido não pôde ser lido porque está vazio" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." -msgstr "" -"Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão .3mf " -"ou .zip.amf." +msgstr "Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão .3mf ou .zip.amf." msgid "Canceled" msgstr "Cancelado" @@ -14289,7 +11309,7 @@ msgid "load_obj: failed to parse" msgstr "load_obj: falha ao analisar" msgid "load mtl in obj: failed to parse" -msgstr "" +msgstr "carregar mtl em obj: falha ao analisar" msgid "The file contains polygons with more than 4 vertices." msgstr "O arquivo contém polígonos com mais de 4 vértices." @@ -14339,17 +11359,12 @@ msgstr "Terminar" msgid "How to use calibration result?" msgstr "Como usar o resultado da calibração?" -msgid "" -"You could change the Flow Dynamics Calibration Factor in material editing" -msgstr "" -"Você pode alterar o Fator de Calibração de Dinâmica de Fluxo na edição de " -"materiais" +msgid "You could change the Flow Dynamics Calibration Factor in material editing" +msgstr "Você pode alterar o Fator de Calibração de Dinâmica de Fluxo na edição de materiais" -msgid "" -"The current firmware version of the printer does not support calibration.\n" +msgid "The current firmware version of the printer does not support calibration.\n" "Please upgrade the printer firmware." -msgstr "" -"A versão atual do firmware da impressora não suporta calibração.\n" +msgstr "A versão atual do firmware da impressora não suporta calibração.\n" "Por favor, atualize o firmware da impressora." msgid "Calibration not supported" @@ -14370,15 +11385,13 @@ msgstr "Fluxo" msgid "Max Volumetric Speed" msgstr "Velocidade Volumétrica Máxima" -#, c-format, boost-format -msgid "" -"Please input valid values:\n" +#, possible-c-format, possible-boost-format +msgid "Please input valid values:\n" "Start value: >= %.1f\n" "End value: <= %.1f\n" "End value: > Start value\n" "Value step: >= %.3f)" -msgstr "" -"Por favor, insira valores válidos:\n" +msgstr "Por favor, insira valores válidos:\n" "Valor de início: >= %.1f\n" "Valor de término: <= %.1f\n" "Valor de término: > Valor de início\n" @@ -14387,7 +11400,7 @@ msgstr "" msgid "The name cannot be empty." msgstr "O nome não pode estar vazio." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "The selected preset: %s is not found." msgstr "O preset selecionado: %s não foi encontrado." @@ -14400,11 +11413,8 @@ msgstr "O nome é o mesmo que outro nome de preset existente" msgid "create new preset failed." msgstr "falha ao criar novo preset." -msgid "" -"Are you sure to cancel the current calibration and return to the home page?" -msgstr "" -"Tem certeza de que deseja cancelar a calibração atual e retornar à página " -"inicial?" +msgid "Are you sure to cancel the current calibration and return to the home page?" +msgstr "Tem certeza de que deseja cancelar a calibração atual e retornar à página inicial?" msgid "No Printer Connected!" msgstr "Nenhuma impressora conectada!" @@ -14418,13 +11428,10 @@ msgstr "Por favor, selecione o filamento para calibrar." msgid "The input value size must be 3." msgstr "O tamanho do valor de entrada deve ser 3." -msgid "" -"This machine type can only hold 16 history results per nozzle. You can " -"delete the existing historical results and then start calibration. Or you " -"can continue the calibration, but you cannot create new calibration " -"historical results. \n" +msgid "This machine type can only hold 16 history results per nozzle. You can delete the existing historical results and then start calibration. Or you can continue the calibration, but you cannot create new calibration historical results. \n" "Do you still want to continue the calibration?" -msgstr "" +msgstr "Esse tipo de máquina só pode manter 16 resultados por bico no histórico. Você pode deletar resultados existentes e então começar a calibração. Ou você pode continuar, mas não poderá criar novos resultados. \n" +"Você ainda quer continuar com a calibração?" msgid "Connecting to printer..." msgstr "Conectando à impressora..." @@ -14435,21 +11442,13 @@ msgstr "O resultado do teste falhado foi descartado." msgid "Flow Dynamics Calibration result has been saved to the printer" msgstr "O resultado da Calibração de Dinâmica de Fluxo foi salvo na impressora" -#, c-format, boost-format -msgid "" -"There is already a historical calibration result with the same name: %s. " -"Only one of the results with the same name is saved. Are you sure you want " -"to override the historical result?" -msgstr "" -"Já existe um resultado de calibração histórico com o mesmo nome: %s. Apenas " -"um dos resultados com o mesmo nome é salvo. Tem certeza que deseja " -"sobrescrever o resultado histórico?" +#, possible-c-format, possible-boost-format +msgid "There is already a historical calibration result with the same name: %s. Only one of the results with the same name is saved. Are you sure you want to override the historical result?" +msgstr "Já existe um resultado de calibração histórico com o mesmo nome: %s. Apenas um dos resultados com o mesmo nome é salvo. Tem certeza que deseja sobrescrever o resultado histórico?" -#, c-format, boost-format -msgid "" -"This machine type can only hold %d history results per nozzle. This result " -"will not be saved." -msgstr "" +#, possible-c-format, possible-boost-format +msgid "This machine type can only hold %d history results per nozzle. This result will not be saved." +msgstr "Este tipo de máquina só pode salvar %d resultados por bico. Este resultado não será salvo." msgid "Internal Error" msgstr "Erro Interno" @@ -14461,158 +11460,58 @@ msgid "Flow rate calibration result has been saved to preset" msgstr "O resultado da calibração de fluxo foi salvo no preset" msgid "Max volumetric speed calibration result has been saved to preset" -msgstr "" -"O resultado da calibração de fluxo volumétrico máximo foi salvo no preset" +msgstr "O resultado da calibração de fluxo volumétrico máximo foi salvo no preset" msgid "When do you need Flow Dynamics Calibration" msgstr "Quando você precisa da Calibração de Dinâmica de Fluxo" -msgid "" -"We now have added the auto-calibration for different filaments, which is " -"fully automated and the result will be saved into the printer for future " -"use. You only need to do the calibration in the following limited cases:\n" -"1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" +msgid "We now have added the auto-calibration for different filaments, which is fully automated and the result will be saved into the printer for future use. You only need to do the calibration in the following limited cases:\n" +"1. If you introduce a new filament of different brands/models or the filament is damp;\n" "2. if the nozzle is worn out or replaced with a new one;\n" -"3. If the max volumetric speed or print temperature is changed in the " -"filament setting." -msgstr "" -"Adicionamos agora a auto-calibração para diferentes filamentos, que é " -"totalmente automatizada e o resultado será salvo na impressora para uso " -"futuro. Você só precisa fazer a calibração nos seguintes casos limitados:\n" -"1. Se você introduzir um novo filamento de marcas/modelos diferentes ou se o " -"filamento estiver úmido;\n" +"3. If the max volumetric speed or print temperature is changed in the filament setting." +msgstr "Adicionamos agora a auto-calibração para diferentes filamentos, que é totalmente automatizada e o resultado será salvo na impressora para uso futuro. Você só precisa fazer a calibração nos seguintes casos limitados:\n" +"1. Se você introduzir um novo filamento de marcas/modelos diferentes ou se o filamento estiver úmido;\n" "2. se o bico estiver desgastado ou substituído por um novo;\n" -"3. Se o fluxo volumétrico máximo ou a temperatura de impressão forem " -"alteradas na configuração do filamento." +"3. Se o fluxo volumétrico máximo ou a temperatura de impressão forem alteradas na configuração do filamento." msgid "About this calibration" msgstr "Sobre esta calibração" -msgid "" -"Please find the details of Flow Dynamics Calibration from our wiki.\n" -"\n" -"Usually the calibration is unnecessary. When you start a single color/" -"material print, with the \"flow dynamics calibration\" option checked in the " -"print start menu, the printer will follow the old way, calibrate the " -"filament before the print; When you start a multi color/material print, the " -"printer will use the default compensation parameter for the filament during " -"every filament switch which will have a good result in most cases.\n" -"\n" -"Please note there are a few cases that will make the calibration result not " -"reliable: using a texture plate to do the calibration; the build plate does " -"not have good adhesion (please wash the build plate or apply gluestick!) ..." -"You can find more from our wiki.\n" -"\n" -"The calibration results have about 10 percent jitter in our test, which may " -"cause the result not exactly the same in each calibration. We are still " -"investigating the root cause to do improvements with new updates." -msgstr "" -"Encontre os detalhes da Calibração de Dinâmica de Fluxo na nossa wiki.\n" -"\n" -"Normalmente, a calibração não é necessária. Quando você inicia uma impressão " -"de cor/material única, com a opção \"calibração de dinâmica de fluxo\" " -"ativada no menu de início da impressão, a impressora seguirá o método " -"antigo, calibrando o filamento antes da impressão; Quando você inicia uma " -"impressão de cor/material múltipla, a impressora usará o parâmetro de " -"compensação padrão para o filamento durante cada troca de filamento, o que " -"resultará em um bom resultado na maioria dos casos.\n" -"\n" -"Por favor, note que existem alguns casos que podem tornar o resultado da " -"calibração não confiável: usar uma mesa texturizada para fazer a calibração; " -"a mesa não tem boa adesão (por favor, lave a mesa ou aplique cola!) ... Você " -"pode encontrar mais informações em nossa wiki.\n" -"\n" -"Os resultados da calibração têm cerca de 10 por cento de oscilação em nossos " -"testes, o que pode fazer com que o resultado não seja exatamente o mesmo em " -"cada calibração. Ainda estamos investigando a causa raiz para fazer " -"melhorias com novas atualizações." +msgid "Please find the details of Flow Dynamics Calibration from our wiki.\n\n" +"Usually the calibration is unnecessary. When you start a single color/material print, with the \"flow dynamics calibration\" option checked in the print start menu, the printer will follow the old way, calibrate the filament before the print; When you start a multi color/material print, the printer will use the default compensation parameter for the filament during every filament switch which will have a good result in most cases.\n\n" +"Please note there are a few cases that will make the calibration result not reliable: using a texture plate to do the calibration; the build plate does not have good adhesion (please wash the build plate or apply gluestick!) ...You can find more from our wiki.\n\n" +"The calibration results have about 10 percent jitter in our test, which may cause the result not exactly the same in each calibration. We are still investigating the root cause to do improvements with new updates." +msgstr "Encontre os detalhes da Calibração de Dinâmica de Fluxo na nossa wiki.\n\n" +"Normalmente, a calibração não é necessária. Quando você inicia uma impressão de cor/material única, com a opção \"calibração de dinâmica de fluxo\" ativada no menu de início da impressão, a impressora seguirá o método antigo, calibrando o filamento antes da impressão; Quando você inicia uma impressão de cor/material múltipla, a impressora usará o parâmetro de compensação padrão para o filamento durante cada troca de filamento, o que resultará em um bom resultado na maioria dos casos.\n\n" +"Por favor, note que existem alguns casos que podem tornar o resultado da calibração não confiável: usar uma mesa texturizada para fazer a calibração; a mesa não tem boa adesão (por favor, lave a mesa ou aplique cola!) ... Você pode encontrar mais informações em nossa wiki.\n\n" +"Os resultados da calibração têm cerca de 10 por cento de oscilação em nossos testes, o que pode fazer com que o resultado não seja exatamente o mesmo em cada calibração. Ainda estamos investigando a causa raiz para fazer melhorias com novas atualizações." msgid "When to use Flow Rate Calibration" msgstr "Quando usar a Calibração de Fluxo" -msgid "" -"After using Flow Dynamics Calibration, there might still be some extrusion " -"issues, such as:\n" -"1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" -"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" +msgid "After using Flow Dynamics Calibration, there might still be some extrusion issues, such as:\n" +"1. Over-Extrusion: Excess material on your printed object, forming blobs or zits, or the layers seem thicker than expected and not uniform.\n" +"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the top layer of the model, even when printing slowly.\n" "3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" -"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." -msgstr "" -"Depois de usar a Calibração de Dinâmica de Fluxo, ainda pode haver alguns " -"problemas de extrusão, como:\n" -"1. Superextrusão: excesso de material no objeto impresso, formando grumos ou " -"espinhas, ou as camadas parecem mais espessas do que o esperado e não " -"uniformes.\n" -"2. Subextrusão: camadas muito finas, resistência fraca do preenchimento ou " -"vazios na camada superior do modelo, mesmo ao imprimir lentamente.\n" -"3. Baixa Qualidade de Superfície: a superfície de suas impressões parece " -"áspera ou irregular.\n" -"4. Integridade Estrutural Fraca: as impressões quebram facilmente ou não " -"parecem tão robustas quanto deveriam." +"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as they should be." +msgstr "Depois de usar a Calibração de Dinâmica de Fluxo, ainda pode haver alguns problemas de extrusão, como:\n" +"1. Superextrusão: excesso de material no objeto impresso, formando grumos ou espinhas, ou as camadas parecem mais espessas do que o esperado e não uniformes.\n" +"2. Subextrusão: camadas muito finas, resistência fraca do preenchimento ou vazios na camada superior do modelo, mesmo ao imprimir lentamente.\n" +"3. Baixa Qualidade de Superfície: a superfície de suas impressões parece áspera ou irregular.\n" +"4. Integridade Estrutural Fraca: as impressões quebram facilmente ou não parecem tão robustas quanto deveriam." -msgid "" -"In addition, Flow Rate Calibration is crucial for foaming materials like LW-" -"PLA used in RC planes. These materials expand greatly when heated, and " -"calibration provides a useful reference flow rate." -msgstr "" -"Além disso, a Calibração de Fluxo é crucial para materiais espumantes como " -"LW-PLA usados em aviões RC. Esses materiais se expandem muito quando " -"aquecidos, e a calibração fornece uma taxa de fluxo de referência útil." +msgid "In addition, Flow Rate Calibration is crucial for foaming materials like LW-PLA used in RC planes. These materials expand greatly when heated, and calibration provides a useful reference flow rate." +msgstr "Além disso, a Calibração de Fluxo é crucial para materiais espumantes como LW-PLA usados em aviões RC. Esses materiais se expandem muito quando aquecidos, e a calibração fornece uma taxa de fluxo de referência útil." -msgid "" -"Flow Rate Calibration measures the ratio of expected to actual extrusion " -"volumes. The default setting works well in Bambu Lab printers and official " -"filaments as they were pre-calibrated and fine-tuned. For a regular " -"filament, you usually won't need to perform a Flow Rate Calibration unless " -"you still see the listed defects after you have done other calibrations. For " -"more details, please check out the wiki article." -msgstr "" -"A Calibração de Fluxo mede a relação entre os volumes de extrusão esperados " -"e reais. A configuração padrão funciona bem em impressoras Bambu Lab e " -"filamentos oficiais, pois foram pré-calibrados e ajustados. Para um " -"filamento regular, geralmente você não precisará realizar uma Calibração da " -"Taxa de Fluxo a menos que ainda veja os defeitos listados após ter feito " -"outras calibrações. Para mais detalhes, consulte o artigo na wiki." +msgid "Flow Rate Calibration measures the ratio of expected to actual extrusion volumes. The default setting works well in Bambu Lab printers and official filaments as they were pre-calibrated and fine-tuned. For a regular filament, you usually won't need to perform a Flow Rate Calibration unless you still see the listed defects after you have done other calibrations. For more details, please check out the wiki article." +msgstr "A Calibração de Fluxo mede a relação entre os volumes de extrusão esperados e reais. A configuração padrão funciona bem em impressoras Bambu Lab e filamentos oficiais, pois foram pré-calibrados e ajustados. Para um filamento regular, geralmente você não precisará realizar uma Calibração da Taxa de Fluxo a menos que ainda veja os defeitos listados após ter feito outras calibrações. Para mais detalhes, consulte o artigo na wiki." -msgid "" -"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " -"directly measuring the calibration patterns. However, please be advised that " -"the efficacy and accuracy of this method may be compromised with specific " -"types of materials. Particularly, filaments that are transparent or semi-" -"transparent, sparkling-particled, or have a high-reflective finish may not " -"be suitable for this calibration and can produce less-than-desirable " -"results.\n" -"\n" -"The calibration results may vary between each calibration or filament. We " -"are still improving the accuracy and compatibility of this calibration " -"through firmware updates over time.\n" -"\n" -"Caution: Flow Rate Calibration is an advanced process, to be attempted only " -"by those who fully understand its purpose and implications. Incorrect usage " -"can lead to sub-par prints or printer damage. Please make sure to carefully " -"read and understand the process before doing it." -msgstr "" -"A Calibração Automática de Fluxo utiliza a tecnologia Micro-Lidar da Bambu " -"Lab, medindo diretamente os padrões de calibração. No entanto, esteja ciente " -"de que a eficácia e precisão deste método podem ser comprometidas com tipos " -"específicos de materiais. Especialmente, filamentos que são transparentes ou " -"semi-transparentes, com partículas brilhantes ou com acabamento altamente " -"reflexivo podem não ser adequados para esta calibração e podem produzir " -"resultados abaixo do desejado.\n" -"\n" -"Os resultados da calibração podem variar entre cada calibração ou filamento. " -"Ainda estamos melhorando a precisão e compatibilidade desta calibração por " -"meio de atualizações de firmware ao longo do tempo.\n" -"\n" -"Atenção: A Calibração da Taxa de Fluxo é um processo avançado, para ser " -"tentado apenas por aqueles que entendem completamente seu propósito e " -"implicações. O uso incorreto pode resultar em impressões de baixa qualidade " -"ou danos à impressora. Certifique-se de ler e entender cuidadosamente o " -"processo antes de fazê-lo." +msgid "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, directly measuring the calibration patterns. However, please be advised that the efficacy and accuracy of this method may be compromised with specific types of materials. Particularly, filaments that are transparent or semi-transparent, sparkling-particled, or have a high-reflective finish may not be suitable for this calibration and can produce less-than-desirable results.\n\n" +"The calibration results may vary between each calibration or filament. We are still improving the accuracy and compatibility of this calibration through firmware updates over time.\n\n" +"Caution: Flow Rate Calibration is an advanced process, to be attempted only by those who fully understand its purpose and implications. Incorrect usage can lead to sub-par prints or printer damage. Please make sure to carefully read and understand the process before doing it." +msgstr "A Calibração Automática de Fluxo utiliza a tecnologia Micro-Lidar da Bambu Lab, medindo diretamente os padrões de calibração. No entanto, esteja ciente de que a eficácia e precisão deste método podem ser comprometidas com tipos específicos de materiais. Especialmente, filamentos que são transparentes ou semi-transparentes, com partículas brilhantes ou com acabamento altamente reflexivo podem não ser adequados para esta calibração e podem produzir resultados abaixo do desejado.\n\n" +"Os resultados da calibração podem variar entre cada calibração ou filamento. Ainda estamos melhorando a precisão e compatibilidade desta calibração por meio de atualizações de firmware ao longo do tempo.\n\n" +"Atenção: A Calibração da Taxa de Fluxo é um processo avançado, para ser tentado apenas por aqueles que entendem completamente seu propósito e implicações. O uso incorreto pode resultar em impressões de baixa qualidade ou danos à impressora. Certifique-se de ler e entender cuidadosamente o processo antes de fazê-lo." msgid "When you need Max Volumetric Speed Calibration" msgstr "Quando você precisa da Calibração de Velocidade Volumétrica Máxima" @@ -14621,9 +11520,7 @@ msgid "Over-extrusion or under extrusion" msgstr "Sobre-extrusão ou sub-extrusão" msgid "Max Volumetric Speed calibration is recommended when you print with:" -msgstr "" -"A calibração de Velocidade Volumétrica Máxima é recomendada quando você " -"imprime com:" +msgstr "A calibração de Velocidade Volumétrica Máxima é recomendada quando você imprime com:" msgid "material with significant thermal shrinkage/expansion, such as..." msgstr "material com significativa contração/expansão térmica, como..." @@ -14634,19 +11531,11 @@ msgstr "materiais com diâmetro de filamento impreciso" msgid "We found the best Flow Dynamics Calibration Factor" msgstr "Encontramos o melhor Fator de Calibração de Dinâmica de Fluxo" -msgid "" -"Part of the calibration failed! You may clean the plate and retry. The " -"failed test result would be dropped." -msgstr "" -"Parte da calibração falhou! Você pode limpar a mesa e tentar novamente. O " -"resultado do teste falho será descartado." +msgid "Part of the calibration failed! You may clean the plate and retry. The failed test result would be dropped." +msgstr "Parte da calibração falhou! Você pode limpar a mesa e tentar novamente. O resultado do teste falho será descartado." -msgid "" -"*We recommend you to add brand, materia, type, and even humidity level in " -"the Name" -msgstr "" -"*Recomendamos que você adicione marca, material, tipo e até mesmo nível de " -"umidade no nome" +msgid "*We recommend you to add brand, materia, type, and even humidity level in the Name" +msgstr "*Recomendamos que você adicione marca, material, tipo e até mesmo nível de umidade no nome" msgid "Failed" msgstr "Falhou" @@ -14657,22 +11546,12 @@ msgstr "Por favor, insira o nome que você deseja salvar na impressora." msgid "The name cannot exceed 40 characters." msgstr "O nome não pode ter mais de 40 caracteres." -msgid "" -"Only one of the results with the same name will be saved. Are you sure you " -"want to overrides the other results?" -msgstr "" -"Apenas um dos resultados com o mesmo nome será salvo. Você tem certeza de " -"que deseja substituir os outros resultados?" +msgid "Only one of the results with the same name will be saved. Are you sure you want to overrides the other results?" +msgstr "Apenas um dos resultados com o mesmo nome será salvo. Você tem certeza de que deseja substituir os outros resultados?" -#, c-format, boost-format -msgid "" -"There is already a historical calibration result with the same name: %s. " -"Only one of the results with the same name is saved. Are you sure you want " -"to overrides the historical result?" -msgstr "" -"Já existe um resultado de calibração histórico com o mesmo nome: %s. Apenas " -"um dos resultados com o mesmo nome é salvo. Você tem certeza de que deseja " -"substituir o resultado histórico?" +#, possible-c-format, possible-boost-format +msgid "There is already a historical calibration result with the same name: %s. Only one of the results with the same name is saved. Are you sure you want to overrides the historical result?" +msgstr "Já existe um resultado de calibração histórico com o mesmo nome: %s. Apenas um dos resultados com o mesmo nome é salvo. Você tem certeza de que deseja substituir o resultado histórico?" msgid "Please find the best line on your plate" msgstr "Por favor, encontre a melhor linha em sua mesa" @@ -14719,7 +11598,7 @@ msgstr "Preencha o valor acima do bloco com a superfície superior mais lisa" msgid "Skip Calibration2" msgstr "Pular Calibração2" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "flow ratio : %s " msgstr "fluxo: %s " @@ -14730,8 +11609,7 @@ msgid "Please choose a block with smoothest top surface." msgstr "Por favor, escolha um bloco com a superfície superior mais lisa." msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" -msgstr "" -"Por favor, insira um valor válido (0 <= Velocidade Volumétrica Máxima <= 60)" +msgstr "Por favor, insira um valor válido (0 <= Velocidade Volumétrica Máxima <= 60)" msgid "Calibration Type" msgstr "Tipo de Calibração" @@ -14745,12 +11623,8 @@ msgstr "Calibração Fina baseada no fluxo" msgid "Title" msgstr "Título" -msgid "" -"A test model will be printed. Please clear the build plate and place it back " -"to the hot bed before calibration." -msgstr "" -"Um modelo de teste será impresso. Por favor, limpe a mesa e a coloque de " -"volta na mesa aquecida antes da calibração." +msgid "A test model will be printed. Please clear the build plate and place it back to the hot bed before calibration." +msgstr "Um modelo de teste será impresso. Por favor, limpe a mesa e a coloque de volta na mesa aquecida antes da calibração." msgid "Printing Parameters" msgstr "Parâmetros de Impressão" @@ -14767,15 +11641,12 @@ msgstr "Carretel Externo" msgid "Filament For Calibration" msgstr "Filamento Para Calibração" -msgid "" -"Tips for calibration material: \n" +msgid "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" "- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" -msgstr "" -"Dicas para material de calibração:\n" +msgstr "Dicas para material de calibração:\n" "- Materiais que podem compartilhar a mesma temperatura de mesa aquecida\n" -"- Diferentes marcas e famílias de filamentos (Marca = Bambu, Família = " -"Básico, Fosco)" +"- Diferentes marcas e famílias de filamentos (Marca = Bambu, Família = Básico, Fosco)" msgid "Pattern" msgstr "Padrão" @@ -14783,7 +11654,7 @@ msgstr "Padrão" msgid "Method" msgstr "Método" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "%s is not compatible with %s" msgstr "%s não é compatível com %s" @@ -14829,15 +11700,15 @@ msgstr "Atualizando os registros históricos de Calibração de Dinâmica de Flu msgid "Action" msgstr "Ação" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "" +msgstr "Este tipo de máquina só pode salvar %d resultados por bico." msgid "Edit Flow Dynamics Calibration" msgstr "Editar Calibração de Dinâmica de Fluxo" msgid "New Flow Dynamic Calibration" -msgstr "" +msgstr "Nova Calibração de Dinâmica de Fluxo" msgid "Ok" msgstr "Ok" @@ -14869,12 +11740,10 @@ msgstr "Concluído" msgid "Multiple resolved IP addresses" msgstr "Múltiplos endereços IP resolvidos" -#, boost-format -msgid "" -"There are several IP addresses resolving to hostname %1%.\n" +#, possible-boost-format +msgid "There are several IP addresses resolving to hostname %1%.\n" "Please select one that should be used." -msgstr "" -"Há vários endereços IP resolvendo para o nome do host %1%.\n" +msgstr "Há vários endereços IP resolvendo para o nome do host %1%.\n" "Por favor, selecione um que deve ser usado." msgid "PA Calibration" @@ -14910,13 +11779,11 @@ msgstr "Passo de PA: " msgid "Print numbers" msgstr "Número de Impressões" -msgid "" -"Please input valid values:\n" +msgid "Please input valid values:\n" "Start PA: >= 0.0\n" "End PA: > Start PA\n" "PA step: >= 0.001)" -msgstr "" -"Por favor, insira valores válidos:\n" +msgstr "Por favor, insira valores válidos:\n" "Iniciar PA: >= 0.0\n" "Finalizar PA: > Iniciar PA\n" "Passo de PA: >= 0.001)" @@ -14954,13 +11821,11 @@ msgstr "Temp. final: " msgid "Temp step: " msgstr "Passo de Temperatura: " -msgid "" -"Please input valid values:\n" +msgid "Please input valid values:\n" "Start temp: <= 350\n" "End temp: >= 170\n" "Start temp > End temp + 5)" -msgstr "" -"Por favor, insira valores válidos:\n" +msgstr "Por favor, insira valores válidos:\n" "Temp. inicial: <= 350\n" "Temp. final: >= 170\n" "Temp. inicial > Temp. final + 5)" @@ -14977,13 +11842,11 @@ msgstr "Finalizar Velocidade Volumétrica: " msgid "step: " msgstr "passo: " -msgid "" -"Please input valid values:\n" +msgid "Please input valid values:\n" "start > 0 \n" "step >= 0\n" "end > start + step)" -msgstr "" -"Por favor, insira valores válidos:\n" +msgstr "Por favor, insira valores válidos:\n" "início > 0\n" "passo >= 0\n" "fim > início + passo)" @@ -14997,13 +11860,11 @@ msgstr "Velocidade Inicial: " msgid "End speed: " msgstr "Velocidade Final: " -msgid "" -"Please input valid values:\n" +msgid "Please input valid values:\n" "start > 10 \n" "step >= 0\n" "end > start + step)" -msgstr "" -"Por favor, insira valores válidos:\n" +msgstr "Por favor, insira valores válidos:\n" "início > 10\n" "passo >= 0\n" "fim > início + passo)" @@ -15024,13 +11885,12 @@ msgid "Upload to Printer Host with the following filename:" msgstr "Enviar para o Host da Impressora com o seguinte nome de arquivo:" msgid "Use forward slashes ( / ) as a directory separator if needed." -msgstr "" -"Use barras inclinadas ( / ) como separador de diretórios, se necessário." +msgstr "Use barras inclinadas ( / ) como separador de diretórios, se necessário." msgid "Upload to storage" msgstr "Enviar para armazenamento" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" msgstr "O nome do arquivo enviado não termina com \"%s\". Deseja continuar?" @@ -15201,73 +12061,47 @@ msgid "Vendor is not selected, please reselect vendor." msgstr "Fornecedor não está selecionado, por favor, reselecione o fornecedor." msgid "Custom vendor is not input, please input custom vendor." -msgstr "" -"O fornecedor personalizado não foi inserido, por favor insira o fornecedor " -"personalizado." +msgstr "O fornecedor personalizado não foi inserido, por favor insira o fornecedor personalizado." -msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." -msgstr "" -"\"Bambu\" ou \"Genérico\" não podem ser usados como fornecedor para " -"filamentos personalizados." +msgid "\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +msgstr "\"Bambu\" ou \"Genérico\" não podem ser usados como fornecedor para filamentos personalizados." msgid "Filament type is not selected, please reselect type." -msgstr "" -"O tipo de filamento não está selecionado, por favor, reselecione o tipo." +msgstr "O tipo de filamento não está selecionado, por favor, reselecione o tipo." msgid "Filament serial is not inputed, please input serial." msgstr "O serial do filamento não foi inserido, por favor, insira o serial." -msgid "" -"There may be escape characters in the vendor or serial input of filament. " -"Please delete and re-enter." -msgstr "" -"Pode haver caracteres de escape na entrada de fornecedor ou serial do " -"filamento. Por favor, exclua e insira novamente." +msgid "There may be escape characters in the vendor or serial input of filament. Please delete and re-enter." +msgstr "Pode haver caracteres de escape na entrada de fornecedor ou serial do filamento. Por favor, exclua e insira novamente." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." -msgstr "" -"Todas as entradas no fornecedor personalizado ou serial são espaços. Por " -"favor, insira novamente." +msgstr "Todas as entradas no fornecedor personalizado ou serial são espaços. Por favor, insira novamente." msgid "The vendor can not be a number. Please re-enter." msgstr "O fornecedor não pode ser um número. Por favor, insira novamente." -msgid "" -"You have not selected a printer or preset yet. Please select at least one." -msgstr "" -"Você ainda não selecionou uma impressora ou preset. Por favor, selecione " -"pelo menos um." +msgid "You have not selected a printer or preset yet. Please select at least one." +msgstr "Você ainda não selecionou uma impressora ou preset. Por favor, selecione pelo menos um." -#, c-format, boost-format -msgid "" -"The Filament name %s you created already exists. \n" -"If you continue creating, the preset created will be displayed with its full " -"name. Do you want to continue?" -msgstr "" -"O nome do Filamento %s que você criou já existe. \n" -"Se você continuar a criar, a predefinição criada será exibida com o seu nome " -"completo. Você quer continuar?" +#, possible-c-format, possible-boost-format +msgid "The Filament name %s you created already exists. \n" +"If you continue creating, the preset created will be displayed with its full name. Do you want to continue?" +msgstr "O nome do Filamento %s que você criou já existe. \n" +"Se você continuar a criar, a preset criado será exibido com o seu nome completo. Você quer continuar?" msgid "Some existing presets have failed to be created, as follows:\n" msgstr "Alguns presets existentes falharam ao serem criados, como segue:\n" -msgid "" -"\n" +msgid "\n" "Do you want to rewrite it?" -msgstr "" -"\n" +msgstr "\n" "Você deseja reescrevê-lo?" -msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you selected" -"\". \n" +msgid "We would rename the presets as \"Vendor Type Serial @printer you selected\". \n" "To add preset for more printers, Please go to printer selection" -msgstr "" -"Renomearíamos os presets como \"Fornecedor Tipo Serial @ impressora que você " -"selecionou\". \n" -"Para adicionar preset para mais impressoras, Por favor, vá para a seleção de " -"impressoras" +msgstr "Renomearíamos os presets como \"Fornecedor Tipo Serial @ impressora que você selecionou\". \n" +"Para adicionar preset para mais impressoras, Por favor, vá para a seleção de impressoras" msgid "Create Printer/Nozzle" msgstr "Criar Impressora/Bico" @@ -15332,7 +12166,7 @@ msgstr "Carregar svg" msgid "Max Print Height" msgstr "Altura de impressão máxima" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "The file exceeds %d MB, please import again." msgstr "O arquivo excede %d MB, por favor, importe novamente." @@ -15340,8 +12174,7 @@ msgid "Exception in obtaining file size, please import again." msgstr "Exceção ao obter o tamanho do arquivo, por favor, importe novamente." msgid "Preset path is not find, please reselect vendor." -msgstr "" -"O caminho do preset não é encontrado, por favor, reselecione o fornecedor." +msgstr "O caminho do preset não é encontrado, por favor, reselecione o fornecedor." msgid "The printer model was not found, please reselect." msgstr "O modelo da impressora não foi encontrado, por favor, reselecione." @@ -15367,38 +12200,22 @@ msgstr "Processar Modelo de Preset" msgid "Back Page 1" msgstr "Voltar à Página 1" -msgid "" -"You have not yet chosen which printer preset to create based on. Please " -"choose the vendor and model of the printer" -msgstr "" -"Você ainda não escolheu em qual preset de impressora basear-se. Por favor, " -"escolha o fornecedor e modelo da impressora" +msgid "You have not yet chosen which printer preset to create based on. Please choose the vendor and model of the printer" +msgstr "Você ainda não escolheu em qual preset de impressora basear-se. Por favor, escolha o fornecedor e modelo da impressora" -msgid "" -"You have entered an illegal input in the printable area section on the first " -"page. Please check before creating it." -msgstr "" -"Você inseriu uma entrada ilegal na seção de área imprimível na primeira " -"página. Por favor, verifique antes de criar." +msgid "You have entered an illegal input in the printable area section on the first page. Please check before creating it." +msgstr "Você inseriu uma entrada ilegal na seção de área imprimível na primeira página. Por favor, verifique antes de criar." msgid "The custom printer or model is not inputed, place input." msgstr "A impressora ou modelo personalizado não foi colocado." -msgid "" -"The printer preset you created already has a preset with the same name. Do " -"you want to overwrite it?\n" -"\tYes: Overwrite the printer preset with the same name, and filament and " -"process presets with the same preset name will be recreated \n" -"and filament and process presets without the same preset name will be " -"reserve.\n" +msgid "The printer preset you created already has a preset with the same name. Do you want to overwrite it?\n" +"\tYes: Overwrite the printer preset with the same name, and filament and process presets with the same preset name will be recreated \n" +"and filament and process presets without the same preset name will be reserve.\n" "\tCancel: Do not create a preset, return to the creation interface." -msgstr "" -"O modelo de impressora que você criou já possui um modelo com o mesmo nome. " -"Deseja substituí-lo?\n" -" \tSim: Substituir o modelo de impressora com o mesmo nome, e os modelos de " -"filamento e processo com o mesmo nome do modelo serão recriados, \n" -" e os modelos de filamento e processo sem o mesmo nome do modelo serão " -"preservados.\n" +msgstr "O modelo de impressora que você criou já possui um modelo com o mesmo nome. Deseja substituí-lo?\n" +" \tSim: Substituir o modelo de impressora com o mesmo nome, e os modelos de filamento e processo com o mesmo nome do modelo serão recriados, \n" +" e os modelos de filamento e processo sem o mesmo nome do modelo serão preservados.\n" " \tCancelar: Não criar um modelo, retornar para a interface de criação." msgid "You need to select at least one filament preset." @@ -15419,34 +12236,20 @@ msgstr "Fornecedor não encontrado, por favor selecione novamente." msgid "Current vendor has no models, please reselect." msgstr "O fornecedor atual não possui modelos, por favor, selecione novamente." -msgid "" -"You have not selected the vendor and model or inputed the custom vendor and " -"model." -msgstr "" -"Você não selecionou um fornecedor e modelo nem colocou fornecer e modelo " -"personalizado." +msgid "You have not selected the vendor and model or inputed the custom vendor and model." +msgstr "Você não selecionou um fornecedor e modelo nem colocou fornecer e modelo personalizado." -msgid "" -"There may be escape characters in the custom printer vendor or model. Please " -"delete and re-enter." -msgstr "" -"Pode haver caracteres de escape no fornecedor ou modelo personalizado da " -"impressora. Por favor, exclua e insira novamente." +msgid "There may be escape characters in the custom printer vendor or model. Please delete and re-enter." +msgstr "Pode haver caracteres de escape no fornecedor ou modelo personalizado da impressora. Por favor, exclua e insira novamente." -msgid "" -"All inputs in the custom printer vendor or model are spaces. Please re-enter." -msgstr "" -"Todas as entradas no fornecedor ou modelo personalizado da impressora são " -"espaços. Por favor, insira novamente." +msgid "All inputs in the custom printer vendor or model are spaces. Please re-enter." +msgstr "Todas as entradas no fornecedor ou modelo personalizado da impressora são espaços. Por favor, insira novamente." msgid "Please check bed printable shape and origin input." msgstr "Por favor, verifique a forma imprimível da mesa e a entrada de origem." -msgid "" -"You have not yet selected the printer to replace the nozzle, please choose." -msgstr "" -"Você ainda não selecionou a impressora para substituir o bico, por favor, " -"escolha." +msgid "You have not yet selected the printer to replace the nozzle, please choose." +msgstr "Você ainda não selecionou a impressora para substituir o bico, por favor, escolha." msgid "Create Printer Successful" msgstr "Impressora criada com sucesso" @@ -15458,39 +12261,22 @@ msgid "Printer Created" msgstr "Impressora criada" msgid "Please go to printer settings to edit your presets" -msgstr "" -"Por favor vá parar configurações de impressora para editar os seus presets" +msgstr "Por favor vá parar configurações de impressora para editar os seus presets" msgid "Filament Created" msgstr "Filamento criado" -msgid "" -"Please go to filament setting to edit your presets if you need.\n" -"Please note that nozzle temperature, hot bed temperature, and maximum " -"volumetric speed has a significant impact on printing quality. Please set " -"them carefully." -msgstr "" -"Por favor, vá para as configurações do filamento para editar seus presets, " -"se necessário. \n" -"Por favor, note que a temperatura do bico, temperatura da mesa aquecida e " -"velocidade volumétrica máxima têm um impacto significativo na qualidade de " -"impressão. Por favor, ajuste-os com cuidado." +msgid "Please go to filament setting to edit your presets if you need.\n" +"Please note that nozzle temperature, hot bed temperature, and maximum volumetric speed has a significant impact on printing quality. Please set them carefully." +msgstr "Por favor, vá para as configurações do filamento para editar seus presets, se necessário. \n" +"Por favor, note que a temperatura do bico, temperatura da mesa aquecida e velocidade volumétrica máxima têm um impacto significativo na qualidade de impressão. Por favor, ajuste-os com cuidado." -msgid "" -"\n" -"\n" -"Orca has detected that your user presets synchronization function is not " -"enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +msgid "\n\n" +"Orca has detected that your user presets synchronization function is not enabled, which may result in unsuccessful Filament settings on the Device page. \n" "Click \"Sync user presets\" to enable the synchronization function." -msgstr "" -"\n" -"\n" -"Studio detectou que sua função de sincronização predefinida não está ativa, " -"o que pode resultar em configurações de arquivo malsucedidas na página do " -"dispositivo. \n" -"Clique em \"Sincronizar pressets do usuário\" para habilitar a função de " -"sincronização." +msgstr "\n\n" +"Orca detectou que a função de sincronização das suas predefinições de usuário não está habilitada, o que pode resultar em falhas nas configurações de Filamento na página do Dispositivo. \n" +"Clique em \"Sincronizar presets do usuário\" para habilitar a função de sincronização." msgid "Printer Setting" msgstr "Configuração da Impressora" @@ -15528,70 +12314,40 @@ msgstr "falha ao abrir o arquivo zip para escrita" msgid "Export successful" msgstr "Exportação bem-sucedida" -#, c-format, boost-format -msgid "" -"The '%s' folder already exists in the current directory. Do you want to " -"clear it and rebuild it.\n" -"If not, a time suffix will be added, and you can modify the name after " -"creation." -msgstr "" -"A pasta '%s' já existe no diretório atual. Deseja limpá-la e reconstruí-la?\n" -"Se não, um sufixo de tempo será adicionado, e você poderá modificar o nome " -"após a criação." +#, possible-c-format, possible-boost-format +msgid "The '%s' folder already exists in the current directory. Do you want to clear it and rebuild it.\n" +"If not, a time suffix will be added, and you can modify the name after creation." +msgstr "A pasta '%s' já existe no diretório atual. Deseja limpá-la e reconstruí-la?\n" +"Se não, um sufixo de tempo será adicionado, e você poderá modificar o nome após a criação." -msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +msgid "Printer and all the filament&&process presets that belongs to the printer. \n" "Can be shared with others." -msgstr "" -"Presets da impressora e todos os filamentos e processos que pertencem à " -"impressora. \n" +msgstr "Presets da impressora e todos os filamentos e processos que pertencem à impressora. \n" "Pode ser compartilhado com outros." -msgid "" -"User's fillment preset set. \n" +msgid "User's fillment preset set. \n" "Can be shared with others." -msgstr "" -"Conjunto de presets de filamento do usuário. \n" +msgstr "Conjunto de presets de filamento do usuário. \n" "Pode ser compartilhado com outros." -msgid "" -"Only display printer names with changes to printer, filament, and process " -"presets." -msgstr "" -"Só exibir nomes de impressoras com alterações nos presets de impressora, " -"filamento e processo." +msgid "Only display printer names with changes to printer, filament, and process presets." +msgstr "Só exibir nomes de impressoras com alterações nos presets de impressora, filamento e processo." msgid "Only display the filament names with changes to filament presets." -msgstr "" -"Apenas exibir os nomes dos filamentos com alterações nos presets de " -"filamento." +msgstr "Apenas exibir os nomes dos filamentos com alterações nos presets de filamento." -msgid "" -"Only printer names with user printer presets will be displayed, and each " -"preset you choose will be exported as a zip." -msgstr "" -"Apenas os nomes das impressoras com presets de impressora do usuário serão " -"exibidos, e cada preset escolhido será exportado como um arquivo zip." +msgid "Only printer names with user printer presets will be displayed, and each preset you choose will be exported as a zip." +msgstr "Apenas os nomes das impressoras com presets de impressora do usuário serão exibidos, e cada preset escolhido será exportado como um arquivo zip." -msgid "" -"Only the filament names with user filament presets will be displayed, \n" -"and all user filament presets in each filament name you select will be " -"exported as a zip." -msgstr "" -"Apenas os nomes dos filamentos com presets de filamento do usuário serão " -"exibidos, \n" -"e todas as presets de filamento do usuário em cada nome de filamento " -"selecionado serão exportadas como um arquivo zip." +msgid "Only the filament names with user filament presets will be displayed, \n" +"and all user filament presets in each filament name you select will be exported as a zip." +msgstr "Apenas os nomes dos filamentos com presets de filamento do usuário serão exibidos, \n" +"e todas as presets de filamento do usuário em cada nome de filamento selecionado serão exportadas como um arquivo zip." -msgid "" -"Only printer names with changed process presets will be displayed, \n" -"and all user process presets in each printer name you select will be " -"exported as a zip." -msgstr "" -"Apenas os nomes das impressoras com presets de processo alterados serão " -"exibidos, \n" -"e todos os presets de processo do usuário em cada nome de impressora " -"selecionado serão exportados como um arquivo zip." +msgid "Only printer names with changed process presets will be displayed, \n" +"and all user process presets in each printer name you select will be exported as a zip." +msgstr "Apenas os nomes das impressoras com presets de processo alterados serão exibidos, \n" +"e todos os presets de processo do usuário em cada nome de impressora selecionado serão exportados como um arquivo zip." msgid "Please select at least one printer or filament." msgstr "Por favor, selecione pelo menos uma impressora ou filamento." @@ -15600,9 +12356,7 @@ msgid "Please select a type you want to export" msgstr "Por favor, selecione um tipo que deseja exportar" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "" -"Falha ao criar uma pasta temporária, por favor, tente exportar as " -"configurações novamente." +msgstr "Falha ao criar uma pasta temporária, por favor, tente exportar as configurações novamente." msgid "Edit Filament" msgstr "Editar Filamento" @@ -15610,19 +12364,15 @@ msgstr "Editar Filamento" msgid "Filament presets under this filament" msgstr "Presets de filamento sob este filamento" -msgid "" -"Note: If the only preset under this filament is deleted, the filament will " -"be deleted after exiting the dialog." -msgstr "" -"Nota: Se o único preset sob este filamento for excluído, o filamento será " -"excluído após sair da janela." +msgid "Note: If the only preset under this filament is deleted, the filament will be deleted after exiting the dialog." +msgstr "Nota: Se o único preset sob este filamento for excluído, o filamento será excluído após sair da janela." msgid "Presets inherited by other presets can not be deleted" msgstr "Presets herdados por outros presets não podem ser excluídos" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." -msgstr[0] "As seguintes predefinições herdam esta predefinição." +msgstr[0] "Os seguintes presets herdam este preset." msgstr[1] "A seguinte predefinição herda essa predefinição." msgid "Delete Preset" @@ -15640,15 +12390,10 @@ msgstr "+ Adicionar Preset" msgid "Delete Filament" msgstr "Excluir Filamento" -msgid "" -"All the filament presets belong to this filament would be deleted. \n" -"If you are using this filament on your printer, please reset the filament " -"information for that slot." -msgstr "" -"Todos os presets de filamento pertencentes a este filamento seriam " -"excluídas. \n" -"Se você estiver usando este filamento em sua impressora, redefina as " -"informações do filamento para esse slot." +msgid "All the filament presets belong to this filament would be deleted. \n" +"If you are using this filament on your printer, please reset the filament information for that slot." +msgstr "Todos os presets de filamento pertencentes a este filamento seriam excluídas. \n" +"Se você estiver usando este filamento em sua impressora, redefina as informações do filamento para esse slot." msgid "Delete filament" msgstr "Excluir filamento" @@ -15663,9 +12408,7 @@ msgid "Copy preset from filament" msgstr "Copiar preset do filamento" msgid "The filament choice not find filament preset, please reselect it" -msgstr "" -"O filamento selecionado não encontra preset de filamento, por favor, " -"selecione novamente" +msgstr "O filamento selecionado não encontra preset de filamento, por favor, selecione novamente" msgid "[Delete Required]" msgstr "[Excluir Necessário]" @@ -15682,14 +12425,10 @@ msgstr "Recolher" msgid "Daily Tips" msgstr "Dicas Diárias" -msgid "" -"Your nozzle diameter in preset is not consistent with memorized nozzle " -"diameter. Did you change your nozzle lately?" -msgstr "" -"O diâmetro do bico no seu perfil não está consistente com o diâmetro do bico " -"memorizado. Você mudou seu bico recentemente?" +msgid "Your nozzle diameter in preset is not consistent with memorized nozzle diameter. Did you change your nozzle lately?" +msgstr "O diâmetro do bico no seu perfil não está consistente com o diâmetro do bico memorizado. Você mudou seu bico recentemente?" -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "*Printing %s material with %s may cause nozzle damage" msgstr "*Imprimir material %s com %s pode causar danos ao bico" @@ -15699,12 +12438,8 @@ msgstr "É necessário selecionar uma impressora" msgid "The start, end or step is not valid value." msgstr "O início, fim ou passo não é um valor válido." -msgid "" -"Unable to calibrate: maybe because the set calibration value range is too " -"large, or the step is too small" -msgstr "" -"Incapaz de calibrar: talvez porque a faixa de valor de calibração definida " -"seja muito grande ou o passo seja muito pequeno" +msgid "Unable to calibrate: maybe because the set calibration value range is too large, or the step is too small" +msgstr "Incapaz de calibrar: talvez porque a faixa de valor de calibração definida seja muito grande ou o passo seja muito pequeno" msgid "Physical Printer" msgstr "Impressora Física" @@ -15724,43 +12459,29 @@ msgstr "Tem certeza de que deseja sair?" msgid "Refresh Printers" msgstr "Atualizar Impressoras" -msgid "" -"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" -"signed certificate." -msgstr "" -"O arquivo CA HTTPS é opcional. É necessário apenas se você usar HTTPS com um " -"certificado autoassinado." +msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." +msgstr "O arquivo CA HTTPS é opcional. É necessário apenas se você usar HTTPS com um certificado autoassinado." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -msgstr "" -"Arquivos de certificado (*.crt, *.pem)|*.crt;*.pem|Todos os arquivos|*.*" +msgstr "Arquivos de certificado (*.crt, *.pem)|*.crt;*.pem|Todos os arquivos|*.*" msgid "Open CA certificate file" msgstr "Abrir arquivo de certificado CA" -#, c-format, boost-format -msgid "" -"On this system, %s uses HTTPS certificates from the system Certificate Store " -"or Keychain." -msgstr "" -"Neste sistema, %s usa certificados HTTPS da loja de certificados do sistema " -"ou do Keychain." +#, possible-c-format, possible-boost-format +msgid "On this system, %s uses HTTPS certificates from the system Certificate Store or Keychain." +msgstr "Neste sistema, %s usa certificados HTTPS da loja de certificados do sistema ou do Keychain." -msgid "" -"To use a custom CA file, please import your CA file into Certificate Store / " -"Keychain." -msgstr "" -"Para usar um arquivo CA personalizado, importe seu arquivo CA para a loja de " -"certificados / Keychain." +msgid "To use a custom CA file, please import your CA file into Certificate Store / Keychain." +msgstr "Para usar um arquivo CA personalizado, importe seu arquivo CA para a loja de certificados / Keychain." msgid "Login/Test" msgstr "Login/Teste" msgid "Connection to printers connected via the print host failed." -msgstr "" -"A conexão às impressoras conectadas através do host de impressão falhou." +msgstr "A conexão às impressoras conectadas através do host de impressão falhou." -#, c-format, boost-format +#, possible-c-format, possible-boost-format msgid "Mismatched type of print host: %s" msgstr "Tipo de Host de Impressão incompatível: %s" @@ -15792,18 +12513,13 @@ msgid "Upload not enabled on FlashAir card." msgstr "Upload não ativado no cartão FlashAir." msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "" -"A conexão com o FlashAir funciona corretamente e o upload está ativado." +msgstr "A conexão com o FlashAir funciona corretamente e o upload está ativado." msgid "Could not connect to FlashAir" msgstr "Não foi possível conectar-se ao FlashAir" -msgid "" -"Note: FlashAir with firmware 2.00.02 or newer and activated upload function " -"is required." -msgstr "" -"Nota: FlashAir com firmware 2.00.02 ou mais recente e função de upload " -"ativada são necessárias." +msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required." +msgstr "Nota: FlashAir com firmware 2.00.02 ou mais recente e função de upload ativada são necessárias." msgid "Connection to MKS works correctly." msgstr "A conexão com o MKS funciona corretamente." @@ -15824,7 +12540,7 @@ msgid "Connection to Prusa SL1 / SL1S works correctly." msgstr "A Conexão com Prusa SL1 / SL1S funciona corretamente." msgid "Could not connect to Prusa SLA" -msgstr "Não foi possível conectar-se à Prusa SLA" +msgstr "Não foi possível conectar-se ao Prusa SLA" msgid "Connection to PrusaLink works correctly." msgstr "A conexão com PrusaLink funciona corretamente." @@ -15836,17 +12552,17 @@ msgid "Storages found" msgstr "Armazenamento encontrado" #. TRN %1% = storage path -#, boost-format +#, possible-boost-format msgid "%1% : read only" msgstr "%1%: somente leitura" #. TRN %1% = storage path -#, boost-format +#, possible-boost-format msgid "%1% : no free space" msgstr "%1% : sem espaço livre" #. TRN %1% = host -#, boost-format +#, possible-boost-format msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "Falha no ‘upload’. Não há armazenamento suficiente em %1%." @@ -15860,207 +12576,116 @@ msgid "Connection to Repetier works correctly." msgstr "A conexão com o Repetier funciona corretamente." msgid "Could not connect to Repetier" -msgstr "Não foi possível conectar-se à Repetier" +msgstr "Não foi possível conectar-se ao Repetier" msgid "Note: Repetier version at least 0.90.0 is required." msgstr "Nota: A versão do Repetier deve ser igual ou maior que 0.90.0" -#, boost-format -msgid "" -"HTTP status: %1%\n" +#, possible-boost-format +msgid "HTTP status: %1%\n" "Message body: \"%2%\"" -msgstr "" -"HTTP status: %1%\n" +msgstr "HTTP status: %1%\n" "Corpo da mensagem: \"%2%\"" -#, boost-format -msgid "" -"Parsing of host response failed.\n" +#, possible-boost-format +msgid "Parsing of host response failed.\n" "Message body: \"%1%\"\n" "Error: \"%2%\"" -msgstr "" -"Resposta ao host falhou.\n" +msgstr "Resposta ao host falhou.\n" "Corpo da Mensagem \"%1%\"\n" "Error: \"%2%\"" -#, boost-format -msgid "" -"Enumeration of host printers failed.\n" +#, possible-boost-format +msgid "Enumeration of host printers failed.\n" "Message body: \"%1%\"\n" "Error: \"%2%\"" -msgstr "" -"Enumeração das impressoras host falhou\n" +msgstr "Enumeração das impressoras host falhou\n" "Corpo da Mensagem: \"%1%\"\n" "Error: \"%2%\"" -msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." -msgstr "" +msgid "It has a small layer height, and results in almost negligible layer lines and high printing quality. It is suitable for most general printing cases." +msgstr "Possui uma pequena altura de camada, resultando em linhas de camada quase imperceptíveis e alta qualidade de impressão. É adequado para a maioria dos casos gerais de impressão." -msgid "" -"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in much higher printing quality, but a much longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,2 mm, ele tem velocidades e aceleração mais baixas, e o padrão de preenchimento é Giroide. Isso resulta em uma qualidade de impressão muito superior, mas um tempo de impressão muito mais longo." -msgid "" -"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." -msgstr "" +msgid "Compared with the default profile of a 0.2 mm nozzle, it has a slightly bigger layer height, and results in almost negligible layer lines, and slightly shorter printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,2 mm, tem uma altura de camada um pouco maior, resultando em linhas de camada quase insignificantes e um tempo de impressão ligeiramente menor." -msgid "" -"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." -msgstr "" +msgid "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer height, and results in slightly visible layer lines, but shorter printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,2 mm, tem uma altura de camada maior, o que resulta em linhas de camada ligeiramente visíveis, mas um tempo de impressão menor." -msgid "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." -msgstr "" +msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height, and results in almost invisible layer lines and higher printing quality, but shorter printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,2 mm, tem uma altura de camada menor, resultando em linhas de camada quase invisíveis e maior qualidade de impressão, mas um tempo de impressão menor." -msgid "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer lines, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost invisible layer lines and much higher printing quality, but much longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,2 mm, tem linhas de camada menores, velocidades e aceleração mais baixas, e o padrão de preenchimento é Giroide. Isso resulta em linhas de camada quase invisíveis e uma qualidade de impressão muito superior, mas um tempo de impressão muito maior." -msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." -msgstr "" +msgid "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer height, and results in minimal layer lines and higher printing quality, but shorter printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,2 mm, tem uma altura de camada menor, resultando em linhas de camada mínimas e maior qualidade de impressão, mas um tempo de impressão menor." -msgid "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer lines, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in minimal layer lines and much higher printing quality, but much longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,2 mm, tem linhas de camada menores, velocidades e aceleração mais baixas, e o padrão de preenchimento é Giroide. Isso resulta em linhas de camada mínimas e uma qualidade de impressão muito superior, mas um tempo de impressão muito maior." -msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." -msgstr "" +msgid "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases." +msgstr "Tem uma altura de camada padrão e resulta em linhas de camada e qualidade de impressão padrão. É adequado para a maioria dos casos de impressão." -msgid "" -"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time." +msgstr "Comparado com o perfil padrão de uma bico de 0,4 mm, tem mais paredes e uma densidade de preenchimento mais alta. Portanto, resulta em maior resistência, mas com consumo maior de filamento e tempo de impressão mais longo." -msgid "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." -msgstr "" +msgid "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time." +msgstr "Comparado com o perfil padrão de uma bico de 0,4 mm, tem uma altura de camada maior, resultando em linhas de camada mais aparentes e qualidade mais baixa, mas com um tempo de impressão um pouco menor." -msgid "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." -msgstr "" +msgid "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time." +msgstr "Comparado com o perfil padrão de uma bico de 0,4 mm, tem uma altura de camada maior, resultando em linhas de camada mais aparentes e qualidade mais baixa, mas com um tempo de impressão menor." -msgid "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,4 mm, tem uma altura de camada menor, resultando em linhas de camada menos aparentes e maior qualidade de impressão, mas com um tempo de impressão maior." -msgid "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,4 mm, tem uma altura de camada menor, velocidades e aceleração mais baixas, e o padrão de preenchimento é Giroide. Portanto, resulta em linhas de camada menos aparentes e qualidade de impressão maior, mas com um tempo de impressão muito maior." -msgid "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,4 mm, tem uma altura de camada menor, resultando em linhas de camada quase insignificantes e maior qualidade de impressão, mas com um maior tempo de impressão." -msgid "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,4 mm, tem uma altura de camada menor, velocidades e aceleração mais baixas, e o padrão de preenchimento é Giroide. Portanto, resulta em linhas de camada quase insignificantes e qualidade de impressão muito maior, mas com um tempo de impressão muito maior." -msgid "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." -msgstr "" +msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,4 mm, tem uma altura de camada menor, resultando em linhas de camada quase insignificantes, mas com um tempo de impressão maior." -msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." -msgstr "" +msgid "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time." +msgstr "Tem uma altura de camada grande, resultando em linhas de camada aparentes com qualidade e tempo de impressão normais." -msgid "" -"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,6 mm, tem mais paredes e uma densidade de preenchimento mais alta. Portanto, resulta em uma resistência maior, mas com um consumo de filamento maior e um tempo de impressão mais longo." -msgid "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." -msgstr "" +msgid "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases." +msgstr "Comparado com o perfil padrão de um bico de 0,6 mm, tem uma altura de camada maior, resultando em linhas de camada mais aparentes e qualidade mais baixa, mas com um tempo de impressão menor em alguns casos de impressão." -msgid "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." -msgstr "" +msgid "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases." +msgstr "Comparado com o perfil padrão de um bico de 0,6 mm, tem uma altura de camada maior, resultando em linhas de camada muito mais aparentes e qualidade muito mais baixa, mas com um tempo de impressão menor em alguns casos de impressão." -msgid "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,6 mm, tem uma altura de camada menor, resultando em linhas de camada menos aparentes e qualidade ligeiramente maior, mas com um tempo de impressão maior." -msgid "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" +msgid "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time." +msgstr "Comparado com o perfil padrão de um bico de 0,6 mm, tem uma altura de camada menor, resultando em linhas de camada menos aparentes e maior qualidade de impressão, mas com um tempo de impressão maior." -msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." -msgstr "" +msgid "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time." +msgstr "Tem uma altura de camada muito grande, resultando em linhas de camada muito aparentes, com qualidade e tempo de impressão baixo." -msgid "" -"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." -msgstr "" +msgid "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases." +msgstr "Comparado com o perfil padrão de um bico de 0,8 mm, tem uma altura de camada maior, resultando em linhas de camada muito aparentes e qualidade muito mais baixa, mas com um tempo de impressão menor em alguns casos de impressão." -msgid "" -"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." -msgstr "" +msgid "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger layer height, and results in extremely apparent layer lines and much lower printing quality, but much shorter printing time in some printing cases." +msgstr "Comparado com o perfil padrão de um bico de 0,8 mm, tem uma altura de camada muito maior, resultando em linhas de camada extremamente aparentes e qualidade muito mais baixa, mas com um tempo de impressão muito menor em alguns casos de impressão." -msgid "" -"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." -msgstr "" +msgid "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases." +msgstr "Comparado com o perfil padrão de um bico de 0,8 mm, tem uma altura de camada ligeiramente menor, resultando em linhas de camada menos aparentes, mas ainda visíveis, e qualidade ligeiramente maior, mas com um tempo de impressão maior em alguns casos de impressão." -msgid "" -"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." -msgstr "" +msgid "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases." +msgstr "Comparado com o perfil padrão de um bico de 0,8 mm, tem uma altura de camada menor, resultando em linhas de camada menos aparentes, mas ainda visíveis, e qualidade ligeiramente maior, mas com um tempo de impressão maior em alguns casos de impressão." msgid "Connected to Obico successfully!" msgstr "Conectado ao Obico com sucesso!" @@ -16075,16 +12700,10 @@ msgid "Could not connect to SimplyPrint" msgstr "Não é possível conectar a SimplyPrint" msgid "SimplyPrint account not linked. Go to Connect options to set it up." -msgstr "" -"Conta SimplyPrint não vinculada. Vá para as opções de conexão para configurá-" -"la." +msgstr "Conta SimplyPrint não vinculada. Vá para as opções de conexão para configurá-la." -msgid "" -"File size exceeds the 100MB upload limit. Please upload your file through " -"the panel." -msgstr "" -"O tamanho do arquivo excede o limite de envio de 100MB. Por favor, envie seu " -"arquivo através do painel." +msgid "File size exceeds the 100MB upload limit. Please upload your file through the panel." +msgstr "O tamanho do arquivo excede o limite de envio de 100MB. Por favor, envie seu arquivo através do painel." msgid "Unknown error" msgstr "Erro desconhecido" @@ -16099,549 +12718,235 @@ msgid "The provided state is not correct." msgstr "O estado fornecido não está correto." msgid "Please give the required permissions when authorizing this application." -msgstr "" -"Por favor, forneça as permissões necessárias ao autorizar este aplicativo." +msgstr "Por favor, forneça as permissões necessárias ao autorizar este aplicativo." msgid "Something unexpected happened when trying to log in, please try again." -msgstr "" -"Algo inesperado aconteceu ao tentar conectar, por favor tente novamente." +msgstr "Algo inesperado aconteceu ao tentar conectar, por favor tente novamente." msgid "User cancelled." msgstr "O usuário cancelou." #: resources/data/hints.ini: [hint:Precise wall] -msgid "" -"Precise wall\n" -"Did you know that turning on precise wall can improve precision and layer " -"consistency?" -msgstr "" -"Parede precisa\n" -"Você sabia que ativar o Perímetro Preciso pode melhorar a precisão e a " -"consistência da camada?" +msgid "Precise wall\n" +"Did you know that turning on precise wall can improve precision and layer consistency?" +msgstr "Parede precisa\n" +"Você sabia que ativar o Perímetro Preciso pode melhorar a precisão e a consistência da camada?" #: resources/data/hints.ini: [hint:Sandwich mode] -msgid "" -"Sandwich mode\n" -"Did you know that you can use sandwich mode (inner-outer-inner) to improve " -"precision and layer consistency if your model doesn't have very steep " -"overhangs?" -msgstr "" -"Modo sanduíche\n" -"Você sabia que pode usar o modo sanduíche (interno-externo-interno) para " -"melhorar a precisão e a consistência da camada se o seu modelo não tiver " -"overhangs muito íngremes?" +msgid "Sandwich mode\n" +"Did you know that you can use sandwich mode (inner-outer-inner) to improve precision and layer consistency if your model doesn't have very steep overhangs?" +msgstr "Modo sanduíche\n" +"Você sabia que pode usar o modo sanduíche (interno-externo-interno) para melhorar a precisão e a consistência da camada se o seu modelo não tiver overhangs muito íngremes?" #: resources/data/hints.ini: [hint:Chamber temperature] -msgid "" -"Chamber temperature\n" +msgid "Chamber temperature\n" "Did you know that OrcaSlicer supports chamber temperature?" -msgstr "" -"Temperatura da câmara\n" +msgstr "Temperatura da câmara\n" "Você sabia que o OrcaSlicer suporta temperatura da câmara?" #: resources/data/hints.ini: [hint:Calibration] -msgid "" -"Calibration\n" -"Did you know that calibrating your printer can do wonders? Check out our " -"beloved calibration solution in OrcaSlicer." -msgstr "" -"Calibração\n" -"Você sabia que calibrar sua impressora pode fazer maravilhas? Confira nossa " -"amada solução de calibração no OrcaSlicer." +msgid "Calibration\n" +"Did you know that calibrating your printer can do wonders? Check out our beloved calibration solution in OrcaSlicer." +msgstr "Calibração\n" +"Você sabia que calibrar sua impressora pode fazer maravilhas? Confira nossa amada solução de calibração no OrcaSlicer." #: resources/data/hints.ini: [hint:Auxiliary fan] -msgid "" -"Auxiliary fan\n" +msgid "Auxiliary fan\n" "Did you know that OrcaSlicer supports Auxiliary part cooling fan?" -msgstr "" -"Ventilador auxiliar\n" -"Você sabia que o OrcaSlicer suporta ventilador auxiliar de resfriamento de " -"peças?" +msgstr "Ventilador auxiliar\n" +"Você sabia que o OrcaSlicer suporta ventilador auxiliar de resfriamento de peças?" #: resources/data/hints.ini: [hint:Air filtration] -msgid "" -"Air filtration/Exhaust Fan\n" +msgid "Air filtration/Exhaust Fan\n" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?" -msgstr "" -"Filtragem de ar/Exaustor\n" +msgstr "Filtragem de ar/Exaustor\n" "Você sabia que o OrcaSlicer pode suportar filtragem de ar/exaustor?" #: resources/data/hints.ini: [hint:G-code window] -msgid "" -"G-code window\n" +msgid "G-code window\n" "You can turn on/off the G-code window by pressing the C key." -msgstr "" -"Janela do G-code\n" +msgstr "Janela do G-code\n" "Você pode ligar/desligar a janela do G-code pressionando a tecla C." #: resources/data/hints.ini: [hint:Switch workspaces] -msgid "" -"Switch workspaces\n" -"You can switch between Prepare and Preview workspaces by " -"pressing the Tab key." -msgstr "" -"Alternar espaços de trabalho\n" -"Você pode alternar entre os espaços de trabalho Preparar e " -"Visualizar pressionando a tecla Tab." +msgid "Switch workspaces\n" +"You can switch between Prepare and Preview workspaces by pressing the Tab key." +msgstr "Alternar espaços de trabalho\n" +"Você pode alternar entre os espaços de trabalho Preparar e Visualizar pressionando a tecla Tab." #: resources/data/hints.ini: [hint:How to use keyboard shortcuts] -msgid "" -"How to use keyboard shortcuts\n" -"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." -msgstr "" -"Como usar atalhos de teclado\n" -"Você sabia que o Orca Slicer oferece uma ampla gama de atalhos de teclado e " -"operações de cena 3D?" +msgid "How to use keyboard shortcuts\n" +"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations." +msgstr "Como usar atalhos de teclado\n" +"Você sabia que o Orca Slicer oferece uma ampla gama de atalhos de teclado e operações de cena 3D?" #: resources/data/hints.ini: [hint:Reverse on odd] -msgid "" -"Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" -msgstr "" -"Inverter em ímpar\n" -"Você sabia que a função Inverter em ímpar pode melhorar " -"significativamente a qualidade da superfície dos overhangs?" +msgid "Reverse on odd\n" +"Did you know that Reverse on odd feature can significantly improve the surface quality of your overhangs?" +msgstr "Inverter em ímpar\n" +"Você sabia que a função Inverter em ímpar pode melhorar significativamente a qualidade da superfície dos overhangs?" #: resources/data/hints.ini: [hint:Cut Tool] -msgid "" -"Cut Tool\n" -"Did you know that you can cut a model at any angle and position with the " -"cutting tool?" -msgstr "" -"Ferramenta de corte\n" -"Você sabia que pode cortar um modelo em qualquer ângulo e posição com a " -"ferramenta de corte?" +msgid "Cut Tool\n" +"Did you know that you can cut a model at any angle and position with the cutting tool?" +msgstr "Ferramenta de corte\n" +"Você sabia que pode cortar um modelo em qualquer ângulo e posição com a ferramenta de corte?" #: resources/data/hints.ini: [hint:Fix Model] -msgid "" -"Fix Model\n" -"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " -"problems on the Windows system?" -msgstr "" -"Corrigir Modelo\n" -"Você sabia que pode corrigir um modelo 3D corrompido para evitar muitos " -"problemas de fatiamento no sistema Windows?" +msgid "Fix Model\n" +"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing problems on the Windows system?" +msgstr "Corrigir Modelo\n" +"Você sabia que pode corrigir um modelo 3D corrompido para evitar muitos problemas de fatiamento no sistema Windows?" #: resources/data/hints.ini: [hint:Timelapse] -msgid "" -"Timelapse\n" +msgid "Timelapse\n" "Did you know that you can generate a timelapse video during each print?" -msgstr "" -"Timelapse\n" +msgstr "Timelapse\n" "Você sabia que pode gerar um vídeo de timelapse durante cada impressão?" #: resources/data/hints.ini: [hint:Auto-Arrange] -msgid "" -"Auto-Arrange\n" +msgid "Auto-Arrange\n" "Did you know that you can auto-arrange all objects in your project?" -msgstr "" -"Auto-arranjo\n" -"Você sabia que pode auto-arranjar todos os objetos em seu projeto?" +msgstr "Auto-arranjo\n" +"Você sabia que pode auto-posicionar todos os objetos em seu projeto?" #: resources/data/hints.ini: [hint:Auto-Orient] -msgid "" -"Auto-Orient\n" -"Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" -msgstr "" -"Auto-orientar\n" -"Você sabia que pode girar objetos para uma orientação ideal para impressão " -"com um simples clique?" +msgid "Auto-Orient\n" +"Did you know that you can rotate objects to an optimal orientation for printing by a simple click?" +msgstr "Auto-orientar\n" +"Você sabia que pode girar objetos para uma orientação ideal para impressão com um simples clique?" #: resources/data/hints.ini: [hint:Lay on Face] -msgid "" -"Lay on Face\n" -"Did you know that you can quickly orient a model so that one of its faces " -"sits on the print bed? Select the \"Place on face\" function or press the " -"F key." -msgstr "" -"Ajustar face à superfície\n" -"Você sabia que pode rapidamente orientar um modelo para que uma de suas " -"faces fique sobre a base de impressão? Selecione a função \"Colocar na face" -"\" ou pressione a tecla F." +msgid "Lay on Face\n" +"Did you know that you can quickly orient a model so that one of its faces sits on the print bed? Select the \"Place on face\" function or press the F key." +msgstr "Ajustar face à superfície\n" +"Você sabia que pode rapidamente orientar um modelo para que uma de suas faces fique sobre a base de impressão? Selecione a função \"Colocar na face\" ou pressione a tecla F." #: resources/data/hints.ini: [hint:Object List] -msgid "" -"Object List\n" -"Did you know that you can view all objects/parts in a list and change " -"settings for each object/part?" -msgstr "" -"Lista de Objetos\n" -"Você sabia que pode visualizar todos os objetos/peças em uma lista e alterar " -"as configurações para cada objeto/peça?" +msgid "Object List\n" +"Did you know that you can view all objects/parts in a list and change settings for each object/part?" +msgstr "Lista de Objetos\n" +"Você sabia que pode visualizar todos os objetos/peças em uma lista e alterar as configurações para cada objeto/peça?" #: resources/data/hints.ini: [hint:Search Functionality] -msgid "" -"Search Functionality\n" -"Did you know that you use the Search tool to quickly find a specific Orca " -"Slicer setting?" -msgstr "" -"Funcionalidade de Busca\n" -"Você sabia que pode usar a ferramenta de busca para encontrar rapidamente " -"uma configuração específica do Orca Slicer?" +msgid "Search Functionality\n" +"Did you know that you use the Search tool to quickly find a specific Orca Slicer setting?" +msgstr "Funcionalidade de Busca\n" +"Você sabia que pode usar a ferramenta de busca para encontrar rapidamente uma configuração específica do Orca Slicer?" #: resources/data/hints.ini: [hint:Simplify Model] -msgid "" -"Simplify Model\n" -"Did you know that you can reduce the number of triangles in a mesh using the " -"Simplify mesh feature? Right-click the model and select Simplify model." -msgstr "" -"Simplificar Modelo\n" -"Você sabia que pode reduzir o número de triângulos em uma malha usando a " -"função Simplificar malha? Clique com o botão direito no modelo e selecione " -"Simplificar modelo." +msgid "Simplify Model\n" +"Did you know that you can reduce the number of triangles in a mesh using the Simplify mesh feature? Right-click the model and select Simplify model." +msgstr "Simplificar Modelo\n" +"Você sabia que pode reduzir o número de triângulos em uma malha usando a função Simplificar malha? Clique com o botão direito no modelo e selecione Simplificar modelo." #: resources/data/hints.ini: [hint:Slicing Parameter Table] -msgid "" -"Slicing Parameter Table\n" -"Did you know that you can view all objects/parts on a table and change " -"settings for each object/part?" -msgstr "" -"Tabela de Parâmetros de Fatiamento\n" -"Você sabia que pode visualizar todos os objetos/peças em uma tabela e " -"alterar as configurações para cada objeto/peça?" +msgid "Slicing Parameter Table\n" +"Did you know that you can view all objects/parts on a table and change settings for each object/part?" +msgstr "Tabela de Parâmetros de Fatiamento\n" +"Você sabia que pode visualizar todos os objetos/peças em uma tabela e alterar as configurações para cada objeto/peça?" #: resources/data/hints.ini: [hint:Split to Objects/Parts] -msgid "" -"Split to Objects/Parts\n" -"Did you know that you can split a big object into small ones for easy " -"colorizing or printing?" -msgstr "" -"Dividir em Objetos/Peças\n" -"Você sabia que pode dividir um objeto grande em peças menores para facilitar " -"a colorização ou a impressão?" +msgid "Split to Objects/Parts\n" +"Did you know that you can split a big object into small ones for easy colorizing or printing?" +msgstr "Dividir em Objetos/Peças\n" +"Você sabia que pode dividir um objeto grande em peças menores para facilitar a colorização ou a impressão?" #: resources/data/hints.ini: [hint:Subtract a Part] -msgid "" -"Subtract a Part\n" -"Did you know that you can subtract one mesh from another using the Negative " -"part modifier? That way you can, for example, create easily resizable holes " -"directly in Orca Slicer." -msgstr "" -"Subtrair uma Peça\n" -"Você sabia que pode subtrair uma malha da outra usando o modificador de peça " -"negativa? Dessa forma, você pode, por exemplo, criar facilmente furos " -"redimensionáveis diretamente no Orca Slicer." +msgid "Subtract a Part\n" +"Did you know that you can subtract one mesh from another using the Negative part modifier? That way you can, for example, create easily resizable holes directly in Orca Slicer." +msgstr "Subtrair uma Peça\n" +"Você sabia que pode subtrair uma malha da outra usando o modificador de peça negativa? Dessa forma, você pode, por exemplo, criar facilmente furos redimensionáveis diretamente no Orca Slicer." #: resources/data/hints.ini: [hint:STEP] -msgid "" -"STEP\n" -"Did you know that you can improve your print quality by slicing a STEP file " -"instead of an STL?\n" -"Orca Slicer supports slicing STEP files, providing smoother results than a " -"lower resolution STL. Give it a try!" -msgstr "" -"STEP\n" -"Você sabia que pode melhorar a qualidade da impressão fatiando um arquivo " -"STEP ao invés de um STL?\n" -"Orca Slicer é compatível com arquivos STEP, gerando resultados mais suaves " -"do que um STL em baixa resolução. Tente!" +msgid "STEP\n" +"Did you know that you can improve your print quality by slicing a STEP file instead of an STL?\n" +"Orca Slicer supports slicing STEP files, providing smoother results than a lower resolution STL. Give it a try!" +msgstr "STEP\n" +"Você sabia que pode melhorar a qualidade da impressão fatiando um arquivo STEP ao invés de um STL?\n" +"Orca Slicer é compatível com arquivos STEP, gerando resultados mais suaves do que um STL em baixa resolução. Tente!" #: resources/data/hints.ini: [hint:Z seam location] -msgid "" -"Z seam location\n" -"Did you know that you can customize the location of the Z seam, and even " -"paint it on your print, to have it in a less visible location? This improves " -"the overall look of your model. Check it out!" -msgstr "" -"Local da costura\n" -"Você sabia que pode customizar a posição da costura, e até mesmo pintá-la na " -"sua peça, para tê-la em um lugar menos visível? Isso vai aumentar a " -"qualidade geral do seu modelo. Tente!" +msgid "Z seam location\n" +"Did you know that you can customize the location of the Z seam, and even paint it on your print, to have it in a less visible location? This improves the overall look of your model. Check it out!" +msgstr "Local da costura\n" +"Você sabia que pode customizar a posição da costura, e até mesmo pintá-la na sua peça, para tê-la em um lugar menos visível? Isso vai aumentar a qualidade geral do seu modelo. Tente!" #: resources/data/hints.ini: [hint:Fine-tuning for flow rate] -msgid "" -"Fine-tuning for flow rate\n" -"Did you know that flow rate can be fine-tuned for even better-looking " -"prints? Depending on the material, you can improve the overall finish of the " -"printed model by doing some fine-tuning." -msgstr "" -"Ajuste fino do fluxo\n" -"Você sabia que o fluxo pode ser ajustado para impressões ainda melhores? " -"Dependendo do material, você pode melhorar o acabamento final da sua peça " -"fazendo alguns ajustes." +msgid "Fine-tuning for flow rate\n" +"Did you know that flow rate can be fine-tuned for even better-looking prints? Depending on the material, you can improve the overall finish of the printed model by doing some fine-tuning." +msgstr "Ajuste fino do fluxo\n" +"Você sabia que o fluxo pode ser ajustado para impressões ainda melhores? Dependendo do material, você pode melhorar o acabamento final da sua peça fazendo alguns ajustes." #: resources/data/hints.ini: [hint:Split your prints into plates] -msgid "" -"Split your prints into plates\n" -"Did you know that you can split a model that has a lot of parts into " -"individual plates ready to print? This will simplify the process of keeping " -"track of all the parts." -msgstr "" -"Divida suas impressões em mesas\n" -"Você sabia que pode dividir um modelo que tem diversas peças individuais em " -"mesas distintas prontas para imprimir? Isso vai simplificar o processo e o " -"avanço das impressões." +msgid "Split your prints into plates\n" +"Did you know that you can split a model that has a lot of parts into individual plates ready to print? This will simplify the process of keeping track of all the parts." +msgstr "Divida suas impressões em mesas\n" +"Você sabia que pode dividir um modelo que tem diversas peças individuais em mesas distintas prontas para imprimir? Isso vai simplificar o processo e o avanço das impressões." -#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer -#: Height] -msgid "" -"Speed up your print with Adaptive Layer Height\n" -"Did you know that you can print a model even faster, by using the Adaptive " -"Layer Height option? Check it out!" -msgstr "" -"Agilize sua impressão com a Altura de Camada Adaptativa\n" -"Você sabia que pode imprimir um modelo ainda mais rápido, usando a opção de " -"Altura de Camada Adaptativa? Tente!" +#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer Height] +msgid "Speed up your print with Adaptive Layer Height\n" +"Did you know that you can print a model even faster, by using the Adaptive Layer Height option? Check it out!" +msgstr "Agilize sua impressão com a Altura de Camada Adaptativa\n" +"Você sabia que pode imprimir um modelo ainda mais rápido, usando a opção de Altura de Camada Adaptativa? Tente!" #: resources/data/hints.ini: [hint:Support painting] -msgid "" -"Support painting\n" -"Did you know that you can paint the location of your supports? This feature " -"makes it easy to place the support material only on the sections of the " -"model that actually need it." -msgstr "" -"Pintura de suporte\n" -"Você sabia que pode pintar a localização dos seus suportes? Essa " -"funcionalidade facilita colocar o material de suporte apenas nas seções do " -"modelo que realmente precisam." +msgid "Support painting\n" +"Did you know that you can paint the location of your supports? This feature makes it easy to place the support material only on the sections of the model that actually need it." +msgstr "Pintura de suporte\n" +"Você sabia que pode pintar a localização dos seus suportes? Essa funcionalidade facilita colocar o material de suporte apenas nas seções do modelo que realmente precisam." #: resources/data/hints.ini: [hint:Different types of supports] -msgid "" -"Different types of supports\n" -"Did you know that you can choose from multiple types of supports? Tree " -"supports work great for organic models, while saving filament and improving " -"print speed. Check them out!" -msgstr "" -"Diferentes tipos de suportes\n" -"Você sabia que pode escolher entre vários tipos de suportes? Os suportes de " -"árvore funcionam muito bem para modelos orgânicos, enquanto economizam " -"filamento e melhoram a velocidade de impressão. Confira-os!" +msgid "Different types of supports\n" +"Did you know that you can choose from multiple types of supports? Tree supports work great for organic models, while saving filament and improving print speed. Check them out!" +msgstr "Diferentes tipos de suportes\n" +"Você sabia que pode escolher entre vários tipos de suportes? Os suportes de árvore funcionam muito bem para modelos orgânicos, enquanto economizam filamento e melhoram a velocidade de impressão. Confira-os!" #: resources/data/hints.ini: [hint:Printing Silk Filament] -msgid "" -"Printing Silk Filament\n" -"Did you know that Silk filament needs special consideration to print it " -"successfully? Higher temperature and lower speed are always recommended for " -"the best results." -msgstr "" -"Impressão de Filamento de Seda\n" -"Você sabia que o filamento de seda precisa de considerações especiais para " -"ser impresso com sucesso? Uma temperatura mais alta e uma velocidade mais " -"baixa são sempre recomendadas para obter os melhores resultados." +msgid "Printing Silk Filament\n" +"Did you know that Silk filament needs special consideration to print it successfully? Higher temperature and lower speed are always recommended for the best results." +msgstr "Impressão de Filamento de Seda\n" +"Você sabia que o filamento de seda precisa de considerações especiais para ser impresso com sucesso? Uma temperatura mais alta e uma velocidade mais baixa são sempre recomendadas para obter os melhores resultados." #: resources/data/hints.ini: [hint:Brim for better adhesion] -msgid "" -"Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " -"the printing surface, it's recommended to use a brim?" -msgstr "" -"Borda para melhor adesão\n" -"Você sabia que, ao imprimir modelos com uma pequena interface de contato com " -"a superfície de impressão, é recomendável usar uma borda?" +msgid "Brim for better adhesion\n" +"Did you know that when printing models have a small contact interface with the printing surface, it's recommended to use a brim?" +msgstr "Borda para melhor adesão\n" +"Você sabia que, ao imprimir modelos com uma pequena interface de contato com a superfície de impressão, é recomendável usar uma borda?" #: resources/data/hints.ini: [hint:Set parameters for multiple objects] -msgid "" -"Set parameters for multiple objects\n" -"Did you know that you can set slicing parameters for all selected objects at " -"one time?" -msgstr "" -"Definir parâmetros para vários objetos\n" -"Você sabia que pode definir parâmetros de fatiamento para todos os objetos " -"selecionados de uma só vez?" +msgid "Set parameters for multiple objects\n" +"Did you know that you can set slicing parameters for all selected objects at one time?" +msgstr "Definir parâmetros para vários objetos\n" +"Você sabia que pode definir parâmetros de fatiamento para todos os objetos selecionados de uma só vez?" #: resources/data/hints.ini: [hint:Stack objects] -msgid "" -"Stack objects\n" +msgid "Stack objects\n" "Did you know that you can stack objects as a whole one?" -msgstr "" -"Empilhar objetos\n" +msgstr "Empilhar objetos\n" "Você sabia que pode empilhar objetos como um todo?" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] -msgid "" -"Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " -"support/objects/infill during filament change?" -msgstr "" -"Purga no suporte/objetos/preenchimento\n" -"Você sabia que pode economizar o filamento desperdiçado ao purgar nos " -"suportes/objetos/preenchimento durante a troca de filamento?" +msgid "Flush into support/objects/infill\n" +"Did you know that you can save the wasted filament by flushing them into support/objects/infill during filament change?" +msgstr "Limpeza no suporte/objetos/preenchimento\n" +"Você sabia que pode economizar o filamento desperdiçado ao limpar nos suportes/objetos/preenchimento durante a troca de filamento?" #: resources/data/hints.ini: [hint:Improve strength] -msgid "" -"Improve strength\n" -"Did you know that you can use more wall loops and higher sparse infill " -"density to improve the strength of the model?" -msgstr "" -"Melhorar a resistência\n" -"Você sabia que pode usar mais loops de perímetro e densidade de " -"preenchimento não sólido mais alta para melhorar a resistência do modelo?" +msgid "Improve strength\n" +"Did you know that you can use more wall loops and higher sparse infill density to improve the strength of the model?" +msgstr "Melhorar a resistência\n" +"Você sabia que pode usar mais loops de perímetro e densidade de preenchimento não sólido mais alta para melhorar a resistência do modelo?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] -msgid "" -"When need to print with the printer door opened\n" -"Did you know that opening the printer door can reduce the probability of " -"extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." -msgstr "" -"Quando é necessário imprimir com a porta da impressora aberta\n" -"Você sabia que abrir a porta da impressora pode reduzir a probabilidade de " -"entupimento do extrusor/bico aquecido ao imprimir filamento de temperatura " -"mais baixa com uma temperatura de invólucro mais alta. Mais informações " -"sobre isso na Wiki." +#: resources/data/hints.ini: [hint:When need to print with the printer door opened] +msgid "When need to print with the printer door opened\n" +"Did you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature. More info about this in the Wiki." +msgstr "Quando é necessário imprimir com a porta da impressora aberta\n" +"Você sabia que abrir a porta da impressora pode reduzir a probabilidade de entupimento do extrusor/bico aquecido ao imprimir filamento de temperatura mais baixa com uma temperatura de invólucro mais alta. Mais informações sobre isso na Wiki." #: resources/data/hints.ini: [hint:Avoid warping] -msgid "" -"Avoid warping\n" -"Did you know that when printing materials that are prone to warping such as " -"ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." -msgstr "" -"Evitar empenamento\n" -"Você sabia que ao imprimir materiais propensos ao empenamento, como ABS, " -"aumentar adequadamente a temperatura da mesa aquecida pode reduzir a " -"probabilidade de empenamento?" +msgid "Avoid warping\n" +"Did you know that when printing materials that are prone to warping such as ABS, appropriately increasing the heatbed temperature can reduce the probability of warping." +msgstr "Evitar empenamento\n" +"Você sabia que ao imprimir materiais propensos ao empenamento, como ABS, aumentar adequadamente a temperatura da mesa aquecida pode reduzir a probabilidade de empenamento?" -#~ msgid "V" -#~ msgstr "V" - -#~ msgid "" -#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " -#~ "Ranellucci and the RepRap community" -#~ msgstr "" -#~ "O Orca Slicer é baseado no BambuStudio da Bambulab, que é derivado do " -#~ "PrusaSlicer da Prusa Research. O PrusaSlicer vem do Slic3r de Alessandro " -#~ "Ranellucci e da comunidade RepRap" - -#~ msgid "Export &Configs" -#~ msgstr "Exportar &Configurações" - -#~ msgid "Infill direction" -#~ msgstr "Direção de preenchimento" - -#~ msgid "" -#~ "Enable this to get a G-code file which has G2 and G3 moves. And the " -#~ "fitting tolerance is same with resolution" -#~ msgstr "" -#~ "Habilitar isso para obter um arquivo G-code que tenha movimentos G2 e G3. " -#~ "E a tolerância de ajuste é a mesma que a resolução" - -#~ msgid "" -#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " -#~ "The percentage value is relative to line width of sparse infill" -#~ msgstr "" -#~ "A área de preenchimento é ligeiramente ampliada para se sobrepor ao " -#~ "perímetro para melhor aderência. O valor percentual é relativo à largura " -#~ "da linha do preenchimento não sólido" - -#~ msgid "Export Configs" -#~ msgstr "Exportar Configurações" - -#~ msgid "Actions For Unsaved Changes" -#~ msgstr "Ações para Alterações Não Salvas" - -#~ msgid "Preset Value" -#~ msgstr "Valor Predefinido" - -#~ msgid "Modified Value" -#~ msgstr "Valor Modificado" - -#~ msgid "Transfer Modified Value" -#~ msgstr "Transferir Valor Modificado" - -#~ msgid "Use Preset Value" -#~ msgstr "Usar Valor Predefinido" - -#~ msgid "Save Modified Value" -#~ msgstr "Salvar Valor Modificado" - -#~ msgid "" -#~ "\n" -#~ "Would you like to save these changed settings(modified value)?" -#~ msgstr "" -#~ "\n" -#~ "Você gostaria de salvar estas configurações alteradas (valor modificado)?" - -#~ msgid "" -#~ "\n" -#~ "Would you like to keep these changed settings(modified value) after " -#~ "switching preset?" -#~ msgstr "" -#~ "\n" -#~ "Você gostaria de manter estas configurações alteradas (valores " -#~ "modificados) após mudar o preset?" - -#~ msgid "" -#~ "You have previously modified your settings and are about to overwrite " -#~ "them with new ones." -#~ msgstr "" -#~ "Você modificou suas configurações anteriormente e está prestes a " -#~ "substituí-las por novas." - -#~ msgid "" -#~ "\n" -#~ "Do you want to keep your current modified settings, or use preset " -#~ "settings?" -#~ msgstr "" -#~ "\n" -#~ "Você quer manter suas configurações atuais modificadas ou usar as " -#~ "configurações predefinidas?" - -#~ msgid "" -#~ "\n" -#~ "Do you want to save your current modified settings?" -#~ msgstr "" -#~ "\n" -#~ "Você quer salvar suas configurações atuais modificadas?" - -#~ msgid "Unload Filament" -#~ msgstr "Descarregar Filamento" - -#~ msgid "MC" -#~ msgstr "MC" - -#~ msgid "MainBoard" -#~ msgstr "Placa principal" - -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "" -#~ "Over 4 studio/handy are using remote access, you can close some and try " -#~ "again." -#~ msgstr "" -#~ "Mais de 4 estúdio/prático estão usando o acesso remoto, você pode fechar " -#~ "alguns e tentar novamente." - -#~ msgid "HMS" -#~ msgstr "HMS" - -#~ msgid "" -#~ "The 3mf file version is in Beta and it is newer than the current Bambu " -#~ "Studio version." -#~ msgstr "" -#~ "A versão do arquivo 3mf está em Beta e é mais recente que a versão atual " -#~ "do Bambu Studio." - -#~ msgid "If you would like to try Bambu Studio Beta, you may click to" -#~ msgstr "Se você gostaria de testar o Bambu Studio Beta, clique para" - -#~ msgid "The 3mf file version is newer than the current Bambu Studio version." -#~ msgstr "" -#~ "A versão do arquivo 3mf é mais recente que a versão atual do Bambu Studio." - -#~ msgid "" -#~ "Update your Bambu Studio could enable all functionality in the 3mf file." -#~ msgstr "" -#~ "Atualizar seu Bambu Studio pode habilitar todas as funcionalidades do " -#~ "arquivo 3mf." - -#~ msgid "- ℃" -#~ msgstr "- °C" - -#~ msgid "0.5" -#~ msgstr "0.5" - -#~ msgid "0.005" -#~ msgstr "0.005" - -#~ msgid "New Flow Dynamics Calibration" -#~ msgstr "Nova Calibração de Dinâmica de Fluxo" From 50f62b68543e72bef59900f725dcd6322774190d Mon Sep 17 00:00:00 2001 From: anselor Date: Sun, 26 May 2024 01:29:49 -0400 Subject: [PATCH 44/66] Removes check to disable nozzle override from Bambu Studio. (#5459) Show full nozzle diameter --- src/slic3r/GUI/SelectMachine.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/SelectMachine.cpp b/src/slic3r/GUI/SelectMachine.cpp index 08a9cdd96c..1043037144 100644 --- a/src/slic3r/GUI/SelectMachine.cpp +++ b/src/slic3r/GUI/SelectMachine.cpp @@ -2335,7 +2335,7 @@ bool SelectMachineDialog::is_same_nozzle_diameters(std::string& tag_nozzle_type, } //nozzle_type = preset_nozzle_type; - nozzle_diameter = wxString::Format("%.1f", preset_nozzle_diameters).ToStdString(); + nozzle_diameter = wxString::Format("%.2f", preset_nozzle_diameters).ToStdString(); return is_same_nozzle_diameters; } @@ -2573,10 +2573,9 @@ void SelectMachineDialog::on_ok_btn(wxCommandEvent &event) if (!obj_->nozzle_type.empty() && (m_print_type == PrintFromType::FROM_NORMAL)) { if (!is_same_nozzle_diameters(tag_nozzle_type, nozzle_diameter)) { has_slice_warnings = true; - is_printing_block = true; wxString nozzle_in_preset = wxString::Format(_L("nozzle in preset: %s %s"),nozzle_diameter, ""); - wxString nozzle_in_printer = wxString::Format(_L("nozzle memorized: %.1f %s"), obj_->nozzle_diameter, ""); + wxString nozzle_in_printer = wxString::Format(_L("nozzle memorized: %.2f %s"), obj_->nozzle_diameter, ""); confirm_text.push_back(ConfirmBeforeSendInfo(_L("Your nozzle diameter in sliced file is not consistent with memorized nozzle. If you changed your nozzle lately, please go to Device > Printer Parts to change settings.") + "\n " + nozzle_in_preset From a1b4e0ce55f31f4095268f8fbc4ab47439c97a25 Mon Sep 17 00:00:00 2001 From: anselor Date: Sun, 26 May 2024 01:30:51 -0400 Subject: [PATCH 45/66] Added additional filament vendors. (#5461) Added Anker printers to filament presets dialog. Added helper to generate formatted strings for dialog from profile JSON files. --- scripts/generate_presets_vendors.py | 150 +++++++++++++++++++++++++ src/slic3r/GUI/CreatePresetsDialog.cpp | 56 ++++++--- 2 files changed, 190 insertions(+), 16 deletions(-) create mode 100644 scripts/generate_presets_vendors.py diff --git a/scripts/generate_presets_vendors.py b/scripts/generate_presets_vendors.py new file mode 100644 index 0000000000..c70177632a --- /dev/null +++ b/scripts/generate_presets_vendors.py @@ -0,0 +1,150 @@ +# helps manage the static list of vendor names in src/slic3r/GUI/CreatePresetsDialog.cpp + +import json +from pathlib import Path +from typing import Dict, List + + +scripts_dir = Path(__file__).resolve().parent +print(f'Scripts dir: {scripts_dir}') +root_dir = scripts_dir.parent +profiles_dir = root_dir / 'resources' / 'profiles' + +printers: Dict[str, List[str]] = {} + +# generates the printer vendor list +print(f'Looking in {profiles_dir.resolve()}') +for entry in profiles_dir.glob('*.json'): + if entry.is_file(): + entry_info = json.loads(entry.read_text()) + vendor_name = entry_info.get('name', None) + if vendor_name: + models = [machine.get('name', None) for machine in entry_info.get('machine_model_list', []) if machine.get('name', None)] + printers[vendor_name] = models + +vendor_names = [f'"{vendor_name}",' for vendor_name in sorted(printers.keys(), key=str.casefold)] +vend_col_width = len(max(vendor_names, key=len)) +vendors_formatted = ' {' + '\n '.join(' '.join(f"{vendor_name:{vend_col_width}}" for vendor_name in vendor_names[i:i+5]) for i in range(0, len(vendor_names), 5)).rstrip()[:-1] + '}' +print(vendors_formatted) + +# generates the printer model map +models_formatted = ' {' +models_indent = len(models_formatted) + vend_col_width + 2 +for vendor_name in sorted(printers.keys(), key=str.casefold): + vendor_formatted = f'"{vendor_name}",' + models_formatted += f'{{{vendor_formatted:{vend_col_width}}{{' + + model_names = printers[vendor_name] + model_names_formatted = [f'"{model_name}",' for model_name in model_names] + model_col_width = len(max(model_names_formatted, key=len)) + model_names_str = ('\n' + ' ' * models_indent).join(' '.join(f"{model_name:{model_col_width}}" for model_name in model_names_formatted[i:i+5]) for i in range(0, len(model_names), 5)).rstrip()[:-1] + '}' + + models_formatted += model_names_str + + models_formatted += '},\n ' + +models_formatted = models_formatted.rstrip()[:-1] +print(models_formatted) + + +# Generate Filament Vendors +filament_vendors = [ + '3Dgenius', + '3DJake', + '3DXTECH', + '3D BEST-Q', + '3D Hero', + '3D-Fuel', + 'Aceaddity', + 'AddNorth', + 'Amazon Basics', + 'AMOLEN', + 'Ankermake', + 'Anycubic', + 'Atomic', + 'AzureFilm', + 'BASF', + 'Bblife', + 'BCN3D', + 'Beyond Plastic', + 'California Filament', + 'Capricorn', + 'CC3D', + 'colorFabb', + 'Comgrow', + 'Cookiecad', + 'Creality', + 'Das Filament', + 'DO3D', + 'DOW', + 'DSM', + 'Duramic', + 'ELEGOO', + 'Eryone', + 'Essentium', + 'eSUN', + 'Extrudr', + 'Fiberforce', + 'Fiberlogy', + 'FilaCube', + 'Filamentive', + 'Fillamentum', + 'FLASHFORGE', + 'Formfortura', + 'Francofil', + 'GEEETECH', + 'Giantarm', + 'Gizmo Dorks', + 'GreenGate3D', + 'HATCHBOX', + 'Hello3D', + 'IC3D', + 'IEMAI', + 'IIID Max', + 'INLAND', + 'iProspect', + 'iSANMATE', + 'Justmaker', + 'Keene Village Plastics', + 'Kexcelled', + 'MakerBot', + 'MatterHackers', + 'MIKA3D', + 'NinjaTek', + 'Nobufil', + 'Novamaker', + 'OVERTURE', + 'OVVNYXE', + 'Polymaker', + 'Priline', + 'Printed Solid', + 'Protopasta', + 'Prusament', + 'Push Plastic', + 'R3D', + 'Re-pet3D', + 'Recreus', + 'Regen', + 'Sain SMART', + 'SliceWorx', + 'Snapmaker', + 'SnoLabs', + 'Spectrum', + 'SUNLU', + 'TTYT3D', + 'UltiMaker', + 'Verbatim', + 'VO3D', + 'Voxelab', + 'YOOPAI', + 'Yousu', + 'Ziro', + 'Zyltech', + ] + +filament_vendors_formatted = [f'"{vendor_name}",' for vendor_name in filament_vendors] +fil_col_width = len(max(filament_vendors_formatted, key=len)) +filaments_formatted = ' {' +filament_indent = len(filaments_formatted) +filaments_formatted += ('\n' + ' ' * filament_indent).join(' '.join(f'{vendor_name:{fil_col_width}}' for vendor_name in filament_vendors_formatted[i:i+5]) for i in range(0, len(filament_vendors), 5)).rstrip()[:-1] + '};' +print(filaments_formatted) \ No newline at end of file diff --git a/src/slic3r/GUI/CreatePresetsDialog.cpp b/src/slic3r/GUI/CreatePresetsDialog.cpp index 5e6b863217..d1ef2d911c 100644 --- a/src/slic3r/GUI/CreatePresetsDialog.cpp +++ b/src/slic3r/GUI/CreatePresetsDialog.cpp @@ -37,22 +37,44 @@ namespace Slic3r { namespace GUI { -static const std::vector filament_vendors = {"Polymaker", "OVERTURE", "Kexcelled", "HATCHBOX", "eSUN", "SUNLU", "Prusament", "Creality", "Protopasta", - "Anycubic", "Basf", "ELEGOO", "INLAND", "FLASHFORGE", "AMOLEN", "MIKA3D", "3DXTECH", "Duramic", - "Priline", "Eryone", "3Dgunius", "Novamaker", "Justmaker", "Giantarm", "iProspect"}; - -static const std::vector filament_types = {"PLA", "PLA+", "PLA Tough", "PETG", "ABS", "ASA", "FLEX", "HIPS", "PA", "PACF", - "NYLON", "PVA", "PC", "PCABS", "PCTG", "PCCF", "PP", "PEI", "PET", "PETG", - "PETGCF", "PTBA", "PTBA90A", "PEEK", "TPU93A", "TPU75D", "TPU", "TPU92A", "TPU98A", "Misc", +static const std::vector filament_vendors = + {"3Dgenius", "3DJake", "3DXTECH", "3D BEST-Q", "3D Hero", + "3D-Fuel", "Aceaddity", "AddNorth", "Amazon Basics", "AMOLEN", + "Ankermake", "Anycubic", "Atomic", "AzureFilm", "BASF", + "Bblife", "BCN3D", "Beyond Plastic", "California Filament", "Capricorn", + "CC3D", "colorFabb", "Comgrow", "Cookiecad", "Creality", + "Das Filament", "DO3D", "DOW", "DSM", "Duramic", + "ELEGOO", "Eryone", "Essentium", "eSUN", "Extrudr", + "Fiberforce", "Fiberlogy", "FilaCube", "Filamentive", "Fillamentum", + "FLASHFORGE", "Formfortura", "Francofil", "GEEETECH", "Giantarm", + "Gizmo Dorks", "GreenGate3D", "HATCHBOX", "Hello3D", "IC3D", + "IEMAI", "IIID Max", "INLAND", "iProspect", "iSANMATE", + "Justmaker", "Keene Village Plastics", "Kexcelled", "MakerBot", "MatterHackers", + "MIKA3D", "NinjaTek", "Nobufil", "Novamaker", "OVERTURE", + "OVVNYXE", "Polymaker", "Priline", "Printed Solid", "Protopasta", + "Prusament", "Push Plastic", "R3D", "Re-pet3D", "Recreus", + "Regen", "Sain SMART", "SliceWorx", "Snapmaker", "SnoLabs", + "Spectrum", "SUNLU", "TTYT3D", "UltiMaker", "Verbatim", + "VO3D", "Voxelab", "YOOPAI", "Yousu", "Ziro", + "Zyltech"}; + +static const std::vector filament_types = {"PLA", "PLA+", "PLA Tough", "PETG", "ABS", "ASA", "FLEX", "HIPS", "PA", "PACF", + "NYLON", "PVA", "PC", "PCABS", "PCTG", "PCCF", "PHA", "PP", "PEI", "PET", "PETG", + "PETGCF", "PTBA", "PTBA90A", "PEEK", "TPU93A", "TPU75D", "TPU", "TPU92A", "TPU98A", "Misc", "TPE", "GLAZE", "Nylon", "CPE", "METAL", "ABST", "Carbon Fiber"}; -static const std::vector printer_vendors = {"Anycubic", "Artillery", "BIBO", "BIQU", "Creality ENDER", "Creality CR", "Creality SERMOON", - "FLSun", "gCreate", "Geeetech", "INAT", "Infinity3D", "Jubilee", "LNL3D", - "LulzBot", "MakerGear", "Original Prusa", "Papapiu", "Print4Taste", "RatRig", "Rigid3D", - "Snapmaker", "Sovol", "TriLAB", "Trimaker", "Ultimaker", "Voron", "Zonestar"}; +static const std::vector printer_vendors = + {"Anker", "Anycubic", "Artillery", "Bambulab", "BIQU", + "Comgrow", "Creality", "Custom Printer", "Elegoo", "Flashforge", + "FLSun", "FlyingBear", "Folgertech", "InfiMech", "Kingroon", + "Orca Arena Printer", "Peopoly", "Prusa", "Qidi", "Raise3D", + "RatRig", "SecKit", "Snapmaker", "Sovol", "Tronxy", + "TwoTrees", "UltiMaker", "Vivedino", "Voron", "Voxelab", + "Vzbot", "Wanhao"}; static const std::unordered_map> printer_model_map = - {{"Anycubic", {"Kossel Linear Plus", "Kossel Pulley(Linear)", "Mega Zero", "i3 Mega", "Predator"}}, + {{"Anker", {"Anker M5", "Anker M5 All-Metal Hot End", "Anker M5C"}}, + {"Anycubic", {"Kossel Linear Plus", "Kossel Pulley(Linear)", "Mega Zero", "i3 Mega", "Predator"}}, {"Artillery", {"sidewinder X1", "Genius", "Hornet"}}, {"BIBO", {"BIBO2 Touch"}}, {"BIQU", {"BX"}}, @@ -93,10 +115,10 @@ static const std::unordered_map> printer_m "Zero 120mm3", "Switchwire"}}, {"Zonestar", {"Z5", "Z6", "Z5x", "Z8", "Z9"}}}; -static std::vector nozzle_diameter_vec = {"0.4", "0.2", "0.25", "0.3", "0.35", "0.5", "0.6", "0.75", "0.8", "1.0", "1.2"}; -static std::unordered_map nozzle_diameter_map = {{"0.2", 0.2}, {"0.25", 0.25}, {"0.3", 0.3}, {"0.35", 0.35}, - {"0.4", 0.4}, {"0.5", 0.5}, {"0.6", 0.6}, {"0.75", 0.75}, - {"0.8", 0.8}, {"1.0", 1.0}, {"1.2", 1.2}}; +static std::vector nozzle_diameter_vec = {"0.4", "0.15", "0.2", "0.25", "0.3", "0.35", "0.5", "0.6", "0.75", "0.8", "1.0", "1.2"}; +static std::unordered_map nozzle_diameter_map = {{"0.15", 0.15}, {"0.2", 0.2}, {"0.25", 0.25}, {"0.3", 0.3}, + {"0.35", 0.35}, {"0.4", 0.4}, {"0.5", 0.5}, {"0.6", 0.6}, + {"0.75", 0.75}, {"0.8", 0.8}, {"1.0", 1.0}, {"1.2", 1.2}}; static std::set cannot_input_key = {9, 10, 13, 33, 35, 36, 37, 38, 40, 41, 42, 44, 46, 47, 59, 60, 62, 63, 64, 92, 94, 95, 124, 126}; @@ -673,6 +695,7 @@ wxBoxSizer *CreateFilamentPresetDialog::create_vendor_item() for (const wxString &vendor : filament_vendors) { choices.push_back(vendor); } + choices.Sort(); wxBoxSizer *vendor_sizer = new wxBoxSizer(wxHORIZONTAL); m_filament_vendor_combobox = new ComboBox(this, wxID_ANY, wxEmptyString, wxDefaultPosition, NAME_OPTION_COMBOBOX_SIZE, 0, nullptr, wxCB_READONLY); @@ -754,6 +777,7 @@ wxBoxSizer *CreateFilamentPresetDialog::create_type_item() for (const wxString &filament : m_system_filament_types_set) { filament_type.Add(filament); } + filament_type.Sort(); wxBoxSizer *comboBoxSizer = new wxBoxSizer(wxVERTICAL); m_filament_type_combobox = new ComboBox(this, wxID_ANY, wxEmptyString, wxDefaultPosition, NAME_OPTION_COMBOBOX_SIZE, 0, nullptr, wxCB_READONLY); From 0a4fcf4e2b672569605a88c82934a985be2215d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olcay=20=C3=96REN?= <33813227+olcayoren@users.noreply.github.com> Date: Tue, 28 May 2024 17:39:58 +0300 Subject: [PATCH 46/66] Turkish words were edited in the text.js file. (#5473) * Update OrcaSlicer_tr.po - TURKISH translation update * Update OrcaSlicer_tr.po Update OrcaSlicer_tr.po - TURKISH translation update * Update OrcaSlicer_tr.po - TURKISH translation update * Update OrcaSlicer_tr.po - TURKISH translation update * Valment filament added. * Update OrcaSlicer_tr.po - TURKISH translation update * Turkish words were edited in the text.js file. --- localization/i18n/tr/OrcaSlicer_tr.po | 4 ++-- resources/web/data/text.js | 24 +++++++++++++++++++++--- scripts/generate_presets_vendors.py | 1 + src/slic3r/GUI/CreatePresetsDialog.cpp | 6 +++--- 4 files changed, 27 insertions(+), 8 deletions(-) diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index cb68d5d5c3..9a975d7aeb 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-24 23:26+0800\n" -"PO-Revision-Date: 2024-05-25 04:32+0300\n" +"PO-Revision-Date: 2024-05-26 23:42+0300\n" "Last-Translator: Olcay ÖREN\n" "Language-Team: \n" "Language: tr\n" @@ -11459,7 +11459,7 @@ msgstr "" "potansiyelini en aza indirmek için bu değeri ~%10-15’e ayarlayın." msgid "Top/Bottom solid infill/wall overlap" -msgstr "Üst/Alt katı dolgu/duvar örtüşmesi" +msgstr "Üst/Alt katı dolgu/Duvar örtüşmesi" #, no-c-format, no-boost-format msgid "" diff --git a/resources/web/data/text.js b/resources/web/data/text.js index d05ab478de..853a293a36 100644 --- a/resources/web/data/text.js +++ b/resources/web/data/text.js @@ -1057,9 +1057,27 @@ var LangText = { t89: "Dosyayı içeren klasörü açınız", t90: "3D Model", t91: "3D modelleri indirin", - t92: "Bambu Noel Kabini", - t93: "Yazıcı Bağlantısı", - t94: "Cihazı görüntülemek için lütfen yazıcı bağlantınızı kurun.", + t92: "Oluşturan", + t93: "Değiştiren", + t94: "Paylaşan", + t95: "Model Bilgileri", + t96: "Aksesuarlar", + t97: "Profil Bilgisi", + t98: "Model adı", + t100: "Model açıklaması", + t101: "Malzeme Listesi", + t102: "Montaj Kılavuzu", + t103: "Diğer", + t104: "Profil ismi", + t105: "Profil Yazarı", + t106: "Profil açıklaması", + t107: "Çevrimiçi Modeller", + t108: "DAHA FAZLA", + t109: "Sistem Filamentleri", + t110: "Özel Filamentler", + t111: "Yeni Oluştur", + t112: "Programa Katılın", + t113: "Tercihinizi istediğiniz zaman değiştirebilirsiniz.", orca1: "Proje Bilgilerini Düzenle", orca2: "model bilgisi yok", }, diff --git a/scripts/generate_presets_vendors.py b/scripts/generate_presets_vendors.py index c70177632a..d28dddef14 100644 --- a/scripts/generate_presets_vendors.py +++ b/scripts/generate_presets_vendors.py @@ -133,6 +133,7 @@ filament_vendors = [ 'SUNLU', 'TTYT3D', 'UltiMaker', + 'Valment', 'Verbatim', 'VO3D', 'Voxelab', diff --git a/src/slic3r/GUI/CreatePresetsDialog.cpp b/src/slic3r/GUI/CreatePresetsDialog.cpp index d1ef2d911c..0bd52707dc 100644 --- a/src/slic3r/GUI/CreatePresetsDialog.cpp +++ b/src/slic3r/GUI/CreatePresetsDialog.cpp @@ -54,9 +54,9 @@ static const std::vector filament_vendors = "OVVNYXE", "Polymaker", "Priline", "Printed Solid", "Protopasta", "Prusament", "Push Plastic", "R3D", "Re-pet3D", "Recreus", "Regen", "Sain SMART", "SliceWorx", "Snapmaker", "SnoLabs", - "Spectrum", "SUNLU", "TTYT3D", "UltiMaker", "Verbatim", - "VO3D", "Voxelab", "YOOPAI", "Yousu", "Ziro", - "Zyltech"}; + "Spectrum", "SUNLU", "TTYT3D", "UltiMaker", "Valment", + "Verbatim", "VO3D", "Voxelab", "YOOPAI", "Yousu", + "Ziro", "Zyltech"}; static const std::vector filament_types = {"PLA", "PLA+", "PLA Tough", "PETG", "ABS", "ASA", "FLEX", "HIPS", "PA", "PACF", "NYLON", "PVA", "PC", "PCABS", "PCTG", "PCCF", "PHA", "PP", "PEI", "PET", "PETG", From 0b0205938d593ae1c742a25b8a221820288b66b7 Mon Sep 17 00:00:00 2001 From: cochcoder <103969142+cochcoder@users.noreply.github.com> Date: Tue, 28 May 2024 14:40:21 +0000 Subject: [PATCH 47/66] Add puase G-Code for FLSUN V400 (#5469) Add puase g-code --- resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json index 1ac0837ea2..98c26efe89 100644 --- a/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json @@ -92,8 +92,9 @@ "machine_end_gcode": "M107 T0\nM104 S0\nM104 S0 T1\nM140 S0\nG92 E0\nG91\nG1 E-1 F300\nG1 Z+0.5 F6000\nG28 \nG90 ;absolute positioning", "machine_start_gcode": "G21\nG90\nM82\nM107 T0\nM140 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer] T0\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer] T0\nG28\nG1 F3000 Z1\nG1 X-150 Y0 Z0.4\nG92 E0\nG3 X0 Y-130 I150 Z0.3 E30 F2000\nG92 E0", "layer_change_gcode": "", + "machine_pause_gcode": "PAUSE", "scan_first_layer": "0", "nozzle_type": "hardened_steel", "auxiliary_fan": "0" } - \ No newline at end of file + From aece0ce6fc10ec6b7686b1e6681da2af50d206c3 Mon Sep 17 00:00:00 2001 From: cochcoder <103969142+cochcoder@users.noreply.github.com> Date: Tue, 28 May 2024 14:50:54 +0000 Subject: [PATCH 48/66] Fix potential typo with print infill first tooltip (#5476) Fix potential typo --- 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 c122b54738..772d13f88f 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1542,7 +1542,7 @@ void PrintConfigDef::init_fff_params() def = this->add("is_infill_first",coBool); def->label = L("Print infill first"); - def->tooltip = L("Order of wall/infill. When the tickbox is unchecked the walls are printed first, which works best in most cases.\n\nPrinting walls first may help with extreme overhangs as the walls have the neighbouring infill to adhere to. However, the infill will slighly push out the printed walls where it is attached to them, resulting in a worse external surface finish. It can also cause the infill to shine through the external surfaces of the part."); + def->tooltip = L("Order of wall/infill. When the tickbox is unchecked the walls are printed first, which works best in most cases.\n\nPrinting infill first may help with extreme overhangs as the walls have the neighbouring infill to adhere to. However, the infill will slighly push out the printed walls where it is attached to them, resulting in a worse external surface finish. It can also cause the infill to shine through the external surfaces of the part."); def->category = L("Quality"); def->mode = comAdvanced; def->set_default_value(new ConfigOptionBool{false}); From 54be09c0a23b2f98c4fea3e1785751169e62b606 Mon Sep 17 00:00:00 2001 From: KrisMorr <154343071+KrisMorr@users.noreply.github.com> Date: Tue, 28 May 2024 16:51:35 +0200 Subject: [PATCH 49/66] Updated string after merged #5459 (#5479) Removes check to disable nozzle override from Bambu Studio. (#5459) Show full nozzle diameter --- localization/i18n/OrcaSlicer.pot | 298 ++++++++++---------- localization/i18n/ca/OrcaSlicer_ca.po | 4 +- localization/i18n/cs/OrcaSlicer_cs.po | 2 +- localization/i18n/de/OrcaSlicer_de.po | 4 +- localization/i18n/en/OrcaSlicer_en.po | 4 +- localization/i18n/es/OrcaSlicer_es.po | 4 +- localization/i18n/fr/OrcaSlicer_fr.po | 4 +- localization/i18n/hu/OrcaSlicer_hu.po | 4 +- localization/i18n/it/OrcaSlicer_it.po | 4 +- localization/i18n/ja/OrcaSlicer_ja.po | 4 +- localization/i18n/ko/OrcaSlicer_ko.po | 4 +- localization/i18n/nl/OrcaSlicer_nl.po | 4 +- localization/i18n/pl/OrcaSlicer_pl.po | 4 +- localization/i18n/pt_BR/OrcaSlicer_pt_BR.po | 4 +- localization/i18n/ru/OrcaSlicer_ru.po | 4 +- localization/i18n/sv/OrcaSlicer_sv.po | 4 +- localization/i18n/tr/OrcaSlicer_tr.po | 4 +- localization/i18n/uk/OrcaSlicer_uk.po | 4 +- localization/i18n/zh_CN/OrcaSlicer_zh_CN.po | 4 +- localization/i18n/zh_TW/OrcaSlicer_zh_TW.po | 2 +- 20 files changed, 185 insertions(+), 185 deletions(-) diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index 6809ea7776..2d94b81474 100644 --- a/localization/i18n/OrcaSlicer.pot +++ b/localization/i18n/OrcaSlicer.pot @@ -6766,7 +6766,7 @@ msgid "nozzle in preset: %s %s" msgstr "" #, possible-c-format, possible-boost-format -msgid "nozzle memorized: %.1f %s" +msgid "nozzle memorized: %.2f %s" msgstr "" msgid "" @@ -14080,151 +14080,151 @@ msgstr "" msgid "User cancelled." msgstr "" - -#: resources/data/hints.ini: [hint:Precise wall] -msgid "Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency?" -msgstr "" - -#: resources/data/hints.ini: [hint:Sandwich mode] -msgid "Sandwich mode\nDid you know that you can use sandwich mode (inner-outer-inner) to improve precision and layer consistency if your model doesn't have very steep overhangs?" -msgstr "" - -#: resources/data/hints.ini: [hint:Chamber temperature] -msgid "Chamber temperature\nDid you know that OrcaSlicer supports chamber temperature?" -msgstr "" - -#: resources/data/hints.ini: [hint:Calibration] -msgid "Calibration\nDid you know that calibrating your printer can do wonders? Check out our beloved calibration solution in OrcaSlicer." -msgstr "" - -#: resources/data/hints.ini: [hint:Auxiliary fan] -msgid "Auxiliary fan\nDid you know that OrcaSlicer supports Auxiliary part cooling fan?" -msgstr "" - -#: resources/data/hints.ini: [hint:Air filtration] -msgid "Air filtration/Exhaust Fan\nDid you know that OrcaSlicer can support Air filtration/Exhaust Fan?" -msgstr "" - -#: resources/data/hints.ini: [hint:G-code window] -msgid "G-code window\nYou can turn on/off the G-code window by pressing the C key." -msgstr "" - -#: resources/data/hints.ini: [hint:Switch workspaces] -msgid "Switch workspaces\nYou can switch between Prepare and Preview workspaces by pressing the Tab key." -msgstr "" - -#: resources/data/hints.ini: [hint:How to use keyboard shortcuts] -msgid "How to use keyboard shortcuts\nDid you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations." -msgstr "" - -#: resources/data/hints.ini: [hint:Reverse on odd] -msgid "Reverse on odd\nDid you know that Reverse on odd feature can significantly improve the surface quality of your overhangs?" -msgstr "" - -#: resources/data/hints.ini: [hint:Cut Tool] -msgid "Cut Tool\nDid you know that you can cut a model at any angle and position with the cutting tool?" -msgstr "" - -#: resources/data/hints.ini: [hint:Fix Model] -msgid "Fix Model\nDid you know that you can fix a corrupted 3D model to avoid a lot of slicing problems on the Windows system?" -msgstr "" - -#: resources/data/hints.ini: [hint:Timelapse] -msgid "Timelapse\nDid you know that you can generate a timelapse video during each print?" -msgstr "" - -#: resources/data/hints.ini: [hint:Auto-Arrange] -msgid "Auto-Arrange\nDid you know that you can auto-arrange all objects in your project?" -msgstr "" - -#: resources/data/hints.ini: [hint:Auto-Orient] -msgid "Auto-Orient\nDid you know that you can rotate objects to an optimal orientation for printing by a simple click?" -msgstr "" - -#: resources/data/hints.ini: [hint:Lay on Face] -msgid "Lay on Face\nDid you know that you can quickly orient a model so that one of its faces sits on the print bed? Select the \"Place on face\" function or press the F key." -msgstr "" - -#: resources/data/hints.ini: [hint:Object List] -msgid "Object List\nDid you know that you can view all objects/parts in a list and change settings for each object/part?" -msgstr "" - -#: resources/data/hints.ini: [hint:Search Functionality] -msgid "Search Functionality\nDid you know that you use the Search tool to quickly find a specific Orca Slicer setting?" -msgstr "" - -#: resources/data/hints.ini: [hint:Simplify Model] -msgid "Simplify Model\nDid you know that you can reduce the number of triangles in a mesh using the Simplify mesh feature? Right-click the model and select Simplify model." -msgstr "" - -#: resources/data/hints.ini: [hint:Slicing Parameter Table] -msgid "Slicing Parameter Table\nDid you know that you can view all objects/parts on a table and change settings for each object/part?" -msgstr "" - -#: resources/data/hints.ini: [hint:Split to Objects/Parts] -msgid "Split to Objects/Parts\nDid you know that you can split a big object into small ones for easy colorizing or printing?" -msgstr "" - -#: resources/data/hints.ini: [hint:Subtract a Part] -msgid "Subtract a Part\nDid you know that you can subtract one mesh from another using the Negative part modifier? That way you can, for example, create easily resizable holes directly in Orca Slicer." -msgstr "" - -#: resources/data/hints.ini: [hint:STEP] -msgid "STEP\nDid you know that you can improve your print quality by slicing a STEP file instead of an STL?\nOrca Slicer supports slicing STEP files, providing smoother results than a lower resolution STL. Give it a try!" -msgstr "" - -#: resources/data/hints.ini: [hint:Z seam location] -msgid "Z seam location\nDid you know that you can customize the location of the Z seam, and even paint it on your print, to have it in a less visible location? This improves the overall look of your model. Check it out!" -msgstr "" - -#: resources/data/hints.ini: [hint:Fine-tuning for flow rate] -msgid "Fine-tuning for flow rate\nDid you know that flow rate can be fine-tuned for even better-looking prints? Depending on the material, you can improve the overall finish of the printed model by doing some fine-tuning." -msgstr "" - -#: resources/data/hints.ini: [hint:Split your prints into plates] -msgid "Split your prints into plates\nDid you know that you can split a model that has a lot of parts into individual plates ready to print? This will simplify the process of keeping track of all the parts." -msgstr "" - -#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer Height] -msgid "Speed up your print with Adaptive Layer Height\nDid you know that you can print a model even faster, by using the Adaptive Layer Height option? Check it out!" -msgstr "" - -#: resources/data/hints.ini: [hint:Support painting] -msgid "Support painting\nDid you know that you can paint the location of your supports? This feature makes it easy to place the support material only on the sections of the model that actually need it." -msgstr "" - -#: resources/data/hints.ini: [hint:Different types of supports] -msgid "Different types of supports\nDid you know that you can choose from multiple types of supports? Tree supports work great for organic models, while saving filament and improving print speed. Check them out!" -msgstr "" - -#: resources/data/hints.ini: [hint:Printing Silk Filament] -msgid "Printing Silk Filament\nDid you know that Silk filament needs special consideration to print it successfully? Higher temperature and lower speed are always recommended for the best results." -msgstr "" - -#: resources/data/hints.ini: [hint:Brim for better adhesion] -msgid "Brim for better adhesion\nDid you know that when printing models have a small contact interface with the printing surface, it's recommended to use a brim?" -msgstr "" - -#: resources/data/hints.ini: [hint:Set parameters for multiple objects] -msgid "Set parameters for multiple objects\nDid you know that you can set slicing parameters for all selected objects at one time?" -msgstr "" - -#: resources/data/hints.ini: [hint:Stack objects] -msgid "Stack objects\nDid you know that you can stack objects as a whole one?" -msgstr "" - -#: resources/data/hints.ini: [hint:Flush into support/objects/infill] -msgid "Flush into support/objects/infill\nDid you know that you can save the wasted filament by flushing them into support/objects/infill during filament change?" -msgstr "" - -#: resources/data/hints.ini: [hint:Improve strength] -msgid "Improve strength\nDid you know that you can use more wall loops and higher sparse infill density to improve the strength of the model?" -msgstr "" - -#: resources/data/hints.ini: [hint:When need to print with the printer door opened] -msgid "When need to print with the printer door opened\nDid you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature. More info about this in the Wiki." -msgstr "" - -#: resources/data/hints.ini: [hint:Avoid warping] -msgid "Avoid warping\nDid you know that when printing materials that are prone to warping such as ABS, appropriately increasing the heatbed temperature can reduce the probability of warping." -msgstr "" + +#: resources/data/hints.ini: [hint:Precise wall] +msgid "Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency?" +msgstr "" + +#: resources/data/hints.ini: [hint:Sandwich mode] +msgid "Sandwich mode\nDid you know that you can use sandwich mode (inner-outer-inner) to improve precision and layer consistency if your model doesn't have very steep overhangs?" +msgstr "" + +#: resources/data/hints.ini: [hint:Chamber temperature] +msgid "Chamber temperature\nDid you know that OrcaSlicer supports chamber temperature?" +msgstr "" + +#: resources/data/hints.ini: [hint:Calibration] +msgid "Calibration\nDid you know that calibrating your printer can do wonders? Check out our beloved calibration solution in OrcaSlicer." +msgstr "" + +#: resources/data/hints.ini: [hint:Auxiliary fan] +msgid "Auxiliary fan\nDid you know that OrcaSlicer supports Auxiliary part cooling fan?" +msgstr "" + +#: resources/data/hints.ini: [hint:Air filtration] +msgid "Air filtration/Exhaust Fan\nDid you know that OrcaSlicer can support Air filtration/Exhaust Fan?" +msgstr "" + +#: resources/data/hints.ini: [hint:G-code window] +msgid "G-code window\nYou can turn on/off the G-code window by pressing the C key." +msgstr "" + +#: resources/data/hints.ini: [hint:Switch workspaces] +msgid "Switch workspaces\nYou can switch between Prepare and Preview workspaces by pressing the Tab key." +msgstr "" + +#: resources/data/hints.ini: [hint:How to use keyboard shortcuts] +msgid "How to use keyboard shortcuts\nDid you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations." +msgstr "" + +#: resources/data/hints.ini: [hint:Reverse on odd] +msgid "Reverse on odd\nDid you know that Reverse on odd feature can significantly improve the surface quality of your overhangs?" +msgstr "" + +#: resources/data/hints.ini: [hint:Cut Tool] +msgid "Cut Tool\nDid you know that you can cut a model at any angle and position with the cutting tool?" +msgstr "" + +#: resources/data/hints.ini: [hint:Fix Model] +msgid "Fix Model\nDid you know that you can fix a corrupted 3D model to avoid a lot of slicing problems on the Windows system?" +msgstr "" + +#: resources/data/hints.ini: [hint:Timelapse] +msgid "Timelapse\nDid you know that you can generate a timelapse video during each print?" +msgstr "" + +#: resources/data/hints.ini: [hint:Auto-Arrange] +msgid "Auto-Arrange\nDid you know that you can auto-arrange all objects in your project?" +msgstr "" + +#: resources/data/hints.ini: [hint:Auto-Orient] +msgid "Auto-Orient\nDid you know that you can rotate objects to an optimal orientation for printing by a simple click?" +msgstr "" + +#: resources/data/hints.ini: [hint:Lay on Face] +msgid "Lay on Face\nDid you know that you can quickly orient a model so that one of its faces sits on the print bed? Select the \"Place on face\" function or press the F key." +msgstr "" + +#: resources/data/hints.ini: [hint:Object List] +msgid "Object List\nDid you know that you can view all objects/parts in a list and change settings for each object/part?" +msgstr "" + +#: resources/data/hints.ini: [hint:Search Functionality] +msgid "Search Functionality\nDid you know that you use the Search tool to quickly find a specific Orca Slicer setting?" +msgstr "" + +#: resources/data/hints.ini: [hint:Simplify Model] +msgid "Simplify Model\nDid you know that you can reduce the number of triangles in a mesh using the Simplify mesh feature? Right-click the model and select Simplify model." +msgstr "" + +#: resources/data/hints.ini: [hint:Slicing Parameter Table] +msgid "Slicing Parameter Table\nDid you know that you can view all objects/parts on a table and change settings for each object/part?" +msgstr "" + +#: resources/data/hints.ini: [hint:Split to Objects/Parts] +msgid "Split to Objects/Parts\nDid you know that you can split a big object into small ones for easy colorizing or printing?" +msgstr "" + +#: resources/data/hints.ini: [hint:Subtract a Part] +msgid "Subtract a Part\nDid you know that you can subtract one mesh from another using the Negative part modifier? That way you can, for example, create easily resizable holes directly in Orca Slicer." +msgstr "" + +#: resources/data/hints.ini: [hint:STEP] +msgid "STEP\nDid you know that you can improve your print quality by slicing a STEP file instead of an STL?\nOrca Slicer supports slicing STEP files, providing smoother results than a lower resolution STL. Give it a try!" +msgstr "" + +#: resources/data/hints.ini: [hint:Z seam location] +msgid "Z seam location\nDid you know that you can customize the location of the Z seam, and even paint it on your print, to have it in a less visible location? This improves the overall look of your model. Check it out!" +msgstr "" + +#: resources/data/hints.ini: [hint:Fine-tuning for flow rate] +msgid "Fine-tuning for flow rate\nDid you know that flow rate can be fine-tuned for even better-looking prints? Depending on the material, you can improve the overall finish of the printed model by doing some fine-tuning." +msgstr "" + +#: resources/data/hints.ini: [hint:Split your prints into plates] +msgid "Split your prints into plates\nDid you know that you can split a model that has a lot of parts into individual plates ready to print? This will simplify the process of keeping track of all the parts." +msgstr "" + +#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer Height] +msgid "Speed up your print with Adaptive Layer Height\nDid you know that you can print a model even faster, by using the Adaptive Layer Height option? Check it out!" +msgstr "" + +#: resources/data/hints.ini: [hint:Support painting] +msgid "Support painting\nDid you know that you can paint the location of your supports? This feature makes it easy to place the support material only on the sections of the model that actually need it." +msgstr "" + +#: resources/data/hints.ini: [hint:Different types of supports] +msgid "Different types of supports\nDid you know that you can choose from multiple types of supports? Tree supports work great for organic models, while saving filament and improving print speed. Check them out!" +msgstr "" + +#: resources/data/hints.ini: [hint:Printing Silk Filament] +msgid "Printing Silk Filament\nDid you know that Silk filament needs special consideration to print it successfully? Higher temperature and lower speed are always recommended for the best results." +msgstr "" + +#: resources/data/hints.ini: [hint:Brim for better adhesion] +msgid "Brim for better adhesion\nDid you know that when printing models have a small contact interface with the printing surface, it's recommended to use a brim?" +msgstr "" + +#: resources/data/hints.ini: [hint:Set parameters for multiple objects] +msgid "Set parameters for multiple objects\nDid you know that you can set slicing parameters for all selected objects at one time?" +msgstr "" + +#: resources/data/hints.ini: [hint:Stack objects] +msgid "Stack objects\nDid you know that you can stack objects as a whole one?" +msgstr "" + +#: resources/data/hints.ini: [hint:Flush into support/objects/infill] +msgid "Flush into support/objects/infill\nDid you know that you can save the wasted filament by flushing them into support/objects/infill during filament change?" +msgstr "" + +#: resources/data/hints.ini: [hint:Improve strength] +msgid "Improve strength\nDid you know that you can use more wall loops and higher sparse infill density to improve the strength of the model?" +msgstr "" + +#: resources/data/hints.ini: [hint:When need to print with the printer door opened] +msgid "When need to print with the printer door opened\nDid you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature. More info about this in the Wiki." +msgstr "" + +#: resources/data/hints.ini: [hint:Avoid warping] +msgid "Avoid warping\nDid you know that when printing materials that are prone to warping such as ABS, appropriately increasing the heatbed temperature can reduce the probability of warping." +msgstr "" diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index 2bd9428e68..dce3c24f71 100644 --- a/localization/i18n/ca/OrcaSlicer_ca.po +++ b/localization/i18n/ca/OrcaSlicer_ca.po @@ -7332,8 +7332,8 @@ msgid "nozzle in preset: %s %s" msgstr "broquet del perfil: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "broquet memoritzat: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "broquet memoritzat: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index 4d2cec4120..aadea09b23 100644 --- a/localization/i18n/cs/OrcaSlicer_cs.po +++ b/localization/i18n/cs/OrcaSlicer_cs.po @@ -7147,7 +7147,7 @@ msgid "nozzle in preset: %s %s" msgstr "" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" +msgid "nozzle memorized: %.2f %s" msgstr "" msgid "" diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 947ad5f689..c156f4f2ca 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -7394,8 +7394,8 @@ msgid "nozzle in preset: %s %s" msgstr "Düse im Profil: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "Düse gemerkt: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "Düse gemerkt: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index 41e7024201..f0715231aa 100644 --- a/localization/i18n/en/OrcaSlicer_en.po +++ b/localization/i18n/en/OrcaSlicer_en.po @@ -7102,8 +7102,8 @@ msgid "nozzle in preset: %s %s" msgstr "nozzle in preset: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "nozzle memorized: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "nozzle memorized: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index 0dee8e7c7f..4ce653b20d 100644 --- a/localization/i18n/es/OrcaSlicer_es.po +++ b/localization/i18n/es/OrcaSlicer_es.po @@ -7328,8 +7328,8 @@ msgid "nozzle in preset: %s %s" msgstr "Boquilla preestablecida: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "Boquilla memorizada: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "Boquilla memorizada: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index 534ca37bdc..9db43bbec4 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -7401,8 +7401,8 @@ msgid "nozzle in preset: %s %s" msgstr "buse dans le préréglage : %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "buse mémorisée : %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "buse mémorisée : %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index 4294c40416..3fedb515cb 100644 --- a/localization/i18n/hu/OrcaSlicer_hu.po +++ b/localization/i18n/hu/OrcaSlicer_hu.po @@ -7164,8 +7164,8 @@ msgid "nozzle in preset: %s %s" msgstr "fúvóka a beállításban: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "eltárolt fúvóka: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "eltárolt fúvóka: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index d47812bcd1..2f2eb88f2f 100644 --- a/localization/i18n/it/OrcaSlicer_it.po +++ b/localization/i18n/it/OrcaSlicer_it.po @@ -7305,8 +7305,8 @@ msgid "nozzle in preset: %s %s" msgstr "Ugello in preset: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "ugello memorizzato: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "ugello memorizzato: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index 09bf7d8df3..2a1bf6326b 100644 --- a/localization/i18n/ja/OrcaSlicer_ja.po +++ b/localization/i18n/ja/OrcaSlicer_ja.po @@ -7047,8 +7047,8 @@ msgid "nozzle in preset: %s %s" msgstr "nozzle in preset: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "nozzle memorized: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "nozzle memorized: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index 0f3476e6e3..f92765a8dd 100644 --- a/localization/i18n/ko/OrcaSlicer_ko.po +++ b/localization/i18n/ko/OrcaSlicer_ko.po @@ -7113,8 +7113,8 @@ msgid "nozzle in preset: %s %s" msgstr "미리 설정된 노즐: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "기억된 노즐: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "기억된 노즐: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index 36b6496dc4..7bf84e929a 100644 --- a/localization/i18n/nl/OrcaSlicer_nl.po +++ b/localization/i18n/nl/OrcaSlicer_nl.po @@ -7233,8 +7233,8 @@ msgid "nozzle in preset: %s %s" msgstr "mondstuk in voorinstelling: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "mondstuk onthouden: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "mondstuk onthouden: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index 4382de12e7..aaef5b24e2 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -7315,8 +7315,8 @@ msgid "nozzle in preset: %s %s" msgstr "dysza w profilu: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "zapamiętana dysza: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "zapamiętana dysza: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index 452d738084..93e33451dd 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -6513,8 +6513,8 @@ msgid "nozzle in preset: %s %s" msgstr "bico no perfil: %s %s" #, possible-c-format, possible-boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "bico memorizado: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "bico memorizado: %.2f %s" msgid "Your nozzle diameter in sliced file is not consistent with memorized nozzle. If you changed your nozzle lately, please go to Device > Printer Parts to change settings." msgstr "Seu diâmetro de bico no arquivo fatiado não é consistente com o bico memorizado. Se você mudou seu bico recentemente, vá para Dispositivo > Partes da impressora para alterar as configurações." diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index 945b8d9505..bea7ccdb2e 100644 --- a/localization/i18n/ru/OrcaSlicer_ru.po +++ b/localization/i18n/ru/OrcaSlicer_ru.po @@ -7328,8 +7328,8 @@ msgid "nozzle in preset: %s %s" msgstr "сопло в профиле: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "сопло сохранённое: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "сопло сохранённое: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index c590d533e5..7ceecd6dad 100644 --- a/localization/i18n/sv/OrcaSlicer_sv.po +++ b/localization/i18n/sv/OrcaSlicer_sv.po @@ -7118,8 +7118,8 @@ msgid "nozzle in preset: %s %s" msgstr "nozzel i inställning: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "nozzel memorerat: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "nozzel memorerat: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index 9a975d7aeb..0f9ceea2af 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -7229,8 +7229,8 @@ msgid "nozzle in preset: %s %s" msgstr "önceden ayarlanmış nozul: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "hafızaya alınan nozul: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "hafızaya alınan nozul: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index f62b9708fa..40cad0fe6d 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -7216,8 +7216,8 @@ msgid "nozzle in preset: %s %s" msgstr "сопло в налаштуваннях: %s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "запам’ятоване сопло: %.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "запам’ятоване сопло: %.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index 6067c6116c..e041a57867 100644 --- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po +++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po @@ -6921,8 +6921,8 @@ msgid "nozzle in preset: %s %s" msgstr "预设中的喷嘴:%s %s" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" -msgstr "记忆中的喷嘴:%.1f %s" +msgid "nozzle memorized: %.2f %s" +msgstr "记忆中的喷嘴:%.2f %s" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index 7507c05d14..c2ee3ce4e3 100644 --- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po +++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po @@ -7195,7 +7195,7 @@ msgid "nozzle in preset: %s %s" msgstr "" #, c-format, boost-format -msgid "nozzle memorized: %.1f %s" +msgid "nozzle memorized: %.2f %s" msgstr "" msgid "" From 1c56d536cbcc8093e3365fe4dddbabe0f4876997 Mon Sep 17 00:00:00 2001 From: cochcoder <103969142+cochcoder@users.noreply.github.com> Date: Tue, 28 May 2024 14:52:45 +0000 Subject: [PATCH 50/66] Add Flashforge guider 2s (#5165) * Add Guider 2s 0.4 * Add Guider 2s cover & build plate texture/model & fix missing Guider 3 Ultra build plate model * Add extruder_offset * Change G-Code * Misc Add 0.3, 0.6, & 0.8 nozzle sizes Add supported filaments * Revert "Misc" This reverts commit 94ebc2c52d2bca792acef2fb245b2a3153dfce19. * Re-add filaments * G-Code fixes * Fix printable area * Resolve merge conflicts part 1 * Revert "Resolve merge conflicts part 1" This reverts commit 2d6132a01df2311c00f13e49334b9fad07ec4904. * fix merge conflict part 1.5 * Fix merge conflicts 1.75 * Fix merge conflicts part 2 * Remove old buildplate model * Fix old buildplate model * Change bed origin, max speeds, & max/min layer heights * Remove absolute positioning in G-Code * Lower acceleration * Add lid clearance info * Revert "Remove absolute positioning in G-Code" This reverts commit 5253d320039c6eccf21d229d588bce52e4cd62ff. * Re-enable absolute distances * Fix syntax * Change these too... * Bring closer to original slicer * forgot these * Change to match @AC5SHOT optimal settings * Bring closer to original slicer * Bring closer to original slicer * Update machine limits/functionality --- resources/profiles/Flashforge.json | 84 +++++++++----- .../Flashforge/Flashforge Guider 2s_cover.png | Bin 0 -> 10299 bytes .../filament/Flashforge Generic ABS.json | 3 +- .../filament/Flashforge Generic ASA.json | 3 +- .../filament/Flashforge Generic PETG.json | 5 +- .../Flashforge/filament/Flashforge PLA.json | 3 +- .../filament/FusRock Generic PAHT-CF.json | 7 +- .../filament/FusRock Generic PET-CF.json | 7 +- .../flashforge_g2s_buildplate_model.stl | Bin 0 -> 5900984 bytes .../flashforge_g2s_buildplate_texture.png | Bin 0 -> 122772 bytes ...TL => flashforge_g3u_buildplate_model.stl} | Bin .../Flashforge Guider 2s 0.4 nozzle.json | 60 ++++++++++ .../machine/Flashforge Guider 2s.json | 12 ++ .../machine/Flashforge Guider 3 Ultra.json | 2 +- ...tail @Flashforge Guider 2s 0.4 nozzle.json | 107 +++++++++++++++++ ...imal @Flashforge Guider 2s 0.4 nozzle.json | 107 +++++++++++++++++ ...dard @Flashforge Guider 2s 0.4 nozzle.json | 108 ++++++++++++++++++ ...raft @Flashforge Guider 2s 0.4 nozzle.json | 108 ++++++++++++++++++ 18 files changed, 574 insertions(+), 42 deletions(-) create mode 100644 resources/profiles/Flashforge/Flashforge Guider 2s_cover.png create mode 100644 resources/profiles/Flashforge/flashforge_g2s_buildplate_model.stl create mode 100644 resources/profiles/Flashforge/flashforge_g2s_buildplate_texture.png rename resources/profiles/Flashforge/{flashfoge_g3u_buildplate_model.STL => flashforge_g3u_buildplate_model.stl} (100%) create mode 100644 resources/profiles/Flashforge/machine/Flashforge Guider 2s 0.4 nozzle.json create mode 100644 resources/profiles/Flashforge/machine/Flashforge Guider 2s.json create mode 100644 resources/profiles/Flashforge/process/0.12mm Detail @Flashforge Guider 2s 0.4 nozzle.json create mode 100644 resources/profiles/Flashforge/process/0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle.json create mode 100644 resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Guider 2s 0.4 nozzle.json create mode 100644 resources/profiles/Flashforge/process/0.30mm Draft @Flashforge Guider 2s 0.4 nozzle.json diff --git a/resources/profiles/Flashforge.json b/resources/profiles/Flashforge.json index 636d1fa396..559bb5ed38 100644 --- a/resources/profiles/Flashforge.json +++ b/resources/profiles/Flashforge.json @@ -13,13 +13,17 @@ "name": "Flashforge Adventurer 5M Pro", "sub_path": "machine/Flashforge Adventurer 5M Pro.json" }, - { + { "name": "Flashforge Adventurer 3 Series", "sub_path": "machine/Flashforge Adventurer 3 Series.json" }, { "name": "Flashforge Guider 3 Ultra", "sub_path": "machine/Flashforge Guider 3 Ultra.json" + }, + { + "name": "Flashforge Guider 2s", + "sub_path": "machine/Flashforge Guider 2s.json" } ], "process_list": [ @@ -55,27 +59,27 @@ "name": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "sub_path": "process/0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle.json" }, - { + { "name": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "sub_path": "process/0.12mm Standard @Flashforge AD5M 0.25 Nozzle.json" - }, - { + }, + { "name": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "sub_path": "process/0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json" - }, - { + }, + { "name": "0.40mm Standard @Flashforge AD5M 0.8 Nozzle", "sub_path": "process/0.40mm Standard @Flashforge AD5M 0.8 Nozzle.json" - }, - { + }, + { "name": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", "sub_path": "process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json" - }, - { + }, + { "name": "0.20mm Standard @Flashforge AD3 0.4 Nozzle", "sub_path": "process/0.20mm Standard @Flashforge AD3 0.4 Nozzle.json" }, - { + { "name": "0.30mm Fast @Flashforge AD3 0.4 Nozzle", "sub_path": "process/0.30mm Fast @Flashforge AD3 0.4 Nozzle.json" }, @@ -86,6 +90,22 @@ { "name": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "sub_path": "process/0.20mm Standard @Flashforge G3U 0.4 Nozzle.json" + }, + { + "name": "0.30mm Draft @Flashforge Guider 2s 0.4 nozzle", + "sub_path": "process/0.30mm Draft @Flashforge Guider 2s 0.4 nozzle.json" + }, + { + "name": "0.20mm Standard @Flashforge Guider 2s 0.4 nozzle", + "sub_path": "process/0.20mm Standard @Flashforge Guider 2s 0.4 nozzle.json" + }, + { + "name": "0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle", + "sub_path": "process/0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle.json" + }, + { + "name": "0.12mm Detail @Flashforge Guider 2s 0.4 nozzle", + "sub_path": "process/0.12mm Detail @Flashforge Guider 2s 0.4 nozzle.json" } ], "filament_list": [ @@ -117,26 +137,26 @@ "name": "Flashforge Generic ABS", "sub_path": "filament/Flashforge Generic ABS.json" }, - { + { "name": "Flashforge ABS @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json" - }, + }, { "name": "Flashforge Generic PETG", "sub_path": "filament/Flashforge Generic PETG.json" }, - { + { "name": "Flashforge PETG @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json" - }, + }, { "name": "Flashforge Generic PLA", "sub_path": "filament/Flashforge Generic PLA.json" }, - { + { "name": "Flashforge PLA @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json" - }, + }, { "name": "Flashforge Generic PLA-CF10", "sub_path": "filament/Flashforge Generic PLA-CF10.json" @@ -145,26 +165,26 @@ "name": "Flashforge Generic PLA-Silk", "sub_path": "filament/Flashforge Generic PLA-Silk.json" }, - { + { "name": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json" - }, + }, { "name": "Flashforge Generic HS PLA", "sub_path": "filament/Flashforge Generic HS PLA.json" }, - { + { "name": "Flashforge HS PLA @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json" - }, + }, { "name": "Flashforge Generic ASA", "sub_path": "filament/Flashforge Generic ASA.json" }, - { + { "name": "Flashforge ASA @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json" - }, + }, { "name": "Flashforge Generic PETG-CF10", "sub_path": "filament/Flashforge Generic PETG-CF10.json" @@ -255,11 +275,11 @@ "name": "fdm_flashforge_common", "sub_path": "machine/fdm_flashforge_common.json" }, - { + { "name": "fdm_adventurer5m_common", "sub_path": "machine/fdm_adventurer5m_common.json" }, - { + { "name": "Flashforge Adventurer 5M 0.25 Nozzle", "sub_path": "machine/Flashforge Adventurer 5M 0.25 Nozzle.json" }, @@ -271,11 +291,11 @@ "name": "Flashforge Adventurer 5M 0.6 Nozzle", "sub_path": "machine/Flashforge Adventurer 5M 0.6 Nozzle.json" }, - { + { "name": "Flashforge Adventurer 5M 0.8 Nozzle", "sub_path": "machine/Flashforge Adventurer 5M 0.8 Nozzle.json" }, - { + { "name": "Flashforge Adventurer 5M Pro 0.25 Nozzle", "sub_path": "machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json" }, @@ -287,15 +307,15 @@ "name": "Flashforge Adventurer 5M Pro 0.6 Nozzle", "sub_path": "machine/Flashforge Adventurer 5M Pro 0.6 Nozzle.json" }, - { + { "name": "Flashforge Adventurer 5M Pro 0.8 Nozzle", "sub_path": "machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json" }, - { + { "name": "fdm_flashforge_common", "sub_path": "machine/fdm_adventurer3_common.json" }, - { + { "name": "Flashforge Adventurer 3 Series 0.4 Nozzle", "sub_path": "machine/Flashforge Adventurer 3 Series 0.4 nozzle.json" }, @@ -310,6 +330,10 @@ { "name": "Flashforge Guider 3 Ultra 0.4 Nozzle", "sub_path": "machine/Flashforge Guider 3 Ultra 0.4 Nozzle.json" + }, + { + "name": "Flashforge Guider 2s 0.4 nozzle", + "sub_path": "machine/Flashforge Guider 2s 0.4 nozzle.json" } ] } diff --git a/resources/profiles/Flashforge/Flashforge Guider 2s_cover.png b/resources/profiles/Flashforge/Flashforge Guider 2s_cover.png new file mode 100644 index 0000000000000000000000000000000000000000..900231deddb440bb050693ce573a7216a779941b GIT binary patch literal 10299 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 CS9ab2 literal 0 HcmV?d00001 diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json b/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json index d0560d5e8c..1ff9c7ee02 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json @@ -51,6 +51,7 @@ "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle", + "Flashforge Guider 2s 0.4 nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json b/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json index 5fe7a2172b..4f4ef4a368 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json @@ -19,7 +19,8 @@ "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle", + "Flashforge Guider 2s 0.4 nozzle" ], "compatible_printers_condition": "", "compatible_prints": [], diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json index 643b4c10c1..bf7833deb0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json @@ -84,9 +84,10 @@ "compatible_printers": [ "Flashforge Adventurer 5M 0.4 Nozzle", "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", + "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle", + "Flashforge Guider 2s 0.4 nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA.json b/resources/profiles/Flashforge/filament/Flashforge PLA.json index e733abb4a9..155eb9c84c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA.json @@ -59,6 +59,7 @@ ], "compatible_printers": [ "Flashforge Adventurer 3 Series 0.4 Nozzle", - "Flashforge Adventurer 3 Series 0.6 Nozzle" + "Flashforge Adventurer 3 Series 0.6 Nozzle", + "Flashforge Guider 2s 0.4 nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/FusRock Generic PAHT-CF.json b/resources/profiles/Flashforge/filament/FusRock Generic PAHT-CF.json index ceeb2e7db1..ddcc047a4c 100644 --- a/resources/profiles/Flashforge/filament/FusRock Generic PAHT-CF.json +++ b/resources/profiles/Flashforge/filament/FusRock Generic PAHT-CF.json @@ -22,11 +22,12 @@ "compatible_printers": [ "Flashforge Adventurer 5M 0.4 Nozzle", "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", + "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge Guider 3 Ultra 0.4 Nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle", + "Flashforge Guider 3 Ultra 0.4 Nozzle", + "Flashforge Guider 2s 0.4 nozzle" ], "compatible_printers_condition": "", "compatible_prints": [], diff --git a/resources/profiles/Flashforge/filament/FusRock Generic PET-CF.json b/resources/profiles/Flashforge/filament/FusRock Generic PET-CF.json index 7239d7d22d..a020f3a4b4 100644 --- a/resources/profiles/Flashforge/filament/FusRock Generic PET-CF.json +++ b/resources/profiles/Flashforge/filament/FusRock Generic PET-CF.json @@ -22,11 +22,12 @@ "compatible_printers": [ "Flashforge Adventurer 5M 0.4 Nozzle", "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", + "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge Guider 3 Ultra 0.4 Nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle", + "Flashforge Guider 3 Ultra 0.4 Nozzle", + "Flashforge Guider 2s 0.4 nozzle" ], "compatible_printers_condition": "", "compatible_prints": [], diff --git a/resources/profiles/Flashforge/flashforge_g2s_buildplate_model.stl b/resources/profiles/Flashforge/flashforge_g2s_buildplate_model.stl new file mode 100644 index 0000000000000000000000000000000000000000..dfbb4ece8d11eff1fa02f26a28c0bf2e2538458c GIT binary patch literal 5900984 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

    )Je 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

  • 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 z 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